2000-06-15 02:12:57 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2000-02-22 22:47:45 +05:30
|
|
|
/*
|
2000-06-15 02:12:57 +05:30
|
|
|
* telnet implementation for busybox
|
2000-02-22 22:47:45 +05:30
|
|
|
*
|
2000-06-15 02:12:57 +05:30
|
|
|
* Author: Tomi Ollila <too@iki.fi>
|
|
|
|
* Copyright (C) 1994-2000 by Tomi Ollila
|
|
|
|
*
|
|
|
|
* Created: Thu Apr 7 13:29:41 1994 too
|
|
|
|
* Last modified: Fri Jun 9 14:34:24 2000 too
|
2000-02-22 22:47:45 +05:30
|
|
|
*
|
2005-10-28 14:54:33 +05:30
|
|
|
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
2000-02-22 22:47:45 +05:30
|
|
|
*
|
2000-06-15 02:12:57 +05:30
|
|
|
* HISTORY
|
|
|
|
* Revision 3.1 1994/04/17 11:31:54 too
|
|
|
|
* initial revision
|
2003-07-15 02:51:08 +05:30
|
|
|
* Modified 2000/06/13 for inclusion into BusyBox by Erik Andersen <andersen@codepoet.org>
|
2001-05-07 23:27:45 +05:30
|
|
|
* Modified 2001/05/07 to add ability to pass TTYPE to remote host by Jim McQuillan
|
|
|
|
* <jam@ltsp.org>
|
2004-02-22 17:55:47 +05:30
|
|
|
* Modified 2004/02/11 to add ability to pass the USER variable to remote host
|
|
|
|
* by Fernando Silveira <swrh@gmx.net>
|
2000-02-22 22:47:45 +05:30
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2000-06-15 02:12:57 +05:30
|
|
|
#include <arpa/telnet.h>
|
|
|
|
#include <netinet/in.h>
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2000-06-15 02:12:57 +05:30
|
|
|
|
2000-07-29 01:08:27 +05:30
|
|
|
#ifdef DOTRACE
|
2000-06-15 02:12:57 +05:30
|
|
|
#define TRACE(x, y) do { if (x) printf y; } while (0)
|
|
|
|
#else
|
2004-03-15 13:59:22 +05:30
|
|
|
#define TRACE(x, y)
|
2000-06-15 02:12:57 +05:30
|
|
|
#endif
|
|
|
|
|
2006-03-11 00:52:06 +05:30
|
|
|
enum {
|
2007-03-19 20:17:09 +05:30
|
|
|
DATABUFSIZE = 128,
|
|
|
|
IACBUFSIZE = 128,
|
|
|
|
|
2006-03-11 00:52:06 +05:30
|
|
|
CHM_TRY = 0,
|
|
|
|
CHM_ON = 1,
|
|
|
|
CHM_OFF = 2,
|
2000-06-15 02:12:57 +05:30
|
|
|
|
2006-03-11 00:52:06 +05:30
|
|
|
UF_ECHO = 0x01,
|
|
|
|
UF_SGA = 0x02,
|
2000-06-15 02:12:57 +05:30
|
|
|
|
2001-01-24 04:00:04 +05:30
|
|
|
TS_0 = 1,
|
|
|
|
TS_IAC = 2,
|
|
|
|
TS_OPT = 3,
|
|
|
|
TS_SUB1 = 4,
|
|
|
|
TS_SUB2 = 5,
|
|
|
|
};
|
2000-06-15 02:12:57 +05:30
|
|
|
|
|
|
|
typedef unsigned char byte;
|
|
|
|
|
2008-07-21 14:52:28 +05:30
|
|
|
enum { netfd = 3 };
|
|
|
|
|
2007-03-19 20:17:09 +05:30
|
|
|
struct globals {
|
2008-07-21 14:52:28 +05:30
|
|
|
int iaclen; /* could even use byte, but it's a loss on x86 */
|
2000-06-15 02:12:57 +05:30
|
|
|
byte telstate; /* telnet negotiation state from network input */
|
|
|
|
byte telwish; /* DO, DONT, WILL, WONT */
|
|
|
|
byte charmode;
|
|
|
|
byte telflags;
|
2005-07-21 01:25:19 +05:30
|
|
|
byte do_termios;
|
2007-03-19 20:17:09 +05:30
|
|
|
#if ENABLE_FEATURE_TELNET_TTYPE
|
|
|
|
char *ttype;
|
|
|
|
#endif
|
|
|
|
#if ENABLE_FEATURE_TELNET_AUTOLOGIN
|
|
|
|
const char *autologin;
|
|
|
|
#endif
|
|
|
|
#if ENABLE_FEATURE_AUTOWIDTH
|
2008-05-19 03:58:26 +05:30
|
|
|
unsigned win_width, win_height;
|
2007-03-19 20:17:09 +05:30
|
|
|
#endif
|
|
|
|
/* same buffer used both for network and console read/write */
|
2007-03-19 20:22:26 +05:30
|
|
|
char buf[DATABUFSIZE];
|
|
|
|
/* buffer to handle telnet negotiations */
|
2001-06-26 07:36:08 +05:30
|
|
|
char iacbuf[IACBUFSIZE];
|
2004-03-15 13:59:22 +05:30
|
|
|
struct termios termios_def;
|
|
|
|
struct termios termios_raw;
|
2007-03-19 20:17:09 +05:30
|
|
|
};
|
2007-06-04 04:00:22 +05:30
|
|
|
#define G (*(struct globals*)&bb_common_bufsiz1)
|
2007-06-04 15:46:52 +05:30
|
|
|
void BUG_telnet_globals_too_big(void);
|
|
|
|
#define INIT_G() do { \
|
|
|
|
if (sizeof(G) > COMMON_BUFSIZE) \
|
|
|
|
BUG_telnet_globals_too_big(); \
|
|
|
|
/* memset(&G, 0, sizeof G); - already is */ \
|
|
|
|
} while (0)
|
2000-06-15 02:12:57 +05:30
|
|
|
|
|
|
|
/* Function prototypes */
|
2001-11-10 16:52:46 +05:30
|
|
|
static void rawmode(void);
|
|
|
|
static void cookmode(void);
|
|
|
|
static void do_linemode(void);
|
|
|
|
static void will_charmode(void);
|
2000-06-15 02:12:57 +05:30
|
|
|
static void telopt(byte c);
|
|
|
|
static int subneg(byte c);
|
|
|
|
|
2008-11-11 08:26:39 +05:30
|
|
|
static void iac_flush(void)
|
2007-03-19 20:17:09 +05:30
|
|
|
{
|
2008-07-21 14:52:28 +05:30
|
|
|
write(netfd, G.iacbuf, G.iaclen);
|
2007-03-19 20:17:09 +05:30
|
|
|
G.iaclen = 0;
|
|
|
|
}
|
2004-02-22 17:55:47 +05:30
|
|
|
|
2007-03-19 20:17:09 +05:30
|
|
|
#define write_str(fd, str) write(fd, str, sizeof(str) - 1)
|
2002-04-26 12:50:47 +05:30
|
|
|
|
2008-07-05 14:48:54 +05:30
|
|
|
static void doexit(int ev) NORETURN;
|
2007-03-19 20:22:26 +05:30
|
|
|
static void doexit(int ev)
|
2000-06-15 02:12:57 +05:30
|
|
|
{
|
|
|
|
cookmode();
|
|
|
|
exit(ev);
|
2004-03-15 13:59:22 +05:30
|
|
|
}
|
2000-06-15 02:12:57 +05:30
|
|
|
|
2008-11-11 08:26:39 +05:30
|
|
|
static void con_escape(void)
|
2000-06-15 02:12:57 +05:30
|
|
|
{
|
|
|
|
char b;
|
|
|
|
|
2008-11-11 08:26:39 +05:30
|
|
|
if (bb_got_signal) /* came from line mode... go raw */
|
2000-06-15 02:12:57 +05:30
|
|
|
rawmode();
|
|
|
|
|
2007-03-19 20:17:09 +05:30
|
|
|
write_str(1, "\r\nConsole escape. Commands are:\r\n\n"
|
2000-06-15 02:12:57 +05:30
|
|
|
" l go to line mode\r\n"
|
|
|
|
" c go to character mode\r\n"
|
|
|
|
" z suspend telnet\r\n"
|
|
|
|
" e exit telnet\r\n");
|
|
|
|
|
2008-05-19 15:18:17 +05:30
|
|
|
if (read(STDIN_FILENO, &b, 1) <= 0)
|
2008-05-19 14:59:47 +05:30
|
|
|
doexit(EXIT_FAILURE);
|
2000-06-15 02:12:57 +05:30
|
|
|
|
2007-03-19 20:17:09 +05:30
|
|
|
switch (b) {
|
2000-06-15 02:12:57 +05:30
|
|
|
case 'l':
|
2008-09-12 01:21:11 +05:30
|
|
|
if (!bb_got_signal) {
|
2000-06-15 02:12:57 +05:30
|
|
|
do_linemode();
|
2008-11-11 08:26:39 +05:30
|
|
|
goto ret;
|
2000-06-15 02:12:57 +05:30
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'c':
|
2008-09-12 01:21:11 +05:30
|
|
|
if (bb_got_signal) {
|
2000-06-15 02:12:57 +05:30
|
|
|
will_charmode();
|
2008-11-11 08:26:39 +05:30
|
|
|
goto ret;
|
2000-06-15 02:12:57 +05:30
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'z':
|
|
|
|
cookmode();
|
|
|
|
kill(0, SIGTSTP);
|
|
|
|
rawmode();
|
|
|
|
break;
|
|
|
|
case 'e':
|
2008-05-19 14:59:47 +05:30
|
|
|
doexit(EXIT_SUCCESS);
|
2000-06-15 02:12:57 +05:30
|
|
|
}
|
|
|
|
|
2007-03-19 20:17:09 +05:30
|
|
|
write_str(1, "continuing...\r\n");
|
2000-06-15 02:12:57 +05:30
|
|
|
|
2008-09-12 01:21:11 +05:30
|
|
|
if (bb_got_signal)
|
2000-06-15 02:12:57 +05:30
|
|
|
cookmode();
|
2008-11-11 08:26:39 +05:30
|
|
|
ret:
|
2008-09-12 01:21:11 +05:30
|
|
|
bb_got_signal = 0;
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2000-06-15 02:12:57 +05:30
|
|
|
}
|
2007-03-19 20:22:26 +05:30
|
|
|
|
2008-11-11 08:26:39 +05:30
|
|
|
static void handle_net_output(int len)
|
2000-02-22 22:47:45 +05:30
|
|
|
{
|
2007-11-06 07:53:39 +05:30
|
|
|
/* here we could do smart tricks how to handle 0xFF:s in output
|
|
|
|
* stream like writing twice every sequence of FF:s (thus doing
|
|
|
|
* many write()s. But I think interactive telnet application does
|
|
|
|
* not need to be 100% 8-bit clean, so changing every 0xff:s to
|
|
|
|
* 0x7f:s
|
2002-04-26 12:50:47 +05:30
|
|
|
*
|
2007-11-06 07:53:39 +05:30
|
|
|
* 2002-mar-21, Przemyslaw Czerpak (druzus@polbox.com)
|
|
|
|
* I don't agree.
|
|
|
|
* first - I cannot use programs like sz/rz
|
|
|
|
* second - the 0x0D is sent as one character and if the next
|
|
|
|
* char is 0x0A then it's eaten by a server side.
|
2008-11-11 08:26:39 +05:30
|
|
|
* third - why do you have to make 'many write()s'?
|
2007-11-06 07:53:39 +05:30
|
|
|
* I don't understand.
|
2008-11-11 08:26:39 +05:30
|
|
|
* So I implemented it. It's really useful for me. I hope that
|
|
|
|
* other people will find it interesting too.
|
2002-04-26 12:50:47 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
int i, j;
|
2008-11-11 08:26:39 +05:30
|
|
|
byte *p = (byte*)G.buf;
|
2002-04-26 12:50:47 +05:30
|
|
|
byte outbuf[4*DATABUFSIZE];
|
2000-06-15 02:12:57 +05:30
|
|
|
|
2007-11-06 07:53:39 +05:30
|
|
|
for (i = len, j = 0; i > 0; i--, p++) {
|
|
|
|
if (*p == 0x1d) {
|
2008-11-11 08:26:39 +05:30
|
|
|
con_escape();
|
2000-06-15 02:12:57 +05:30
|
|
|
return;
|
|
|
|
}
|
2002-04-26 12:50:47 +05:30
|
|
|
outbuf[j++] = *p;
|
2000-06-15 02:12:57 +05:30
|
|
|
if (*p == 0xff)
|
2006-10-04 01:26:34 +05:30
|
|
|
outbuf[j++] = 0xff;
|
2002-04-26 12:50:47 +05:30
|
|
|
else if (*p == 0x0d)
|
2006-10-04 01:26:34 +05:30
|
|
|
outbuf[j++] = 0x00;
|
2000-06-15 02:12:57 +05:30
|
|
|
}
|
2007-03-24 21:10:16 +05:30
|
|
|
if (j > 0)
|
2008-07-21 14:52:28 +05:30
|
|
|
write(netfd, outbuf, j);
|
2000-02-22 22:47:45 +05:30
|
|
|
}
|
|
|
|
|
2008-11-11 08:26:39 +05:30
|
|
|
static void handle_net_input(int len)
|
2000-02-22 22:47:45 +05:30
|
|
|
{
|
2000-06-15 02:12:57 +05:30
|
|
|
int i;
|
|
|
|
int cstart = 0;
|
|
|
|
|
2007-11-06 07:53:39 +05:30
|
|
|
for (i = 0; i < len; i++) {
|
2000-06-15 02:12:57 +05:30
|
|
|
byte c = G.buf[i];
|
|
|
|
|
2007-11-06 07:53:39 +05:30
|
|
|
if (G.telstate == 0) { /* most of the time state == 0 */
|
|
|
|
if (c == IAC) {
|
2000-06-15 02:12:57 +05:30
|
|
|
cstart = i;
|
|
|
|
G.telstate = TS_IAC;
|
2000-02-22 22:47:45 +05:30
|
|
|
}
|
2008-11-11 08:26:39 +05:30
|
|
|
continue;
|
|
|
|
}
|
|
|
|
switch (G.telstate) {
|
|
|
|
case TS_0:
|
|
|
|
if (c == IAC)
|
|
|
|
G.telstate = TS_IAC;
|
|
|
|
else
|
|
|
|
G.buf[cstart++] = c;
|
|
|
|
break;
|
2007-11-06 07:53:39 +05:30
|
|
|
|
2008-11-11 08:26:39 +05:30
|
|
|
case TS_IAC:
|
|
|
|
if (c == IAC) { /* IAC IAC -> 0xFF */
|
|
|
|
G.buf[cstart++] = c;
|
2007-11-06 07:53:39 +05:30
|
|
|
G.telstate = TS_0;
|
|
|
|
break;
|
2008-11-11 08:26:39 +05:30
|
|
|
}
|
|
|
|
/* else */
|
|
|
|
switch (c) {
|
|
|
|
case SB:
|
|
|
|
G.telstate = TS_SUB1;
|
|
|
|
break;
|
|
|
|
case DO:
|
|
|
|
case DONT:
|
|
|
|
case WILL:
|
|
|
|
case WONT:
|
|
|
|
G.telwish = c;
|
|
|
|
G.telstate = TS_OPT;
|
2007-11-06 07:53:39 +05:30
|
|
|
break;
|
2008-11-11 08:26:39 +05:30
|
|
|
default:
|
|
|
|
G.telstate = TS_0; /* DATA MARK must be added later */
|
2007-11-06 07:53:39 +05:30
|
|
|
}
|
2008-11-11 08:26:39 +05:30
|
|
|
break;
|
|
|
|
case TS_OPT: /* WILL, WONT, DO, DONT */
|
|
|
|
telopt(c);
|
|
|
|
G.telstate = TS_0;
|
|
|
|
break;
|
|
|
|
case TS_SUB1: /* Subnegotiation */
|
|
|
|
case TS_SUB2: /* Subnegotiation */
|
|
|
|
if (subneg(c))
|
|
|
|
G.telstate = TS_0;
|
|
|
|
break;
|
|
|
|
}
|
2000-02-22 22:47:45 +05:30
|
|
|
}
|
2007-11-06 07:53:39 +05:30
|
|
|
if (G.telstate) {
|
2008-11-11 08:26:39 +05:30
|
|
|
if (G.iaclen)
|
|
|
|
iac_flush();
|
|
|
|
if (G.telstate == TS_0)
|
|
|
|
G.telstate = 0;
|
2001-06-26 07:36:08 +05:30
|
|
|
len = cstart;
|
2000-06-15 02:12:57 +05:30
|
|
|
}
|
|
|
|
|
2001-06-26 07:36:08 +05:30
|
|
|
if (len)
|
2008-05-19 15:18:17 +05:30
|
|
|
write(STDOUT_FILENO, G.buf, len);
|
2000-02-22 22:47:45 +05:30
|
|
|
}
|
|
|
|
|
2008-11-11 08:26:39 +05:30
|
|
|
static void put_iac(int c)
|
2000-02-22 22:47:45 +05:30
|
|
|
{
|
2000-06-15 02:12:57 +05:30
|
|
|
G.iacbuf[G.iaclen++] = c;
|
2000-02-22 22:47:45 +05:30
|
|
|
}
|
|
|
|
|
2008-11-11 08:26:39 +05:30
|
|
|
static void put_iac2(byte wwdd, byte c)
|
2000-02-22 22:47:45 +05:30
|
|
|
{
|
2000-06-15 02:12:57 +05:30
|
|
|
if (G.iaclen + 3 > IACBUFSIZE)
|
2008-11-11 08:26:39 +05:30
|
|
|
iac_flush();
|
2000-06-15 02:12:57 +05:30
|
|
|
|
2008-11-11 08:26:39 +05:30
|
|
|
put_iac(IAC);
|
|
|
|
put_iac(wwdd);
|
|
|
|
put_iac(c);
|
2000-06-15 02:12:57 +05:30
|
|
|
}
|
|
|
|
|
2007-03-19 20:17:09 +05:30
|
|
|
#if ENABLE_FEATURE_TELNET_TTYPE
|
2008-11-11 08:26:39 +05:30
|
|
|
static void put_iac_subopt(byte c, char *str)
|
2001-05-07 23:27:45 +05:30
|
|
|
{
|
2008-11-11 08:26:39 +05:30
|
|
|
int len = strlen(str) + 6; // ( 2 + 1 + 1 + strlen + 2 )
|
2001-05-07 23:27:45 +05:30
|
|
|
|
|
|
|
if (G.iaclen + len > IACBUFSIZE)
|
2008-11-11 08:26:39 +05:30
|
|
|
iac_flush();
|
2001-05-07 23:27:45 +05:30
|
|
|
|
2008-11-11 08:26:39 +05:30
|
|
|
put_iac(IAC);
|
|
|
|
put_iac(SB);
|
|
|
|
put_iac(c);
|
|
|
|
put_iac(0);
|
2001-05-07 23:27:45 +05:30
|
|
|
|
2006-12-26 16:12:51 +05:30
|
|
|
while (*str)
|
2008-11-11 08:26:39 +05:30
|
|
|
put_iac(*str++);
|
2001-05-07 23:27:45 +05:30
|
|
|
|
2008-11-11 08:26:39 +05:30
|
|
|
put_iac(IAC);
|
|
|
|
put_iac(SE);
|
2001-05-07 23:27:45 +05:30
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2007-03-19 20:17:09 +05:30
|
|
|
#if ENABLE_FEATURE_TELNET_AUTOLOGIN
|
2008-11-11 08:26:39 +05:30
|
|
|
static void put_iac_subopt_autologin(void)
|
2004-02-22 17:55:47 +05:30
|
|
|
{
|
2007-03-19 20:17:09 +05:30
|
|
|
int len = strlen(G.autologin) + 6; // (2 + 1 + 1 + strlen + 2)
|
2007-01-30 04:21:25 +05:30
|
|
|
const char *user = "USER";
|
2004-02-22 17:55:47 +05:30
|
|
|
|
|
|
|
if (G.iaclen + len > IACBUFSIZE)
|
2008-11-11 08:26:39 +05:30
|
|
|
iac_flush();
|
2004-02-22 17:55:47 +05:30
|
|
|
|
2008-11-11 08:26:39 +05:30
|
|
|
put_iac(IAC);
|
|
|
|
put_iac(SB);
|
|
|
|
put_iac(TELOPT_NEW_ENVIRON);
|
|
|
|
put_iac(TELQUAL_IS);
|
|
|
|
put_iac(NEW_ENV_VAR);
|
2004-02-22 17:55:47 +05:30
|
|
|
|
2006-12-26 16:12:51 +05:30
|
|
|
while (*user)
|
2008-11-11 08:26:39 +05:30
|
|
|
put_iac(*user++);
|
2004-02-22 17:55:47 +05:30
|
|
|
|
2008-11-11 08:26:39 +05:30
|
|
|
put_iac(NEW_ENV_VALUE);
|
2004-02-22 17:55:47 +05:30
|
|
|
|
2007-03-19 20:17:09 +05:30
|
|
|
while (*G.autologin)
|
2008-11-11 08:26:39 +05:30
|
|
|
put_iac(*G.autologin++);
|
2004-02-22 17:55:47 +05:30
|
|
|
|
2008-11-11 08:26:39 +05:30
|
|
|
put_iac(IAC);
|
|
|
|
put_iac(SE);
|
2004-02-22 17:55:47 +05:30
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2007-03-19 20:17:09 +05:30
|
|
|
#if ENABLE_FEATURE_AUTOWIDTH
|
2008-11-11 08:26:39 +05:30
|
|
|
static void put_iac_naws(byte c, int x, int y)
|
2002-04-26 12:50:47 +05:30
|
|
|
{
|
|
|
|
if (G.iaclen + 9 > IACBUFSIZE)
|
2008-11-11 08:26:39 +05:30
|
|
|
iac_flush();
|
2002-04-26 12:50:47 +05:30
|
|
|
|
2008-11-11 08:26:39 +05:30
|
|
|
put_iac(IAC);
|
|
|
|
put_iac(SB);
|
|
|
|
put_iac(c);
|
2002-04-26 12:50:47 +05:30
|
|
|
|
2008-11-11 08:26:39 +05:30
|
|
|
put_iac((x >> 8) & 0xff);
|
|
|
|
put_iac(x & 0xff);
|
|
|
|
put_iac((y >> 8) & 0xff);
|
|
|
|
put_iac(y & 0xff);
|
2002-04-26 12:50:47 +05:30
|
|
|
|
2008-11-11 08:26:39 +05:30
|
|
|
put_iac(IAC);
|
|
|
|
put_iac(SE);
|
2002-04-26 12:50:47 +05:30
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2007-08-13 02:28:27 +05:30
|
|
|
static char const escapecharis[] ALIGN1 = "\r\nEscape character is ";
|
2000-06-15 02:12:57 +05:30
|
|
|
|
2001-11-10 16:52:46 +05:30
|
|
|
static void setConMode(void)
|
2000-06-15 02:12:57 +05:30
|
|
|
{
|
2007-03-19 20:22:26 +05:30
|
|
|
if (G.telflags & UF_ECHO) {
|
2000-06-15 02:12:57 +05:30
|
|
|
if (G.charmode == CHM_TRY) {
|
|
|
|
G.charmode = CHM_ON;
|
2001-01-18 08:27:08 +05:30
|
|
|
printf("\r\nEntering character mode%s'^]'.\r\n", escapecharis);
|
2000-06-15 02:12:57 +05:30
|
|
|
rawmode();
|
|
|
|
}
|
2007-03-19 20:22:26 +05:30
|
|
|
} else {
|
2000-06-15 02:12:57 +05:30
|
|
|
if (G.charmode != CHM_OFF) {
|
|
|
|
G.charmode = CHM_OFF;
|
2001-01-18 08:27:08 +05:30
|
|
|
printf("\r\nEntering line mode%s'^C'.\r\n", escapecharis);
|
2000-06-15 02:12:57 +05:30
|
|
|
cookmode();
|
2000-02-22 22:47:45 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-11-10 16:52:46 +05:30
|
|
|
static void will_charmode(void)
|
2000-02-22 22:47:45 +05:30
|
|
|
{
|
2000-06-15 02:12:57 +05:30
|
|
|
G.charmode = CHM_TRY;
|
|
|
|
G.telflags |= (UF_ECHO | UF_SGA);
|
|
|
|
setConMode();
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2008-11-11 08:26:39 +05:30
|
|
|
put_iac2(DO, TELOPT_ECHO);
|
|
|
|
put_iac2(DO, TELOPT_SGA);
|
|
|
|
iac_flush();
|
2000-06-15 02:12:57 +05:30
|
|
|
}
|
|
|
|
|
2001-11-10 16:52:46 +05:30
|
|
|
static void do_linemode(void)
|
2000-06-15 02:12:57 +05:30
|
|
|
{
|
|
|
|
G.charmode = CHM_TRY;
|
|
|
|
G.telflags &= ~(UF_ECHO | UF_SGA);
|
|
|
|
setConMode();
|
|
|
|
|
2008-11-11 08:26:39 +05:30
|
|
|
put_iac2(DONT, TELOPT_ECHO);
|
|
|
|
put_iac2(DONT, TELOPT_SGA);
|
|
|
|
iac_flush();
|
2000-06-15 02:12:57 +05:30
|
|
|
}
|
|
|
|
|
2006-08-30 01:11:06 +05:30
|
|
|
static void to_notsup(char c)
|
2000-06-15 02:12:57 +05:30
|
|
|
{
|
2007-03-19 20:17:09 +05:30
|
|
|
if (G.telwish == WILL)
|
2008-11-11 08:26:39 +05:30
|
|
|
put_iac2(DONT, c);
|
2007-03-19 20:17:09 +05:30
|
|
|
else if (G.telwish == DO)
|
2008-11-11 08:26:39 +05:30
|
|
|
put_iac2(WONT, c);
|
2000-06-15 02:12:57 +05:30
|
|
|
}
|
|
|
|
|
2006-08-30 01:11:06 +05:30
|
|
|
static void to_echo(void)
|
2000-06-15 02:12:57 +05:30
|
|
|
{
|
|
|
|
/* if server requests ECHO, don't agree */
|
2007-03-19 20:17:09 +05:30
|
|
|
if (G.telwish == DO) {
|
2008-11-11 08:26:39 +05:30
|
|
|
put_iac2(WONT, TELOPT_ECHO);
|
2007-03-19 20:17:09 +05:30
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (G.telwish == DONT)
|
|
|
|
return;
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2007-03-19 20:17:09 +05:30
|
|
|
if (G.telflags & UF_ECHO) {
|
2000-06-15 02:12:57 +05:30
|
|
|
if (G.telwish == WILL)
|
|
|
|
return;
|
2007-03-19 20:17:09 +05:30
|
|
|
} else if (G.telwish == WONT)
|
|
|
|
return;
|
2000-06-15 02:12:57 +05:30
|
|
|
|
|
|
|
if (G.charmode != CHM_OFF)
|
|
|
|
G.telflags ^= UF_ECHO;
|
|
|
|
|
|
|
|
if (G.telflags & UF_ECHO)
|
2008-11-11 08:26:39 +05:30
|
|
|
put_iac2(DO, TELOPT_ECHO);
|
2000-06-15 02:12:57 +05:30
|
|
|
else
|
2008-11-11 08:26:39 +05:30
|
|
|
put_iac2(DONT, TELOPT_ECHO);
|
2000-06-15 02:12:57 +05:30
|
|
|
|
|
|
|
setConMode();
|
2007-03-19 20:17:09 +05:30
|
|
|
write_str(1, "\r\n"); /* sudden modec */
|
2000-02-22 22:47:45 +05:30
|
|
|
}
|
|
|
|
|
2006-08-30 01:11:06 +05:30
|
|
|
static void to_sga(void)
|
2000-02-22 22:47:45 +05:30
|
|
|
{
|
2000-06-15 02:12:57 +05:30
|
|
|
/* daemon always sends will/wont, client do/dont */
|
|
|
|
|
2007-03-19 20:17:09 +05:30
|
|
|
if (G.telflags & UF_SGA) {
|
2000-06-15 02:12:57 +05:30
|
|
|
if (G.telwish == WILL)
|
|
|
|
return;
|
2007-03-19 20:17:09 +05:30
|
|
|
} else if (G.telwish == WONT)
|
|
|
|
return;
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2007-11-06 07:53:39 +05:30
|
|
|
G.telflags ^= UF_SGA; /* toggle */
|
|
|
|
if (G.telflags & UF_SGA)
|
2008-11-11 08:26:39 +05:30
|
|
|
put_iac2(DO, TELOPT_SGA);
|
2000-06-15 02:12:57 +05:30
|
|
|
else
|
2008-11-11 08:26:39 +05:30
|
|
|
put_iac2(DONT, TELOPT_SGA);
|
2000-02-22 22:47:45 +05:30
|
|
|
}
|
|
|
|
|
2007-03-19 20:17:09 +05:30
|
|
|
#if ENABLE_FEATURE_TELNET_TTYPE
|
2006-08-30 01:11:06 +05:30
|
|
|
static void to_ttype(void)
|
2001-05-07 23:27:45 +05:30
|
|
|
{
|
|
|
|
/* Tell server we will (or won't) do TTYPE */
|
|
|
|
|
2007-03-19 20:17:09 +05:30
|
|
|
if (G.ttype)
|
2008-11-11 08:26:39 +05:30
|
|
|
put_iac2(WILL, TELOPT_TTYPE);
|
2001-05-07 23:27:45 +05:30
|
|
|
else
|
2008-11-11 08:26:39 +05:30
|
|
|
put_iac2(WONT, TELOPT_TTYPE);
|
2001-05-07 23:27:45 +05:30
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2007-03-19 20:17:09 +05:30
|
|
|
#if ENABLE_FEATURE_TELNET_AUTOLOGIN
|
2006-08-30 01:11:06 +05:30
|
|
|
static void to_new_environ(void)
|
2004-02-22 17:55:47 +05:30
|
|
|
{
|
|
|
|
/* Tell server we will (or will not) do AUTOLOGIN */
|
|
|
|
|
2007-03-19 20:17:09 +05:30
|
|
|
if (G.autologin)
|
2008-11-11 08:26:39 +05:30
|
|
|
put_iac2(WILL, TELOPT_NEW_ENVIRON);
|
2004-02-22 17:55:47 +05:30
|
|
|
else
|
2008-11-11 08:26:39 +05:30
|
|
|
put_iac2(WONT, TELOPT_NEW_ENVIRON);
|
2004-02-22 17:55:47 +05:30
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2007-03-19 20:17:09 +05:30
|
|
|
#if ENABLE_FEATURE_AUTOWIDTH
|
2006-08-30 01:11:06 +05:30
|
|
|
static void to_naws(void)
|
2004-03-15 13:59:22 +05:30
|
|
|
{
|
2002-04-26 12:50:47 +05:30
|
|
|
/* Tell server we will do NAWS */
|
2008-11-11 08:26:39 +05:30
|
|
|
put_iac2(WILL, TELOPT_NAWS);
|
2004-03-15 13:59:22 +05:30
|
|
|
}
|
2002-04-26 12:50:47 +05:30
|
|
|
#endif
|
|
|
|
|
2000-06-15 02:12:57 +05:30
|
|
|
static void telopt(byte c)
|
2000-02-22 22:47:45 +05:30
|
|
|
{
|
2007-03-11 19:13:10 +05:30
|
|
|
switch (c) {
|
|
|
|
case TELOPT_ECHO:
|
|
|
|
to_echo(); break;
|
|
|
|
case TELOPT_SGA:
|
|
|
|
to_sga(); break;
|
2007-03-19 20:17:09 +05:30
|
|
|
#if ENABLE_FEATURE_TELNET_TTYPE
|
2007-03-11 19:13:10 +05:30
|
|
|
case TELOPT_TTYPE:
|
|
|
|
to_ttype(); break;
|
2001-05-07 23:27:45 +05:30
|
|
|
#endif
|
2007-03-19 20:17:09 +05:30
|
|
|
#if ENABLE_FEATURE_TELNET_AUTOLOGIN
|
2007-03-11 19:13:10 +05:30
|
|
|
case TELOPT_NEW_ENVIRON:
|
|
|
|
to_new_environ(); break;
|
2004-02-22 17:55:47 +05:30
|
|
|
#endif
|
2007-03-19 20:17:09 +05:30
|
|
|
#if ENABLE_FEATURE_AUTOWIDTH
|
2007-03-11 19:13:10 +05:30
|
|
|
case TELOPT_NAWS:
|
|
|
|
to_naws();
|
2008-11-11 08:26:39 +05:30
|
|
|
put_iac_naws(c, G.win_width, G.win_height);
|
2007-03-11 19:13:10 +05:30
|
|
|
break;
|
2002-04-26 12:50:47 +05:30
|
|
|
#endif
|
2007-03-11 19:13:10 +05:30
|
|
|
default:
|
|
|
|
to_notsup(c);
|
|
|
|
break;
|
2000-02-22 22:47:45 +05:30
|
|
|
}
|
2000-06-15 02:12:57 +05:30
|
|
|
}
|
|
|
|
|
2002-04-26 12:50:47 +05:30
|
|
|
/* subnegotiation -- ignore all (except TTYPE,NAWS) */
|
2000-06-15 02:12:57 +05:30
|
|
|
static int subneg(byte c)
|
|
|
|
{
|
2007-03-19 20:17:09 +05:30
|
|
|
switch (G.telstate) {
|
2000-06-15 02:12:57 +05:30
|
|
|
case TS_SUB1:
|
|
|
|
if (c == IAC)
|
|
|
|
G.telstate = TS_SUB2;
|
2007-03-19 20:17:09 +05:30
|
|
|
#if ENABLE_FEATURE_TELNET_TTYPE
|
2001-05-07 23:27:45 +05:30
|
|
|
else
|
|
|
|
if (c == TELOPT_TTYPE)
|
2008-11-11 08:26:39 +05:30
|
|
|
put_iac_subopt(TELOPT_TTYPE, G.ttype);
|
2004-02-22 17:55:47 +05:30
|
|
|
#endif
|
2007-03-19 20:17:09 +05:30
|
|
|
#if ENABLE_FEATURE_TELNET_AUTOLOGIN
|
2004-02-22 17:55:47 +05:30
|
|
|
else
|
|
|
|
if (c == TELOPT_NEW_ENVIRON)
|
2008-11-11 08:26:39 +05:30
|
|
|
put_iac_subopt_autologin();
|
2001-05-07 23:27:45 +05:30
|
|
|
#endif
|
2000-06-15 02:12:57 +05:30
|
|
|
break;
|
|
|
|
case TS_SUB2:
|
|
|
|
if (c == SE)
|
|
|
|
return TRUE;
|
|
|
|
G.telstate = TS_SUB1;
|
|
|
|
/* break; */
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2001-11-10 16:52:46 +05:30
|
|
|
static void rawmode(void)
|
2000-06-15 02:12:57 +05:30
|
|
|
{
|
2007-03-19 20:22:26 +05:30
|
|
|
if (G.do_termios)
|
|
|
|
tcsetattr(0, TCSADRAIN, &G.termios_raw);
|
2004-03-15 13:59:22 +05:30
|
|
|
}
|
2000-06-15 02:12:57 +05:30
|
|
|
|
2001-11-10 16:52:46 +05:30
|
|
|
static void cookmode(void)
|
2000-06-15 02:12:57 +05:30
|
|
|
{
|
2007-03-19 20:22:26 +05:30
|
|
|
if (G.do_termios)
|
|
|
|
tcsetattr(0, TCSADRAIN, &G.termios_def);
|
2000-06-15 02:12:57 +05:30
|
|
|
}
|
|
|
|
|
2007-11-06 07:53:39 +05:30
|
|
|
/* poll gives smaller (-70 bytes) code */
|
|
|
|
#define USE_POLL 1
|
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int telnet_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-21 14:52:28 +05:30
|
|
|
int telnet_main(int argc UNUSED_PARAM, char **argv)
|
2000-06-15 02:12:57 +05:30
|
|
|
{
|
2007-01-10 14:58:01 +05:30
|
|
|
char *host;
|
|
|
|
int port;
|
2001-06-26 07:36:08 +05:30
|
|
|
int len;
|
2000-06-15 02:12:57 +05:30
|
|
|
#ifdef USE_POLL
|
|
|
|
struct pollfd ufds[2];
|
2004-03-15 13:59:22 +05:30
|
|
|
#else
|
2000-06-15 02:12:57 +05:30
|
|
|
fd_set readfds;
|
|
|
|
int maxfd;
|
2004-03-15 13:59:22 +05:30
|
|
|
#endif
|
2000-06-15 02:12:57 +05:30
|
|
|
|
2007-06-04 15:46:52 +05:30
|
|
|
INIT_G();
|
2002-04-26 12:50:47 +05:30
|
|
|
|
2007-03-19 20:17:09 +05:30
|
|
|
#if ENABLE_FEATURE_AUTOWIDTH
|
|
|
|
get_terminal_width_height(0, &G.win_width, &G.win_height);
|
2001-05-07 23:27:45 +05:30
|
|
|
#endif
|
2000-06-15 02:12:57 +05:30
|
|
|
|
2007-03-19 20:17:09 +05:30
|
|
|
#if ENABLE_FEATURE_TELNET_TTYPE
|
|
|
|
G.ttype = getenv("TERM");
|
|
|
|
#endif
|
2000-06-15 02:12:57 +05:30
|
|
|
|
2005-07-21 01:25:19 +05:30
|
|
|
if (tcgetattr(0, &G.termios_def) >= 0) {
|
|
|
|
G.do_termios = 1;
|
|
|
|
G.termios_raw = G.termios_def;
|
|
|
|
cfmakeraw(&G.termios_raw);
|
|
|
|
}
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2007-03-19 20:17:09 +05:30
|
|
|
#if ENABLE_FEATURE_TELNET_AUTOLOGIN
|
2007-08-18 21:02:12 +05:30
|
|
|
if (1 & getopt32(argv, "al:", &G.autologin))
|
2007-03-19 20:17:09 +05:30
|
|
|
G.autologin = getenv("USER");
|
2007-01-12 16:05:23 +05:30
|
|
|
argv += optind;
|
2004-02-22 17:55:47 +05:30
|
|
|
#else
|
2007-01-12 16:05:23 +05:30
|
|
|
argv++;
|
2004-02-22 17:55:47 +05:30
|
|
|
#endif
|
2007-01-12 16:05:23 +05:30
|
|
|
if (!*argv)
|
|
|
|
bb_show_usage();
|
|
|
|
host = *argv++;
|
|
|
|
port = bb_lookup_port(*argv ? *argv++ : "telnet", "tcp", 23);
|
|
|
|
if (*argv) /* extra params?? */
|
|
|
|
bb_show_usage();
|
|
|
|
|
2008-07-21 14:52:28 +05:30
|
|
|
xmove_fd(create_and_connect_stream_or_die(host, port), netfd);
|
2000-06-15 02:12:57 +05:30
|
|
|
|
2008-07-21 14:52:28 +05:30
|
|
|
setsockopt(netfd, SOL_SOCKET, SO_KEEPALIVE, &const_int_1, sizeof(const_int_1));
|
2000-06-15 02:12:57 +05:30
|
|
|
|
2008-09-12 01:21:11 +05:30
|
|
|
signal(SIGINT, record_signo);
|
2000-06-15 02:12:57 +05:30
|
|
|
|
|
|
|
#ifdef USE_POLL
|
2008-07-21 14:52:28 +05:30
|
|
|
ufds[0].fd = 0; ufds[1].fd = netfd;
|
2000-06-15 02:12:57 +05:30
|
|
|
ufds[0].events = ufds[1].events = POLLIN;
|
2004-03-15 13:59:22 +05:30
|
|
|
#else
|
2000-06-15 02:12:57 +05:30
|
|
|
FD_ZERO(&readfds);
|
2008-05-19 15:18:17 +05:30
|
|
|
FD_SET(STDIN_FILENO, &readfds);
|
2008-07-21 14:52:28 +05:30
|
|
|
FD_SET(netfd, &readfds);
|
|
|
|
maxfd = netfd + 1;
|
2000-06-15 02:12:57 +05:30
|
|
|
#endif
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2007-01-10 14:58:01 +05:30
|
|
|
while (1) {
|
2000-06-15 02:12:57 +05:30
|
|
|
#ifndef USE_POLL
|
|
|
|
fd_set rfds = readfds;
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2000-06-15 02:12:57 +05:30
|
|
|
switch (select(maxfd, &rfds, NULL, NULL, NULL))
|
|
|
|
#else
|
|
|
|
switch (poll(ufds, 2, -1))
|
2004-03-15 13:59:22 +05:30
|
|
|
#endif
|
2000-06-15 02:12:57 +05:30
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
/* timeout */
|
|
|
|
case -1:
|
|
|
|
/* error, ignore and/or log something, bay go to loop */
|
2008-09-12 01:21:11 +05:30
|
|
|
if (bb_got_signal)
|
2008-11-11 08:26:39 +05:30
|
|
|
con_escape();
|
2000-06-15 02:12:57 +05:30
|
|
|
else
|
|
|
|
sleep(1);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
|
|
|
|
#ifdef USE_POLL
|
|
|
|
if (ufds[0].revents) /* well, should check POLLIN, but ... */
|
2004-03-15 13:59:22 +05:30
|
|
|
#else
|
2008-05-19 15:18:17 +05:30
|
|
|
if (FD_ISSET(STDIN_FILENO, &rfds))
|
2004-03-15 13:59:22 +05:30
|
|
|
#endif
|
2000-06-15 02:12:57 +05:30
|
|
|
{
|
2008-05-19 15:18:17 +05:30
|
|
|
len = read(STDIN_FILENO, G.buf, DATABUFSIZE);
|
2001-06-26 07:36:08 +05:30
|
|
|
if (len <= 0)
|
2008-05-19 14:59:47 +05:30
|
|
|
doexit(EXIT_SUCCESS);
|
2001-06-26 07:36:08 +05:30
|
|
|
TRACE(0, ("Read con: %d\n", len));
|
2008-11-11 08:26:39 +05:30
|
|
|
handle_net_output(len);
|
2000-02-22 22:47:45 +05:30
|
|
|
}
|
2000-06-15 02:12:57 +05:30
|
|
|
|
|
|
|
#ifdef USE_POLL
|
|
|
|
if (ufds[1].revents) /* well, should check POLLIN, but ... */
|
2004-03-15 13:59:22 +05:30
|
|
|
#else
|
2008-07-21 14:52:28 +05:30
|
|
|
if (FD_ISSET(netfd, &rfds))
|
2004-03-15 13:59:22 +05:30
|
|
|
#endif
|
2000-06-15 02:12:57 +05:30
|
|
|
{
|
2008-07-21 14:52:28 +05:30
|
|
|
len = read(netfd, G.buf, DATABUFSIZE);
|
2007-01-10 14:58:01 +05:30
|
|
|
if (len <= 0) {
|
2007-03-19 20:17:09 +05:30
|
|
|
write_str(1, "Connection closed by foreign host\r\n");
|
2008-05-19 14:59:47 +05:30
|
|
|
doexit(EXIT_FAILURE);
|
2000-06-15 02:12:57 +05:30
|
|
|
}
|
2008-07-21 14:52:28 +05:30
|
|
|
TRACE(0, ("Read netfd (%d): %d\n", netfd, len));
|
2008-11-11 08:26:39 +05:30
|
|
|
handle_net_input(len);
|
2000-02-22 22:47:45 +05:30
|
|
|
}
|
|
|
|
}
|
2008-07-21 14:52:28 +05:30
|
|
|
} /* while (1) */
|
2000-02-22 22:47:45 +05:30
|
|
|
}
|