blob: 1a6986b9483724360008753904b75ca022ac5d51 [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 */
23
Pere Orga5bc8c002011-04-11 03:29:49 +020024//usage:#if ENABLE_FEATURE_TELNET_AUTOLOGIN
25//usage:#define telnet_trivial_usage
26//usage: "[-a] [-l USER] HOST [PORT]"
27//usage:#define telnet_full_usage "\n\n"
28//usage: "Connect to telnet server\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020029//usage: "\n -a Automatic login with $USER variable"
30//usage: "\n -l USER Automatic login as USER"
31//usage:
32//usage:#else
33//usage:#define telnet_trivial_usage
34//usage: "HOST [PORT]"
35//usage:#define telnet_full_usage "\n\n"
36//usage: "Connect to telnet server"
37//usage:#endif
38
Eric Andersen28c70b32000-06-14 20:42:57 +000039#include <arpa/telnet.h>
Eric Andersen28c70b32000-06-14 20:42:57 +000040#include <netinet/in.h>
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000041#include "libbb.h"
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020042#include "common_bufsiz.h"
Erik Andersenf7c49ef2000-02-22 17:17:45 +000043
Denys Vlasenko14bd16a2011-07-08 08:49:40 +020044#ifdef __BIONIC__
45/* should be in arpa/telnet.h */
46# define IAC 255 /* interpret as command: */
47# define DONT 254 /* you are not to use option */
48# define DO 253 /* please, you use option */
49# define WONT 252 /* I won't use option */
50# define WILL 251 /* I will use option */
51# define SB 250 /* interpret as subnegotiation */
52# define SE 240 /* end sub negotiation */
53# define TELOPT_ECHO 1 /* echo */
54# define TELOPT_SGA 3 /* suppress go ahead */
55# define TELOPT_TTYPE 24 /* terminal type */
56# define TELOPT_NAWS 31 /* window size */
57#endif
58
Pavel Roskin616d13b2000-07-28 19:38:27 +000059#ifdef DOTRACE
Denys Vlasenko14bd16a2011-07-08 08:49:40 +020060# define TRACE(x, y) do { if (x) printf y; } while (0)
Eric Andersen28c70b32000-06-14 20:42:57 +000061#else
Denys Vlasenko14bd16a2011-07-08 08:49:40 +020062# define TRACE(x, y)
Eric Andersen28c70b32000-06-14 20:42:57 +000063#endif
64
Mark Whitley59ab0252001-01-23 22:30:04 +000065enum {
Denis Vlasenkof24cdf12007-03-19 14:47:09 +000066 DATABUFSIZE = 128,
67 IACBUFSIZE = 128,
68
Rob Landleybc68cd12006-03-10 19:22:06 +000069 CHM_TRY = 0,
70 CHM_ON = 1,
71 CHM_OFF = 2,
72
73 UF_ECHO = 0x01,
74 UF_SGA = 0x02,
75
Denys Vlasenko036dbb92010-10-29 02:12:22 +020076 TS_NORMAL = 0,
77 TS_COPY = 1,
Mark Whitley59ab0252001-01-23 22:30:04 +000078 TS_IAC = 2,
79 TS_OPT = 3,
80 TS_SUB1 = 4,
81 TS_SUB2 = 5,
Denys Vlasenko036dbb92010-10-29 02:12:22 +020082 TS_CR = 6,
Mark Whitley59ab0252001-01-23 22:30:04 +000083};
Eric Andersen28c70b32000-06-14 20:42:57 +000084
Eric Andersen28c70b32000-06-14 20:42:57 +000085typedef unsigned char byte;
86
Denis Vlasenko1101d1c2008-07-21 09:22:28 +000087enum { netfd = 3 };
88
Denis Vlasenkof24cdf12007-03-19 14:47:09 +000089struct globals {
Denis Vlasenko1101d1c2008-07-21 09:22:28 +000090 int iaclen; /* could even use byte, but it's a loss on x86 */
Eric Andersen28c70b32000-06-14 20:42:57 +000091 byte telstate; /* telnet negotiation state from network input */
92 byte telwish; /* DO, DONT, WILL, WONT */
93 byte charmode;
94 byte telflags;
Paul Foxf2ddc052005-07-20 19:55:19 +000095 byte do_termios;
Denis Vlasenkof24cdf12007-03-19 14:47:09 +000096#if ENABLE_FEATURE_TELNET_TTYPE
97 char *ttype;
98#endif
99#if ENABLE_FEATURE_TELNET_AUTOLOGIN
100 const char *autologin;
101#endif
102#if ENABLE_FEATURE_AUTOWIDTH
Denis Vlasenko55995022008-05-18 22:28:26 +0000103 unsigned win_width, win_height;
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000104#endif
105 /* same buffer used both for network and console read/write */
Denis Vlasenko54e3d1f2007-03-19 14:52:26 +0000106 char buf[DATABUFSIZE];
107 /* buffer to handle telnet negotiations */
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000108 char iacbuf[IACBUFSIZE];
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000109 struct termios termios_def;
110 struct termios termios_raw;
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +0100111} FIX_ALIASING;
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +0200112#define G (*(struct globals*)bb_common_bufsiz1)
Denis Vlasenko74324c82007-06-04 10:16:52 +0000113#define INIT_G() do { \
Denys Vlasenko47cfbf32016-04-21 18:18:48 +0200114 setup_common_bufsiz(); \
Denys Vlasenko7b85ec32015-10-13 17:17:34 +0200115 BUILD_BUG_ON(sizeof(G) > COMMON_BUFSIZE); \
Denis Vlasenko74324c82007-06-04 10:16:52 +0000116} while (0)
Eric Andersen28c70b32000-06-14 20:42:57 +0000117
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200118
Eric Andersencd8c4362001-11-10 11:22:46 +0000119static void rawmode(void);
120static void cookmode(void);
121static void do_linemode(void);
122static void will_charmode(void);
Eric Andersen28c70b32000-06-14 20:42:57 +0000123static void telopt(byte c);
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200124static void subneg(byte c);
Eric Andersen28c70b32000-06-14 20:42:57 +0000125
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000126static void iac_flush(void)
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000127{
Denys Vlasenkof76fd172013-05-12 02:13:24 +0200128 full_write(netfd, G.iacbuf, G.iaclen);
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000129 G.iaclen = 0;
130}
Eric Andersen7e1273e2001-05-07 17:57:45 +0000131
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000132static void doexit(int ev) NORETURN;
Denis Vlasenko54e3d1f2007-03-19 14:52:26 +0000133static void doexit(int ev)
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000134{
Eric Andersen28c70b32000-06-14 20:42:57 +0000135 cookmode();
136 exit(ev);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000137}
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000138
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000139static void con_escape(void)
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000140{
Eric Andersen28c70b32000-06-14 20:42:57 +0000141 char b;
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000142
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000143 if (bb_got_signal) /* came from line mode... go raw */
Eric Andersen28c70b32000-06-14 20:42:57 +0000144 rawmode();
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000145
Denys Vlasenkof76fd172013-05-12 02:13:24 +0200146 full_write1_str("\r\nConsole escape. Commands are:\r\n\n"
Eric Andersen28c70b32000-06-14 20:42:57 +0000147 " l go to line mode\r\n"
148 " c go to character mode\r\n"
149 " z suspend telnet\r\n"
150 " e exit telnet\r\n");
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000151
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +0000152 if (read(STDIN_FILENO, &b, 1) <= 0)
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000153 doexit(EXIT_FAILURE);
Eric Andersen28c70b32000-06-14 20:42:57 +0000154
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000155 switch (b) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000156 case 'l':
Denis Vlasenko08ea11a2008-09-11 19:51:11 +0000157 if (!bb_got_signal) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000158 do_linemode();
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000159 goto ret;
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000160 }
Eric Andersen28c70b32000-06-14 20:42:57 +0000161 break;
162 case 'c':
Denis Vlasenko08ea11a2008-09-11 19:51:11 +0000163 if (bb_got_signal) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000164 will_charmode();
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000165 goto ret;
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000166 }
Eric Andersen28c70b32000-06-14 20:42:57 +0000167 break;
168 case 'z':
169 cookmode();
170 kill(0, SIGTSTP);
171 rawmode();
172 break;
173 case 'e':
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +0000174 doexit(EXIT_SUCCESS);
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000175 }
Eric Andersen28c70b32000-06-14 20:42:57 +0000176
Denys Vlasenkof76fd172013-05-12 02:13:24 +0200177 full_write1_str("continuing...\r\n");
Eric Andersen28c70b32000-06-14 20:42:57 +0000178
Denis Vlasenko08ea11a2008-09-11 19:51:11 +0000179 if (bb_got_signal)
Eric Andersen28c70b32000-06-14 20:42:57 +0000180 cookmode();
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000181 ret:
Denis Vlasenko08ea11a2008-09-11 19:51:11 +0000182 bb_got_signal = 0;
Eric Andersen28c70b32000-06-14 20:42:57 +0000183}
Denis Vlasenko54e3d1f2007-03-19 14:52:26 +0000184
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000185static void handle_net_output(int len)
Eric Andersen28c70b32000-06-14 20:42:57 +0000186{
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200187 byte outbuf[2 * DATABUFSIZE];
Denys Vlasenko0ffd63c2012-09-17 11:54:35 +0200188 byte *dst = outbuf;
189 byte *src = (byte*)G.buf;
190 byte *end = src + len;
Eric Andersen28c70b32000-06-14 20:42:57 +0000191
Denys Vlasenko0ffd63c2012-09-17 11:54:35 +0200192 while (src < end) {
193 byte c = *src++;
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200194 if (c == 0x1d) {
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000195 con_escape();
Eric Andersen28c70b32000-06-14 20:42:57 +0000196 return;
197 }
Denys Vlasenko0ffd63c2012-09-17 11:54:35 +0200198 *dst = c;
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200199 if (c == IAC)
Denys Vlasenko0ffd63c2012-09-17 11:54:35 +0200200 *++dst = c; /* IAC -> IAC IAC */
201 else
202 if (c == '\r' || c == '\n') {
203 /* Enter key sends '\r' in raw mode and '\n' in cooked one.
204 *
205 * See RFC 1123 3.3.1 Telnet End-of-Line Convention.
Denys Vlasenkoaca464d2012-09-13 13:00:49 +0200206 * Using CR LF instead of other allowed possibilities
207 * like CR NUL - easier to talk to HTTP/SMTP servers.
208 */
Denys Vlasenko0ffd63c2012-09-17 11:54:35 +0200209 *dst = '\r'; /* Enter -> CR LF */
210 *++dst = '\n';
211 }
212 dst++;
Eric Andersen28c70b32000-06-14 20:42:57 +0000213 }
Denys Vlasenko0ffd63c2012-09-17 11:54:35 +0200214 if (dst - outbuf != 0)
215 full_write(netfd, outbuf, dst - outbuf);
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000216}
217
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000218static void handle_net_input(int len)
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000219{
Eric Andersen28c70b32000-06-14 20:42:57 +0000220 int i;
221 int cstart = 0;
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000222
Denis Vlasenko1bec1b92007-11-06 02:23:39 +0000223 for (i = 0; i < len; i++) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000224 byte c = G.buf[i];
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000225
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200226 if (G.telstate == TS_NORMAL) { /* most typical state */
Denis Vlasenko1bec1b92007-11-06 02:23:39 +0000227 if (c == IAC) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000228 cstart = i;
229 G.telstate = TS_IAC;
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000230 }
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200231 else if (c == '\r') {
232 cstart = i + 1;
233 G.telstate = TS_CR;
234 }
235 /* No IACs were seen so far, no need to copy
236 * bytes within G.buf: */
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000237 continue;
238 }
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200239
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000240 switch (G.telstate) {
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200241 case TS_CR:
242 /* Prev char was CR. If cur one is NUL, ignore it.
243 * See RFC 1123 section 3.3.1 for discussion of telnet EOL handling.
244 */
245 G.telstate = TS_COPY;
246 if (c == '\0')
247 break;
248 /* else: fall through - need to handle CR IAC ... properly */
249
250 case TS_COPY: /* Prev char was ordinary */
251 /* Similar to NORMAL, but in TS_COPY we need to copy bytes */
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000252 if (c == IAC)
253 G.telstate = TS_IAC;
254 else
255 G.buf[cstart++] = c;
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200256 if (c == '\r')
257 G.telstate = TS_CR;
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000258 break;
Eric Andersen28c70b32000-06-14 20:42:57 +0000259
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200260 case TS_IAC: /* Prev char was IAC */
261 if (c == IAC) { /* IAC IAC -> one IAC */
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000262 G.buf[cstart++] = c;
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200263 G.telstate = TS_COPY;
Denis Vlasenko1bec1b92007-11-06 02:23:39 +0000264 break;
Denis Vlasenko1bec1b92007-11-06 02:23:39 +0000265 }
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000266 /* else */
267 switch (c) {
268 case SB:
269 G.telstate = TS_SUB1;
270 break;
271 case DO:
272 case DONT:
273 case WILL:
274 case WONT:
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200275 G.telwish = c;
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000276 G.telstate = TS_OPT;
277 break;
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200278 /* DATA MARK must be added later */
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000279 default:
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200280 G.telstate = TS_COPY;
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000281 }
282 break;
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200283
284 case TS_OPT: /* Prev chars were IAC WILL/WONT/DO/DONT */
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000285 telopt(c);
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200286 G.telstate = TS_COPY;
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000287 break;
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200288
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000289 case TS_SUB1: /* Subnegotiation */
290 case TS_SUB2: /* Subnegotiation */
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200291 subneg(c); /* can change G.telstate */
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000292 break;
293 }
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000294 }
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200295
296 if (G.telstate != TS_NORMAL) {
297 /* We had some IACs, or CR */
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000298 if (G.iaclen)
299 iac_flush();
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200300 if (G.telstate == TS_COPY) /* we aren't in the middle of IAC */
301 G.telstate = TS_NORMAL;
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000302 len = cstart;
Eric Andersen28c70b32000-06-14 20:42:57 +0000303 }
304
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000305 if (len)
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200306 full_write(STDOUT_FILENO, G.buf, len);
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000307}
308
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000309static void put_iac(int c)
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000310{
Eric Andersen28c70b32000-06-14 20:42:57 +0000311 G.iacbuf[G.iaclen++] = c;
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000312}
313
Denys Vlasenko57727d42016-10-12 20:42:58 +0200314static void put_iac2_merged(unsigned wwdd_and_c)
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000315{
Eric Andersen28c70b32000-06-14 20:42:57 +0000316 if (G.iaclen + 3 > IACBUFSIZE)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000317 iac_flush();
Eric Andersen28c70b32000-06-14 20:42:57 +0000318
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000319 put_iac(IAC);
Denys Vlasenko57727d42016-10-12 20:42:58 +0200320 put_iac(wwdd_and_c >> 8);
321 put_iac(wwdd_and_c & 0xff);
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000322}
Denys Vlasenko57727d42016-10-12 20:42:58 +0200323#define put_iac2(wwdd,c) put_iac2_merged(((wwdd)<<8) + (c))
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000324
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000325#if ENABLE_FEATURE_TELNET_TTYPE
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000326static void put_iac_subopt(byte c, char *str)
Eric Andersen7e1273e2001-05-07 17:57:45 +0000327{
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000328 int len = strlen(str) + 6; // ( 2 + 1 + 1 + strlen + 2 )
Eric Andersen7e1273e2001-05-07 17:57:45 +0000329
330 if (G.iaclen + len > IACBUFSIZE)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000331 iac_flush();
Eric Andersen7e1273e2001-05-07 17:57:45 +0000332
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000333 put_iac(IAC);
334 put_iac(SB);
335 put_iac(c);
336 put_iac(0);
Eric Andersen7e1273e2001-05-07 17:57:45 +0000337
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000338 while (*str)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000339 put_iac(*str++);
Eric Andersen7e1273e2001-05-07 17:57:45 +0000340
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000341 put_iac(IAC);
342 put_iac(SE);
Eric Andersen7e1273e2001-05-07 17:57:45 +0000343}
344#endif
345
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000346#if ENABLE_FEATURE_TELNET_AUTOLOGIN
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000347static void put_iac_subopt_autologin(void)
Eric Andersen539ffc92004-02-22 12:25:47 +0000348{
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000349 int len = strlen(G.autologin) + 6; // (2 + 1 + 1 + strlen + 2)
Denys Vlasenko25b10d92010-04-27 08:54:24 +0200350 const char *p = "USER";
Eric Andersen539ffc92004-02-22 12:25:47 +0000351
352 if (G.iaclen + len > IACBUFSIZE)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000353 iac_flush();
Eric Andersen539ffc92004-02-22 12:25:47 +0000354
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000355 put_iac(IAC);
356 put_iac(SB);
357 put_iac(TELOPT_NEW_ENVIRON);
358 put_iac(TELQUAL_IS);
359 put_iac(NEW_ENV_VAR);
Eric Andersen539ffc92004-02-22 12:25:47 +0000360
Denys Vlasenko25b10d92010-04-27 08:54:24 +0200361 while (*p)
362 put_iac(*p++);
Eric Andersen539ffc92004-02-22 12:25:47 +0000363
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000364 put_iac(NEW_ENV_VALUE);
Eric Andersen539ffc92004-02-22 12:25:47 +0000365
Denys Vlasenko25b10d92010-04-27 08:54:24 +0200366 p = G.autologin;
367 while (*p)
368 put_iac(*p++);
Eric Andersen539ffc92004-02-22 12:25:47 +0000369
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000370 put_iac(IAC);
371 put_iac(SE);
Eric Andersen539ffc92004-02-22 12:25:47 +0000372}
373#endif
374
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000375#if ENABLE_FEATURE_AUTOWIDTH
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000376static void put_iac_naws(byte c, int x, int y)
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000377{
378 if (G.iaclen + 9 > IACBUFSIZE)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000379 iac_flush();
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000380
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000381 put_iac(IAC);
382 put_iac(SB);
383 put_iac(c);
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000384
Denys Vlasenkof76fd172013-05-12 02:13:24 +0200385 /* "... & 0xff" implicitly done below */
386 put_iac(x >> 8);
387 put_iac(x);
388 put_iac(y >> 8);
389 put_iac(y);
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000390
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000391 put_iac(IAC);
392 put_iac(SE);
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000393}
394#endif
395
Eric Andersencd8c4362001-11-10 11:22:46 +0000396static void setConMode(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000397{
Denis Vlasenko54e3d1f2007-03-19 14:52:26 +0000398 if (G.telflags & UF_ECHO) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000399 if (G.charmode == CHM_TRY) {
400 G.charmode = CHM_ON;
Denys Vlasenko57f07bf2012-09-17 11:53:09 +0200401 printf("\r\nEntering %s mode"
402 "\r\nEscape character is '^%c'.\r\n", "character", ']');
Eric Andersen28c70b32000-06-14 20:42:57 +0000403 rawmode();
404 }
Denis Vlasenko54e3d1f2007-03-19 14:52:26 +0000405 } else {
Eric Andersen28c70b32000-06-14 20:42:57 +0000406 if (G.charmode != CHM_OFF) {
407 G.charmode = CHM_OFF;
Denys Vlasenko57f07bf2012-09-17 11:53:09 +0200408 printf("\r\nEntering %s mode"
409 "\r\nEscape character is '^%c'.\r\n", "line", 'C');
Eric Andersen28c70b32000-06-14 20:42:57 +0000410 cookmode();
411 }
412 }
413}
414
Eric Andersencd8c4362001-11-10 11:22:46 +0000415static void will_charmode(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000416{
417 G.charmode = CHM_TRY;
418 G.telflags |= (UF_ECHO | UF_SGA);
419 setConMode();
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000420
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000421 put_iac2(DO, TELOPT_ECHO);
422 put_iac2(DO, TELOPT_SGA);
423 iac_flush();
Eric Andersen28c70b32000-06-14 20:42:57 +0000424}
425
Eric Andersencd8c4362001-11-10 11:22:46 +0000426static void do_linemode(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000427{
428 G.charmode = CHM_TRY;
429 G.telflags &= ~(UF_ECHO | UF_SGA);
430 setConMode();
431
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000432 put_iac2(DONT, TELOPT_ECHO);
433 put_iac2(DONT, TELOPT_SGA);
434 iac_flush();
Eric Andersen28c70b32000-06-14 20:42:57 +0000435}
436
Rob Landley88621d72006-08-29 19:41:06 +0000437static void to_notsup(char c)
Eric Andersen28c70b32000-06-14 20:42:57 +0000438{
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000439 if (G.telwish == WILL)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000440 put_iac2(DONT, c);
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000441 else if (G.telwish == DO)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000442 put_iac2(WONT, c);
Eric Andersen28c70b32000-06-14 20:42:57 +0000443}
444
Rob Landley88621d72006-08-29 19:41:06 +0000445static void to_echo(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000446{
447 /* if server requests ECHO, don't agree */
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000448 if (G.telwish == DO) {
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000449 put_iac2(WONT, TELOPT_ECHO);
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000450 return;
451 }
452 if (G.telwish == DONT)
453 return;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000454
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000455 if (G.telflags & UF_ECHO) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000456 if (G.telwish == WILL)
457 return;
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000458 } else if (G.telwish == WONT)
459 return;
Eric Andersen28c70b32000-06-14 20:42:57 +0000460
461 if (G.charmode != CHM_OFF)
462 G.telflags ^= UF_ECHO;
463
464 if (G.telflags & UF_ECHO)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000465 put_iac2(DO, TELOPT_ECHO);
Eric Andersen28c70b32000-06-14 20:42:57 +0000466 else
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000467 put_iac2(DONT, TELOPT_ECHO);
Eric Andersen28c70b32000-06-14 20:42:57 +0000468
469 setConMode();
Denys Vlasenko729ecb82010-06-07 14:14:26 +0200470 full_write1_str("\r\n"); /* sudden modec */
Eric Andersen28c70b32000-06-14 20:42:57 +0000471}
472
Rob Landley88621d72006-08-29 19:41:06 +0000473static void to_sga(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000474{
475 /* daemon always sends will/wont, client do/dont */
476
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000477 if (G.telflags & UF_SGA) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000478 if (G.telwish == WILL)
479 return;
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000480 } else if (G.telwish == WONT)
481 return;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000482
Denis Vlasenko1bec1b92007-11-06 02:23:39 +0000483 G.telflags ^= UF_SGA; /* toggle */
484 if (G.telflags & UF_SGA)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000485 put_iac2(DO, TELOPT_SGA);
Eric Andersen28c70b32000-06-14 20:42:57 +0000486 else
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000487 put_iac2(DONT, TELOPT_SGA);
Eric Andersen28c70b32000-06-14 20:42:57 +0000488}
489
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000490#if ENABLE_FEATURE_TELNET_TTYPE
Rob Landley88621d72006-08-29 19:41:06 +0000491static void to_ttype(void)
Eric Andersen7e1273e2001-05-07 17:57:45 +0000492{
493 /* Tell server we will (or won't) do TTYPE */
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000494 if (G.ttype)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000495 put_iac2(WILL, TELOPT_TTYPE);
Eric Andersen7e1273e2001-05-07 17:57:45 +0000496 else
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000497 put_iac2(WONT, TELOPT_TTYPE);
Eric Andersen7e1273e2001-05-07 17:57:45 +0000498}
499#endif
500
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000501#if ENABLE_FEATURE_TELNET_AUTOLOGIN
Rob Landley88621d72006-08-29 19:41:06 +0000502static void to_new_environ(void)
Eric Andersen539ffc92004-02-22 12:25:47 +0000503{
504 /* Tell server we will (or will not) do AUTOLOGIN */
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000505 if (G.autologin)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000506 put_iac2(WILL, TELOPT_NEW_ENVIRON);
Eric Andersen539ffc92004-02-22 12:25:47 +0000507 else
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000508 put_iac2(WONT, TELOPT_NEW_ENVIRON);
Eric Andersen539ffc92004-02-22 12:25:47 +0000509}
510#endif
511
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000512#if ENABLE_FEATURE_AUTOWIDTH
Rob Landley88621d72006-08-29 19:41:06 +0000513static void to_naws(void)
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000514{
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000515 /* Tell server we will do NAWS */
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000516 put_iac2(WILL, TELOPT_NAWS);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000517}
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000518#endif
519
Eric Andersen28c70b32000-06-14 20:42:57 +0000520static void telopt(byte c)
521{
Denis Vlasenkobaca1752007-03-11 13:43:10 +0000522 switch (c) {
523 case TELOPT_ECHO:
524 to_echo(); break;
525 case TELOPT_SGA:
526 to_sga(); break;
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000527#if ENABLE_FEATURE_TELNET_TTYPE
Denis Vlasenkobaca1752007-03-11 13:43:10 +0000528 case TELOPT_TTYPE:
529 to_ttype(); break;
Eric Andersen7e1273e2001-05-07 17:57:45 +0000530#endif
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000531#if ENABLE_FEATURE_TELNET_AUTOLOGIN
Denis Vlasenkobaca1752007-03-11 13:43:10 +0000532 case TELOPT_NEW_ENVIRON:
533 to_new_environ(); break;
Eric Andersen539ffc92004-02-22 12:25:47 +0000534#endif
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000535#if ENABLE_FEATURE_AUTOWIDTH
Denis Vlasenkobaca1752007-03-11 13:43:10 +0000536 case TELOPT_NAWS:
537 to_naws();
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000538 put_iac_naws(c, G.win_width, G.win_height);
Denis Vlasenkobaca1752007-03-11 13:43:10 +0000539 break;
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000540#endif
Denis Vlasenkobaca1752007-03-11 13:43:10 +0000541 default:
542 to_notsup(c);
543 break;
Eric Andersen28c70b32000-06-14 20:42:57 +0000544 }
545}
546
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000547/* subnegotiation -- ignore all (except TTYPE,NAWS) */
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200548static void subneg(byte c)
Eric Andersen28c70b32000-06-14 20:42:57 +0000549{
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000550 switch (G.telstate) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000551 case TS_SUB1:
552 if (c == IAC)
553 G.telstate = TS_SUB2;
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000554#if ENABLE_FEATURE_TELNET_TTYPE
Eric Andersen7e1273e2001-05-07 17:57:45 +0000555 else
Denys Vlasenko25b10d92010-04-27 08:54:24 +0200556 if (c == TELOPT_TTYPE && G.ttype)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000557 put_iac_subopt(TELOPT_TTYPE, G.ttype);
Eric Andersen7e1273e2001-05-07 17:57:45 +0000558#endif
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000559#if ENABLE_FEATURE_TELNET_AUTOLOGIN
Eric Andersen539ffc92004-02-22 12:25:47 +0000560 else
Denys Vlasenko25b10d92010-04-27 08:54:24 +0200561 if (c == TELOPT_NEW_ENVIRON && G.autologin)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000562 put_iac_subopt_autologin();
Eric Andersen539ffc92004-02-22 12:25:47 +0000563#endif
Eric Andersen28c70b32000-06-14 20:42:57 +0000564 break;
565 case TS_SUB2:
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200566 if (c == SE) {
567 G.telstate = TS_COPY;
568 return;
569 }
Eric Andersen28c70b32000-06-14 20:42:57 +0000570 G.telstate = TS_SUB1;
Denys Vlasenko036dbb92010-10-29 02:12:22 +0200571 break;
Eric Andersen28c70b32000-06-14 20:42:57 +0000572 }
Eric Andersen28c70b32000-06-14 20:42:57 +0000573}
574
Eric Andersencd8c4362001-11-10 11:22:46 +0000575static void rawmode(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000576{
Denis Vlasenko54e3d1f2007-03-19 14:52:26 +0000577 if (G.do_termios)
578 tcsetattr(0, TCSADRAIN, &G.termios_raw);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000579}
Eric Andersen28c70b32000-06-14 20:42:57 +0000580
Eric Andersencd8c4362001-11-10 11:22:46 +0000581static void cookmode(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000582{
Denis Vlasenko54e3d1f2007-03-19 14:52:26 +0000583 if (G.do_termios)
584 tcsetattr(0, TCSADRAIN, &G.termios_def);
Eric Andersen28c70b32000-06-14 20:42:57 +0000585}
586
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000587int telnet_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenko1101d1c2008-07-21 09:22:28 +0000588int telnet_main(int argc UNUSED_PARAM, char **argv)
Eric Andersen28c70b32000-06-14 20:42:57 +0000589{
Denis Vlasenko9de420c2007-01-10 09:28:01 +0000590 char *host;
591 int port;
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000592 int len;
Eric Andersen28c70b32000-06-14 20:42:57 +0000593 struct pollfd ufds[2];
Eric Andersen28c70b32000-06-14 20:42:57 +0000594
Denis Vlasenko74324c82007-06-04 10:16:52 +0000595 INIT_G();
Eric Andersen28c70b32000-06-14 20:42:57 +0000596
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000597#if ENABLE_FEATURE_AUTOWIDTH
598 get_terminal_width_height(0, &G.win_width, &G.win_height);
599#endif
600
601#if ENABLE_FEATURE_TELNET_TTYPE
602 G.ttype = getenv("TERM");
603#endif
604
Paul Foxf2ddc052005-07-20 19:55:19 +0000605 if (tcgetattr(0, &G.termios_def) >= 0) {
606 G.do_termios = 1;
Paul Foxf2ddc052005-07-20 19:55:19 +0000607 G.termios_raw = G.termios_def;
608 cfmakeraw(&G.termios_raw);
609 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000610
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000611#if ENABLE_FEATURE_TELNET_AUTOLOGIN
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000612 if (1 & getopt32(argv, "al:", &G.autologin))
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000613 G.autologin = getenv("USER");
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000614 argv += optind;
Eric Andersen539ffc92004-02-22 12:25:47 +0000615#else
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000616 argv++;
Eric Andersen539ffc92004-02-22 12:25:47 +0000617#endif
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000618 if (!*argv)
619 bb_show_usage();
620 host = *argv++;
621 port = bb_lookup_port(*argv ? *argv++ : "telnet", "tcp", 23);
622 if (*argv) /* extra params?? */
623 bb_show_usage();
624
Denis Vlasenko1101d1c2008-07-21 09:22:28 +0000625 xmove_fd(create_and_connect_stream_or_die(host, port), netfd);
Eric Andersen28c70b32000-06-14 20:42:57 +0000626
Denys Vlasenkoc52cbea2015-08-24 19:48:03 +0200627 setsockopt_keepalive(netfd);
Eric Andersen28c70b32000-06-14 20:42:57 +0000628
Denis Vlasenko08ea11a2008-09-11 19:51:11 +0000629 signal(SIGINT, record_signo);
Eric Andersen28c70b32000-06-14 20:42:57 +0000630
Denys Vlasenkoec074202010-10-29 02:33:38 +0200631 ufds[0].fd = STDIN_FILENO;
632 ufds[0].events = POLLIN;
633 ufds[1].fd = netfd;
634 ufds[1].events = POLLIN;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000635
Denis Vlasenko9de420c2007-01-10 09:28:01 +0000636 while (1) {
Denys Vlasenkoec074202010-10-29 02:33:38 +0200637 if (poll(ufds, 2, -1) < 0) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000638 /* error, ignore and/or log something, bay go to loop */
Denis Vlasenko08ea11a2008-09-11 19:51:11 +0000639 if (bb_got_signal)
Denis Vlasenko9f2f8082008-11-11 02:56:39 +0000640 con_escape();
Eric Andersen28c70b32000-06-14 20:42:57 +0000641 else
642 sleep(1);
Denys Vlasenkoec074202010-10-29 02:33:38 +0200643 continue;
644 }
Eric Andersen28c70b32000-06-14 20:42:57 +0000645
Denys Vlasenkoec074202010-10-29 02:33:38 +0200646// FIXME: reads can block. Need full bidirectional buffering.
Eric Andersen28c70b32000-06-14 20:42:57 +0000647
Denys Vlasenkoec074202010-10-29 02:33:38 +0200648 if (ufds[0].revents) {
649 len = safe_read(STDIN_FILENO, G.buf, DATABUFSIZE);
650 if (len <= 0)
651 doexit(EXIT_SUCCESS);
652 TRACE(0, ("Read con: %d\n", len));
653 handle_net_output(len);
654 }
655
656 if (ufds[1].revents) {
657 len = safe_read(netfd, G.buf, DATABUFSIZE);
658 if (len <= 0) {
659 full_write1_str("Connection closed by foreign host\r\n");
660 doexit(EXIT_FAILURE);
Eric Andersen28c70b32000-06-14 20:42:57 +0000661 }
Denys Vlasenkoec074202010-10-29 02:33:38 +0200662 TRACE(0, ("Read netfd (%d): %d\n", netfd, len));
663 handle_net_input(len);
Eric Andersen28c70b32000-06-14 20:42:57 +0000664 }
Denis Vlasenko1101d1c2008-07-21 09:22:28 +0000665 } /* while (1) */
Eric Andersen28c70b32000-06-14 20:42:57 +0000666}