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
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
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 <termios.h>
|
2000-02-22 22:47:45 +05:30
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
2000-06-15 02:12:57 +05:30
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdarg.h>
|
2002-07-11 16:41:56 +05:30
|
|
|
#include <string.h>
|
2000-06-15 02:12:57 +05:30
|
|
|
#include <signal.h>
|
|
|
|
#include <arpa/telnet.h>
|
2000-02-22 22:47:45 +05:30
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
2000-06-15 02:12:57 +05:30
|
|
|
#include <netinet/in.h>
|
2001-02-20 11:44:08 +05:30
|
|
|
#include "busybox.h"
|
2000-06-15 02:12:57 +05:30
|
|
|
|
|
|
|
#if 0
|
2001-01-24 04:00:04 +05:30
|
|
|
static const int DOTRACE = 1;
|
2000-06-15 02:12:57 +05:30
|
|
|
#endif
|
|
|
|
|
2000-07-29 01:08:27 +05:30
|
|
|
#ifdef DOTRACE
|
2000-06-15 02:12:57 +05:30
|
|
|
#include <arpa/inet.h> /* for inet_ntoa()... */
|
|
|
|
#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
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
#define USE_POLL
|
|
|
|
#include <sys/poll.h>
|
|
|
|
#else
|
|
|
|
#include <sys/time.h>
|
|
|
|
#endif
|
|
|
|
|
2001-06-26 07:36:08 +05:30
|
|
|
#define DATABUFSIZE 128
|
|
|
|
#define IACBUFSIZE 128
|
2000-02-22 22:47:45 +05:30
|
|
|
|
2001-01-24 04:00:04 +05:30
|
|
|
static const int CHM_TRY = 0;
|
|
|
|
static const int CHM_ON = 1;
|
|
|
|
static const int CHM_OFF = 2;
|
2000-06-15 02:12:57 +05:30
|
|
|
|
2001-01-24 04:00:04 +05:30
|
|
|
static const int UF_ECHO = 0x01;
|
|
|
|
static const int UF_SGA = 0x02;
|
2000-06-15 02:12:57 +05:30
|
|
|
|
2001-01-24 04:00:04 +05:30
|
|
|
enum {
|
|
|
|
TS_0 = 1,
|
|
|
|
TS_IAC = 2,
|
|
|
|
TS_OPT = 3,
|
|
|
|
TS_SUB1 = 4,
|
|
|
|
TS_SUB2 = 5,
|
|
|
|
};
|
2000-06-15 02:12:57 +05:30
|
|
|
|
|
|
|
#define WriteCS(fd, str) write(fd, str, sizeof str -1)
|
|
|
|
|
|
|
|
typedef unsigned char byte;
|
|
|
|
|
|
|
|
/* use globals to reduce size ??? */ /* test this hypothesis later */
|
2001-03-20 05:19:41 +05:30
|
|
|
static struct Globalvars {
|
2000-06-15 02:12:57 +05:30
|
|
|
int netfd; /* console fd:s are 0 and 1 (and 2) */
|
|
|
|
/* same buffer used both for network and console read/write */
|
2001-06-26 07:36:08 +05:30
|
|
|
char buf[DATABUFSIZE]; /* allocating so static size is smaller */
|
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;
|
|
|
|
byte gotsig;
|
|
|
|
/* buffer to handle telnet negotiations */
|
2001-06-26 07:36:08 +05:30
|
|
|
char iacbuf[IACBUFSIZE];
|
2000-06-15 02:12:57 +05:30
|
|
|
short iaclen; /* could even use byte */
|
2004-03-15 13:59:22 +05:30
|
|
|
struct termios termios_def;
|
|
|
|
struct termios termios_raw;
|
2000-06-15 02:12:57 +05:30
|
|
|
} G;
|
|
|
|
|
|
|
|
#define xUSE_GLOBALVAR_PTR /* xUSE... -> don't use :D (makes smaller code) */
|
|
|
|
|
|
|
|
#ifdef USE_GLOBALVAR_PTR
|
|
|
|
struct Globalvars * Gptr;
|
|
|
|
#define G (*Gptr)
|
|
|
|
#endif
|
|
|
|
|
2001-11-10 16:52:46 +05:30
|
|
|
static inline void iacflush(void)
|
2000-06-15 02:12:57 +05:30
|
|
|
{
|
|
|
|
write(G.netfd, G.iacbuf, G.iaclen);
|
|
|
|
G.iaclen = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 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);
|
|
|
|
|
|
|
|
/* Some globals */
|
|
|
|
static int one = 1;
|
|
|
|
|
2001-10-24 10:30:29 +05:30
|
|
|
#ifdef CONFIG_FEATURE_TELNET_TTYPE
|
2001-05-07 23:27:45 +05:30
|
|
|
static char *ttype;
|
|
|
|
#endif
|
|
|
|
|
2004-02-22 17:55:47 +05:30
|
|
|
#ifdef CONFIG_FEATURE_TELNET_AUTOLOGIN
|
|
|
|
static char *autologin;
|
|
|
|
#endif
|
|
|
|
|
2002-04-26 12:50:47 +05:30
|
|
|
#ifdef CONFIG_FEATURE_AUTOWIDTH
|
|
|
|
static int win_width, win_height;
|
|
|
|
#endif
|
|
|
|
|
2000-06-15 02:12:57 +05:30
|
|
|
static void doexit(int ev)
|
|
|
|
{
|
|
|
|
cookmode();
|
|
|
|
exit(ev);
|
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 conescape(void)
|
2000-06-15 02:12:57 +05:30
|
|
|
{
|
|
|
|
char b;
|
|
|
|
|
|
|
|
if (G.gotsig) /* came from line mode... go raw */
|
|
|
|
rawmode();
|
|
|
|
|
|
|
|
WriteCS(1, "\r\nConsole escape. Commands are:\r\n\n"
|
|
|
|
" l go to line mode\r\n"
|
|
|
|
" c go to character mode\r\n"
|
|
|
|
" z suspend telnet\r\n"
|
|
|
|
" e exit telnet\r\n");
|
|
|
|
|
|
|
|
if (read(0, &b, 1) <= 0)
|
|
|
|
doexit(1);
|
|
|
|
|
|
|
|
switch (b)
|
|
|
|
{
|
|
|
|
case 'l':
|
|
|
|
if (!G.gotsig)
|
|
|
|
{
|
|
|
|
do_linemode();
|
|
|
|
goto rrturn;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
if (G.gotsig)
|
|
|
|
{
|
|
|
|
will_charmode();
|
|
|
|
goto rrturn;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'z':
|
|
|
|
cookmode();
|
|
|
|
kill(0, SIGTSTP);
|
|
|
|
rawmode();
|
|
|
|
break;
|
|
|
|
case 'e':
|
|
|
|
doexit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
WriteCS(1, "continuing...\r\n");
|
|
|
|
|
|
|
|
if (G.gotsig)
|
|
|
|
cookmode();
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2000-06-15 02:12:57 +05:30
|
|
|
rrturn:
|
|
|
|
G.gotsig = 0;
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2000-06-15 02:12:57 +05:30
|
|
|
}
|
2001-06-26 07:36:08 +05:30
|
|
|
static void handlenetoutput(int len)
|
2000-02-22 22:47:45 +05:30
|
|
|
{
|
2000-06-15 02:12:57 +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
|
2002-04-26 12:50:47 +05:30
|
|
|
* 0x7f:s
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* third - whay doy you have to make 'many write()s'?
|
|
|
|
* I don't understand.
|
|
|
|
* So I implemented it. It's realy useful for me. I hope that
|
|
|
|
* others people will find it interesting to.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int i, j;
|
2000-06-15 02:12:57 +05:30
|
|
|
byte * p = G.buf;
|
2002-04-26 12:50:47 +05:30
|
|
|
byte outbuf[4*DATABUFSIZE];
|
2000-06-15 02:12:57 +05:30
|
|
|
|
2002-04-26 12:50:47 +05:30
|
|
|
for (i = len, j = 0; i > 0; i--, p++)
|
2000-06-15 02:12:57 +05:30
|
|
|
{
|
|
|
|
if (*p == 0x1d)
|
|
|
|
{
|
|
|
|
conescape();
|
|
|
|
return;
|
|
|
|
}
|
2002-04-26 12:50:47 +05:30
|
|
|
outbuf[j++] = *p;
|
2000-06-15 02:12:57 +05:30
|
|
|
if (*p == 0xff)
|
2002-04-26 12:50:47 +05:30
|
|
|
outbuf[j++] = 0xff;
|
|
|
|
else if (*p == 0x0d)
|
|
|
|
outbuf[j++] = 0x00;
|
2000-06-15 02:12:57 +05:30
|
|
|
}
|
2002-04-26 12:50:47 +05:30
|
|
|
if (j > 0 )
|
|
|
|
write(G.netfd, outbuf, j);
|
2000-02-22 22:47:45 +05:30
|
|
|
}
|
|
|
|
|
2000-06-15 02:12:57 +05:30
|
|
|
|
2001-06-26 07:36:08 +05:30
|
|
|
static void handlenetinput(int len)
|
2000-02-22 22:47:45 +05:30
|
|
|
{
|
2000-06-15 02:12:57 +05:30
|
|
|
int i;
|
|
|
|
int cstart = 0;
|
|
|
|
|
2001-06-26 07:36:08 +05:30
|
|
|
for (i = 0; i < len; i++)
|
2000-06-15 02:12:57 +05:30
|
|
|
{
|
|
|
|
byte c = G.buf[i];
|
|
|
|
|
|
|
|
if (G.telstate == 0) /* most of the time state == 0 */
|
|
|
|
{
|
|
|
|
if (c == IAC)
|
|
|
|
{
|
|
|
|
cstart = i;
|
|
|
|
G.telstate = TS_IAC;
|
2000-02-22 22:47:45 +05:30
|
|
|
}
|
2000-06-15 02:12:57 +05:30
|
|
|
}
|
|
|
|
else
|
|
|
|
switch (G.telstate)
|
|
|
|
{
|
|
|
|
case TS_0:
|
|
|
|
if (c == IAC)
|
|
|
|
G.telstate = TS_IAC;
|
|
|
|
else
|
|
|
|
G.buf[cstart++] = c;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TS_IAC:
|
|
|
|
if (c == IAC) /* IAC IAC -> 0xFF */
|
|
|
|
{
|
|
|
|
G.buf[cstart++] = c;
|
|
|
|
G.telstate = TS_0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* 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;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G.telstate = TS_0; /* DATA MARK must be added later */
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case TS_OPT: /* WILL, WONT, DO, DONT */
|
|
|
|
telopt(c);
|
|
|
|
G.telstate = TS_0;
|
|
|
|
break;
|
|
|
|
case TS_SUB1: /* Subnegotiation */
|
|
|
|
case TS_SUB2: /* Subnegotiation */
|
2001-12-21 04:43:26 +05:30
|
|
|
if (subneg(c))
|
2000-06-15 02:12:57 +05:30
|
|
|
G.telstate = TS_0;
|
|
|
|
break;
|
|
|
|
}
|
2000-02-22 22:47:45 +05:30
|
|
|
}
|
2000-06-15 02:12:57 +05:30
|
|
|
if (G.telstate)
|
|
|
|
{
|
|
|
|
if (G.iaclen) iacflush();
|
|
|
|
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)
|
|
|
|
write(1, G.buf, len);
|
2000-02-22 22:47:45 +05:30
|
|
|
}
|
|
|
|
|
2000-06-15 02:12:57 +05:30
|
|
|
|
|
|
|
/* ******************************* */
|
|
|
|
|
|
|
|
static inline void putiac(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
|
|
|
}
|
|
|
|
|
2000-06-15 02:12:57 +05:30
|
|
|
|
|
|
|
static void putiac2(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)
|
|
|
|
iacflush();
|
|
|
|
|
|
|
|
putiac(IAC);
|
|
|
|
putiac(wwdd);
|
|
|
|
putiac(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
static void putiac1(byte c)
|
|
|
|
{
|
|
|
|
if (G.iaclen + 2 > IACBUFSIZE)
|
|
|
|
iacflush();
|
|
|
|
|
|
|
|
putiac(IAC);
|
|
|
|
putiac(c);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2001-10-24 10:30:29 +05:30
|
|
|
#ifdef CONFIG_FEATURE_TELNET_TTYPE
|
2001-05-07 23:27:45 +05:30
|
|
|
static void putiac_subopt(byte c, char *str)
|
|
|
|
{
|
|
|
|
int len = strlen(str) + 6; // ( 2 + 1 + 1 + strlen + 2 )
|
|
|
|
|
|
|
|
if (G.iaclen + len > IACBUFSIZE)
|
|
|
|
iacflush();
|
|
|
|
|
|
|
|
putiac(IAC);
|
|
|
|
putiac(SB);
|
|
|
|
putiac(c);
|
|
|
|
putiac(0);
|
|
|
|
|
|
|
|
while(*str)
|
|
|
|
putiac(*str++);
|
|
|
|
|
|
|
|
putiac(IAC);
|
|
|
|
putiac(SE);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-02-22 17:55:47 +05:30
|
|
|
#ifdef CONFIG_FEATURE_TELNET_AUTOLOGIN
|
|
|
|
static void putiac_subopt_autologin(void)
|
|
|
|
{
|
|
|
|
int len = strlen(autologin) + 6; // (2 + 1 + 1 + strlen + 2)
|
|
|
|
char *user = "USER";
|
|
|
|
|
|
|
|
if (G.iaclen + len > IACBUFSIZE)
|
|
|
|
iacflush();
|
|
|
|
|
|
|
|
putiac(IAC);
|
|
|
|
putiac(SB);
|
|
|
|
putiac(TELOPT_NEW_ENVIRON);
|
|
|
|
putiac(TELQUAL_IS);
|
|
|
|
putiac(NEW_ENV_VAR);
|
|
|
|
|
|
|
|
while(*user)
|
|
|
|
putiac(*user++);
|
|
|
|
|
|
|
|
putiac(NEW_ENV_VALUE);
|
|
|
|
|
|
|
|
while(*autologin)
|
|
|
|
putiac(*autologin++);
|
|
|
|
|
|
|
|
putiac(IAC);
|
|
|
|
putiac(SE);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-04-26 12:50:47 +05:30
|
|
|
#ifdef CONFIG_FEATURE_AUTOWIDTH
|
|
|
|
static void putiac_naws(byte c, int x, int y)
|
|
|
|
{
|
|
|
|
if (G.iaclen + 9 > IACBUFSIZE)
|
|
|
|
iacflush();
|
|
|
|
|
|
|
|
putiac(IAC);
|
|
|
|
putiac(SB);
|
|
|
|
putiac(c);
|
|
|
|
|
|
|
|
putiac((x >> 8) & 0xff);
|
|
|
|
putiac(x & 0xff);
|
|
|
|
putiac((y >> 8) & 0xff);
|
|
|
|
putiac(y & 0xff);
|
|
|
|
|
|
|
|
putiac(IAC);
|
|
|
|
putiac(SE);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2000-06-15 02:12:57 +05:30
|
|
|
/* void putiacstring (subneg strings) */
|
|
|
|
|
|
|
|
/* ******************************* */
|
|
|
|
|
2001-03-10 02:54:12 +05:30
|
|
|
static char const escapecharis[] = "\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
|
|
|
{
|
|
|
|
if (G.telflags & UF_ECHO)
|
|
|
|
{
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-06-15 02:12:57 +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
|
|
|
|
2000-06-15 02:12:57 +05:30
|
|
|
putiac2(DO, TELOPT_ECHO);
|
|
|
|
putiac2(DO, TELOPT_SGA);
|
|
|
|
iacflush();
|
|
|
|
}
|
|
|
|
|
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();
|
|
|
|
|
|
|
|
putiac2(DONT, TELOPT_ECHO);
|
|
|
|
putiac2(DONT, TELOPT_SGA);
|
|
|
|
iacflush();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ******************************* */
|
|
|
|
|
|
|
|
static inline void to_notsup(char c)
|
|
|
|
{
|
|
|
|
if (G.telwish == WILL) putiac2(DONT, c);
|
|
|
|
else if (G.telwish == DO) putiac2(WONT, c);
|
|
|
|
}
|
|
|
|
|
2001-11-10 16:52:46 +05:30
|
|
|
static inline void to_echo(void)
|
2000-06-15 02:12:57 +05:30
|
|
|
{
|
|
|
|
/* if server requests ECHO, don't agree */
|
|
|
|
if (G.telwish == DO) { putiac2(WONT, TELOPT_ECHO); return; }
|
|
|
|
else if (G.telwish == DONT) return;
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2000-06-15 02:12:57 +05:30
|
|
|
if (G.telflags & UF_ECHO)
|
|
|
|
{
|
|
|
|
if (G.telwish == WILL)
|
|
|
|
return;
|
2000-02-22 22:47:45 +05:30
|
|
|
}
|
2000-06-15 02:12:57 +05:30
|
|
|
else
|
|
|
|
if (G.telwish == WONT)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (G.charmode != CHM_OFF)
|
|
|
|
G.telflags ^= UF_ECHO;
|
|
|
|
|
|
|
|
if (G.telflags & UF_ECHO)
|
|
|
|
putiac2(DO, TELOPT_ECHO);
|
|
|
|
else
|
|
|
|
putiac2(DONT, TELOPT_ECHO);
|
|
|
|
|
|
|
|
setConMode();
|
|
|
|
WriteCS(1, "\r\n"); /* sudden modec */
|
2000-02-22 22:47:45 +05:30
|
|
|
}
|
|
|
|
|
2001-11-10 16:52:46 +05:30
|
|
|
static inline 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 */
|
|
|
|
|
|
|
|
if (G.telflags & UF_SGA)
|
|
|
|
{
|
|
|
|
if (G.telwish == WILL)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
if (G.telwish == WONT)
|
|
|
|
return;
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2000-06-15 02:12:57 +05:30
|
|
|
if ((G.telflags ^= UF_SGA) & UF_SGA) /* toggle */
|
|
|
|
putiac2(DO, TELOPT_SGA);
|
|
|
|
else
|
|
|
|
putiac2(DONT, TELOPT_SGA);
|
|
|
|
|
|
|
|
return;
|
2000-02-22 22:47:45 +05:30
|
|
|
}
|
|
|
|
|
2001-10-24 10:30:29 +05:30
|
|
|
#ifdef CONFIG_FEATURE_TELNET_TTYPE
|
2001-11-10 16:52:46 +05:30
|
|
|
static inline void to_ttype(void)
|
2001-05-07 23:27:45 +05:30
|
|
|
{
|
|
|
|
/* Tell server we will (or won't) do TTYPE */
|
|
|
|
|
|
|
|
if(ttype)
|
|
|
|
putiac2(WILL, TELOPT_TTYPE);
|
|
|
|
else
|
|
|
|
putiac2(WONT, TELOPT_TTYPE);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-02-22 17:55:47 +05:30
|
|
|
#ifdef CONFIG_FEATURE_TELNET_AUTOLOGIN
|
|
|
|
static inline void to_new_environ(void)
|
|
|
|
{
|
|
|
|
/* Tell server we will (or will not) do AUTOLOGIN */
|
|
|
|
|
|
|
|
if (autologin)
|
|
|
|
putiac2(WILL, TELOPT_NEW_ENVIRON);
|
|
|
|
else
|
|
|
|
putiac2(WONT, TELOPT_NEW_ENVIRON);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-04-26 12:50:47 +05:30
|
|
|
#ifdef CONFIG_FEATURE_AUTOWIDTH
|
2002-04-26 13:23:39 +05:30
|
|
|
static inline 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 */
|
|
|
|
putiac2(WILL, TELOPT_NAWS);
|
|
|
|
return;
|
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
|
|
|
{
|
2000-06-15 02:12:57 +05:30
|
|
|
switch (c)
|
|
|
|
{
|
2002-04-26 14:14:17 +05:30
|
|
|
case TELOPT_ECHO: to_echo(); break;
|
|
|
|
case TELOPT_SGA: to_sga(); break;
|
2001-10-24 10:30:29 +05:30
|
|
|
#ifdef CONFIG_FEATURE_TELNET_TTYPE
|
2002-04-26 14:14:17 +05:30
|
|
|
case TELOPT_TTYPE: to_ttype();break;
|
2001-05-07 23:27:45 +05:30
|
|
|
#endif
|
2004-02-22 17:55:47 +05:30
|
|
|
#ifdef CONFIG_FEATURE_TELNET_AUTOLOGIN
|
|
|
|
case TELOPT_NEW_ENVIRON: to_new_environ(); break;
|
|
|
|
#endif
|
2002-04-26 12:50:47 +05:30
|
|
|
#ifdef CONFIG_FEATURE_AUTOWIDTH
|
2002-04-26 14:14:17 +05:30
|
|
|
case TELOPT_NAWS: to_naws();
|
2002-04-26 12:50:47 +05:30
|
|
|
putiac_naws(c, win_width, win_height);
|
|
|
|
break;
|
|
|
|
#endif
|
2002-04-26 13:30:33 +05:30
|
|
|
default: to_notsup(c);
|
|
|
|
break;
|
2000-02-22 22:47:45 +05:30
|
|
|
}
|
2000-06-15 02:12:57 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ******************************* */
|
2000-02-22 22:47:45 +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)
|
|
|
|
{
|
|
|
|
switch (G.telstate)
|
|
|
|
{
|
|
|
|
case TS_SUB1:
|
|
|
|
if (c == IAC)
|
|
|
|
G.telstate = TS_SUB2;
|
2001-10-24 10:30:29 +05:30
|
|
|
#ifdef CONFIG_FEATURE_TELNET_TTYPE
|
2001-05-07 23:27:45 +05:30
|
|
|
else
|
|
|
|
if (c == TELOPT_TTYPE)
|
|
|
|
putiac_subopt(TELOPT_TTYPE,ttype);
|
2004-02-22 17:55:47 +05:30
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_FEATURE_TELNET_AUTOLOGIN
|
|
|
|
else
|
|
|
|
if (c == TELOPT_NEW_ENVIRON)
|
|
|
|
putiac_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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ******************************* */
|
|
|
|
|
|
|
|
static void fgotsig(int sig)
|
|
|
|
{
|
|
|
|
G.gotsig = sig;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-10 16:52:46 +05:30
|
|
|
static void rawmode(void)
|
2000-06-15 02:12:57 +05:30
|
|
|
{
|
|
|
|
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
|
|
|
{
|
|
|
|
tcsetattr(0, TCSADRAIN, &G.termios_def);
|
|
|
|
}
|
|
|
|
|
|
|
|
extern int telnet_main(int argc, char** argv)
|
|
|
|
{
|
2001-06-26 07:36:08 +05:30
|
|
|
int len;
|
2003-10-31 15:01:46 +05:30
|
|
|
struct sockaddr_in s_in;
|
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
|
|
|
|
2004-02-22 17:55:47 +05:30
|
|
|
#ifdef CONFIG_FEATURE_TELNET_AUTOLOGIN
|
|
|
|
int opt;
|
|
|
|
#endif
|
|
|
|
|
2002-04-26 12:50:47 +05:30
|
|
|
#ifdef CONFIG_FEATURE_AUTOWIDTH
|
2003-09-15 14:03:45 +05:30
|
|
|
get_terminal_width_height(0, &win_width, &win_height);
|
2002-04-26 12:50:47 +05:30
|
|
|
#endif
|
|
|
|
|
2001-10-24 10:30:29 +05:30
|
|
|
#ifdef CONFIG_FEATURE_TELNET_TTYPE
|
2001-05-07 23:27:45 +05:30
|
|
|
ttype = getenv("TERM");
|
|
|
|
#endif
|
2000-06-15 02:12:57 +05:30
|
|
|
|
|
|
|
memset(&G, 0, sizeof G);
|
|
|
|
|
|
|
|
if (tcgetattr(0, &G.termios_def) < 0)
|
|
|
|
exit(1);
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2000-06-15 02:12:57 +05:30
|
|
|
G.termios_raw = G.termios_def;
|
|
|
|
cfmakeraw(&G.termios_raw);
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2003-12-20 07:17:18 +05:30
|
|
|
if (argc < 2)
|
|
|
|
bb_show_usage();
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2004-02-22 17:55:47 +05:30
|
|
|
#ifdef CONFIG_FEATURE_TELNET_AUTOLOGIN
|
|
|
|
autologin = NULL;
|
|
|
|
while ((opt = getopt(argc, argv, "al:")) != EOF) {
|
|
|
|
switch (opt) {
|
|
|
|
case 'l':
|
|
|
|
autologin = bb_xstrdup(optarg);
|
|
|
|
break;
|
|
|
|
case 'a':
|
|
|
|
autologin = getenv("USER");
|
|
|
|
break;
|
|
|
|
case '?':
|
|
|
|
bb_show_usage();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (optind < argc) {
|
|
|
|
bb_lookup_host(&s_in, argv[optind++]);
|
|
|
|
s_in.sin_port = bb_lookup_port((optind < argc) ? argv[optind++] :
|
|
|
|
"telnet", "tcp", 23);
|
|
|
|
if (optind < argc)
|
|
|
|
bb_show_usage();
|
|
|
|
} else
|
|
|
|
bb_show_usage();
|
|
|
|
#else
|
2003-12-20 07:17:18 +05:30
|
|
|
bb_lookup_host(&s_in, argv[1]);
|
2004-01-17 10:33:31 +05:30
|
|
|
s_in.sin_port = bb_lookup_port((argc == 3) ? argv[2] : "telnet", "tcp", 23);
|
2004-02-22 17:55:47 +05:30
|
|
|
#endif
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2003-10-31 15:01:46 +05:30
|
|
|
G.netfd = xconnect(&s_in);
|
2000-06-15 02:12:57 +05:30
|
|
|
|
2002-07-03 17:21:44 +05:30
|
|
|
setsockopt(G.netfd, SOL_SOCKET, SO_KEEPALIVE, &one, sizeof one);
|
2000-06-15 02:12:57 +05:30
|
|
|
|
|
|
|
signal(SIGINT, fgotsig);
|
|
|
|
|
|
|
|
#ifdef USE_POLL
|
|
|
|
ufds[0].fd = 0; ufds[1].fd = G.netfd;
|
|
|
|
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);
|
|
|
|
FD_SET(0, &readfds);
|
|
|
|
FD_SET(G.netfd, &readfds);
|
|
|
|
maxfd = G.netfd + 1;
|
|
|
|
#endif
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2000-06-15 02:12:57 +05:30
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
#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 */
|
|
|
|
if (G.gotsig)
|
|
|
|
conescape();
|
|
|
|
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
|
2000-06-15 02:12:57 +05:30
|
|
|
if (FD_ISSET(0, &rfds))
|
2004-03-15 13:59:22 +05:30
|
|
|
#endif
|
2000-06-15 02:12:57 +05:30
|
|
|
{
|
2001-06-26 07:36:08 +05:30
|
|
|
len = read(0, G.buf, DATABUFSIZE);
|
2000-06-15 02:12:57 +05:30
|
|
|
|
2001-06-26 07:36:08 +05:30
|
|
|
if (len <= 0)
|
2000-06-15 02:12:57 +05:30
|
|
|
doexit(0);
|
|
|
|
|
2001-06-26 07:36:08 +05:30
|
|
|
TRACE(0, ("Read con: %d\n", len));
|
2004-03-15 13:59:22 +05:30
|
|
|
|
2001-06-26 07:36:08 +05:30
|
|
|
handlenetoutput(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
|
2000-06-15 02:12:57 +05:30
|
|
|
if (FD_ISSET(G.netfd, &rfds))
|
2004-03-15 13:59:22 +05:30
|
|
|
#endif
|
2000-06-15 02:12:57 +05:30
|
|
|
{
|
2001-06-26 07:36:08 +05:30
|
|
|
len = read(G.netfd, G.buf, DATABUFSIZE);
|
2000-06-15 02:12:57 +05:30
|
|
|
|
2001-06-26 07:36:08 +05:30
|
|
|
if (len <= 0)
|
2000-06-15 02:12:57 +05:30
|
|
|
{
|
|
|
|
WriteCS(1, "Connection closed by foreign host.\r\n");
|
|
|
|
doexit(1);
|
|
|
|
}
|
2001-06-26 07:36:08 +05:30
|
|
|
TRACE(0, ("Read netfd (%d): %d\n", G.netfd, len));
|
2000-06-15 02:12:57 +05:30
|
|
|
|
2001-06-26 07:36:08 +05:30
|
|
|
handlenetinput(len);
|
2000-02-22 22:47:45 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2000-06-15 02:12:57 +05:30
|
|
|
Local Variables:
|
|
|
|
c-file-style: "linux"
|
|
|
|
c-basic-offset: 4
|
|
|
|
tab-width: 4
|
|
|
|
End:
|
|
|
|
*/
|