blob: 78229cd01cd8481d9dd15ae9445a6e10ca2c1aa7 [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 *
Rob Landley1b751c82005-10-28 09:24:33 +000011 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
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
Erik Andersenf7c49ef2000-02-22 17:17:45 +000024#include <termios.h>
Eric Andersen28c70b32000-06-14 20:42:57 +000025#include <arpa/telnet.h>
Eric Andersen28c70b32000-06-14 20:42:57 +000026#include <netinet/in.h>
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000027#include "libbb.h"
Erik Andersenf7c49ef2000-02-22 17:17:45 +000028
Pavel Roskin616d13b2000-07-28 19:38:27 +000029#ifdef DOTRACE
Eric Andersen28c70b32000-06-14 20:42:57 +000030#define TRACE(x, y) do { if (x) printf y; } while (0)
31#else
Eric Andersenc7bda1c2004-03-15 08:29:22 +000032#define TRACE(x, y)
Eric Andersen28c70b32000-06-14 20:42:57 +000033#endif
34
Mark Whitley59ab0252001-01-23 22:30:04 +000035enum {
Denis Vlasenkof24cdf12007-03-19 14:47:09 +000036 DATABUFSIZE = 128,
37 IACBUFSIZE = 128,
38
Rob Landleybc68cd12006-03-10 19:22:06 +000039 CHM_TRY = 0,
40 CHM_ON = 1,
41 CHM_OFF = 2,
42
43 UF_ECHO = 0x01,
44 UF_SGA = 0x02,
45
Mark Whitley59ab0252001-01-23 22:30:04 +000046 TS_0 = 1,
47 TS_IAC = 2,
48 TS_OPT = 3,
49 TS_SUB1 = 4,
50 TS_SUB2 = 5,
51};
Eric Andersen28c70b32000-06-14 20:42:57 +000052
Eric Andersen28c70b32000-06-14 20:42:57 +000053typedef unsigned char byte;
54
Denis Vlasenkof24cdf12007-03-19 14:47:09 +000055struct globals {
56 int netfd; /* console fd:s are 0 and 1 (and 2) */
57 short iaclen; /* could even use byte */
Eric Andersen28c70b32000-06-14 20:42:57 +000058 byte telstate; /* telnet negotiation state from network input */
59 byte telwish; /* DO, DONT, WILL, WONT */
60 byte charmode;
61 byte telflags;
62 byte gotsig;
Paul Foxf2ddc052005-07-20 19:55:19 +000063 byte do_termios;
Denis Vlasenkof24cdf12007-03-19 14:47:09 +000064#if ENABLE_FEATURE_TELNET_TTYPE
65 char *ttype;
66#endif
67#if ENABLE_FEATURE_TELNET_AUTOLOGIN
68 const char *autologin;
69#endif
70#if ENABLE_FEATURE_AUTOWIDTH
71 int win_width, win_height;
72#endif
73 /* same buffer used both for network and console read/write */
Denis Vlasenko54e3d1f2007-03-19 14:52:26 +000074 char buf[DATABUFSIZE];
75 /* buffer to handle telnet negotiations */
Glenn L McGrath78b0e372001-06-26 02:06:08 +000076 char iacbuf[IACBUFSIZE];
Eric Andersenc7bda1c2004-03-15 08:29:22 +000077 struct termios termios_def;
78 struct termios termios_raw;
Denis Vlasenkof24cdf12007-03-19 14:47:09 +000079};
Denis Vlasenko4e5f82c2007-06-03 22:30:22 +000080#define G (*(struct globals*)&bb_common_bufsiz1)
Denis Vlasenko74324c82007-06-04 10:16:52 +000081void BUG_telnet_globals_too_big(void);
82#define INIT_G() do { \
83 if (sizeof(G) > COMMON_BUFSIZE) \
84 BUG_telnet_globals_too_big(); \
85 /* memset(&G, 0, sizeof G); - already is */ \
86} while (0)
Eric Andersen28c70b32000-06-14 20:42:57 +000087
88/* Function prototypes */
Eric Andersencd8c4362001-11-10 11:22:46 +000089static void rawmode(void);
90static void cookmode(void);
91static void do_linemode(void);
92static void will_charmode(void);
Eric Andersen28c70b32000-06-14 20:42:57 +000093static void telopt(byte c);
94static int subneg(byte c);
Eric Andersen28c70b32000-06-14 20:42:57 +000095
Denis Vlasenkof24cdf12007-03-19 14:47:09 +000096static void iacflush(void)
97{
98 write(G.netfd, G.iacbuf, G.iaclen);
99 G.iaclen = 0;
100}
Eric Andersen7e1273e2001-05-07 17:57:45 +0000101
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000102#define write_str(fd, str) write(fd, str, sizeof(str) - 1)
Eric Andersen539ffc92004-02-22 12:25:47 +0000103
Denis Vlasenko1bec1b92007-11-06 02:23:39 +0000104static void doexit(int ev) ATTRIBUTE_NORETURN;
Denis Vlasenko54e3d1f2007-03-19 14:52:26 +0000105static void doexit(int ev)
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000106{
Eric Andersen28c70b32000-06-14 20:42:57 +0000107 cookmode();
108 exit(ev);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000109}
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000110
Eric Andersencd8c4362001-11-10 11:22:46 +0000111static void conescape(void)
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000112{
Eric Andersen28c70b32000-06-14 20:42:57 +0000113 char b;
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000114
Eric Andersen28c70b32000-06-14 20:42:57 +0000115 if (G.gotsig) /* came from line mode... go raw */
116 rawmode();
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000117
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000118 write_str(1, "\r\nConsole escape. Commands are:\r\n\n"
Eric Andersen28c70b32000-06-14 20:42:57 +0000119 " l go to line mode\r\n"
120 " c go to character mode\r\n"
121 " z suspend telnet\r\n"
122 " e exit telnet\r\n");
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000123
Eric Andersen28c70b32000-06-14 20:42:57 +0000124 if (read(0, &b, 1) <= 0)
125 doexit(1);
126
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000127 switch (b) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000128 case 'l':
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000129 if (!G.gotsig) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000130 do_linemode();
131 goto rrturn;
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000132 }
Eric Andersen28c70b32000-06-14 20:42:57 +0000133 break;
134 case 'c':
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000135 if (G.gotsig) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000136 will_charmode();
137 goto rrturn;
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000138 }
Eric Andersen28c70b32000-06-14 20:42:57 +0000139 break;
140 case 'z':
141 cookmode();
142 kill(0, SIGTSTP);
143 rawmode();
144 break;
145 case 'e':
146 doexit(0);
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000147 }
Eric Andersen28c70b32000-06-14 20:42:57 +0000148
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000149 write_str(1, "continuing...\r\n");
Eric Andersen28c70b32000-06-14 20:42:57 +0000150
151 if (G.gotsig)
152 cookmode();
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000153
Eric Andersen28c70b32000-06-14 20:42:57 +0000154 rrturn:
155 G.gotsig = 0;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000156
Eric Andersen28c70b32000-06-14 20:42:57 +0000157}
Denis Vlasenko54e3d1f2007-03-19 14:52:26 +0000158
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000159static void handlenetoutput(int len)
Eric Andersen28c70b32000-06-14 20:42:57 +0000160{
Denis Vlasenko1bec1b92007-11-06 02:23:39 +0000161 /* here we could do smart tricks how to handle 0xFF:s in output
162 * stream like writing twice every sequence of FF:s (thus doing
163 * many write()s. But I think interactive telnet application does
164 * not need to be 100% 8-bit clean, so changing every 0xff:s to
165 * 0x7f:s
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000166 *
Denis Vlasenko1bec1b92007-11-06 02:23:39 +0000167 * 2002-mar-21, Przemyslaw Czerpak (druzus@polbox.com)
168 * I don't agree.
169 * first - I cannot use programs like sz/rz
170 * second - the 0x0D is sent as one character and if the next
171 * char is 0x0A then it's eaten by a server side.
172 * third - whay doy you have to make 'many write()s'?
173 * I don't understand.
174 * So I implemented it. It's realy useful for me. I hope that
175 * others people will find it interesting too.
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000176 */
Eric Andersen28c70b32000-06-14 20:42:57 +0000177
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000178 int i, j;
Eric Andersen0cb6f352006-01-30 22:30:41 +0000179 byte * p = (byte*)G.buf;
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000180 byte outbuf[4*DATABUFSIZE];
Eric Andersen28c70b32000-06-14 20:42:57 +0000181
Denis Vlasenko1bec1b92007-11-06 02:23:39 +0000182 for (i = len, j = 0; i > 0; i--, p++) {
183 if (*p == 0x1d) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000184 conescape();
185 return;
186 }
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000187 outbuf[j++] = *p;
Eric Andersen28c70b32000-06-14 20:42:57 +0000188 if (*p == 0xff)
Denis Vlasenko92758142006-10-03 19:56:34 +0000189 outbuf[j++] = 0xff;
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000190 else if (*p == 0x0d)
Denis Vlasenko92758142006-10-03 19:56:34 +0000191 outbuf[j++] = 0x00;
Eric Andersen28c70b32000-06-14 20:42:57 +0000192 }
Denis Vlasenko219d14d2007-03-24 15:40:16 +0000193 if (j > 0)
Denis Vlasenko92758142006-10-03 19:56:34 +0000194 write(G.netfd, outbuf, j);
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000195}
196
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000197static void handlenetinput(int len)
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000198{
Eric Andersen28c70b32000-06-14 20:42:57 +0000199 int i;
200 int cstart = 0;
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000201
Denis Vlasenko1bec1b92007-11-06 02:23:39 +0000202 for (i = 0; i < len; i++) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000203 byte c = G.buf[i];
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000204
Denis Vlasenko1bec1b92007-11-06 02:23:39 +0000205 if (G.telstate == 0) { /* most of the time state == 0 */
206 if (c == IAC) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000207 cstart = i;
208 G.telstate = TS_IAC;
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000209 }
Denis Vlasenko1bec1b92007-11-06 02:23:39 +0000210 } else
211 switch (G.telstate) {
212 case TS_0:
213 if (c == IAC)
214 G.telstate = TS_IAC;
215 else
216 G.buf[cstart++] = c;
217 break;
Eric Andersen28c70b32000-06-14 20:42:57 +0000218
Denis Vlasenko1bec1b92007-11-06 02:23:39 +0000219 case TS_IAC:
220 if (c == IAC) { /* IAC IAC -> 0xFF */
221 G.buf[cstart++] = c;
222 G.telstate = TS_0;
223 break;
224 }
225 /* else */
226 switch (c) {
227 case SB:
228 G.telstate = TS_SUB1;
229 break;
230 case DO:
231 case DONT:
232 case WILL:
233 case WONT:
234 G.telwish = c;
235 G.telstate = TS_OPT;
236 break;
237 default:
238 G.telstate = TS_0; /* DATA MARK must be added later */
239 }
240 break;
241 case TS_OPT: /* WILL, WONT, DO, DONT */
242 telopt(c);
243 G.telstate = TS_0;
244 break;
245 case TS_SUB1: /* Subnegotiation */
246 case TS_SUB2: /* Subnegotiation */
247 if (subneg(c))
248 G.telstate = TS_0;
249 break;
250 }
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000251 }
Denis Vlasenko1bec1b92007-11-06 02:23:39 +0000252 if (G.telstate) {
253 if (G.iaclen) iacflush();
Eric Andersen28c70b32000-06-14 20:42:57 +0000254 if (G.telstate == TS_0) G.telstate = 0;
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000255 len = cstart;
Eric Andersen28c70b32000-06-14 20:42:57 +0000256 }
257
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000258 if (len)
259 write(1, G.buf, len);
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000260}
261
Rob Landley88621d72006-08-29 19:41:06 +0000262static void putiac(int c)
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000263{
Eric Andersen28c70b32000-06-14 20:42:57 +0000264 G.iacbuf[G.iaclen++] = c;
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000265}
266
Eric Andersen28c70b32000-06-14 20:42:57 +0000267static void putiac2(byte wwdd, byte c)
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000268{
Eric Andersen28c70b32000-06-14 20:42:57 +0000269 if (G.iaclen + 3 > IACBUFSIZE)
270 iacflush();
271
272 putiac(IAC);
273 putiac(wwdd);
274 putiac(c);
Erik Andersenf7c49ef2000-02-22 17:17:45 +0000275}
276
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000277#if ENABLE_FEATURE_TELNET_TTYPE
Eric Andersen7e1273e2001-05-07 17:57:45 +0000278static void putiac_subopt(byte c, char *str)
279{
280 int len = strlen(str) + 6; // ( 2 + 1 + 1 + strlen + 2 )
281
282 if (G.iaclen + len > IACBUFSIZE)
283 iacflush();
284
285 putiac(IAC);
286 putiac(SB);
287 putiac(c);
288 putiac(0);
289
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000290 while (*str)
Eric Andersen7e1273e2001-05-07 17:57:45 +0000291 putiac(*str++);
292
293 putiac(IAC);
294 putiac(SE);
295}
296#endif
297
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000298#if ENABLE_FEATURE_TELNET_AUTOLOGIN
Eric Andersen539ffc92004-02-22 12:25:47 +0000299static void putiac_subopt_autologin(void)
300{
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000301 int len = strlen(G.autologin) + 6; // (2 + 1 + 1 + strlen + 2)
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000302 const char *user = "USER";
Eric Andersen539ffc92004-02-22 12:25:47 +0000303
304 if (G.iaclen + len > IACBUFSIZE)
305 iacflush();
306
307 putiac(IAC);
308 putiac(SB);
309 putiac(TELOPT_NEW_ENVIRON);
310 putiac(TELQUAL_IS);
311 putiac(NEW_ENV_VAR);
312
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000313 while (*user)
Eric Andersen539ffc92004-02-22 12:25:47 +0000314 putiac(*user++);
315
316 putiac(NEW_ENV_VALUE);
317
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000318 while (*G.autologin)
319 putiac(*G.autologin++);
Eric Andersen539ffc92004-02-22 12:25:47 +0000320
321 putiac(IAC);
322 putiac(SE);
323}
324#endif
325
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000326#if ENABLE_FEATURE_AUTOWIDTH
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000327static void putiac_naws(byte c, int x, int y)
328{
329 if (G.iaclen + 9 > IACBUFSIZE)
330 iacflush();
331
332 putiac(IAC);
333 putiac(SB);
334 putiac(c);
335
336 putiac((x >> 8) & 0xff);
337 putiac(x & 0xff);
338 putiac((y >> 8) & 0xff);
339 putiac(y & 0xff);
340
341 putiac(IAC);
342 putiac(SE);
343}
344#endif
345
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000346static char const escapecharis[] ALIGN1 = "\r\nEscape character is ";
Eric Andersen28c70b32000-06-14 20:42:57 +0000347
Eric Andersencd8c4362001-11-10 11:22:46 +0000348static void setConMode(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000349{
Denis Vlasenko54e3d1f2007-03-19 14:52:26 +0000350 if (G.telflags & UF_ECHO) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000351 if (G.charmode == CHM_TRY) {
352 G.charmode = CHM_ON;
Matt Kraai12f417e2001-01-18 02:57:08 +0000353 printf("\r\nEntering character mode%s'^]'.\r\n", escapecharis);
Eric Andersen28c70b32000-06-14 20:42:57 +0000354 rawmode();
355 }
Denis Vlasenko54e3d1f2007-03-19 14:52:26 +0000356 } else {
Eric Andersen28c70b32000-06-14 20:42:57 +0000357 if (G.charmode != CHM_OFF) {
358 G.charmode = CHM_OFF;
Matt Kraai12f417e2001-01-18 02:57:08 +0000359 printf("\r\nEntering line mode%s'^C'.\r\n", escapecharis);
Eric Andersen28c70b32000-06-14 20:42:57 +0000360 cookmode();
361 }
362 }
363}
364
Eric Andersencd8c4362001-11-10 11:22:46 +0000365static void will_charmode(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000366{
367 G.charmode = CHM_TRY;
368 G.telflags |= (UF_ECHO | UF_SGA);
369 setConMode();
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000370
Eric Andersen28c70b32000-06-14 20:42:57 +0000371 putiac2(DO, TELOPT_ECHO);
372 putiac2(DO, TELOPT_SGA);
373 iacflush();
374}
375
Eric Andersencd8c4362001-11-10 11:22:46 +0000376static void do_linemode(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000377{
378 G.charmode = CHM_TRY;
379 G.telflags &= ~(UF_ECHO | UF_SGA);
380 setConMode();
381
382 putiac2(DONT, TELOPT_ECHO);
383 putiac2(DONT, TELOPT_SGA);
384 iacflush();
385}
386
Rob Landley88621d72006-08-29 19:41:06 +0000387static void to_notsup(char c)
Eric Andersen28c70b32000-06-14 20:42:57 +0000388{
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000389 if (G.telwish == WILL)
390 putiac2(DONT, c);
391 else if (G.telwish == DO)
392 putiac2(WONT, c);
Eric Andersen28c70b32000-06-14 20:42:57 +0000393}
394
Rob Landley88621d72006-08-29 19:41:06 +0000395static void to_echo(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000396{
397 /* if server requests ECHO, don't agree */
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000398 if (G.telwish == DO) {
399 putiac2(WONT, TELOPT_ECHO);
400 return;
401 }
402 if (G.telwish == DONT)
403 return;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000404
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000405 if (G.telflags & UF_ECHO) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000406 if (G.telwish == WILL)
407 return;
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000408 } else if (G.telwish == WONT)
409 return;
Eric Andersen28c70b32000-06-14 20:42:57 +0000410
411 if (G.charmode != CHM_OFF)
412 G.telflags ^= UF_ECHO;
413
414 if (G.telflags & UF_ECHO)
415 putiac2(DO, TELOPT_ECHO);
416 else
417 putiac2(DONT, TELOPT_ECHO);
418
419 setConMode();
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000420 write_str(1, "\r\n"); /* sudden modec */
Eric Andersen28c70b32000-06-14 20:42:57 +0000421}
422
Rob Landley88621d72006-08-29 19:41:06 +0000423static void to_sga(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000424{
425 /* daemon always sends will/wont, client do/dont */
426
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000427 if (G.telflags & UF_SGA) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000428 if (G.telwish == WILL)
429 return;
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000430 } else if (G.telwish == WONT)
431 return;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000432
Denis Vlasenko1bec1b92007-11-06 02:23:39 +0000433 G.telflags ^= UF_SGA; /* toggle */
434 if (G.telflags & UF_SGA)
Eric Andersen28c70b32000-06-14 20:42:57 +0000435 putiac2(DO, TELOPT_SGA);
436 else
437 putiac2(DONT, TELOPT_SGA);
Eric Andersen28c70b32000-06-14 20:42:57 +0000438}
439
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000440#if ENABLE_FEATURE_TELNET_TTYPE
Rob Landley88621d72006-08-29 19:41:06 +0000441static void to_ttype(void)
Eric Andersen7e1273e2001-05-07 17:57:45 +0000442{
443 /* Tell server we will (or won't) do TTYPE */
444
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000445 if (G.ttype)
Eric Andersen7e1273e2001-05-07 17:57:45 +0000446 putiac2(WILL, TELOPT_TTYPE);
447 else
448 putiac2(WONT, TELOPT_TTYPE);
Eric Andersen7e1273e2001-05-07 17:57:45 +0000449}
450#endif
451
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000452#if ENABLE_FEATURE_TELNET_AUTOLOGIN
Rob Landley88621d72006-08-29 19:41:06 +0000453static void to_new_environ(void)
Eric Andersen539ffc92004-02-22 12:25:47 +0000454{
455 /* Tell server we will (or will not) do AUTOLOGIN */
456
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000457 if (G.autologin)
Eric Andersen539ffc92004-02-22 12:25:47 +0000458 putiac2(WILL, TELOPT_NEW_ENVIRON);
459 else
460 putiac2(WONT, TELOPT_NEW_ENVIRON);
Eric Andersen539ffc92004-02-22 12:25:47 +0000461}
462#endif
463
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000464#if ENABLE_FEATURE_AUTOWIDTH
Rob Landley88621d72006-08-29 19:41:06 +0000465static void to_naws(void)
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000466{
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000467 /* Tell server we will do NAWS */
468 putiac2(WILL, TELOPT_NAWS);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000469}
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000470#endif
471
Eric Andersen28c70b32000-06-14 20:42:57 +0000472static void telopt(byte c)
473{
Denis Vlasenkobaca1752007-03-11 13:43:10 +0000474 switch (c) {
475 case TELOPT_ECHO:
476 to_echo(); break;
477 case TELOPT_SGA:
478 to_sga(); break;
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000479#if ENABLE_FEATURE_TELNET_TTYPE
Denis Vlasenkobaca1752007-03-11 13:43:10 +0000480 case TELOPT_TTYPE:
481 to_ttype(); break;
Eric Andersen7e1273e2001-05-07 17:57:45 +0000482#endif
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000483#if ENABLE_FEATURE_TELNET_AUTOLOGIN
Denis Vlasenkobaca1752007-03-11 13:43:10 +0000484 case TELOPT_NEW_ENVIRON:
485 to_new_environ(); break;
Eric Andersen539ffc92004-02-22 12:25:47 +0000486#endif
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000487#if ENABLE_FEATURE_AUTOWIDTH
Denis Vlasenkobaca1752007-03-11 13:43:10 +0000488 case TELOPT_NAWS:
489 to_naws();
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000490 putiac_naws(c, G.win_width, G.win_height);
Denis Vlasenkobaca1752007-03-11 13:43:10 +0000491 break;
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000492#endif
Denis Vlasenkobaca1752007-03-11 13:43:10 +0000493 default:
494 to_notsup(c);
495 break;
Eric Andersen28c70b32000-06-14 20:42:57 +0000496 }
497}
498
Eric Andersen0e28e1f2002-04-26 07:20:47 +0000499/* subnegotiation -- ignore all (except TTYPE,NAWS) */
Eric Andersen28c70b32000-06-14 20:42:57 +0000500static int subneg(byte c)
501{
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000502 switch (G.telstate) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000503 case TS_SUB1:
504 if (c == IAC)
505 G.telstate = TS_SUB2;
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000506#if ENABLE_FEATURE_TELNET_TTYPE
Eric Andersen7e1273e2001-05-07 17:57:45 +0000507 else
508 if (c == TELOPT_TTYPE)
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000509 putiac_subopt(TELOPT_TTYPE, G.ttype);
Eric Andersen7e1273e2001-05-07 17:57:45 +0000510#endif
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000511#if ENABLE_FEATURE_TELNET_AUTOLOGIN
Eric Andersen539ffc92004-02-22 12:25:47 +0000512 else
513 if (c == TELOPT_NEW_ENVIRON)
514 putiac_subopt_autologin();
515#endif
Eric Andersen28c70b32000-06-14 20:42:57 +0000516 break;
517 case TS_SUB2:
518 if (c == SE)
519 return TRUE;
520 G.telstate = TS_SUB1;
521 /* break; */
522 }
523 return FALSE;
524}
525
Eric Andersen28c70b32000-06-14 20:42:57 +0000526static void fgotsig(int sig)
527{
528 G.gotsig = sig;
529}
530
531
Eric Andersencd8c4362001-11-10 11:22:46 +0000532static void rawmode(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000533{
Denis Vlasenko54e3d1f2007-03-19 14:52:26 +0000534 if (G.do_termios)
535 tcsetattr(0, TCSADRAIN, &G.termios_raw);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000536}
Eric Andersen28c70b32000-06-14 20:42:57 +0000537
Eric Andersencd8c4362001-11-10 11:22:46 +0000538static void cookmode(void)
Eric Andersen28c70b32000-06-14 20:42:57 +0000539{
Denis Vlasenko54e3d1f2007-03-19 14:52:26 +0000540 if (G.do_termios)
541 tcsetattr(0, TCSADRAIN, &G.termios_def);
Eric Andersen28c70b32000-06-14 20:42:57 +0000542}
543
Denis Vlasenko1bec1b92007-11-06 02:23:39 +0000544/* poll gives smaller (-70 bytes) code */
545#define USE_POLL 1
546
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000547int telnet_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
548int telnet_main(int argc, char **argv)
Eric Andersen28c70b32000-06-14 20:42:57 +0000549{
Denis Vlasenko9de420c2007-01-10 09:28:01 +0000550 char *host;
551 int port;
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000552 int len;
Eric Andersen28c70b32000-06-14 20:42:57 +0000553#ifdef USE_POLL
554 struct pollfd ufds[2];
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000555#else
Eric Andersen28c70b32000-06-14 20:42:57 +0000556 fd_set readfds;
557 int maxfd;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000558#endif
Eric Andersen28c70b32000-06-14 20:42:57 +0000559
Denis Vlasenko74324c82007-06-04 10:16:52 +0000560 INIT_G();
Eric Andersen28c70b32000-06-14 20:42:57 +0000561
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000562#if ENABLE_FEATURE_AUTOWIDTH
563 get_terminal_width_height(0, &G.win_width, &G.win_height);
564#endif
565
566#if ENABLE_FEATURE_TELNET_TTYPE
567 G.ttype = getenv("TERM");
568#endif
569
Paul Foxf2ddc052005-07-20 19:55:19 +0000570 if (tcgetattr(0, &G.termios_def) >= 0) {
571 G.do_termios = 1;
Paul Foxf2ddc052005-07-20 19:55:19 +0000572 G.termios_raw = G.termios_def;
573 cfmakeraw(&G.termios_raw);
574 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000575
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000576 if (argc < 2)
577 bb_show_usage();
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000578
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000579#if ENABLE_FEATURE_TELNET_AUTOLOGIN
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000580 if (1 & getopt32(argv, "al:", &G.autologin))
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000581 G.autologin = getenv("USER");
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000582 argv += optind;
Eric Andersen539ffc92004-02-22 12:25:47 +0000583#else
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000584 argv++;
Eric Andersen539ffc92004-02-22 12:25:47 +0000585#endif
Denis Vlasenko6536a9b2007-01-12 10:35:23 +0000586 if (!*argv)
587 bb_show_usage();
588 host = *argv++;
589 port = bb_lookup_port(*argv ? *argv++ : "telnet", "tcp", 23);
590 if (*argv) /* extra params?? */
591 bb_show_usage();
592
Denis Vlasenko9de420c2007-01-10 09:28:01 +0000593 G.netfd = create_and_connect_stream_or_die(host, port);
Eric Andersen28c70b32000-06-14 20:42:57 +0000594
Denis Vlasenko703e2022007-01-22 14:12:08 +0000595 setsockopt(G.netfd, SOL_SOCKET, SO_KEEPALIVE, &const_int_1, sizeof(const_int_1));
Eric Andersen28c70b32000-06-14 20:42:57 +0000596
597 signal(SIGINT, fgotsig);
598
599#ifdef USE_POLL
600 ufds[0].fd = 0; ufds[1].fd = G.netfd;
601 ufds[0].events = ufds[1].events = POLLIN;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000602#else
Eric Andersen28c70b32000-06-14 20:42:57 +0000603 FD_ZERO(&readfds);
604 FD_SET(0, &readfds);
605 FD_SET(G.netfd, &readfds);
606 maxfd = G.netfd + 1;
607#endif
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000608
Denis Vlasenko9de420c2007-01-10 09:28:01 +0000609 while (1) {
Eric Andersen28c70b32000-06-14 20:42:57 +0000610#ifndef USE_POLL
611 fd_set rfds = readfds;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000612
Eric Andersen28c70b32000-06-14 20:42:57 +0000613 switch (select(maxfd, &rfds, NULL, NULL, NULL))
614#else
615 switch (poll(ufds, 2, -1))
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000616#endif
Eric Andersen28c70b32000-06-14 20:42:57 +0000617 {
618 case 0:
619 /* timeout */
620 case -1:
621 /* error, ignore and/or log something, bay go to loop */
622 if (G.gotsig)
623 conescape();
624 else
625 sleep(1);
626 break;
627 default:
628
629#ifdef USE_POLL
630 if (ufds[0].revents) /* well, should check POLLIN, but ... */
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000631#else
Eric Andersen28c70b32000-06-14 20:42:57 +0000632 if (FD_ISSET(0, &rfds))
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000633#endif
Eric Andersen28c70b32000-06-14 20:42:57 +0000634 {
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000635 len = read(0, G.buf, DATABUFSIZE);
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000636 if (len <= 0)
Eric Andersen28c70b32000-06-14 20:42:57 +0000637 doexit(0);
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000638 TRACE(0, ("Read con: %d\n", len));
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000639 handlenetoutput(len);
Eric Andersen28c70b32000-06-14 20:42:57 +0000640 }
641
642#ifdef USE_POLL
643 if (ufds[1].revents) /* well, should check POLLIN, but ... */
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000644#else
Eric Andersen28c70b32000-06-14 20:42:57 +0000645 if (FD_ISSET(G.netfd, &rfds))
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000646#endif
Eric Andersen28c70b32000-06-14 20:42:57 +0000647 {
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000648 len = read(G.netfd, G.buf, DATABUFSIZE);
Denis Vlasenko9de420c2007-01-10 09:28:01 +0000649 if (len <= 0) {
Denis Vlasenkof24cdf12007-03-19 14:47:09 +0000650 write_str(1, "Connection closed by foreign host\r\n");
Eric Andersen28c70b32000-06-14 20:42:57 +0000651 doexit(1);
652 }
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000653 TRACE(0, ("Read netfd (%d): %d\n", G.netfd, len));
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000654 handlenetinput(len);
Eric Andersen28c70b32000-06-14 20:42:57 +0000655 }
656 }
657 }
658}