1999-01-08 16:02:13 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "putty.h"
|
|
|
|
|
|
|
|
#ifndef FALSE
|
|
|
|
#define FALSE 0
|
|
|
|
#endif
|
|
|
|
#ifndef TRUE
|
|
|
|
#define TRUE 1
|
|
|
|
#endif
|
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
#define IAC 255 /* interpret as command: */
|
|
|
|
#define DONT 254 /* you are not to use option */
|
|
|
|
#define DO 253 /* please, you use option */
|
|
|
|
#define WONT 252 /* I won't use option */
|
|
|
|
#define WILL 251 /* I will use option */
|
|
|
|
#define SB 250 /* interpret as subnegotiation */
|
|
|
|
#define SE 240 /* end sub negotiation */
|
|
|
|
|
|
|
|
#define GA 249 /* you may reverse the line */
|
|
|
|
#define EL 248 /* erase the current line */
|
|
|
|
#define EC 247 /* erase the current character */
|
|
|
|
#define AYT 246 /* are you there */
|
|
|
|
#define AO 245 /* abort output--but let prog finish */
|
|
|
|
#define IP 244 /* interrupt process--permanently */
|
|
|
|
#define BREAK 243 /* break */
|
|
|
|
#define DM 242 /* data mark--for connect. cleaning */
|
|
|
|
#define NOP 241 /* nop */
|
|
|
|
#define EOR 239 /* end of record (transparent mode) */
|
|
|
|
#define ABORT 238 /* Abort process */
|
|
|
|
#define SUSP 237 /* Suspend process */
|
|
|
|
#define xEOF 236 /* End of file: EOF is already used... */
|
|
|
|
|
|
|
|
#define TELOPT_BINARY 0 /* 8-bit data path */
|
|
|
|
#define TELOPT_ECHO 1 /* echo */
|
|
|
|
#define TELOPT_RCP 2 /* prepare to reconnect */
|
|
|
|
#define TELOPT_SGA 3 /* suppress go ahead */
|
|
|
|
#define TELOPT_NAMS 4 /* approximate message size */
|
|
|
|
#define TELOPT_STATUS 5 /* give status */
|
|
|
|
#define TELOPT_TM 6 /* timing mark */
|
|
|
|
#define TELOPT_RCTE 7 /* remote controlled transmission and echo */
|
|
|
|
#define TELOPT_NAOL 8 /* negotiate about output line width */
|
|
|
|
#define TELOPT_NAOP 9 /* negotiate about output page size */
|
|
|
|
#define TELOPT_NAOCRD 10 /* negotiate about CR disposition */
|
|
|
|
#define TELOPT_NAOHTS 11 /* negotiate about horizontal tabstops */
|
|
|
|
#define TELOPT_NAOHTD 12 /* negotiate about horizontal tab disposition */
|
|
|
|
#define TELOPT_NAOFFD 13 /* negotiate about formfeed disposition */
|
|
|
|
#define TELOPT_NAOVTS 14 /* negotiate about vertical tab stops */
|
|
|
|
#define TELOPT_NAOVTD 15 /* negotiate about vertical tab disposition */
|
|
|
|
#define TELOPT_NAOLFD 16 /* negotiate about output LF disposition */
|
|
|
|
#define TELOPT_XASCII 17 /* extended ascic character set */
|
|
|
|
#define TELOPT_LOGOUT 18 /* force logout */
|
|
|
|
#define TELOPT_BM 19 /* byte macro */
|
|
|
|
#define TELOPT_DET 20 /* data entry terminal */
|
|
|
|
#define TELOPT_SUPDUP 21 /* supdup protocol */
|
|
|
|
#define TELOPT_SUPDUPOUTPUT 22 /* supdup output */
|
|
|
|
#define TELOPT_SNDLOC 23 /* send location */
|
|
|
|
#define TELOPT_TTYPE 24 /* terminal type */
|
|
|
|
#define TELOPT_EOR 25 /* end or record */
|
|
|
|
#define TELOPT_TUID 26 /* TACACS user identification */
|
|
|
|
#define TELOPT_OUTMRK 27 /* output marking */
|
|
|
|
#define TELOPT_TTYLOC 28 /* terminal location number */
|
|
|
|
#define TELOPT_3270REGIME 29 /* 3270 regime */
|
|
|
|
#define TELOPT_X3PAD 30 /* X.3 PAD */
|
|
|
|
#define TELOPT_NAWS 31 /* window size */
|
|
|
|
#define TELOPT_TSPEED 32 /* terminal speed */
|
|
|
|
#define TELOPT_LFLOW 33 /* remote flow control */
|
|
|
|
#define TELOPT_LINEMODE 34 /* Linemode option */
|
|
|
|
#define TELOPT_XDISPLOC 35 /* X Display Location */
|
|
|
|
#define TELOPT_OLD_ENVIRON 36 /* Old - Environment variables */
|
|
|
|
#define TELOPT_AUTHENTICATION 37 /* Authenticate */
|
|
|
|
#define TELOPT_ENCRYPT 38 /* Encryption option */
|
|
|
|
#define TELOPT_NEW_ENVIRON 39 /* New - Environment variables */
|
2003-02-12 22:49:25 +03:00
|
|
|
#define TELOPT_TN3270E 40 /* TN3270 enhancements */
|
|
|
|
#define TELOPT_XAUTH 41
|
|
|
|
#define TELOPT_CHARSET 42 /* Character set */
|
|
|
|
#define TELOPT_RSP 43 /* Remote serial port */
|
|
|
|
#define TELOPT_COM_PORT_OPTION 44 /* Com port control */
|
|
|
|
#define TELOPT_SLE 45 /* Suppress local echo */
|
|
|
|
#define TELOPT_STARTTLS 46 /* Start TLS */
|
|
|
|
#define TELOPT_KERMIT 47 /* Automatic Kermit file transfer */
|
|
|
|
#define TELOPT_SEND_URL 48
|
|
|
|
#define TELOPT_FORWARD_X 49
|
|
|
|
#define TELOPT_PRAGMA_LOGON 138
|
|
|
|
#define TELOPT_SSPI_LOGON 139
|
|
|
|
#define TELOPT_PRAGMA_HEARTBEAT 140
|
2001-05-06 18:35:20 +04:00
|
|
|
#define TELOPT_EXOPL 255 /* extended-options-list */
|
|
|
|
|
|
|
|
#define TELQUAL_IS 0 /* option is... */
|
|
|
|
#define TELQUAL_SEND 1 /* send option */
|
|
|
|
#define TELQUAL_INFO 2 /* ENVIRON: informational version of IS */
|
1999-01-08 16:02:13 +03:00
|
|
|
#define BSD_VAR 1
|
|
|
|
#define BSD_VALUE 0
|
|
|
|
#define RFC_VAR 0
|
|
|
|
#define RFC_VALUE 1
|
|
|
|
|
|
|
|
#define CR 13
|
|
|
|
#define LF 10
|
|
|
|
#define NUL 0
|
|
|
|
|
2002-12-19 17:22:16 +03:00
|
|
|
#define iswritable(x) \
|
|
|
|
( (x) != IAC && \
|
|
|
|
(telnet->opt_states[o_we_bin.index] == ACTIVE || (x) != CR))
|
1999-01-08 16:02:13 +03:00
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
static char *telopt(int opt)
|
|
|
|
{
|
1999-01-08 16:02:13 +03:00
|
|
|
#define i(x) if (opt == TELOPT_ ## x) return #x;
|
2001-05-06 18:35:20 +04:00
|
|
|
i(BINARY);
|
|
|
|
i(ECHO);
|
|
|
|
i(RCP);
|
|
|
|
i(SGA);
|
|
|
|
i(NAMS);
|
|
|
|
i(STATUS);
|
|
|
|
i(TM);
|
|
|
|
i(RCTE);
|
|
|
|
i(NAOL);
|
|
|
|
i(NAOP);
|
|
|
|
i(NAOCRD);
|
|
|
|
i(NAOHTS);
|
|
|
|
i(NAOHTD);
|
|
|
|
i(NAOFFD);
|
|
|
|
i(NAOVTS);
|
|
|
|
i(NAOVTD);
|
|
|
|
i(NAOLFD);
|
|
|
|
i(XASCII);
|
|
|
|
i(LOGOUT);
|
|
|
|
i(BM);
|
|
|
|
i(DET);
|
|
|
|
i(SUPDUP);
|
|
|
|
i(SUPDUPOUTPUT);
|
|
|
|
i(SNDLOC);
|
|
|
|
i(TTYPE);
|
|
|
|
i(EOR);
|
|
|
|
i(TUID);
|
|
|
|
i(OUTMRK);
|
|
|
|
i(TTYLOC);
|
|
|
|
i(X3PAD);
|
|
|
|
i(NAWS);
|
|
|
|
i(TSPEED);
|
|
|
|
i(LFLOW);
|
|
|
|
i(LINEMODE);
|
|
|
|
i(XDISPLOC);
|
|
|
|
i(OLD_ENVIRON);
|
|
|
|
i(AUTHENTICATION);
|
|
|
|
i(ENCRYPT);
|
|
|
|
i(NEW_ENVIRON);
|
2003-02-12 22:49:25 +03:00
|
|
|
i(TN3270E);
|
|
|
|
i(XAUTH);
|
|
|
|
i(CHARSET);
|
|
|
|
i(RSP);
|
|
|
|
i(COM_PORT_OPTION);
|
|
|
|
i(SLE);
|
|
|
|
i(STARTTLS);
|
|
|
|
i(KERMIT);
|
|
|
|
i(SEND_URL);
|
|
|
|
i(FORWARD_X);
|
|
|
|
i(PRAGMA_LOGON);
|
|
|
|
i(SSPI_LOGON);
|
|
|
|
i(PRAGMA_HEARTBEAT);
|
2001-05-06 18:35:20 +04:00
|
|
|
i(EXOPL);
|
1999-01-08 16:02:13 +03:00
|
|
|
#undef i
|
|
|
|
return "<unknown>";
|
|
|
|
}
|
|
|
|
|
2002-10-25 15:30:33 +04:00
|
|
|
static void telnet_size(void *handle, int width, int height);
|
1999-01-08 16:02:13 +03:00
|
|
|
|
|
|
|
struct Opt {
|
|
|
|
int send; /* what we initially send */
|
|
|
|
int nsend; /* -ve send if requested to stop it */
|
|
|
|
int ack, nak; /* +ve and -ve acknowledgements */
|
|
|
|
int option; /* the option code */
|
2002-10-25 15:30:33 +04:00
|
|
|
int index; /* index into telnet->opt_states[] */
|
1999-01-08 16:02:13 +03:00
|
|
|
enum {
|
|
|
|
REQUESTED, ACTIVE, INACTIVE, REALLY_INACTIVE
|
2002-10-25 15:30:33 +04:00
|
|
|
} initial_state;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
OPTINDEX_NAWS,
|
|
|
|
OPTINDEX_TSPEED,
|
|
|
|
OPTINDEX_TTYPE,
|
|
|
|
OPTINDEX_OENV,
|
|
|
|
OPTINDEX_NENV,
|
|
|
|
OPTINDEX_ECHO,
|
|
|
|
OPTINDEX_WE_SGA,
|
|
|
|
OPTINDEX_THEY_SGA,
|
2002-12-19 17:22:16 +03:00
|
|
|
OPTINDEX_WE_BIN,
|
|
|
|
OPTINDEX_THEY_BIN,
|
2002-10-25 15:30:33 +04:00
|
|
|
NUM_OPTS
|
1999-01-08 16:02:13 +03:00
|
|
|
};
|
|
|
|
|
2002-10-25 15:30:33 +04:00
|
|
|
static const struct Opt o_naws =
|
|
|
|
{ WILL, WONT, DO, DONT, TELOPT_NAWS, OPTINDEX_NAWS, REQUESTED };
|
|
|
|
static const struct Opt o_tspeed =
|
|
|
|
{ WILL, WONT, DO, DONT, TELOPT_TSPEED, OPTINDEX_TSPEED, REQUESTED };
|
|
|
|
static const struct Opt o_ttype =
|
|
|
|
{ WILL, WONT, DO, DONT, TELOPT_TTYPE, OPTINDEX_TTYPE, REQUESTED };
|
|
|
|
static const struct Opt o_oenv = { WILL, WONT, DO, DONT, TELOPT_OLD_ENVIRON,
|
|
|
|
OPTINDEX_OENV, INACTIVE
|
2001-05-06 18:35:20 +04:00
|
|
|
};
|
2002-10-25 15:30:33 +04:00
|
|
|
static const struct Opt o_nenv = { WILL, WONT, DO, DONT, TELOPT_NEW_ENVIRON,
|
|
|
|
OPTINDEX_NENV, REQUESTED
|
2001-05-06 18:35:20 +04:00
|
|
|
};
|
2002-10-25 15:30:33 +04:00
|
|
|
static const struct Opt o_echo =
|
|
|
|
{ DO, DONT, WILL, WONT, TELOPT_ECHO, OPTINDEX_ECHO, REQUESTED };
|
|
|
|
static const struct Opt o_we_sga =
|
|
|
|
{ WILL, WONT, DO, DONT, TELOPT_SGA, OPTINDEX_WE_SGA, REQUESTED };
|
|
|
|
static const struct Opt o_they_sga =
|
|
|
|
{ DO, DONT, WILL, WONT, TELOPT_SGA, OPTINDEX_THEY_SGA, REQUESTED };
|
2002-12-19 17:22:16 +03:00
|
|
|
static const struct Opt o_we_bin =
|
|
|
|
{ WILL, WONT, DO, DONT, TELOPT_BINARY, OPTINDEX_WE_BIN, INACTIVE };
|
|
|
|
static const struct Opt o_they_bin =
|
|
|
|
{ DO, DONT, WILL, WONT, TELOPT_BINARY, OPTINDEX_THEY_BIN, INACTIVE };
|
2002-10-25 15:30:33 +04:00
|
|
|
|
|
|
|
static const struct Opt *const opts[] = {
|
1999-01-08 16:02:13 +03:00
|
|
|
&o_naws, &o_tspeed, &o_ttype, &o_oenv, &o_nenv, &o_echo,
|
2002-12-19 17:22:16 +03:00
|
|
|
&o_we_sga, &o_they_sga, &o_we_bin, &o_they_bin, NULL
|
1999-01-08 16:02:13 +03:00
|
|
|
};
|
|
|
|
|
2002-10-25 15:30:33 +04:00
|
|
|
typedef struct telnet_tag {
|
|
|
|
const struct plug_function_table *fn;
|
|
|
|
/* the above field _must_ be first in the structure */
|
|
|
|
|
|
|
|
Socket s;
|
|
|
|
|
|
|
|
void *frontend;
|
2002-10-26 14:16:19 +04:00
|
|
|
void *ldisc;
|
2002-10-25 15:30:33 +04:00
|
|
|
int term_width, term_height;
|
|
|
|
|
|
|
|
int opt_states[NUM_OPTS];
|
|
|
|
|
|
|
|
int echoing, editing;
|
|
|
|
int activated;
|
|
|
|
int bufsize;
|
|
|
|
int in_synch;
|
|
|
|
int sb_opt, sb_len;
|
2003-01-04 19:42:53 +03:00
|
|
|
unsigned char *sb_buf;
|
2002-10-25 15:30:33 +04:00
|
|
|
int sb_size;
|
|
|
|
|
|
|
|
enum {
|
|
|
|
TOP_LEVEL, SEENIAC, SEENWILL, SEENWONT, SEENDO, SEENDONT,
|
|
|
|
SEENSB, SUBNEGOT, SUBNEG_IAC, SEENCR
|
|
|
|
} state;
|
|
|
|
|
2003-01-12 17:48:29 +03:00
|
|
|
Config cfg;
|
2002-10-25 15:30:33 +04:00
|
|
|
} *Telnet;
|
|
|
|
|
2001-08-25 21:09:23 +04:00
|
|
|
#define TELNET_MAX_BACKLOG 4096
|
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
#define SB_DELTA 1024
|
|
|
|
|
2002-10-25 15:30:33 +04:00
|
|
|
static void c_write1(Telnet telnet, int c)
|
2001-05-06 18:35:20 +04:00
|
|
|
{
|
2001-08-25 21:09:23 +04:00
|
|
|
int backlog;
|
2001-05-06 18:35:20 +04:00
|
|
|
char cc = (char) c;
|
2002-10-25 15:30:33 +04:00
|
|
|
backlog = from_backend(telnet->frontend, 0, &cc, 1);
|
|
|
|
sk_set_frozen(telnet->s, backlog > TELNET_MAX_BACKLOG);
|
2000-10-20 17:51:46 +04:00
|
|
|
}
|
|
|
|
|
2002-10-26 16:58:13 +04:00
|
|
|
static void log_option(Telnet telnet, char *sender, int cmd, int option)
|
2001-05-06 18:35:20 +04:00
|
|
|
{
|
2002-11-07 22:49:03 +03:00
|
|
|
char *buf;
|
2002-11-01 15:52:51 +03:00
|
|
|
/*
|
|
|
|
* The strange-looking "<?""?>" below is there to avoid a
|
|
|
|
* trigraph - a double question mark followed by > maps to a
|
|
|
|
* closing brace character!
|
|
|
|
*/
|
2002-11-07 22:49:03 +03:00
|
|
|
buf = dupprintf("%s:\t%s %s", sender,
|
|
|
|
(cmd == WILL ? "WILL" : cmd == WONT ? "WONT" :
|
|
|
|
cmd == DO ? "DO" : cmd == DONT ? "DONT" : "<?""?>"),
|
|
|
|
telopt(option));
|
2002-10-26 16:58:13 +04:00
|
|
|
logevent(telnet->frontend, buf);
|
2002-11-07 22:49:03 +03:00
|
|
|
sfree(buf);
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
|
2002-10-25 15:30:33 +04:00
|
|
|
static void send_opt(Telnet telnet, int cmd, int option)
|
2001-05-06 18:35:20 +04:00
|
|
|
{
|
1999-01-08 16:02:13 +03:00
|
|
|
unsigned char b[3];
|
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
b[0] = IAC;
|
|
|
|
b[1] = cmd;
|
|
|
|
b[2] = option;
|
2003-01-04 19:42:53 +03:00
|
|
|
telnet->bufsize = sk_write(telnet->s, (char *)b, 3);
|
2002-10-26 16:58:13 +04:00
|
|
|
log_option(telnet, "client", cmd, option);
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
|
2002-10-25 15:30:33 +04:00
|
|
|
static void deactivate_option(Telnet telnet, const struct Opt *o)
|
2001-05-06 18:35:20 +04:00
|
|
|
{
|
2002-10-25 15:30:33 +04:00
|
|
|
if (telnet->opt_states[o->index] == REQUESTED ||
|
|
|
|
telnet->opt_states[o->index] == ACTIVE)
|
|
|
|
send_opt(telnet, o->nsend, o->option);
|
|
|
|
telnet->opt_states[o->index] = REALLY_INACTIVE;
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
|
2000-10-24 15:16:25 +04:00
|
|
|
/*
|
|
|
|
* Generate side effects of enabling or disabling an option.
|
|
|
|
*/
|
2002-10-25 15:30:33 +04:00
|
|
|
static void option_side_effects(Telnet telnet, const struct Opt *o, int enabled)
|
2001-05-06 18:35:20 +04:00
|
|
|
{
|
2001-01-24 17:08:20 +03:00
|
|
|
if (o->option == TELOPT_ECHO && o->send == DO)
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet->echoing = !enabled;
|
2001-02-05 16:04:00 +03:00
|
|
|
else if (o->option == TELOPT_SGA && o->send == DO)
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet->editing = !enabled;
|
2002-10-26 14:16:19 +04:00
|
|
|
if (telnet->ldisc) /* cause ldisc to notice the change */
|
|
|
|
ldisc_send(telnet->ldisc, NULL, 0, 0);
|
2001-05-09 17:51:07 +04:00
|
|
|
|
|
|
|
/* Ensure we get the minimum options */
|
2002-10-25 15:30:33 +04:00
|
|
|
if (!telnet->activated) {
|
|
|
|
if (telnet->opt_states[o_echo.index] == INACTIVE) {
|
|
|
|
telnet->opt_states[o_echo.index] = REQUESTED;
|
|
|
|
send_opt(telnet, o_echo.send, o_echo.option);
|
2001-05-09 17:51:07 +04:00
|
|
|
}
|
2002-10-25 15:30:33 +04:00
|
|
|
if (telnet->opt_states[o_we_sga.index] == INACTIVE) {
|
|
|
|
telnet->opt_states[o_we_sga.index] = REQUESTED;
|
|
|
|
send_opt(telnet, o_we_sga.send, o_we_sga.option);
|
2001-05-09 17:51:07 +04:00
|
|
|
}
|
2002-10-25 15:30:33 +04:00
|
|
|
if (telnet->opt_states[o_they_sga.index] == INACTIVE) {
|
|
|
|
telnet->opt_states[o_they_sga.index] = REQUESTED;
|
|
|
|
send_opt(telnet, o_they_sga.send, o_they_sga.option);
|
2001-05-09 17:51:07 +04:00
|
|
|
}
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet->activated = TRUE;
|
2001-05-09 17:51:07 +04:00
|
|
|
}
|
2000-10-24 15:16:25 +04:00
|
|
|
}
|
|
|
|
|
2002-10-25 15:30:33 +04:00
|
|
|
static void activate_option(Telnet telnet, const struct Opt *o)
|
2001-05-06 18:35:20 +04:00
|
|
|
{
|
1999-01-08 16:02:13 +03:00
|
|
|
if (o->send == WILL && o->option == TELOPT_NAWS)
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet_size(telnet, telnet->term_width, telnet->term_height);
|
1999-01-08 16:02:13 +03:00
|
|
|
if (o->send == WILL &&
|
|
|
|
(o->option == TELOPT_NEW_ENVIRON ||
|
|
|
|
o->option == TELOPT_OLD_ENVIRON)) {
|
|
|
|
/*
|
|
|
|
* We may only have one kind of ENVIRON going at a time.
|
|
|
|
* This is a hack, but who cares.
|
|
|
|
*/
|
2002-10-25 15:30:33 +04:00
|
|
|
deactivate_option(telnet, o->option ==
|
2001-05-06 18:35:20 +04:00
|
|
|
TELOPT_NEW_ENVIRON ? &o_oenv : &o_nenv);
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
2002-10-25 15:30:33 +04:00
|
|
|
option_side_effects(telnet, o, 1);
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
|
2002-10-25 15:30:33 +04:00
|
|
|
static void refused_option(Telnet telnet, const struct Opt *o)
|
2001-05-06 18:35:20 +04:00
|
|
|
{
|
1999-01-08 16:02:13 +03:00
|
|
|
if (o->send == WILL && o->option == TELOPT_NEW_ENVIRON &&
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet->opt_states[o_oenv.index] == INACTIVE) {
|
|
|
|
send_opt(telnet, WILL, TELOPT_OLD_ENVIRON);
|
|
|
|
telnet->opt_states[o_oenv.index] = REQUESTED;
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
2002-10-25 15:30:33 +04:00
|
|
|
option_side_effects(telnet, o, 0);
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
|
2002-10-25 15:30:33 +04:00
|
|
|
static void proc_rec_opt(Telnet telnet, int cmd, int option)
|
2001-05-06 18:35:20 +04:00
|
|
|
{
|
2002-10-25 15:30:33 +04:00
|
|
|
const struct Opt *const *o;
|
1999-01-08 16:02:13 +03:00
|
|
|
|
2002-10-26 16:58:13 +04:00
|
|
|
log_option(telnet, "server", cmd, option);
|
1999-01-08 16:02:13 +03:00
|
|
|
for (o = opts; *o; o++) {
|
|
|
|
if ((*o)->option == option && (*o)->ack == cmd) {
|
2002-10-25 15:30:33 +04:00
|
|
|
switch (telnet->opt_states[(*o)->index]) {
|
1999-01-08 16:02:13 +03:00
|
|
|
case REQUESTED:
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet->opt_states[(*o)->index] = ACTIVE;
|
|
|
|
activate_option(telnet, *o);
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
|
|
|
case ACTIVE:
|
|
|
|
break;
|
|
|
|
case INACTIVE:
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet->opt_states[(*o)->index] = ACTIVE;
|
|
|
|
send_opt(telnet, (*o)->send, option);
|
|
|
|
activate_option(telnet, *o);
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
|
|
|
case REALLY_INACTIVE:
|
2002-10-25 15:30:33 +04:00
|
|
|
send_opt(telnet, (*o)->nsend, option);
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
} else if ((*o)->option == option && (*o)->nak == cmd) {
|
2002-10-25 15:30:33 +04:00
|
|
|
switch (telnet->opt_states[(*o)->index]) {
|
1999-01-08 16:02:13 +03:00
|
|
|
case REQUESTED:
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet->opt_states[(*o)->index] = INACTIVE;
|
|
|
|
refused_option(telnet, *o);
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
|
|
|
case ACTIVE:
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet->opt_states[(*o)->index] = INACTIVE;
|
|
|
|
send_opt(telnet, (*o)->nsend, option);
|
|
|
|
option_side_effects(telnet, *o, 0);
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
|
|
|
case INACTIVE:
|
|
|
|
case REALLY_INACTIVE:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* If we reach here, the option was one we weren't prepared to
|
|
|
|
* cope with. So send a negative ack.
|
|
|
|
*/
|
2002-10-25 15:30:33 +04:00
|
|
|
send_opt(telnet, (cmd == WILL ? DONT : WONT), option);
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
|
2002-10-25 15:30:33 +04:00
|
|
|
static void process_subneg(Telnet telnet)
|
2001-05-06 18:35:20 +04:00
|
|
|
{
|
1999-01-08 16:02:13 +03:00
|
|
|
unsigned char b[2048], *p, *q;
|
|
|
|
int var, value, n;
|
|
|
|
char *e;
|
|
|
|
|
2002-10-25 15:30:33 +04:00
|
|
|
switch (telnet->sb_opt) {
|
1999-01-08 16:02:13 +03:00
|
|
|
case TELOPT_TSPEED:
|
2002-10-25 15:30:33 +04:00
|
|
|
if (telnet->sb_len == 1 && telnet->sb_buf[0] == TELQUAL_SEND) {
|
2002-11-07 22:49:03 +03:00
|
|
|
char *logbuf;
|
2001-05-06 18:35:20 +04:00
|
|
|
b[0] = IAC;
|
|
|
|
b[1] = SB;
|
|
|
|
b[2] = TELOPT_TSPEED;
|
1999-01-08 16:02:13 +03:00
|
|
|
b[3] = TELQUAL_IS;
|
2003-01-12 17:48:29 +03:00
|
|
|
strcpy((char *)(b + 4), telnet->cfg.termspeed);
|
|
|
|
n = 4 + strlen(telnet->cfg.termspeed);
|
2001-05-06 18:35:20 +04:00
|
|
|
b[n] = IAC;
|
|
|
|
b[n + 1] = SE;
|
2003-01-04 19:42:53 +03:00
|
|
|
telnet->bufsize = sk_write(telnet->s, (char *)b, n + 2);
|
2002-10-26 16:58:13 +04:00
|
|
|
logevent(telnet->frontend, "server:\tSB TSPEED SEND");
|
2003-01-12 17:48:29 +03:00
|
|
|
logbuf = dupprintf("client:\tSB TSPEED IS %s", telnet->cfg.termspeed);
|
2002-10-26 16:58:13 +04:00
|
|
|
logevent(telnet->frontend, logbuf);
|
2002-11-07 22:49:03 +03:00
|
|
|
sfree(logbuf);
|
1999-01-08 16:02:13 +03:00
|
|
|
} else
|
2002-10-26 16:58:13 +04:00
|
|
|
logevent(telnet->frontend, "server:\tSB TSPEED <something weird>");
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
|
|
|
case TELOPT_TTYPE:
|
2002-10-25 15:30:33 +04:00
|
|
|
if (telnet->sb_len == 1 && telnet->sb_buf[0] == TELQUAL_SEND) {
|
2002-11-07 22:49:03 +03:00
|
|
|
char *logbuf;
|
2001-05-06 18:35:20 +04:00
|
|
|
b[0] = IAC;
|
|
|
|
b[1] = SB;
|
|
|
|
b[2] = TELOPT_TTYPE;
|
1999-01-08 16:02:13 +03:00
|
|
|
b[3] = TELQUAL_IS;
|
2003-01-12 17:48:29 +03:00
|
|
|
for (n = 0; telnet->cfg.termtype[n]; n++)
|
|
|
|
b[n + 4] = (telnet->cfg.termtype[n] >= 'a'
|
|
|
|
&& telnet->cfg.termtype[n] <=
|
|
|
|
'z' ? telnet->cfg.termtype[n] + 'A' -
|
|
|
|
'a' : telnet->cfg.termtype[n]);
|
2001-05-06 18:35:20 +04:00
|
|
|
b[n + 4] = IAC;
|
|
|
|
b[n + 5] = SE;
|
2003-01-04 19:42:53 +03:00
|
|
|
telnet->bufsize = sk_write(telnet->s, (char *)b, n + 6);
|
2001-05-06 18:35:20 +04:00
|
|
|
b[n + 4] = 0;
|
2002-10-26 16:58:13 +04:00
|
|
|
logevent(telnet->frontend, "server:\tSB TTYPE SEND");
|
2002-11-07 22:49:03 +03:00
|
|
|
logbuf = dupprintf("client:\tSB TTYPE IS %s", b + 4);
|
2002-10-26 16:58:13 +04:00
|
|
|
logevent(telnet->frontend, logbuf);
|
2002-11-07 22:49:03 +03:00
|
|
|
sfree(logbuf);
|
1999-01-08 16:02:13 +03:00
|
|
|
} else
|
2002-10-26 16:58:13 +04:00
|
|
|
logevent(telnet->frontend, "server:\tSB TTYPE <something weird>\r\n");
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
|
|
|
case TELOPT_OLD_ENVIRON:
|
2001-05-06 18:35:20 +04:00
|
|
|
case TELOPT_NEW_ENVIRON:
|
2002-10-25 15:30:33 +04:00
|
|
|
p = telnet->sb_buf;
|
|
|
|
q = p + telnet->sb_len;
|
1999-01-08 16:02:13 +03:00
|
|
|
if (p < q && *p == TELQUAL_SEND) {
|
2002-11-07 22:49:03 +03:00
|
|
|
char *logbuf;
|
1999-01-08 16:02:13 +03:00
|
|
|
p++;
|
2002-11-07 22:49:03 +03:00
|
|
|
logbuf = dupprintf("server:\tSB %s SEND", telopt(telnet->sb_opt));
|
2002-10-26 16:58:13 +04:00
|
|
|
logevent(telnet->frontend, logbuf);
|
2002-11-07 22:49:03 +03:00
|
|
|
sfree(logbuf);
|
2002-10-25 15:30:33 +04:00
|
|
|
if (telnet->sb_opt == TELOPT_OLD_ENVIRON) {
|
2003-01-12 17:48:29 +03:00
|
|
|
if (telnet->cfg.rfc_environ) {
|
1999-01-08 16:02:13 +03:00
|
|
|
value = RFC_VALUE;
|
|
|
|
var = RFC_VAR;
|
|
|
|
} else {
|
|
|
|
value = BSD_VALUE;
|
|
|
|
var = BSD_VAR;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Try to guess the sense of VAR and VALUE.
|
|
|
|
*/
|
|
|
|
while (p < q) {
|
|
|
|
if (*p == RFC_VAR) {
|
|
|
|
value = RFC_VALUE;
|
|
|
|
var = RFC_VAR;
|
|
|
|
} else if (*p == BSD_VAR) {
|
|
|
|
value = BSD_VALUE;
|
|
|
|
var = BSD_VAR;
|
|
|
|
}
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* With NEW_ENVIRON, the sense of VAR and VALUE
|
|
|
|
* isn't in doubt.
|
|
|
|
*/
|
|
|
|
value = RFC_VALUE;
|
|
|
|
var = RFC_VAR;
|
|
|
|
}
|
2001-05-06 18:35:20 +04:00
|
|
|
b[0] = IAC;
|
|
|
|
b[1] = SB;
|
2002-10-25 15:30:33 +04:00
|
|
|
b[2] = telnet->sb_opt;
|
1999-01-08 16:02:13 +03:00
|
|
|
b[3] = TELQUAL_IS;
|
|
|
|
n = 4;
|
2003-01-12 17:48:29 +03:00
|
|
|
e = telnet->cfg.environmt;
|
1999-01-08 16:02:13 +03:00
|
|
|
while (*e) {
|
|
|
|
b[n++] = var;
|
2001-05-06 18:35:20 +04:00
|
|
|
while (*e && *e != '\t')
|
|
|
|
b[n++] = *e++;
|
|
|
|
if (*e == '\t')
|
|
|
|
e++;
|
1999-01-08 16:02:13 +03:00
|
|
|
b[n++] = value;
|
2001-05-06 18:35:20 +04:00
|
|
|
while (*e)
|
|
|
|
b[n++] = *e++;
|
1999-01-08 16:02:13 +03:00
|
|
|
e++;
|
|
|
|
}
|
2003-01-12 17:48:29 +03:00
|
|
|
if (*telnet->cfg.username) {
|
2001-05-06 18:35:20 +04:00
|
|
|
b[n++] = var;
|
|
|
|
b[n++] = 'U';
|
|
|
|
b[n++] = 'S';
|
|
|
|
b[n++] = 'E';
|
|
|
|
b[n++] = 'R';
|
|
|
|
b[n++] = value;
|
2003-01-12 17:48:29 +03:00
|
|
|
e = telnet->cfg.username;
|
2001-05-06 18:35:20 +04:00
|
|
|
while (*e)
|
|
|
|
b[n++] = *e++;
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
2001-05-06 18:35:20 +04:00
|
|
|
b[n++] = IAC;
|
|
|
|
b[n++] = SE;
|
2003-01-04 19:42:53 +03:00
|
|
|
telnet->bufsize = sk_write(telnet->s, (char *)b, n);
|
2004-09-23 02:38:23 +04:00
|
|
|
logbuf = dupprintf("client:\tSB %s IS %s%s%s%s",
|
|
|
|
telopt(telnet->sb_opt),
|
|
|
|
*telnet->cfg.username ? "USER=" : "",
|
|
|
|
telnet->cfg.username,
|
|
|
|
*telnet->cfg.username ? " " : "",
|
|
|
|
n == 6 ? "<nothing>" :
|
|
|
|
(*telnet->cfg.environmt ? "<stuff>" : ""));
|
2002-10-26 16:58:13 +04:00
|
|
|
logevent(telnet->frontend, logbuf);
|
2002-11-07 22:49:03 +03:00
|
|
|
sfree(logbuf);
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-10-25 15:30:33 +04:00
|
|
|
static void do_telnet_read(Telnet telnet, char *buf, int len)
|
2001-05-06 18:35:20 +04:00
|
|
|
{
|
1999-01-08 16:02:13 +03:00
|
|
|
|
|
|
|
while (len--) {
|
|
|
|
int c = (unsigned char) *buf++;
|
|
|
|
|
2002-10-25 15:30:33 +04:00
|
|
|
switch (telnet->state) {
|
2002-10-22 20:11:33 +04:00
|
|
|
case TOP_LEVEL:
|
1999-01-08 16:02:13 +03:00
|
|
|
case SEENCR:
|
2002-10-25 15:30:33 +04:00
|
|
|
if (c == NUL && telnet->state == SEENCR)
|
|
|
|
telnet->state = TOP_LEVEL;
|
1999-01-08 16:02:13 +03:00
|
|
|
else if (c == IAC)
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet->state = SEENIAC;
|
1999-01-08 16:02:13 +03:00
|
|
|
else {
|
2002-10-25 15:30:33 +04:00
|
|
|
if (!telnet->in_synch)
|
|
|
|
c_write1(telnet, c);
|
2000-03-17 13:37:35 +03:00
|
|
|
|
|
|
|
#if 1
|
|
|
|
/* I can't get the F***ing winsock to insert the urgent IAC
|
|
|
|
* into the right position! Even with SO_OOBINLINE it gives
|
|
|
|
* it to recv too soon. And of course the DM byte (that
|
|
|
|
* arrives in the same packet!) appears several K later!!
|
|
|
|
*
|
|
|
|
* Oh well, we do get the DM in the right place so I'll
|
|
|
|
* just stop hiding on the next 0xf2 and hope for the best.
|
|
|
|
*/
|
2001-05-06 18:35:20 +04:00
|
|
|
else if (c == DM)
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet->in_synch = 0;
|
2000-03-17 13:37:35 +03:00
|
|
|
#endif
|
2002-12-19 17:22:16 +03:00
|
|
|
if (c == CR && telnet->opt_states[o_they_bin.index] != ACTIVE)
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet->state = SEENCR;
|
1999-01-08 16:02:13 +03:00
|
|
|
else
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet->state = TOP_LEVEL;
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SEENIAC:
|
2001-05-06 18:35:20 +04:00
|
|
|
if (c == DO)
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet->state = SEENDO;
|
2001-05-06 18:35:20 +04:00
|
|
|
else if (c == DONT)
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet->state = SEENDONT;
|
2001-05-06 18:35:20 +04:00
|
|
|
else if (c == WILL)
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet->state = SEENWILL;
|
2001-05-06 18:35:20 +04:00
|
|
|
else if (c == WONT)
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet->state = SEENWONT;
|
2001-05-06 18:35:20 +04:00
|
|
|
else if (c == SB)
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet->state = SEENSB;
|
2000-03-17 13:37:35 +03:00
|
|
|
else if (c == DM) {
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet->in_synch = 0;
|
|
|
|
telnet->state = TOP_LEVEL;
|
2001-05-06 18:35:20 +04:00
|
|
|
} else {
|
1999-11-16 12:57:40 +03:00
|
|
|
/* ignore everything else; print it if it's IAC */
|
|
|
|
if (c == IAC) {
|
2002-10-25 15:30:33 +04:00
|
|
|
c_write1(telnet, c);
|
1999-11-16 12:57:40 +03:00
|
|
|
}
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet->state = TOP_LEVEL;
|
1999-10-04 18:20:17 +04:00
|
|
|
}
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
|
|
|
case SEENWILL:
|
2002-10-25 15:30:33 +04:00
|
|
|
proc_rec_opt(telnet, WILL, c);
|
|
|
|
telnet->state = TOP_LEVEL;
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
|
|
|
case SEENWONT:
|
2002-10-25 15:30:33 +04:00
|
|
|
proc_rec_opt(telnet, WONT, c);
|
|
|
|
telnet->state = TOP_LEVEL;
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
|
|
|
case SEENDO:
|
2002-10-25 15:30:33 +04:00
|
|
|
proc_rec_opt(telnet, DO, c);
|
|
|
|
telnet->state = TOP_LEVEL;
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
|
|
|
case SEENDONT:
|
2002-10-25 15:30:33 +04:00
|
|
|
proc_rec_opt(telnet, DONT, c);
|
|
|
|
telnet->state = TOP_LEVEL;
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
|
|
|
case SEENSB:
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet->sb_opt = c;
|
|
|
|
telnet->sb_len = 0;
|
|
|
|
telnet->state = SUBNEGOT;
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
|
|
|
case SUBNEGOT:
|
|
|
|
if (c == IAC)
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet->state = SUBNEG_IAC;
|
1999-01-08 16:02:13 +03:00
|
|
|
else {
|
2001-05-06 18:35:20 +04:00
|
|
|
subneg_addchar:
|
2002-10-25 15:30:33 +04:00
|
|
|
if (telnet->sb_len >= telnet->sb_size) {
|
|
|
|
telnet->sb_size += SB_DELTA;
|
2003-03-29 19:14:26 +03:00
|
|
|
telnet->sb_buf = sresize(telnet->sb_buf, telnet->sb_size,
|
|
|
|
unsigned char);
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
2003-03-29 19:14:26 +03:00
|
|
|
telnet->sb_buf[telnet->sb_len++] = c;
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet->state = SUBNEGOT; /* in case we came here by goto */
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SUBNEG_IAC:
|
|
|
|
if (c != SE)
|
|
|
|
goto subneg_addchar; /* yes, it's a hack, I know, but... */
|
|
|
|
else {
|
2002-10-25 15:30:33 +04:00
|
|
|
process_subneg(telnet);
|
|
|
|
telnet->state = TOP_LEVEL;
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-05-04 18:18:18 +04:00
|
|
|
static int telnet_closing(Plug plug, const char *error_msg, int error_code,
|
2001-05-06 18:35:20 +04:00
|
|
|
int calling_back)
|
|
|
|
{
|
2002-10-25 15:30:33 +04:00
|
|
|
Telnet telnet = (Telnet) plug;
|
|
|
|
|
|
|
|
if (telnet->s) {
|
|
|
|
sk_close(telnet->s);
|
|
|
|
telnet->s = NULL;
|
2001-07-31 18:23:21 +04:00
|
|
|
}
|
2001-03-13 13:22:45 +03:00
|
|
|
if (error_msg) {
|
2001-05-06 18:35:20 +04:00
|
|
|
/* A socket error has occurred. */
|
2002-10-26 16:58:13 +04:00
|
|
|
logevent(telnet->frontend, error_msg);
|
2003-05-04 18:14:10 +04:00
|
|
|
connection_fatal(telnet->frontend, "%s", error_msg);
|
2001-05-06 18:35:20 +04:00
|
|
|
} /* Otherwise, the remote side closed the connection normally. */
|
2001-03-13 13:22:45 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-05-06 18:35:20 +04:00
|
|
|
static int telnet_receive(Plug plug, int urgent, char *data, int len)
|
|
|
|
{
|
2002-10-25 15:30:33 +04:00
|
|
|
Telnet telnet = (Telnet) plug;
|
2001-05-06 18:35:20 +04:00
|
|
|
if (urgent)
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet->in_synch = TRUE;
|
|
|
|
do_telnet_read(telnet, data, len);
|
2000-10-23 14:32:37 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2001-09-08 02:39:01 +04:00
|
|
|
static void telnet_sent(Plug plug, int bufsize)
|
|
|
|
{
|
2002-10-25 15:30:33 +04:00
|
|
|
Telnet telnet = (Telnet) plug;
|
|
|
|
telnet->bufsize = bufsize;
|
2001-09-08 02:39:01 +04:00
|
|
|
}
|
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
/*
|
2000-10-23 14:32:37 +04:00
|
|
|
* Called to set up the Telnet connection.
|
1999-01-08 16:02:13 +03:00
|
|
|
*
|
|
|
|
* Returns an error message, or NULL on success.
|
|
|
|
*
|
2001-05-09 18:01:15 +04:00
|
|
|
* Also places the canonical host name into `realhost'. It must be
|
|
|
|
* freed by the caller.
|
1999-01-08 16:02:13 +03:00
|
|
|
*/
|
2003-05-04 18:18:18 +04:00
|
|
|
static const char *telnet_init(void *frontend_handle, void **backend_handle,
|
|
|
|
Config *cfg,
|
|
|
|
char *host, int port, char **realhost,
|
2004-06-20 21:07:38 +04:00
|
|
|
int nodelay, int keepalive)
|
2001-05-06 18:35:20 +04:00
|
|
|
{
|
2002-10-25 15:30:33 +04:00
|
|
|
static const struct plug_function_table fn_table = {
|
2001-03-13 13:22:45 +03:00
|
|
|
telnet_closing,
|
2001-09-08 02:39:01 +04:00
|
|
|
telnet_receive,
|
|
|
|
telnet_sent
|
2002-10-25 15:30:33 +04:00
|
|
|
};
|
2000-10-23 14:32:37 +04:00
|
|
|
SockAddr addr;
|
2003-05-04 18:18:18 +04:00
|
|
|
const char *err;
|
2002-10-25 15:30:33 +04:00
|
|
|
Telnet telnet;
|
|
|
|
|
2003-03-29 19:14:26 +03:00
|
|
|
telnet = snew(struct telnet_tag);
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet->fn = &fn_table;
|
2003-01-12 17:48:29 +03:00
|
|
|
telnet->cfg = *cfg; /* STRUCTURE COPY */
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet->s = NULL;
|
|
|
|
telnet->echoing = TRUE;
|
|
|
|
telnet->editing = TRUE;
|
|
|
|
telnet->activated = FALSE;
|
|
|
|
telnet->sb_buf = NULL;
|
|
|
|
telnet->sb_size = 0;
|
|
|
|
telnet->frontend = frontend_handle;
|
2003-01-12 17:48:29 +03:00
|
|
|
telnet->term_width = telnet->cfg.width;
|
|
|
|
telnet->term_height = telnet->cfg.height;
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet->state = TOP_LEVEL;
|
|
|
|
*backend_handle = telnet;
|
2002-10-22 20:11:33 +04:00
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
/*
|
|
|
|
* Try to find host.
|
|
|
|
*/
|
2001-09-08 02:39:01 +04:00
|
|
|
{
|
2002-11-07 22:49:03 +03:00
|
|
|
char *buf;
|
|
|
|
buf = dupprintf("Looking up host \"%s\"", host);
|
2002-10-26 16:58:13 +04:00
|
|
|
logevent(telnet->frontend, buf);
|
2002-11-07 22:49:03 +03:00
|
|
|
sfree(buf);
|
2001-09-08 02:39:01 +04:00
|
|
|
}
|
2003-01-12 18:26:10 +03:00
|
|
|
addr = name_lookup(host, port, realhost, &telnet->cfg);
|
2003-08-07 20:04:33 +04:00
|
|
|
if ((err = sk_addr_error(addr)) != NULL) {
|
|
|
|
sk_addr_free(addr);
|
2000-10-23 14:32:37 +04:00
|
|
|
return err;
|
2003-08-07 20:04:33 +04:00
|
|
|
}
|
1999-01-08 16:02:13 +03:00
|
|
|
|
|
|
|
if (port < 0)
|
|
|
|
port = 23; /* default telnet port */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Open socket.
|
|
|
|
*/
|
2001-09-08 02:39:01 +04:00
|
|
|
{
|
2002-11-07 22:49:03 +03:00
|
|
|
char *buf, addrbuf[100];
|
2001-09-08 02:39:01 +04:00
|
|
|
sk_getaddr(addr, addrbuf, 100);
|
2002-11-07 22:49:03 +03:00
|
|
|
buf = dupprintf("Connecting to %s port %d", addrbuf, port);
|
2002-10-26 16:58:13 +04:00
|
|
|
logevent(telnet->frontend, buf);
|
2002-11-07 22:49:03 +03:00
|
|
|
sfree(buf);
|
2001-09-08 02:39:01 +04:00
|
|
|
}
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet->s = new_connection(addr, *realhost, port, 0, 1,
|
2004-06-20 21:07:38 +04:00
|
|
|
nodelay, keepalive, (Plug) telnet, &telnet->cfg);
|
2003-01-04 19:42:53 +03:00
|
|
|
if ((err = sk_socket_error(telnet->s)) != NULL)
|
2000-10-23 14:32:37 +04:00
|
|
|
return err;
|
1999-01-08 16:02:13 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialise option states.
|
|
|
|
*/
|
2003-01-12 17:48:29 +03:00
|
|
|
if (telnet->cfg.passive_telnet) {
|
2002-10-25 15:30:33 +04:00
|
|
|
const struct Opt *const *o;
|
2001-05-09 17:51:07 +04:00
|
|
|
|
|
|
|
for (o = opts; *o; o++)
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet->opt_states[(*o)->index] = INACTIVE;
|
2001-05-09 17:51:07 +04:00
|
|
|
} else {
|
2002-10-25 15:30:33 +04:00
|
|
|
const struct Opt *const *o;
|
1999-01-08 16:02:13 +03:00
|
|
|
|
2002-10-25 15:30:33 +04:00
|
|
|
for (o = opts; *o; o++) {
|
|
|
|
telnet->opt_states[(*o)->index] = (*o)->initial_state;
|
|
|
|
if (telnet->opt_states[(*o)->index] == REQUESTED)
|
|
|
|
send_opt(telnet, (*o)->send, (*o)->option);
|
|
|
|
}
|
|
|
|
telnet->activated = TRUE;
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set up SYNCH state.
|
|
|
|
*/
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet->in_synch = FALSE;
|
2000-09-22 17:10:19 +04:00
|
|
|
|
2004-10-17 18:44:27 +04:00
|
|
|
/*
|
|
|
|
* We can send special commands from the start.
|
|
|
|
*/
|
|
|
|
update_specials_menu(telnet->frontend);
|
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2003-01-16 02:30:21 +03:00
|
|
|
static void telnet_free(void *handle)
|
|
|
|
{
|
|
|
|
Telnet telnet = (Telnet) handle;
|
|
|
|
|
|
|
|
sfree(telnet->sb_buf);
|
|
|
|
if (telnet->s)
|
|
|
|
sk_close(telnet->s);
|
|
|
|
sfree(telnet);
|
|
|
|
}
|
2003-01-12 17:48:29 +03:00
|
|
|
/*
|
|
|
|
* Reconfigure the Telnet backend. There's no immediate action
|
|
|
|
* necessary, in this backend: we just save the fresh config for
|
|
|
|
* any subsequent negotiations.
|
|
|
|
*/
|
|
|
|
static void telnet_reconfig(void *handle, Config *cfg)
|
|
|
|
{
|
|
|
|
Telnet telnet = (Telnet) handle;
|
|
|
|
telnet->cfg = *cfg; /* STRUCTURE COPY */
|
|
|
|
}
|
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
/*
|
|
|
|
* Called to send data down the Telnet connection.
|
|
|
|
*/
|
2002-10-25 15:30:33 +04:00
|
|
|
static int telnet_send(void *handle, char *buf, int len)
|
2001-05-06 18:35:20 +04:00
|
|
|
{
|
2002-10-25 15:30:33 +04:00
|
|
|
Telnet telnet = (Telnet) handle;
|
2003-01-04 19:42:53 +03:00
|
|
|
unsigned char *p, *end;
|
2003-01-14 21:43:45 +03:00
|
|
|
static const unsigned char iac[2] = { IAC, IAC };
|
|
|
|
static const unsigned char cr[2] = { CR, NUL };
|
2001-05-09 19:12:26 +04:00
|
|
|
#if 0
|
2003-01-14 21:43:45 +03:00
|
|
|
static const unsigned char nl[2] = { CR, LF };
|
2001-05-09 19:12:26 +04:00
|
|
|
#endif
|
1999-01-08 16:02:13 +03:00
|
|
|
|
2002-10-25 15:30:33 +04:00
|
|
|
if (telnet->s == NULL)
|
2001-08-25 21:09:23 +04:00
|
|
|
return 0;
|
1999-01-08 16:02:13 +03:00
|
|
|
|
2003-01-04 19:42:53 +03:00
|
|
|
p = (unsigned char *)buf;
|
|
|
|
end = (unsigned char *)(buf + len);
|
|
|
|
while (p < end) {
|
|
|
|
unsigned char *q = p;
|
1999-01-08 16:02:13 +03:00
|
|
|
|
2003-01-04 19:42:53 +03:00
|
|
|
while (p < end && iswritable(*p))
|
2001-05-06 18:35:20 +04:00
|
|
|
p++;
|
2003-01-04 19:42:53 +03:00
|
|
|
telnet->bufsize = sk_write(telnet->s, (char *)q, p - q);
|
1999-01-08 16:02:13 +03:00
|
|
|
|
2003-01-04 19:42:53 +03:00
|
|
|
while (p < end && !iswritable(*p)) {
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet->bufsize =
|
2003-01-04 19:42:53 +03:00
|
|
|
sk_write(telnet->s, (char *)(*p == IAC ? iac : cr), 2);
|
1999-01-08 16:02:13 +03:00
|
|
|
p++;
|
|
|
|
}
|
|
|
|
}
|
2001-08-25 21:09:23 +04:00
|
|
|
|
2002-10-25 15:30:33 +04:00
|
|
|
return telnet->bufsize;
|
2001-08-25 21:09:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Called to query the current socket sendability status.
|
|
|
|
*/
|
2002-10-25 15:30:33 +04:00
|
|
|
static int telnet_sendbuffer(void *handle)
|
2001-08-25 21:09:23 +04:00
|
|
|
{
|
2002-10-25 15:30:33 +04:00
|
|
|
Telnet telnet = (Telnet) handle;
|
|
|
|
return telnet->bufsize;
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Called to set the size of the window from Telnet's POV.
|
|
|
|
*/
|
2002-10-25 15:30:33 +04:00
|
|
|
static void telnet_size(void *handle, int width, int height)
|
2001-05-06 18:35:20 +04:00
|
|
|
{
|
2002-10-25 15:30:33 +04:00
|
|
|
Telnet telnet = (Telnet) handle;
|
2003-01-02 14:14:35 +03:00
|
|
|
unsigned char b[24];
|
|
|
|
int n;
|
2002-11-07 22:49:03 +03:00
|
|
|
char *logbuf;
|
1999-01-08 16:02:13 +03:00
|
|
|
|
2002-10-25 15:30:33 +04:00
|
|
|
telnet->term_width = width;
|
|
|
|
telnet->term_height = height;
|
2002-10-23 16:41:35 +04:00
|
|
|
|
2002-10-25 15:30:33 +04:00
|
|
|
if (telnet->s == NULL || telnet->opt_states[o_naws.index] != ACTIVE)
|
1999-01-08 16:02:13 +03:00
|
|
|
return;
|
2003-01-02 14:14:35 +03:00
|
|
|
n = 0;
|
|
|
|
b[n++] = IAC;
|
|
|
|
b[n++] = SB;
|
|
|
|
b[n++] = TELOPT_NAWS;
|
|
|
|
b[n++] = telnet->term_width >> 8;
|
|
|
|
if (b[n-1] == IAC) b[n++] = IAC; /* duplicate any IAC byte occurs */
|
|
|
|
b[n++] = telnet->term_width & 0xFF;
|
|
|
|
if (b[n-1] == IAC) b[n++] = IAC; /* duplicate any IAC byte occurs */
|
|
|
|
b[n++] = telnet->term_height >> 8;
|
|
|
|
if (b[n-1] == IAC) b[n++] = IAC; /* duplicate any IAC byte occurs */
|
|
|
|
b[n++] = telnet->term_height & 0xFF;
|
|
|
|
if (b[n-1] == IAC) b[n++] = IAC; /* duplicate any IAC byte occurs */
|
|
|
|
b[n++] = IAC;
|
|
|
|
b[n++] = SE;
|
2003-01-04 19:42:53 +03:00
|
|
|
telnet->bufsize = sk_write(telnet->s, (char *)b, n);
|
2002-11-07 22:49:03 +03:00
|
|
|
logbuf = dupprintf("client:\tSB NAWS %d,%d",
|
2003-01-02 14:14:35 +03:00
|
|
|
telnet->term_width, telnet->term_height);
|
2002-10-26 16:58:13 +04:00
|
|
|
logevent(telnet->frontend, logbuf);
|
2002-11-07 22:49:03 +03:00
|
|
|
sfree(logbuf);
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Send Telnet special codes.
|
|
|
|
*/
|
2002-10-25 15:30:33 +04:00
|
|
|
static void telnet_special(void *handle, Telnet_Special code)
|
2001-05-06 18:35:20 +04:00
|
|
|
{
|
2002-10-25 15:30:33 +04:00
|
|
|
Telnet telnet = (Telnet) handle;
|
1999-01-08 16:02:13 +03:00
|
|
|
unsigned char b[2];
|
|
|
|
|
2002-10-25 15:30:33 +04:00
|
|
|
if (telnet->s == NULL)
|
1999-01-08 16:02:13 +03:00
|
|
|
return;
|
|
|
|
|
|
|
|
b[0] = IAC;
|
|
|
|
switch (code) {
|
2001-05-06 18:35:20 +04:00
|
|
|
case TS_AYT:
|
|
|
|
b[1] = AYT;
|
2003-01-04 19:42:53 +03:00
|
|
|
telnet->bufsize = sk_write(telnet->s, (char *)b, 2);
|
2001-05-06 18:35:20 +04:00
|
|
|
break;
|
|
|
|
case TS_BRK:
|
|
|
|
b[1] = BREAK;
|
2003-01-04 19:42:53 +03:00
|
|
|
telnet->bufsize = sk_write(telnet->s, (char *)b, 2);
|
2001-05-06 18:35:20 +04:00
|
|
|
break;
|
|
|
|
case TS_EC:
|
|
|
|
b[1] = EC;
|
2003-01-04 19:42:53 +03:00
|
|
|
telnet->bufsize = sk_write(telnet->s, (char *)b, 2);
|
2001-05-06 18:35:20 +04:00
|
|
|
break;
|
|
|
|
case TS_EL:
|
|
|
|
b[1] = EL;
|
2003-01-04 19:42:53 +03:00
|
|
|
telnet->bufsize = sk_write(telnet->s, (char *)b, 2);
|
2001-05-06 18:35:20 +04:00
|
|
|
break;
|
|
|
|
case TS_GA:
|
|
|
|
b[1] = GA;
|
2003-01-04 19:42:53 +03:00
|
|
|
telnet->bufsize = sk_write(telnet->s, (char *)b, 2);
|
2001-05-06 18:35:20 +04:00
|
|
|
break;
|
|
|
|
case TS_NOP:
|
|
|
|
b[1] = NOP;
|
2003-01-04 19:42:53 +03:00
|
|
|
telnet->bufsize = sk_write(telnet->s, (char *)b, 2);
|
2001-05-06 18:35:20 +04:00
|
|
|
break;
|
|
|
|
case TS_ABORT:
|
|
|
|
b[1] = ABORT;
|
2003-01-04 19:42:53 +03:00
|
|
|
telnet->bufsize = sk_write(telnet->s, (char *)b, 2);
|
2001-05-06 18:35:20 +04:00
|
|
|
break;
|
|
|
|
case TS_AO:
|
|
|
|
b[1] = AO;
|
2003-01-04 19:42:53 +03:00
|
|
|
telnet->bufsize = sk_write(telnet->s, (char *)b, 2);
|
2001-05-06 18:35:20 +04:00
|
|
|
break;
|
|
|
|
case TS_IP:
|
|
|
|
b[1] = IP;
|
2003-01-04 19:42:53 +03:00
|
|
|
telnet->bufsize = sk_write(telnet->s, (char *)b, 2);
|
2001-05-06 18:35:20 +04:00
|
|
|
break;
|
|
|
|
case TS_SUSP:
|
|
|
|
b[1] = SUSP;
|
2003-01-04 19:42:53 +03:00
|
|
|
telnet->bufsize = sk_write(telnet->s, (char *)b, 2);
|
2001-05-06 18:35:20 +04:00
|
|
|
break;
|
|
|
|
case TS_EOR:
|
|
|
|
b[1] = EOR;
|
2003-01-04 19:42:53 +03:00
|
|
|
telnet->bufsize = sk_write(telnet->s, (char *)b, 2);
|
2001-05-06 18:35:20 +04:00
|
|
|
break;
|
|
|
|
case TS_EOF:
|
|
|
|
b[1] = xEOF;
|
2003-01-04 19:42:53 +03:00
|
|
|
telnet->bufsize = sk_write(telnet->s, (char *)b, 2);
|
2001-05-06 18:35:20 +04:00
|
|
|
break;
|
2001-05-09 19:12:26 +04:00
|
|
|
case TS_EOL:
|
2003-03-06 16:25:48 +03:00
|
|
|
/* In BINARY mode, CR-LF becomes just CR -
|
|
|
|
* and without the NUL suffix too. */
|
2002-12-19 17:22:16 +03:00
|
|
|
if (telnet->opt_states[o_we_bin.index] == ACTIVE)
|
2003-03-06 16:25:48 +03:00
|
|
|
telnet->bufsize = sk_write(telnet->s, "\r", 1);
|
2002-12-19 17:22:16 +03:00
|
|
|
else
|
|
|
|
telnet->bufsize = sk_write(telnet->s, "\r\n", 2);
|
2001-05-09 19:12:26 +04:00
|
|
|
break;
|
1999-01-08 16:02:13 +03:00
|
|
|
case TS_SYNCH:
|
2001-05-06 18:35:20 +04:00
|
|
|
b[1] = DM;
|
2003-01-04 19:42:53 +03:00
|
|
|
telnet->bufsize = sk_write(telnet->s, (char *)b, 1);
|
|
|
|
telnet->bufsize = sk_write_oob(telnet->s, (char *)(b + 1), 1);
|
2001-05-06 18:35:20 +04:00
|
|
|
break;
|
2000-03-11 17:06:11 +03:00
|
|
|
case TS_RECHO:
|
2002-10-25 15:30:33 +04:00
|
|
|
if (telnet->opt_states[o_echo.index] == INACTIVE ||
|
|
|
|
telnet->opt_states[o_echo.index] == REALLY_INACTIVE) {
|
|
|
|
telnet->opt_states[o_echo.index] = REQUESTED;
|
|
|
|
send_opt(telnet, o_echo.send, o_echo.option);
|
2000-03-11 17:06:11 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case TS_LECHO:
|
2002-10-25 15:30:33 +04:00
|
|
|
if (telnet->opt_states[o_echo.index] == ACTIVE) {
|
|
|
|
telnet->opt_states[o_echo.index] = REQUESTED;
|
|
|
|
send_opt(telnet, o_echo.nsend, o_echo.option);
|
2000-03-11 17:06:11 +03:00
|
|
|
}
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
2001-05-06 18:35:20 +04:00
|
|
|
case TS_PING:
|
2002-10-25 15:30:33 +04:00
|
|
|
if (telnet->opt_states[o_they_sga.index] == ACTIVE) {
|
2001-05-06 18:35:20 +04:00
|
|
|
b[1] = NOP;
|
2003-01-04 19:42:53 +03:00
|
|
|
telnet->bufsize = sk_write(telnet->s, (char *)b, 2);
|
2000-10-09 16:53:32 +04:00
|
|
|
}
|
2001-05-06 18:35:20 +04:00
|
|
|
break;
|
2004-10-18 01:22:22 +04:00
|
|
|
default:
|
|
|
|
break; /* never heard of it */
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-04-05 00:21:05 +04:00
|
|
|
static const struct telnet_special *telnet_get_specials(void *handle)
|
|
|
|
{
|
|
|
|
static const struct telnet_special specials[] = {
|
|
|
|
{"Are You There", TS_AYT},
|
|
|
|
{"Break", TS_BRK},
|
|
|
|
{"Synch", TS_SYNCH},
|
|
|
|
{"Erase Character", TS_EC},
|
|
|
|
{"Erase Line", TS_EL},
|
|
|
|
{"Go Ahead", TS_GA},
|
|
|
|
{"No Operation", TS_NOP},
|
2004-10-18 01:22:22 +04:00
|
|
|
{NULL, TS_SEP},
|
2003-04-05 00:21:05 +04:00
|
|
|
{"Abort Process", TS_ABORT},
|
|
|
|
{"Abort Output", TS_AO},
|
|
|
|
{"Interrupt Process", TS_IP},
|
|
|
|
{"Suspend Process", TS_SUSP},
|
2004-10-18 01:22:22 +04:00
|
|
|
{NULL, TS_SEP},
|
2003-04-05 00:21:05 +04:00
|
|
|
{"End Of Record", TS_EOR},
|
|
|
|
{"End Of File", TS_EOF},
|
2004-10-18 01:22:22 +04:00
|
|
|
{NULL, TS_EXITMENU}
|
2003-04-05 00:21:05 +04:00
|
|
|
};
|
|
|
|
return specials;
|
|
|
|
}
|
|
|
|
|
2002-10-25 15:30:33 +04:00
|
|
|
static Socket telnet_socket(void *handle)
|
2001-05-06 18:35:20 +04:00
|
|
|
{
|
2002-10-25 15:30:33 +04:00
|
|
|
Telnet telnet = (Telnet) handle;
|
|
|
|
return telnet->s;
|
2001-05-06 18:35:20 +04:00
|
|
|
}
|
2000-09-08 20:42:11 +04:00
|
|
|
|
2002-10-25 15:30:33 +04:00
|
|
|
static int telnet_sendok(void *handle)
|
2001-05-06 18:35:20 +04:00
|
|
|
{
|
2002-10-30 20:57:31 +03:00
|
|
|
/* Telnet telnet = (Telnet) handle; */
|
2001-05-06 18:35:20 +04:00
|
|
|
return 1;
|
|
|
|
}
|
2000-09-08 18:45:20 +04:00
|
|
|
|
2002-10-25 15:30:33 +04:00
|
|
|
static void telnet_unthrottle(void *handle, int backlog)
|
2001-08-25 21:09:23 +04:00
|
|
|
{
|
2002-10-25 15:30:33 +04:00
|
|
|
Telnet telnet = (Telnet) handle;
|
|
|
|
sk_set_frozen(telnet->s, backlog > TELNET_MAX_BACKLOG);
|
2001-08-25 21:09:23 +04:00
|
|
|
}
|
|
|
|
|
2002-10-25 15:30:33 +04:00
|
|
|
static int telnet_ldisc(void *handle, int option)
|
2001-05-06 18:35:20 +04:00
|
|
|
{
|
2002-10-25 15:30:33 +04:00
|
|
|
Telnet telnet = (Telnet) handle;
|
2001-05-06 18:35:20 +04:00
|
|
|
if (option == LD_ECHO)
|
2002-10-25 15:30:33 +04:00
|
|
|
return telnet->echoing;
|
2001-05-06 18:35:20 +04:00
|
|
|
if (option == LD_EDIT)
|
2002-10-25 15:30:33 +04:00
|
|
|
return telnet->editing;
|
2001-01-24 17:08:20 +03:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2002-10-26 14:16:19 +04:00
|
|
|
static void telnet_provide_ldisc(void *handle, void *ldisc)
|
|
|
|
{
|
|
|
|
Telnet telnet = (Telnet) handle;
|
|
|
|
telnet->ldisc = ldisc;
|
|
|
|
}
|
|
|
|
|
2002-10-26 16:58:13 +04:00
|
|
|
static void telnet_provide_logctx(void *handle, void *logctx)
|
|
|
|
{
|
|
|
|
/* This is a stub. */
|
|
|
|
}
|
|
|
|
|
2002-10-25 15:30:33 +04:00
|
|
|
static int telnet_exitcode(void *handle)
|
2001-12-29 18:31:42 +03:00
|
|
|
{
|
2003-03-31 16:10:08 +04:00
|
|
|
Telnet telnet = (Telnet) handle;
|
|
|
|
if (telnet->s != NULL)
|
|
|
|
return -1; /* still connected */
|
|
|
|
else
|
|
|
|
/* Telnet doesn't transmit exit codes back to the client */
|
|
|
|
return 0;
|
2001-12-29 18:31:42 +03:00
|
|
|
}
|
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
Backend telnet_backend = {
|
|
|
|
telnet_init,
|
2003-01-16 02:30:21 +03:00
|
|
|
telnet_free,
|
2003-01-12 17:48:29 +03:00
|
|
|
telnet_reconfig,
|
1999-01-08 16:02:13 +03:00
|
|
|
telnet_send,
|
2001-08-25 21:09:23 +04:00
|
|
|
telnet_sendbuffer,
|
1999-01-08 16:02:13 +03:00
|
|
|
telnet_size,
|
2000-09-08 18:45:20 +04:00
|
|
|
telnet_special,
|
2003-04-05 00:21:05 +04:00
|
|
|
telnet_get_specials,
|
2000-09-08 20:42:11 +04:00
|
|
|
telnet_socket,
|
2001-12-29 18:31:42 +03:00
|
|
|
telnet_exitcode,
|
2000-10-04 18:35:15 +04:00
|
|
|
telnet_sendok,
|
2001-01-24 17:08:20 +03:00
|
|
|
telnet_ldisc,
|
2002-10-26 14:16:19 +04:00
|
|
|
telnet_provide_ldisc,
|
2002-10-26 16:58:13 +04:00
|
|
|
telnet_provide_logctx,
|
2001-08-25 21:09:23 +04:00
|
|
|
telnet_unthrottle,
|
2000-10-04 18:35:15 +04:00
|
|
|
23
|
1999-01-08 16:02:13 +03:00
|
|
|
};
|