2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2004-06-24 03:43:48 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
1999-12-29 09:20:26 -05:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2005-02-09 08:06:40 -05:00
|
|
|
* Copyright (C) 1998 - 2005, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
|
|
|
* are also available at http://curl.haxx.se/docs/copyright.html.
|
2004-06-24 03:43:48 -04:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
2002-09-03 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* $Id$
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2000-08-24 10:26:33 -04:00
|
|
|
#include "setup.h"
|
|
|
|
|
2002-06-11 07:13:01 -04:00
|
|
|
#ifndef CURL_DISABLE_TELNET
|
1999-12-29 09:20:26 -05:00
|
|
|
/* -- WIN32 approved -- */
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <ctype.h>
|
2004-11-02 05:12:22 -05:00
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
1999-12-29 09:20:26 -05:00
|
|
|
#include <sys/types.h>
|
2004-11-02 05:12:22 -05:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_STAT_H
|
1999-12-29 09:20:26 -05:00
|
|
|
#include <sys/stat.h>
|
2004-11-02 05:12:22 -05:00
|
|
|
#endif
|
1999-12-29 09:20:26 -05:00
|
|
|
#include <errno.h>
|
|
|
|
|
2003-10-14 08:00:45 -04:00
|
|
|
#if defined(WIN32)
|
1999-12-29 09:20:26 -05:00
|
|
|
#include <time.h>
|
|
|
|
#include <io.h>
|
|
|
|
#else
|
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#endif
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
#include <netdb.h>
|
|
|
|
#ifdef HAVE_ARPA_INET_H
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_NET_IF_H
|
|
|
|
#include <net/if.h>
|
|
|
|
#endif
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <signal.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_SYS_PARAM_H
|
|
|
|
#include <sys/param.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "urldata.h"
|
|
|
|
#include <curl/curl.h>
|
2001-01-17 08:23:01 -05:00
|
|
|
#include "transfer.h"
|
1999-12-29 09:20:26 -05:00
|
|
|
#include "sendf.h"
|
2004-01-29 08:56:45 -05:00
|
|
|
#include "telnet.h"
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
#define _MPRINTF_REPLACE /* use our functions only */
|
|
|
|
#include <curl/mprintf.h>
|
|
|
|
|
|
|
|
#define TELOPTS
|
|
|
|
#define TELCMDS
|
|
|
|
|
|
|
|
#include "arpa_telnet.h"
|
2004-05-11 07:30:23 -04:00
|
|
|
#include "memory.h"
|
2004-11-19 03:52:33 -05:00
|
|
|
#include "select.h"
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2001-03-16 10:19:36 -05:00
|
|
|
/* The last #include file should be: */
|
|
|
|
#include "memdebug.h"
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
#define SUBBUFSIZE 512
|
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
#define CURL_SB_CLEAR(x) x->subpointer = x->subbuffer;
|
|
|
|
#define CURL_SB_TERM(x) { x->subend = x->subpointer; CURL_SB_CLEAR(x); }
|
|
|
|
#define CURL_SB_ACCUM(x,c) \
|
|
|
|
if (x->subpointer < (x->subbuffer+sizeof x->subbuffer)) { \
|
|
|
|
*x->subpointer++ = (c); \
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
#define CURL_SB_GET(x) ((*x->subpointer++)&0xff)
|
|
|
|
#define CURL_SB_PEEK(x) ((*x->subpointer)&0xff)
|
|
|
|
#define CURL_SB_EOF(x) (x->subpointer >= x->subend)
|
|
|
|
#define CURL_SB_LEN(x) (x->subend - x->subpointer)
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2004-03-03 08:32:56 -05:00
|
|
|
#ifdef WIN32
|
|
|
|
typedef FARPROC WSOCK2_FUNC;
|
|
|
|
static CURLcode check_wsock2 ( struct SessionHandle *data );
|
|
|
|
#endif
|
|
|
|
|
2001-01-05 05:11:41 -05:00
|
|
|
static
|
2001-02-20 12:35:51 -05:00
|
|
|
void telrcv(struct connectdata *,
|
2004-10-06 03:50:18 -04:00
|
|
|
unsigned char *inbuf, /* Data received from socket */
|
|
|
|
ssize_t count); /* Number of bytes received */
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2001-08-30 18:48:34 -04:00
|
|
|
static void printoption(struct SessionHandle *data,
|
2004-10-06 03:50:18 -04:00
|
|
|
const char *direction,
|
|
|
|
int cmd, int option);
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2001-02-20 12:35:51 -05:00
|
|
|
static void negotiate(struct connectdata *);
|
|
|
|
static void send_negotiation(struct connectdata *, int cmd, int option);
|
|
|
|
static void set_local_option(struct connectdata *, int cmd, int option);
|
|
|
|
static void set_remote_option(struct connectdata *, int cmd, int option);
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2001-08-30 18:48:34 -04:00
|
|
|
static void printsub(struct SessionHandle *data,
|
2004-10-06 03:50:18 -04:00
|
|
|
int direction, unsigned char *pointer,
|
2004-07-01 04:10:21 -04:00
|
|
|
size_t length);
|
2001-02-20 12:35:51 -05:00
|
|
|
static void suboption(struct connectdata *);
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2001-03-05 08:59:43 -05:00
|
|
|
/* For negotiation compliant to RFC 1143 */
|
2004-10-06 03:50:18 -04:00
|
|
|
#define CURL_NO 0
|
|
|
|
#define CURL_YES 1
|
|
|
|
#define CURL_WANTYES 2
|
|
|
|
#define CURL_WANTNO 3
|
2001-03-05 08:59:43 -05:00
|
|
|
|
2004-10-06 03:50:18 -04:00
|
|
|
#define CURL_EMPTY 0
|
2003-03-12 03:40:45 -05:00
|
|
|
#define CURL_OPPOSITE 1
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Telnet receiver states for fsm
|
|
|
|
*/
|
2001-03-05 08:59:43 -05:00
|
|
|
typedef enum
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
CURL_TS_DATA = 0,
|
|
|
|
CURL_TS_IAC,
|
|
|
|
CURL_TS_WILL,
|
|
|
|
CURL_TS_WONT,
|
|
|
|
CURL_TS_DO,
|
|
|
|
CURL_TS_DONT,
|
|
|
|
CURL_TS_CR,
|
|
|
|
CURL_TS_SB, /* sub-option collection */
|
|
|
|
CURL_TS_SE /* looking for sub-option end */
|
2001-03-05 08:59:43 -05:00
|
|
|
} TelnetReceive;
|
|
|
|
|
|
|
|
struct TELNET {
|
|
|
|
int please_negotiate;
|
|
|
|
int already_negotiated;
|
2004-06-24 03:43:48 -04:00
|
|
|
int us[256];
|
|
|
|
int usq[256];
|
|
|
|
int us_preferred[256];
|
|
|
|
int him[256];
|
|
|
|
int himq[256];
|
|
|
|
int him_preferred[256];
|
2001-09-17 10:10:38 -04:00
|
|
|
char subopt_ttype[32]; /* Set with suboption TTYPE */
|
|
|
|
char subopt_xdisploc[128]; /* Set with suboption XDISPLOC */
|
2001-03-05 08:59:43 -05:00
|
|
|
struct curl_slist *telnet_vars; /* Environment variables */
|
|
|
|
|
|
|
|
/* suboptions */
|
|
|
|
char subbuffer[SUBBUFSIZE];
|
|
|
|
char *subpointer, *subend; /* buffer for sub-options */
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2001-03-05 08:59:43 -05:00
|
|
|
TelnetReceive telrcv_state;
|
|
|
|
};
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2004-03-03 08:32:56 -05:00
|
|
|
#ifdef WIN32
|
|
|
|
static CURLcode
|
|
|
|
check_wsock2 ( struct SessionHandle *data )
|
|
|
|
{
|
2004-06-24 03:43:48 -04:00
|
|
|
int err;
|
|
|
|
WORD wVersionRequested;
|
|
|
|
WSADATA wsaData;
|
2004-03-03 08:32:56 -05:00
|
|
|
|
|
|
|
curlassert(data);
|
|
|
|
|
|
|
|
/* telnet requires at least WinSock 2.0 so ask for it. */
|
|
|
|
wVersionRequested = MAKEWORD(2, 0);
|
|
|
|
|
2004-06-24 03:43:48 -04:00
|
|
|
err = WSAStartup(wVersionRequested, &wsaData);
|
|
|
|
|
2004-03-03 08:32:56 -05:00
|
|
|
/* We must've called this once already, so this call */
|
|
|
|
/* should always succeed. But, just in case... */
|
|
|
|
if (err != 0) {
|
|
|
|
failf(data,"WSAStartup failed (%d)",err);
|
2004-06-24 03:43:48 -04:00
|
|
|
return CURLE_FAILED_INIT;
|
2004-03-03 08:32:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* We have to have a WSACleanup call for every successful */
|
|
|
|
/* WSAStartup call. */
|
|
|
|
WSACleanup();
|
|
|
|
|
|
|
|
/* Check that our version is supported */
|
|
|
|
if (LOBYTE(wsaData.wVersion) != LOBYTE(wVersionRequested) ||
|
|
|
|
HIBYTE(wsaData.wVersion) != HIBYTE(wVersionRequested)) {
|
|
|
|
/* Our version isn't supported */
|
|
|
|
failf(data,"insufficient winsock version to support "
|
2004-10-06 03:50:18 -04:00
|
|
|
"telnet");
|
2004-03-03 08:32:56 -05:00
|
|
|
return CURLE_FAILED_INIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Our version is supported */
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
#endif
|
2001-03-05 08:59:43 -05:00
|
|
|
static
|
|
|
|
CURLcode init_telnet(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
struct TELNET *tn;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2004-06-24 03:43:48 -04:00
|
|
|
tn = (struct TELNET *)calloc(1, sizeof(struct TELNET));
|
2001-03-05 08:59:43 -05:00
|
|
|
if(!tn)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2004-06-24 03:43:48 -04:00
|
|
|
conn->proto.telnet = (void *)tn; /* make us known */
|
2001-02-20 12:35:51 -05:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
tn->telrcv_state = CURL_TS_DATA;
|
2001-02-20 12:35:51 -05:00
|
|
|
|
|
|
|
/* Init suboptions */
|
2003-03-12 03:40:45 -05:00
|
|
|
CURL_SB_CLEAR(tn);
|
2001-02-20 12:35:51 -05:00
|
|
|
|
|
|
|
/* Set the options we want by default */
|
2003-03-12 03:40:45 -05:00
|
|
|
tn->us_preferred[CURL_TELOPT_BINARY] = CURL_YES;
|
|
|
|
tn->us_preferred[CURL_TELOPT_SGA] = CURL_YES;
|
|
|
|
tn->him_preferred[CURL_TELOPT_BINARY] = CURL_YES;
|
|
|
|
tn->him_preferred[CURL_TELOPT_SGA] = CURL_YES;
|
2001-03-05 08:59:43 -05:00
|
|
|
|
|
|
|
return CURLE_OK;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
2001-02-20 12:35:51 -05:00
|
|
|
static void negotiate(struct connectdata *conn)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2001-02-20 12:35:51 -05:00
|
|
|
int i;
|
2001-03-05 08:59:43 -05:00
|
|
|
struct TELNET *tn = (struct TELNET *)conn->proto.telnet;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
for(i = 0;i < CURL_NTELOPTS;i++)
|
2001-02-20 12:35:51 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
if(tn->us_preferred[i] == CURL_YES)
|
|
|
|
set_local_option(conn, i, CURL_YES);
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
if(tn->him_preferred[i] == CURL_YES)
|
|
|
|
set_remote_option(conn, i, CURL_YES);
|
2001-02-20 12:35:51 -05:00
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
2001-08-30 18:48:34 -04:00
|
|
|
static void printoption(struct SessionHandle *data,
|
2004-10-06 03:50:18 -04:00
|
|
|
const char *direction, int cmd, int option)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2001-08-14 04:38:08 -04:00
|
|
|
const char *fmt;
|
|
|
|
const char *opt;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2001-08-30 18:48:34 -04:00
|
|
|
if (data->set.verbose)
|
2001-02-20 12:35:51 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
if (cmd == CURL_IAC)
|
2001-02-20 12:35:51 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
if (CURL_TELCMD_OK(option))
|
2004-11-11 11:34:24 -05:00
|
|
|
infof(data, "%s IAC %s\n", direction, CURL_TELCMD(option));
|
1999-12-29 09:20:26 -05:00
|
|
|
else
|
2004-11-11 11:34:24 -05:00
|
|
|
infof(data, "%s IAC %d\n", direction, option);
|
2001-02-20 12:35:51 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
fmt = (cmd == CURL_WILL) ? "WILL" : (cmd == CURL_WONT) ? "WONT" :
|
|
|
|
(cmd == CURL_DO) ? "DO" : (cmd == CURL_DONT) ? "DONT" : 0;
|
2001-02-20 12:35:51 -05:00
|
|
|
if (fmt)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
if (CURL_TELOPT_OK(option))
|
|
|
|
opt = CURL_TELOPT(option);
|
|
|
|
else if (option == CURL_TELOPT_EXOPL)
|
2001-02-20 12:35:51 -05:00
|
|
|
opt = "EXOPL";
|
|
|
|
else
|
|
|
|
opt = NULL;
|
|
|
|
|
|
|
|
if(opt)
|
2004-11-11 11:34:24 -05:00
|
|
|
infof(data, "%s %s %s\n", direction, fmt, opt);
|
2001-02-20 12:35:51 -05:00
|
|
|
else
|
2004-11-11 11:34:24 -05:00
|
|
|
infof(data, "%s %s %d\n", direction, fmt, option);
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2001-02-20 12:35:51 -05:00
|
|
|
else
|
2004-11-11 11:34:24 -05:00
|
|
|
infof(data, "%s %d %d\n", direction, cmd, option);
|
2001-02-20 12:35:51 -05:00
|
|
|
}
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
2001-02-20 12:35:51 -05:00
|
|
|
static void send_negotiation(struct connectdata *conn, int cmd, int option)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
|
|
|
unsigned char buf[3];
|
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
buf[0] = CURL_IAC;
|
1999-12-29 09:20:26 -05:00
|
|
|
buf[1] = cmd;
|
|
|
|
buf[2] = option;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2004-11-18 09:04:40 -05:00
|
|
|
(void)swrite(conn->sock[FIRSTSOCKET], (char *)buf, 3);
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2001-02-20 12:35:51 -05:00
|
|
|
printoption(conn->data, "SENT", cmd, option);
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
2001-01-05 05:11:41 -05:00
|
|
|
static
|
2001-02-20 12:35:51 -05:00
|
|
|
void set_remote_option(struct connectdata *conn, int option, int newstate)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2001-03-05 08:59:43 -05:00
|
|
|
struct TELNET *tn = (struct TELNET *)conn->proto.telnet;
|
2003-03-12 03:40:45 -05:00
|
|
|
if(newstate == CURL_YES)
|
2001-02-20 12:35:51 -05:00
|
|
|
{
|
2001-03-05 08:59:43 -05:00
|
|
|
switch(tn->him[option])
|
2001-02-20 12:35:51 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_NO:
|
|
|
|
tn->him[option] = CURL_WANTYES;
|
|
|
|
send_negotiation(conn, CURL_DO, option);
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_YES:
|
2001-02-20 12:35:51 -05:00
|
|
|
/* Already enabled */
|
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_WANTNO:
|
2001-03-05 08:59:43 -05:00
|
|
|
switch(tn->himq[option])
|
2001-02-20 12:35:51 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_EMPTY:
|
|
|
|
/* Already negotiating for CURL_YES, queue the request */
|
|
|
|
tn->himq[option] = CURL_OPPOSITE;
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_OPPOSITE:
|
2001-02-20 12:35:51 -05:00
|
|
|
/* Error: already queued an enable request */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_WANTYES:
|
2001-03-05 08:59:43 -05:00
|
|
|
switch(tn->himq[option])
|
2001-02-20 12:35:51 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_EMPTY:
|
2001-02-20 12:35:51 -05:00
|
|
|
/* Error: already negotiating for enable */
|
|
|
|
break;
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_OPPOSITE:
|
|
|
|
tn->himq[option] = CURL_EMPTY;
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else /* NO */
|
|
|
|
{
|
2001-03-05 08:59:43 -05:00
|
|
|
switch(tn->him[option])
|
2001-02-20 12:35:51 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_NO:
|
2001-02-20 12:35:51 -05:00
|
|
|
/* Already disabled */
|
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_YES:
|
|
|
|
tn->him[option] = CURL_WANTNO;
|
|
|
|
send_negotiation(conn, CURL_DONT, option);
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_WANTNO:
|
2001-03-05 08:59:43 -05:00
|
|
|
switch(tn->himq[option])
|
2001-02-20 12:35:51 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_EMPTY:
|
2001-02-20 12:35:51 -05:00
|
|
|
/* Already negotiating for NO */
|
|
|
|
break;
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_OPPOSITE:
|
|
|
|
tn->himq[option] = CURL_EMPTY;
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_WANTYES:
|
2001-03-05 08:59:43 -05:00
|
|
|
switch(tn->himq[option])
|
2001-02-20 12:35:51 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_EMPTY:
|
|
|
|
tn->himq[option] = CURL_OPPOSITE;
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_OPPOSITE:
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
2001-01-05 05:11:41 -05:00
|
|
|
static
|
2001-02-20 12:35:51 -05:00
|
|
|
void rec_will(struct connectdata *conn, int option)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2001-03-05 08:59:43 -05:00
|
|
|
struct TELNET *tn = (struct TELNET *)conn->proto.telnet;
|
|
|
|
switch(tn->him[option])
|
2001-02-20 12:35:51 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_NO:
|
|
|
|
if(tn->him_preferred[option] == CURL_YES)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
tn->him[option] = CURL_YES;
|
|
|
|
send_negotiation(conn, CURL_DO, option);
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
send_negotiation(conn, CURL_DONT, option);
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_YES:
|
1999-12-29 09:20:26 -05:00
|
|
|
/* Already enabled */
|
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_WANTNO:
|
2001-03-05 08:59:43 -05:00
|
|
|
switch(tn->himq[option])
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_EMPTY:
|
2001-02-20 12:35:51 -05:00
|
|
|
/* Error: DONT answered by WILL */
|
2003-03-12 03:40:45 -05:00
|
|
|
tn->him[option] = CURL_NO;
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_OPPOSITE:
|
2001-02-20 12:35:51 -05:00
|
|
|
/* Error: DONT answered by WILL */
|
2003-03-12 03:40:45 -05:00
|
|
|
tn->him[option] = CURL_YES;
|
|
|
|
tn->himq[option] = CURL_EMPTY;
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_WANTYES:
|
2001-03-05 08:59:43 -05:00
|
|
|
switch(tn->himq[option])
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_EMPTY:
|
|
|
|
tn->him[option] = CURL_YES;
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_OPPOSITE:
|
|
|
|
tn->him[option] = CURL_WANTNO;
|
|
|
|
tn->himq[option] = CURL_EMPTY;
|
|
|
|
send_negotiation(conn, CURL_DONT, option);
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
break;
|
2001-02-20 12:35:51 -05:00
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2001-01-05 05:11:41 -05:00
|
|
|
static
|
2001-02-20 12:35:51 -05:00
|
|
|
void rec_wont(struct connectdata *conn, int option)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2001-03-05 08:59:43 -05:00
|
|
|
struct TELNET *tn = (struct TELNET *)conn->proto.telnet;
|
|
|
|
switch(tn->him[option])
|
2001-02-20 12:35:51 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_NO:
|
1999-12-29 09:20:26 -05:00
|
|
|
/* Already disabled */
|
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_YES:
|
|
|
|
tn->him[option] = CURL_NO;
|
|
|
|
send_negotiation(conn, CURL_DONT, option);
|
1999-12-29 09:20:26 -05:00
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_WANTNO:
|
2001-03-05 08:59:43 -05:00
|
|
|
switch(tn->himq[option])
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_EMPTY:
|
|
|
|
tn->him[option] = CURL_NO;
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_OPPOSITE:
|
|
|
|
tn->him[option] = CURL_WANTYES;
|
|
|
|
tn->himq[option] = CURL_EMPTY;
|
|
|
|
send_negotiation(conn, CURL_DO, option);
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_WANTYES:
|
2001-03-05 08:59:43 -05:00
|
|
|
switch(tn->himq[option])
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_EMPTY:
|
|
|
|
tn->him[option] = CURL_NO;
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_OPPOSITE:
|
|
|
|
tn->him[option] = CURL_NO;
|
|
|
|
tn->himq[option] = CURL_EMPTY;
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
break;
|
2001-02-20 12:35:51 -05:00
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:44:00 -05:00
|
|
|
static void
|
|
|
|
set_local_option(struct connectdata *conn, int option, int newstate)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2001-03-05 08:59:43 -05:00
|
|
|
struct TELNET *tn = (struct TELNET *)conn->proto.telnet;
|
2003-03-12 03:40:45 -05:00
|
|
|
if(newstate == CURL_YES)
|
2001-02-20 12:35:51 -05:00
|
|
|
{
|
2001-03-05 08:59:43 -05:00
|
|
|
switch(tn->us[option])
|
2001-02-20 12:35:51 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_NO:
|
|
|
|
tn->us[option] = CURL_WANTYES;
|
|
|
|
send_negotiation(conn, CURL_WILL, option);
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_YES:
|
2001-02-20 12:35:51 -05:00
|
|
|
/* Already enabled */
|
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_WANTNO:
|
2001-03-05 08:59:43 -05:00
|
|
|
switch(tn->usq[option])
|
2001-02-20 12:35:51 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_EMPTY:
|
|
|
|
/* Already negotiating for CURL_YES, queue the request */
|
|
|
|
tn->usq[option] = CURL_OPPOSITE;
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_OPPOSITE:
|
2001-02-20 12:35:51 -05:00
|
|
|
/* Error: already queued an enable request */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_WANTYES:
|
2001-03-05 08:59:43 -05:00
|
|
|
switch(tn->usq[option])
|
2001-02-20 12:35:51 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_EMPTY:
|
2001-02-20 12:35:51 -05:00
|
|
|
/* Error: already negotiating for enable */
|
|
|
|
break;
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_OPPOSITE:
|
|
|
|
tn->usq[option] = CURL_EMPTY;
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else /* NO */
|
|
|
|
{
|
2001-03-05 08:59:43 -05:00
|
|
|
switch(tn->us[option])
|
2001-02-20 12:35:51 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_NO:
|
2001-02-20 12:35:51 -05:00
|
|
|
/* Already disabled */
|
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_YES:
|
|
|
|
tn->us[option] = CURL_WANTNO;
|
|
|
|
send_negotiation(conn, CURL_WONT, option);
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_WANTNO:
|
2001-03-05 08:59:43 -05:00
|
|
|
switch(tn->usq[option])
|
2001-02-20 12:35:51 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_EMPTY:
|
2001-02-20 12:35:51 -05:00
|
|
|
/* Already negotiating for NO */
|
|
|
|
break;
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_OPPOSITE:
|
|
|
|
tn->usq[option] = CURL_EMPTY;
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_WANTYES:
|
2001-03-05 08:59:43 -05:00
|
|
|
switch(tn->usq[option])
|
2001-02-20 12:35:51 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_EMPTY:
|
|
|
|
tn->usq[option] = CURL_OPPOSITE;
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_OPPOSITE:
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
2001-01-05 05:11:41 -05:00
|
|
|
static
|
2001-02-20 12:35:51 -05:00
|
|
|
void rec_do(struct connectdata *conn, int option)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2001-03-05 08:59:43 -05:00
|
|
|
struct TELNET *tn = (struct TELNET *)conn->proto.telnet;
|
|
|
|
switch(tn->us[option])
|
2001-02-20 12:35:51 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_NO:
|
|
|
|
if(tn->us_preferred[option] == CURL_YES)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
tn->us[option] = CURL_YES;
|
|
|
|
send_negotiation(conn, CURL_WILL, option);
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
send_negotiation(conn, CURL_WONT, option);
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_YES:
|
1999-12-29 09:20:26 -05:00
|
|
|
/* Already enabled */
|
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_WANTNO:
|
2001-03-05 08:59:43 -05:00
|
|
|
switch(tn->usq[option])
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_EMPTY:
|
2001-02-20 12:35:51 -05:00
|
|
|
/* Error: DONT answered by WILL */
|
2003-03-12 03:40:45 -05:00
|
|
|
tn->us[option] = CURL_NO;
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_OPPOSITE:
|
2001-02-20 12:35:51 -05:00
|
|
|
/* Error: DONT answered by WILL */
|
2003-03-12 03:40:45 -05:00
|
|
|
tn->us[option] = CURL_YES;
|
|
|
|
tn->usq[option] = CURL_EMPTY;
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_WANTYES:
|
2001-03-05 08:59:43 -05:00
|
|
|
switch(tn->usq[option])
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_EMPTY:
|
|
|
|
tn->us[option] = CURL_YES;
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_OPPOSITE:
|
|
|
|
tn->us[option] = CURL_WANTNO;
|
|
|
|
tn->himq[option] = CURL_EMPTY;
|
|
|
|
send_negotiation(conn, CURL_WONT, option);
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
break;
|
2001-02-20 12:35:51 -05:00
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2001-01-05 05:11:41 -05:00
|
|
|
|
2004-06-24 03:43:48 -04:00
|
|
|
static
|
2001-02-20 12:35:51 -05:00
|
|
|
void rec_dont(struct connectdata *conn, int option)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2001-03-05 08:59:43 -05:00
|
|
|
struct TELNET *tn = (struct TELNET *)conn->proto.telnet;
|
|
|
|
switch(tn->us[option])
|
2001-02-20 12:35:51 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_NO:
|
1999-12-29 09:20:26 -05:00
|
|
|
/* Already disabled */
|
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_YES:
|
|
|
|
tn->us[option] = CURL_NO;
|
|
|
|
send_negotiation(conn, CURL_WONT, option);
|
1999-12-29 09:20:26 -05:00
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_WANTNO:
|
2001-03-05 08:59:43 -05:00
|
|
|
switch(tn->usq[option])
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_EMPTY:
|
|
|
|
tn->us[option] = CURL_NO;
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_OPPOSITE:
|
|
|
|
tn->us[option] = CURL_WANTYES;
|
|
|
|
tn->usq[option] = CURL_EMPTY;
|
|
|
|
send_negotiation(conn, CURL_WILL, option);
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_WANTYES:
|
2001-03-05 08:59:43 -05:00
|
|
|
switch(tn->usq[option])
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_EMPTY:
|
|
|
|
tn->us[option] = CURL_NO;
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_OPPOSITE:
|
|
|
|
tn->us[option] = CURL_NO;
|
|
|
|
tn->usq[option] = CURL_EMPTY;
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
break;
|
2001-02-20 12:35:51 -05:00
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-30 18:48:34 -04:00
|
|
|
static void printsub(struct SessionHandle *data,
|
2004-10-06 03:50:18 -04:00
|
|
|
int direction, /* '<' or '>' */
|
|
|
|
unsigned char *pointer, /* where suboption data is */
|
|
|
|
size_t length) /* length of suboption data */
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2004-07-01 04:10:21 -04:00
|
|
|
unsigned int i = 0;
|
2001-02-20 12:35:51 -05:00
|
|
|
|
2001-08-30 18:48:34 -04:00
|
|
|
if (data->set.verbose)
|
2001-02-20 12:35:51 -05:00
|
|
|
{
|
|
|
|
if (direction)
|
|
|
|
{
|
2004-11-11 11:34:24 -05:00
|
|
|
infof(data, "%s IAC SB ", (direction == '<')? "RCVD":"SENT");
|
2001-02-20 12:35:51 -05:00
|
|
|
if (length >= 3)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2001-02-20 12:35:51 -05:00
|
|
|
int j;
|
|
|
|
|
|
|
|
i = pointer[length-2];
|
|
|
|
j = pointer[length-1];
|
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
if (i != CURL_IAC || j != CURL_SE)
|
2001-02-20 12:35:51 -05:00
|
|
|
{
|
2004-11-11 11:34:24 -05:00
|
|
|
infof(data, "(terminated by ");
|
2003-03-12 03:40:45 -05:00
|
|
|
if (CURL_TELOPT_OK(i))
|
2004-11-11 11:34:24 -05:00
|
|
|
infof(data, "%s ", CURL_TELOPT(i));
|
2003-03-12 03:40:45 -05:00
|
|
|
else if (CURL_TELCMD_OK(i))
|
2004-11-11 11:34:24 -05:00
|
|
|
infof(data, "%s ", CURL_TELCMD(i));
|
2001-02-20 12:35:51 -05:00
|
|
|
else
|
2004-11-11 11:34:24 -05:00
|
|
|
infof(data, "%d ", i);
|
2003-03-12 03:40:45 -05:00
|
|
|
if (CURL_TELOPT_OK(j))
|
2004-11-11 11:34:24 -05:00
|
|
|
infof(data, "%s", CURL_TELOPT(j));
|
2003-03-12 03:40:45 -05:00
|
|
|
else if (CURL_TELCMD_OK(j))
|
2004-11-11 11:34:24 -05:00
|
|
|
infof(data, "%s", CURL_TELCMD(j));
|
2001-02-20 12:35:51 -05:00
|
|
|
else
|
2004-11-11 11:34:24 -05:00
|
|
|
infof(data, "%d", j);
|
|
|
|
infof(data, ", not IAC SE!) ");
|
2001-02-20 12:35:51 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
length -= 2;
|
|
|
|
}
|
|
|
|
if (length < 1)
|
|
|
|
{
|
2004-11-11 11:34:24 -05:00
|
|
|
infof(data, "(Empty suboption?)");
|
2001-02-20 12:35:51 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
if (CURL_TELOPT_OK(pointer[0])) {
|
2001-02-20 12:35:51 -05:00
|
|
|
switch(pointer[0]) {
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_TELOPT_TTYPE:
|
|
|
|
case CURL_TELOPT_XDISPLOC:
|
|
|
|
case CURL_TELOPT_NEW_ENVIRON:
|
2004-11-11 11:34:24 -05:00
|
|
|
infof(data, "%s", CURL_TELOPT(pointer[0]));
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
|
|
|
default:
|
2004-11-11 11:34:24 -05:00
|
|
|
infof(data, "%s (unsupported)", CURL_TELOPT(pointer[0]));
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2004-11-11 11:34:24 -05:00
|
|
|
infof(data, "%d (unknown)", pointer[i]);
|
2001-02-20 12:35:51 -05:00
|
|
|
|
|
|
|
switch(pointer[1]) {
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_TELQUAL_IS:
|
2004-11-11 11:34:24 -05:00
|
|
|
infof(data, " IS");
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_TELQUAL_SEND:
|
2004-11-11 11:34:24 -05:00
|
|
|
infof(data, " SEND");
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_TELQUAL_INFO:
|
2004-11-11 11:34:24 -05:00
|
|
|
infof(data, " INFO/REPLY");
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_TELQUAL_NAME:
|
2004-11-11 11:34:24 -05:00
|
|
|
infof(data, " NAME");
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
|
|
|
}
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2001-02-20 12:35:51 -05:00
|
|
|
switch(pointer[0]) {
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_TELOPT_TTYPE:
|
|
|
|
case CURL_TELOPT_XDISPLOC:
|
2001-02-20 12:35:51 -05:00
|
|
|
pointer[length] = 0;
|
2004-11-11 11:34:24 -05:00
|
|
|
infof(data, " \"%s\"", &pointer[2]);
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_TELOPT_NEW_ENVIRON:
|
|
|
|
if(pointer[1] == CURL_TELQUAL_IS) {
|
2004-11-11 11:34:24 -05:00
|
|
|
infof(data, " ");
|
2001-02-20 12:35:51 -05:00
|
|
|
for(i = 3;i < length;i++) {
|
|
|
|
switch(pointer[i]) {
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_NEW_ENV_VAR:
|
2004-11-11 11:34:24 -05:00
|
|
|
infof(data, ", ");
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_NEW_ENV_VALUE:
|
2004-11-11 11:34:24 -05:00
|
|
|
infof(data, " = ");
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
|
|
|
default:
|
2004-11-11 11:34:24 -05:00
|
|
|
infof(data, "%c", pointer[i]);
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2001-02-20 12:35:51 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
for (i = 2; i < length; i++)
|
2004-11-11 11:34:24 -05:00
|
|
|
infof(data, " %.2x", pointer[i]);
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
|
|
|
}
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2001-02-20 12:35:51 -05:00
|
|
|
if (direction)
|
|
|
|
{
|
2004-11-11 11:34:24 -05:00
|
|
|
infof(data, "\n");
|
2001-02-20 12:35:51 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-02-05 04:38:10 -05:00
|
|
|
static CURLcode check_telnet_options(struct connectdata *conn)
|
2001-02-20 12:35:51 -05:00
|
|
|
{
|
|
|
|
struct curl_slist *head;
|
|
|
|
char option_keyword[128];
|
|
|
|
char option_arg[256];
|
|
|
|
char *buf;
|
2001-08-30 18:48:34 -04:00
|
|
|
struct SessionHandle *data = conn->data;
|
2001-03-05 08:59:43 -05:00
|
|
|
struct TELNET *tn = (struct TELNET *)conn->proto.telnet;
|
2001-02-20 12:35:51 -05:00
|
|
|
|
|
|
|
/* Add the user name as an environment variable if it
|
|
|
|
was given on the command line */
|
2001-03-14 09:11:11 -05:00
|
|
|
if(conn->bits.user_passwd)
|
2001-02-20 12:35:51 -05:00
|
|
|
{
|
2003-10-18 16:24:20 -04:00
|
|
|
snprintf(option_arg, sizeof(option_arg), "USER,%s", conn->user);
|
2003-10-19 01:42:49 -04:00
|
|
|
tn->telnet_vars = curl_slist_append(tn->telnet_vars, option_arg);
|
2001-02-20 12:35:51 -05:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
tn->us_preferred[CURL_TELOPT_NEW_ENVIRON] = CURL_YES;
|
2001-02-20 12:35:51 -05:00
|
|
|
}
|
|
|
|
|
2001-08-30 18:48:34 -04:00
|
|
|
for(head = data->set.telnet_options; head; head=head->next) {
|
2001-02-20 12:35:51 -05:00
|
|
|
if(sscanf(head->data, "%127[^= ]%*[ =]%255s",
|
|
|
|
option_keyword, option_arg) == 2) {
|
|
|
|
|
|
|
|
/* Terminal type */
|
2003-02-28 07:20:08 -05:00
|
|
|
if(curl_strequal(option_keyword, "TTYPE")) {
|
2001-09-17 10:10:38 -04:00
|
|
|
strncpy(tn->subopt_ttype, option_arg, 31);
|
|
|
|
tn->subopt_ttype[31] = 0; /* String termination */
|
2003-03-12 03:40:45 -05:00
|
|
|
tn->us_preferred[CURL_TELOPT_TTYPE] = CURL_YES;
|
2001-02-20 12:35:51 -05:00
|
|
|
continue;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2001-02-20 12:35:51 -05:00
|
|
|
|
|
|
|
/* Display variable */
|
2003-02-28 07:20:08 -05:00
|
|
|
if(curl_strequal(option_keyword, "XDISPLOC")) {
|
2001-09-17 10:10:38 -04:00
|
|
|
strncpy(tn->subopt_xdisploc, option_arg, 127);
|
|
|
|
tn->subopt_xdisploc[127] = 0; /* String termination */
|
2003-03-12 03:40:45 -05:00
|
|
|
tn->us_preferred[CURL_TELOPT_XDISPLOC] = CURL_YES;
|
2001-02-20 12:35:51 -05:00
|
|
|
continue;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
2001-02-20 12:35:51 -05:00
|
|
|
/* Environment variable */
|
2003-02-28 07:20:08 -05:00
|
|
|
if(curl_strequal(option_keyword, "NEW_ENV")) {
|
2001-02-20 12:35:51 -05:00
|
|
|
buf = strdup(option_arg);
|
|
|
|
if(!buf)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
2001-03-05 08:59:43 -05:00
|
|
|
tn->telnet_vars = curl_slist_append(tn->telnet_vars, buf);
|
2003-03-12 03:40:45 -05:00
|
|
|
tn->us_preferred[CURL_TELOPT_NEW_ENVIRON] = CURL_YES;
|
2001-02-20 12:35:51 -05:00
|
|
|
continue;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2001-02-20 12:35:51 -05:00
|
|
|
|
|
|
|
failf(data, "Unknown telnet option %s", head->data);
|
|
|
|
return CURLE_UNKNOWN_TELNET_OPTION;
|
|
|
|
} else {
|
|
|
|
failf(data, "Syntax error in telnet option: %s", head->data);
|
|
|
|
return CURLE_TELNET_OPTION_SYNTAX;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return CURLE_OK;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* suboption()
|
|
|
|
*
|
|
|
|
* Look at the sub-option buffer, and try to be helpful to the other
|
|
|
|
* side.
|
|
|
|
*/
|
|
|
|
|
2001-02-20 12:35:51 -05:00
|
|
|
static void suboption(struct connectdata *conn)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2001-02-20 12:35:51 -05:00
|
|
|
struct curl_slist *v;
|
|
|
|
unsigned char temp[2048];
|
2004-03-23 10:28:31 -05:00
|
|
|
size_t len;
|
|
|
|
size_t tmplen;
|
2001-02-20 12:35:51 -05:00
|
|
|
char varname[128];
|
|
|
|
char varval[128];
|
2001-08-30 18:48:34 -04:00
|
|
|
struct SessionHandle *data = conn->data;
|
2001-03-05 08:59:43 -05:00
|
|
|
struct TELNET *tn = (struct TELNET *)conn->proto.telnet;
|
2001-02-20 12:35:51 -05:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
printsub(data, '<', (unsigned char *)tn->subbuffer, CURL_SB_LEN(tn)+2);
|
2004-02-12 04:53:03 -05:00
|
|
|
switch (CURL_SB_GET(tn)) {
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_TELOPT_TTYPE:
|
2001-03-05 08:59:43 -05:00
|
|
|
len = strlen(tn->subopt_ttype) + 4 + 2;
|
2001-02-20 12:35:51 -05:00
|
|
|
snprintf((char *)temp, sizeof(temp),
|
2003-03-12 03:40:45 -05:00
|
|
|
"%c%c%c%c%s%c%c", CURL_IAC, CURL_SB, CURL_TELOPT_TTYPE,
|
|
|
|
CURL_TELQUAL_IS, tn->subopt_ttype, CURL_IAC, CURL_SE);
|
2004-11-18 09:04:40 -05:00
|
|
|
(void)swrite(conn->sock[FIRSTSOCKET], (char *)temp, len);
|
2001-02-20 12:35:51 -05:00
|
|
|
printsub(data, '>', &temp[2], len-2);
|
|
|
|
break;
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_TELOPT_XDISPLOC:
|
2001-03-05 08:59:43 -05:00
|
|
|
len = strlen(tn->subopt_xdisploc) + 4 + 2;
|
2001-02-20 12:35:51 -05:00
|
|
|
snprintf((char *)temp, sizeof(temp),
|
2003-03-12 03:40:45 -05:00
|
|
|
"%c%c%c%c%s%c%c", CURL_IAC, CURL_SB, CURL_TELOPT_XDISPLOC,
|
|
|
|
CURL_TELQUAL_IS, tn->subopt_xdisploc, CURL_IAC, CURL_SE);
|
2004-11-18 09:04:40 -05:00
|
|
|
(void)swrite(conn->sock[FIRSTSOCKET], (char *)temp, len);
|
2001-02-20 12:35:51 -05:00
|
|
|
printsub(data, '>', &temp[2], len-2);
|
|
|
|
break;
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_TELOPT_NEW_ENVIRON:
|
2001-02-20 12:35:51 -05:00
|
|
|
snprintf((char *)temp, sizeof(temp),
|
2003-03-12 03:40:45 -05:00
|
|
|
"%c%c%c%c", CURL_IAC, CURL_SB, CURL_TELOPT_NEW_ENVIRON,
|
|
|
|
CURL_TELQUAL_IS);
|
2001-02-20 12:35:51 -05:00
|
|
|
len = 4;
|
|
|
|
|
2001-03-05 08:59:43 -05:00
|
|
|
for(v = tn->telnet_vars;v;v = v->next) {
|
2001-02-20 12:35:51 -05:00
|
|
|
tmplen = (strlen(v->data) + 1);
|
|
|
|
/* Add the variable only if it fits */
|
2001-08-14 04:38:08 -04:00
|
|
|
if(len + tmplen < (int)sizeof(temp)-6) {
|
2004-06-24 08:07:36 -04:00
|
|
|
sscanf(v->data, "%127[^,],%127s", varname, varval);
|
2001-02-20 12:35:51 -05:00
|
|
|
snprintf((char *)&temp[len], sizeof(temp) - len,
|
2003-03-12 03:40:45 -05:00
|
|
|
"%c%s%c%s", CURL_NEW_ENV_VAR, varname,
|
|
|
|
CURL_NEW_ENV_VALUE, varval);
|
2001-02-20 12:35:51 -05:00
|
|
|
len += tmplen;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
snprintf((char *)&temp[len], sizeof(temp) - len,
|
2003-03-12 03:40:45 -05:00
|
|
|
"%c%c", CURL_IAC, CURL_SE);
|
2001-02-20 12:35:51 -05:00
|
|
|
len += 2;
|
2004-11-18 09:04:40 -05:00
|
|
|
(void)swrite(conn->sock[FIRSTSOCKET], (char *)temp, len);
|
2001-02-20 12:35:51 -05:00
|
|
|
printsub(data, '>', &temp[2], len-2);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
2001-01-05 05:11:41 -05:00
|
|
|
static
|
2001-02-20 12:35:51 -05:00
|
|
|
void telrcv(struct connectdata *conn,
|
2004-10-06 03:50:18 -04:00
|
|
|
unsigned char *inbuf, /* Data received from socket */
|
|
|
|
ssize_t count) /* Number of bytes received */
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2001-02-20 12:35:51 -05:00
|
|
|
unsigned char c;
|
2003-10-18 16:24:54 -04:00
|
|
|
int in = 0;
|
2001-08-30 18:48:34 -04:00
|
|
|
struct SessionHandle *data = conn->data;
|
2001-03-05 08:59:43 -05:00
|
|
|
struct TELNET *tn = (struct TELNET *)conn->proto.telnet;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2001-02-20 12:35:51 -05:00
|
|
|
while(count--)
|
|
|
|
{
|
2003-10-18 16:24:54 -04:00
|
|
|
c = inbuf[in++];
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2001-03-05 08:59:43 -05:00
|
|
|
switch (tn->telrcv_state)
|
2001-02-20 12:35:51 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_TS_CR:
|
|
|
|
tn->telrcv_state = CURL_TS_DATA;
|
2001-02-20 12:35:51 -05:00
|
|
|
if (c == '\0')
|
|
|
|
{
|
|
|
|
break; /* Ignore \0 after CR */
|
|
|
|
}
|
2000-11-22 07:55:24 -05:00
|
|
|
|
2001-02-20 12:35:51 -05:00
|
|
|
Curl_client_write(data, CLIENTWRITE_BODY, (char *)&c, 1);
|
|
|
|
continue;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_TS_DATA:
|
|
|
|
if (c == CURL_IAC)
|
2001-02-20 12:35:51 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
tn->telrcv_state = CURL_TS_IAC;
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if(c == '\r')
|
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
tn->telrcv_state = CURL_TS_CR;
|
2001-02-20 12:35:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
Curl_client_write(data, CLIENTWRITE_BODY, (char *)&c, 1);
|
|
|
|
continue;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_TS_IAC:
|
2001-02-20 12:35:51 -05:00
|
|
|
process_iac:
|
|
|
|
switch (c)
|
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_WILL:
|
|
|
|
tn->telrcv_state = CURL_TS_WILL;
|
2001-02-20 12:35:51 -05:00
|
|
|
continue;
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_WONT:
|
|
|
|
tn->telrcv_state = CURL_TS_WONT;
|
2001-02-20 12:35:51 -05:00
|
|
|
continue;
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_DO:
|
|
|
|
tn->telrcv_state = CURL_TS_DO;
|
2001-02-20 12:35:51 -05:00
|
|
|
continue;
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_DONT:
|
|
|
|
tn->telrcv_state = CURL_TS_DONT;
|
2001-02-20 12:35:51 -05:00
|
|
|
continue;
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_SB:
|
|
|
|
CURL_SB_CLEAR(tn);
|
|
|
|
tn->telrcv_state = CURL_TS_SB;
|
2001-02-20 12:35:51 -05:00
|
|
|
continue;
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_IAC:
|
2001-01-05 05:11:41 -05:00
|
|
|
Curl_client_write(data, CLIENTWRITE_BODY, (char *)&c, 1);
|
2000-11-22 07:55:24 -05:00
|
|
|
break;
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_DM:
|
|
|
|
case CURL_NOP:
|
|
|
|
case CURL_GA:
|
2001-02-20 12:35:51 -05:00
|
|
|
default:
|
2003-03-12 03:40:45 -05:00
|
|
|
printoption(data, "RCVD", CURL_IAC, c);
|
2001-02-20 12:35:51 -05:00
|
|
|
break;
|
|
|
|
}
|
2003-03-12 03:40:45 -05:00
|
|
|
tn->telrcv_state = CURL_TS_DATA;
|
2001-02-20 12:35:51 -05:00
|
|
|
continue;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_TS_WILL:
|
|
|
|
printoption(data, "RCVD", CURL_WILL, c);
|
2001-03-05 08:59:43 -05:00
|
|
|
tn->please_negotiate = 1;
|
2001-02-20 12:35:51 -05:00
|
|
|
rec_will(conn, c);
|
2003-03-12 03:40:45 -05:00
|
|
|
tn->telrcv_state = CURL_TS_DATA;
|
2001-02-20 12:35:51 -05:00
|
|
|
continue;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_TS_WONT:
|
|
|
|
printoption(data, "RCVD", CURL_WONT, c);
|
2001-03-05 08:59:43 -05:00
|
|
|
tn->please_negotiate = 1;
|
2001-02-20 12:35:51 -05:00
|
|
|
rec_wont(conn, c);
|
2003-03-12 03:40:45 -05:00
|
|
|
tn->telrcv_state = CURL_TS_DATA;
|
2001-02-20 12:35:51 -05:00
|
|
|
continue;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_TS_DO:
|
|
|
|
printoption(data, "RCVD", CURL_DO, c);
|
2001-03-05 08:59:43 -05:00
|
|
|
tn->please_negotiate = 1;
|
2001-02-20 12:35:51 -05:00
|
|
|
rec_do(conn, c);
|
2003-03-12 03:40:45 -05:00
|
|
|
tn->telrcv_state = CURL_TS_DATA;
|
2001-02-20 12:35:51 -05:00
|
|
|
continue;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_TS_DONT:
|
|
|
|
printoption(data, "RCVD", CURL_DONT, c);
|
2001-03-05 08:59:43 -05:00
|
|
|
tn->please_negotiate = 1;
|
2001-02-20 12:35:51 -05:00
|
|
|
rec_dont(conn, c);
|
2003-03-12 03:40:45 -05:00
|
|
|
tn->telrcv_state = CURL_TS_DATA;
|
2001-02-20 12:35:51 -05:00
|
|
|
continue;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_TS_SB:
|
|
|
|
if (c == CURL_IAC)
|
2001-02-20 12:35:51 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
tn->telrcv_state = CURL_TS_SE;
|
2001-02-20 12:35:51 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
CURL_SB_ACCUM(tn,c);
|
2001-02-20 12:35:51 -05:00
|
|
|
}
|
|
|
|
continue;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
case CURL_TS_SE:
|
|
|
|
if (c != CURL_SE)
|
2001-02-20 12:35:51 -05:00
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
if (c != CURL_IAC)
|
2001-02-20 12:35:51 -05:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* This is an error. We only expect to get
|
|
|
|
* "IAC IAC" or "IAC SE". Several things may
|
|
|
|
* have happend. An IAC was not doubled, the
|
|
|
|
* IAC SE was left off, or another option got
|
|
|
|
* inserted into the suboption are all possibilities.
|
|
|
|
* If we assume that the IAC was not doubled,
|
|
|
|
* and really the IAC SE was left off, we could
|
|
|
|
* get into an infinate loop here. So, instead,
|
|
|
|
* we terminate the suboption, and process the
|
|
|
|
* partial suboption if we can.
|
|
|
|
*/
|
2003-03-12 03:40:45 -05:00
|
|
|
CURL_SB_ACCUM(tn, (unsigned char)CURL_IAC);
|
|
|
|
CURL_SB_ACCUM(tn, c);
|
2001-03-05 08:59:43 -05:00
|
|
|
tn->subpointer -= 2;
|
2003-03-12 03:40:45 -05:00
|
|
|
CURL_SB_TERM(tn);
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-03-12 03:40:45 -05:00
|
|
|
printoption(data, "In SUBOPTION processing, RCVD", CURL_IAC, c);
|
2001-02-20 12:35:51 -05:00
|
|
|
suboption(conn); /* handle sub-option */
|
2003-03-12 03:40:45 -05:00
|
|
|
tn->telrcv_state = CURL_TS_IAC;
|
2001-02-20 12:35:51 -05:00
|
|
|
goto process_iac;
|
|
|
|
}
|
2003-03-12 03:40:45 -05:00
|
|
|
CURL_SB_ACCUM(tn,c);
|
|
|
|
tn->telrcv_state = CURL_TS_SB;
|
2001-02-20 12:35:51 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-03-12 03:40:45 -05:00
|
|
|
CURL_SB_ACCUM(tn, (unsigned char)CURL_IAC);
|
|
|
|
CURL_SB_ACCUM(tn, (unsigned char)CURL_SE);
|
2001-03-05 08:59:43 -05:00
|
|
|
tn->subpointer -= 2;
|
2003-03-12 03:40:45 -05:00
|
|
|
CURL_SB_TERM(tn);
|
2001-02-20 12:35:51 -05:00
|
|
|
suboption(conn); /* handle sub-option */
|
2003-03-12 03:40:45 -05:00
|
|
|
tn->telrcv_state = CURL_TS_DATA;
|
2001-02-20 12:35:51 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
2004-05-12 08:06:39 -04:00
|
|
|
CURLcode Curl_telnet_done(struct connectdata *conn, CURLcode status)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2001-03-05 08:59:43 -05:00
|
|
|
struct TELNET *tn = (struct TELNET *)conn->proto.telnet;
|
2004-05-12 08:06:39 -04:00
|
|
|
(void)status; /* unused */
|
|
|
|
|
2001-03-05 08:59:43 -05:00
|
|
|
curl_slist_free_all(tn->telnet_vars);
|
2001-03-05 09:01:13 -05:00
|
|
|
|
|
|
|
free(conn->proto.telnet);
|
|
|
|
conn->proto.telnet = NULL;
|
|
|
|
|
2000-05-22 10:12:12 -04:00
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
CURLcode Curl_telnet(struct connectdata *conn, bool *done)
|
2000-05-22 10:12:12 -04:00
|
|
|
{
|
2001-02-20 12:35:51 -05:00
|
|
|
CURLcode code;
|
2001-08-30 18:48:34 -04:00
|
|
|
struct SessionHandle *data = conn->data;
|
2004-03-09 17:52:50 -05:00
|
|
|
curl_socket_t sockfd = conn->sock[FIRSTSOCKET];
|
2001-09-17 10:10:38 -04:00
|
|
|
#ifdef WIN32
|
2004-03-03 08:32:56 -05:00
|
|
|
HMODULE wsock2;
|
|
|
|
WSOCK2_FUNC close_event_func;
|
|
|
|
WSOCK2_FUNC create_event_func;
|
|
|
|
WSOCK2_FUNC event_select_func;
|
|
|
|
WSOCK2_FUNC enum_netevents_func;
|
2001-09-17 10:10:38 -04:00
|
|
|
WSAEVENT event_handle;
|
|
|
|
WSANETWORKEVENTS events;
|
|
|
|
HANDLE stdin_handle;
|
2004-06-24 03:43:48 -04:00
|
|
|
HANDLE objs[2];
|
2004-04-26 03:50:51 -04:00
|
|
|
DWORD obj_count;
|
|
|
|
DWORD wait_timeout;
|
2001-09-17 10:10:38 -04:00
|
|
|
DWORD waitret;
|
2004-03-11 08:13:35 -05:00
|
|
|
DWORD readfile_read;
|
2001-09-17 10:10:38 -04:00
|
|
|
#else
|
2004-11-19 03:52:33 -05:00
|
|
|
int interval_ms;
|
|
|
|
struct pollfd pfd[2];
|
2001-09-17 10:10:38 -04:00
|
|
|
#endif
|
2004-06-24 03:43:48 -04:00
|
|
|
ssize_t nread;
|
2000-05-22 10:12:12 -04:00
|
|
|
bool keepon = TRUE;
|
2001-08-30 18:48:34 -04:00
|
|
|
char *buf = data->state.buffer;
|
2001-03-05 08:59:43 -05:00
|
|
|
struct TELNET *tn;
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
*done = TRUE; /* uncontionally */
|
|
|
|
|
2001-03-05 08:59:43 -05:00
|
|
|
code = init_telnet(conn);
|
|
|
|
if(code)
|
|
|
|
return code;
|
|
|
|
|
|
|
|
tn = (struct TELNET *)conn->proto.telnet;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2001-02-20 12:35:51 -05:00
|
|
|
code = check_telnet_options(conn);
|
|
|
|
if(code)
|
|
|
|
return code;
|
2001-09-17 10:10:38 -04:00
|
|
|
|
|
|
|
#ifdef WIN32
|
2004-03-03 08:32:56 -05:00
|
|
|
/*
|
|
|
|
** This functionality only works with WinSock >= 2.0. So,
|
|
|
|
** make sure have it.
|
|
|
|
*/
|
|
|
|
code = check_wsock2(data);
|
|
|
|
if (code)
|
|
|
|
return code;
|
|
|
|
|
|
|
|
/* OK, so we have WinSock 2.0. We need to dynamically */
|
|
|
|
/* load ws2_32.dll and get the function pointers we need. */
|
|
|
|
wsock2 = LoadLibrary("WS2_32.DLL");
|
|
|
|
if (wsock2 == NULL) {
|
|
|
|
failf(data,"failed to load WS2_32.DLL (%d)",GetLastError());
|
|
|
|
return CURLE_FAILED_INIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Grab a pointer to WSACreateEvent */
|
|
|
|
create_event_func = GetProcAddress(wsock2,"WSACreateEvent");
|
|
|
|
if (create_event_func == NULL) {
|
|
|
|
failf(data,"failed to find WSACreateEvent function (%d)",
|
2004-10-06 03:50:18 -04:00
|
|
|
GetLastError());
|
2004-03-03 08:32:56 -05:00
|
|
|
FreeLibrary(wsock2);
|
|
|
|
return CURLE_FAILED_INIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* And WSACloseEvent */
|
|
|
|
close_event_func = GetProcAddress(wsock2,"WSACloseEvent");
|
|
|
|
if (create_event_func == NULL) {
|
|
|
|
failf(data,"failed to find WSACloseEvent function (%d)",
|
2004-10-06 03:50:18 -04:00
|
|
|
GetLastError());
|
2004-03-03 08:32:56 -05:00
|
|
|
FreeLibrary(wsock2);
|
|
|
|
return CURLE_FAILED_INIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* And WSAEventSelect */
|
|
|
|
event_select_func = GetProcAddress(wsock2,"WSAEventSelect");
|
|
|
|
if (event_select_func == NULL) {
|
|
|
|
failf(data,"failed to find WSAEventSelect function (%d)",
|
2004-10-06 03:50:18 -04:00
|
|
|
GetLastError());
|
2004-03-03 08:32:56 -05:00
|
|
|
FreeLibrary(wsock2);
|
|
|
|
return CURLE_FAILED_INIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* And WSAEnumNetworkEvents */
|
|
|
|
enum_netevents_func = GetProcAddress(wsock2,"WSAEnumNetworkEvents");
|
|
|
|
if (enum_netevents_func == NULL) {
|
|
|
|
failf(data,"failed to find WSAEnumNetworkEvents function (%d)",
|
2004-10-06 03:50:18 -04:00
|
|
|
GetLastError());
|
2004-03-03 08:32:56 -05:00
|
|
|
FreeLibrary(wsock2);
|
|
|
|
return CURLE_FAILED_INIT;
|
|
|
|
}
|
|
|
|
|
2001-09-17 10:10:38 -04:00
|
|
|
/* We want to wait for both stdin and the socket. Since
|
|
|
|
** the select() function in winsock only works on sockets
|
|
|
|
** we have to use the WaitForMultipleObjects() call.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* First, create a sockets event object */
|
2004-03-03 08:32:56 -05:00
|
|
|
event_handle = (WSAEVENT)create_event_func();
|
|
|
|
if (event_handle == WSA_INVALID_EVENT) {
|
|
|
|
failf(data,"WSACreateEvent failed (%d)",WSAGetLastError());
|
|
|
|
FreeLibrary(wsock2);
|
|
|
|
return CURLE_FAILED_INIT;
|
|
|
|
}
|
2001-09-17 10:10:38 -04:00
|
|
|
|
|
|
|
/* The get the Windows file handle for stdin */
|
|
|
|
stdin_handle = GetStdHandle(STD_INPUT_HANDLE);
|
|
|
|
|
|
|
|
/* Create the list of objects to wait for */
|
2004-04-26 03:50:51 -04:00
|
|
|
objs[0] = event_handle;
|
|
|
|
objs[1] = stdin_handle;
|
2001-09-17 10:10:38 -04:00
|
|
|
|
|
|
|
/* Tell winsock what events we want to listen to */
|
2004-03-03 08:32:56 -05:00
|
|
|
if(event_select_func(sockfd, event_handle, FD_READ|FD_CLOSE) == SOCKET_ERROR) {
|
|
|
|
close_event_func(event_handle);
|
|
|
|
FreeLibrary(wsock2);
|
2001-09-17 10:10:38 -04:00
|
|
|
return 0;
|
|
|
|
}
|
2004-06-24 03:43:48 -04:00
|
|
|
|
|
|
|
/* If stdin_handle is a pipe, use PeekNamedPipe() method to check it,
|
|
|
|
else use the old WaitForMultipleObjects() way */
|
2004-04-26 03:50:51 -04:00
|
|
|
if(GetFileType(stdin_handle) == FILE_TYPE_PIPE) {
|
|
|
|
/* Don't wait for stdin_handle, just wait for event_handle */
|
2004-06-24 03:43:48 -04:00
|
|
|
obj_count = 1;
|
2004-04-26 03:50:51 -04:00
|
|
|
/* Check stdin_handle per 100 milliseconds */
|
2004-06-24 03:43:48 -04:00
|
|
|
wait_timeout = 100;
|
2004-04-26 03:50:51 -04:00
|
|
|
} else {
|
|
|
|
obj_count = 2;
|
|
|
|
wait_timeout = INFINITE;
|
|
|
|
}
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2001-09-17 10:10:38 -04:00
|
|
|
/* Keep on listening and act on events */
|
|
|
|
while(keepon) {
|
2004-04-26 03:50:51 -04:00
|
|
|
waitret = WaitForMultipleObjects(obj_count, objs, FALSE, wait_timeout);
|
|
|
|
switch(waitret) {
|
|
|
|
case WAIT_TIMEOUT:
|
|
|
|
{
|
|
|
|
unsigned char outbuf[2];
|
|
|
|
int out_count = 0;
|
|
|
|
ssize_t bytes_written;
|
|
|
|
char *buffer = buf;
|
|
|
|
|
|
|
|
for(;;) {
|
2004-07-29 03:48:47 -04:00
|
|
|
if(!PeekNamedPipe(stdin_handle, NULL, 0, NULL, &readfile_read, NULL)) {
|
2004-04-26 03:50:51 -04:00
|
|
|
keepon = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
2004-07-29 03:48:47 -04:00
|
|
|
nread = readfile_read;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2004-04-26 03:50:51 -04:00
|
|
|
if(!nread)
|
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2004-04-26 03:50:51 -04:00
|
|
|
if(!ReadFile(stdin_handle, buf, sizeof(data->state.buffer),
|
|
|
|
&readfile_read, NULL)) {
|
|
|
|
keepon = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
nread = readfile_read;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2004-04-26 03:50:51 -04:00
|
|
|
while(nread--) {
|
|
|
|
outbuf[0] = *buffer++;
|
|
|
|
out_count = 1;
|
|
|
|
if(outbuf[0] == CURL_IAC)
|
|
|
|
outbuf[out_count++] = CURL_IAC;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2004-04-26 03:50:51 -04:00
|
|
|
Curl_write(conn, conn->sock[FIRSTSOCKET], outbuf,
|
|
|
|
out_count, &bytes_written);
|
|
|
|
}
|
|
|
|
}
|
2004-06-24 03:43:48 -04:00
|
|
|
}
|
2004-04-26 03:50:51 -04:00
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2004-04-26 03:50:51 -04:00
|
|
|
case WAIT_OBJECT_0 + 1:
|
2001-09-17 10:10:38 -04:00
|
|
|
{
|
2004-02-05 08:25:14 -05:00
|
|
|
unsigned char outbuf[2];
|
|
|
|
int out_count = 0;
|
|
|
|
ssize_t bytes_written;
|
|
|
|
char *buffer = buf;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2004-02-05 08:25:14 -05:00
|
|
|
if(!ReadFile(stdin_handle, buf, sizeof(data->state.buffer),
|
2004-03-11 08:13:35 -05:00
|
|
|
&readfile_read, NULL)) {
|
2004-02-05 08:25:14 -05:00
|
|
|
keepon = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
2004-03-11 08:13:35 -05:00
|
|
|
nread = readfile_read;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2004-02-05 08:25:14 -05:00
|
|
|
while(nread--) {
|
|
|
|
outbuf[0] = *buffer++;
|
|
|
|
out_count = 1;
|
|
|
|
if(outbuf[0] == CURL_IAC)
|
|
|
|
outbuf[out_count++] = CURL_IAC;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2004-02-05 08:25:14 -05:00
|
|
|
Curl_write(conn, conn->sock[FIRSTSOCKET], outbuf,
|
|
|
|
out_count, &bytes_written);
|
2001-09-17 10:10:38 -04:00
|
|
|
}
|
2004-02-05 08:25:14 -05:00
|
|
|
}
|
|
|
|
break;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2004-04-26 03:50:51 -04:00
|
|
|
case WAIT_OBJECT_0:
|
2004-03-03 08:32:56 -05:00
|
|
|
if(enum_netevents_func(sockfd, event_handle, &events)
|
2004-02-05 08:25:14 -05:00
|
|
|
!= SOCKET_ERROR) {
|
|
|
|
if(events.lNetworkEvents & FD_READ) {
|
|
|
|
/* This reallu OUGHT to check its return code. */
|
2004-02-15 08:48:50 -05:00
|
|
|
(void)Curl_read(conn, sockfd, buf, BUFSIZE - 1, &nread);
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2004-02-05 08:25:14 -05:00
|
|
|
telrcv(conn, (unsigned char *)buf, nread);
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2004-02-05 08:25:14 -05:00
|
|
|
fflush(stdout);
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2004-02-05 08:25:14 -05:00
|
|
|
/* Negotiate if the peer has started negotiating,
|
|
|
|
otherwise don't. We don't want to speak telnet with
|
|
|
|
non-telnet servers, like POP or SMTP. */
|
|
|
|
if(tn->please_negotiate && !tn->already_negotiated) {
|
|
|
|
negotiate(conn);
|
|
|
|
tn->already_negotiated = 1;
|
2001-09-17 10:10:38 -04:00
|
|
|
}
|
2004-02-05 08:25:14 -05:00
|
|
|
}
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2004-02-05 08:25:14 -05:00
|
|
|
if(events.lNetworkEvents & FD_CLOSE) {
|
|
|
|
keepon = FALSE;
|
2001-09-17 10:10:38 -04:00
|
|
|
}
|
2004-02-05 08:25:14 -05:00
|
|
|
}
|
|
|
|
break;
|
2001-09-17 10:10:38 -04:00
|
|
|
}
|
|
|
|
}
|
2004-03-03 08:32:56 -05:00
|
|
|
|
|
|
|
/* We called WSACreateEvent, so call WSACloseEvent */
|
|
|
|
if (close_event_func(event_handle) == FALSE) {
|
|
|
|
infof(data,"WSACloseEvent failed (%d)",WSAGetLastError());
|
|
|
|
}
|
|
|
|
|
|
|
|
/* "Forget" pointers into the library we're about to free */
|
|
|
|
create_event_func = NULL;
|
|
|
|
close_event_func = NULL;
|
|
|
|
event_select_func = NULL;
|
|
|
|
enum_netevents_func = NULL;
|
|
|
|
|
|
|
|
/* We called LoadLibrary, so call FreeLibrary */
|
|
|
|
if (!FreeLibrary(wsock2))
|
|
|
|
infof(data,"FreeLibrary(wsock2) failed (%d)",GetLastError());
|
2001-09-17 10:10:38 -04:00
|
|
|
#else
|
2004-11-19 03:52:33 -05:00
|
|
|
pfd[0].fd = sockfd;
|
|
|
|
pfd[0].events = POLLIN;
|
|
|
|
pfd[1].fd = 0;
|
|
|
|
pfd[1].events = POLLIN;
|
|
|
|
interval_ms = 1 * 1000;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2001-01-25 07:22:17 -05:00
|
|
|
while (keepon) {
|
2004-11-19 03:52:33 -05:00
|
|
|
switch (Curl_poll(pfd, 2, interval_ms)) {
|
2004-10-06 03:50:18 -04:00
|
|
|
case -1: /* error, stop reading */
|
2001-01-25 07:22:17 -05:00
|
|
|
keepon = FALSE;
|
|
|
|
continue;
|
2004-10-06 03:50:18 -04:00
|
|
|
case 0: /* timeout */
|
2001-01-25 07:22:17 -05:00
|
|
|
break;
|
2004-10-06 03:50:18 -04:00
|
|
|
default: /* read! */
|
2004-11-19 03:52:33 -05:00
|
|
|
if(pfd[1].revents & POLLIN) { /* read from stdin */
|
2001-01-25 07:22:17 -05:00
|
|
|
unsigned char outbuf[2];
|
|
|
|
int out_count = 0;
|
2002-01-16 09:47:50 -05:00
|
|
|
ssize_t bytes_written;
|
2001-01-25 07:22:17 -05:00
|
|
|
char *buffer = buf;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2001-11-29 07:48:08 -05:00
|
|
|
nread = read(0, buf, 255);
|
2001-01-25 07:22:17 -05:00
|
|
|
|
|
|
|
while(nread--) {
|
|
|
|
outbuf[0] = *buffer++;
|
|
|
|
out_count = 1;
|
2003-03-12 03:40:45 -05:00
|
|
|
if(outbuf[0] == CURL_IAC)
|
|
|
|
outbuf[out_count++] = CURL_IAC;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2003-11-24 02:15:37 -05:00
|
|
|
Curl_write(conn, conn->sock[FIRSTSOCKET], outbuf,
|
2001-01-25 07:22:17 -05:00
|
|
|
out_count, &bytes_written);
|
|
|
|
}
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2004-11-19 03:52:33 -05:00
|
|
|
if(pfd[0].revents & POLLIN) {
|
2002-01-14 18:14:59 -05:00
|
|
|
/* This OUGHT to check the return code... */
|
2004-02-15 08:48:50 -05:00
|
|
|
(void)Curl_read(conn, sockfd, buf, BUFSIZE - 1, &nread);
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2001-01-31 10:05:44 -05:00
|
|
|
/* if we receive 0 or less here, the server closed the connection and
|
|
|
|
we bail out from this! */
|
|
|
|
if (nread <= 0) {
|
|
|
|
keepon = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
2001-01-25 07:22:17 -05:00
|
|
|
|
2001-02-20 12:35:51 -05:00
|
|
|
telrcv(conn, (unsigned char *)buf, nread);
|
|
|
|
|
|
|
|
/* Negotiate if the peer has started negotiating,
|
|
|
|
otherwise don't. We don't want to speak telnet with
|
|
|
|
non-telnet servers, like POP or SMTP. */
|
2001-03-05 08:59:43 -05:00
|
|
|
if(tn->please_negotiate && !tn->already_negotiated) {
|
2001-02-20 12:35:51 -05:00
|
|
|
negotiate(conn);
|
2001-03-05 08:59:43 -05:00
|
|
|
tn->already_negotiated = 1;
|
2001-02-20 12:35:51 -05:00
|
|
|
}
|
2001-01-31 10:05:44 -05:00
|
|
|
}
|
2001-01-25 07:22:17 -05:00
|
|
|
}
|
2002-10-08 09:03:26 -04:00
|
|
|
if(data->set.timeout) {
|
2003-03-02 12:20:59 -05:00
|
|
|
struct timeval now; /* current time */
|
2002-10-08 09:03:26 -04:00
|
|
|
now = Curl_tvnow();
|
|
|
|
if(Curl_tvdiff(now, conn->created)/1000 >= data->set.timeout) {
|
|
|
|
failf(data, "Time-out");
|
|
|
|
code = CURLE_OPERATION_TIMEOUTED;
|
|
|
|
keepon = FALSE;
|
|
|
|
}
|
|
|
|
}
|
2001-01-25 07:22:17 -05:00
|
|
|
}
|
2001-09-17 10:10:38 -04:00
|
|
|
#endif
|
2001-01-31 10:05:44 -05:00
|
|
|
/* mark this as "no further transfer wanted" */
|
2002-10-08 09:03:26 -04:00
|
|
|
Curl_Transfer(conn, -1, -1, FALSE, NULL, -1, NULL);
|
|
|
|
|
|
|
|
return code;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2002-06-11 07:13:01 -04:00
|
|
|
#endif
|