2002-03-23 20:47:21 +03:00
|
|
|
/*
|
|
|
|
* Network proxy abstraction in PuTTY
|
|
|
|
*
|
|
|
|
* A proxy layer, if necessary, wedges itself between the
|
|
|
|
* network code and the higher level backend.
|
|
|
|
*
|
2002-10-22 13:40:38 +04:00
|
|
|
* Supported proxies: HTTP CONNECT, generic telnet, SOCKS 4 & 5
|
2002-03-23 20:47:21 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PUTTY_PROXY_H
|
|
|
|
#define PUTTY_PROXY_H
|
|
|
|
|
|
|
|
#define PROXY_ERROR_GENERAL 8000
|
|
|
|
#define PROXY_ERROR_UNEXPECTED 8001
|
|
|
|
|
|
|
|
typedef struct Socket_proxy_tag * Proxy_Socket;
|
|
|
|
|
|
|
|
struct Socket_proxy_tag {
|
2002-10-26 15:12:24 +04:00
|
|
|
const struct socket_function_table *fn;
|
2002-03-23 20:47:21 +03:00
|
|
|
/* the above variable absolutely *must* be the first in this structure */
|
|
|
|
|
2015-05-15 13:15:42 +03:00
|
|
|
const char *error;
|
2002-03-23 20:47:21 +03:00
|
|
|
|
|
|
|
Socket sub_socket;
|
|
|
|
Plug plug;
|
|
|
|
SockAddr remote_addr;
|
|
|
|
int remote_port;
|
|
|
|
|
|
|
|
bufchain pending_output_data;
|
|
|
|
bufchain pending_oob_output_data;
|
|
|
|
int pending_flush;
|
|
|
|
bufchain pending_input_data;
|
2011-09-13 15:44:03 +04:00
|
|
|
int pending_eof;
|
2002-03-23 20:47:21 +03:00
|
|
|
|
|
|
|
#define PROXY_STATE_NEW -1
|
|
|
|
#define PROXY_STATE_ACTIVE 0
|
|
|
|
|
|
|
|
int state; /* proxy states greater than 0 are implementation
|
|
|
|
* dependent, but represent various stages/states
|
|
|
|
* of the initialization/setup/negotiation with the
|
|
|
|
* proxy server.
|
|
|
|
*/
|
|
|
|
int freeze; /* should we freeze the underlying socket when
|
|
|
|
* we are done with the proxy negotiation? this
|
|
|
|
* simply caches the value of sk_set_frozen calls.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define PROXY_CHANGE_NEW -1
|
|
|
|
#define PROXY_CHANGE_CLOSING 0
|
|
|
|
#define PROXY_CHANGE_SENT 1
|
|
|
|
#define PROXY_CHANGE_RECEIVE 2
|
|
|
|
#define PROXY_CHANGE_ACCEPTING 3
|
|
|
|
|
|
|
|
/* something has changed (a call from the sub socket
|
|
|
|
* layer into our Proxy Plug layer, or we were just
|
|
|
|
* created, etc), so the proxy layer needs to handle
|
|
|
|
* this change (the type of which is the second argument)
|
|
|
|
* and further the proxy negotiation process.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int (*negotiate) (Proxy_Socket /* this */, int /* change type */);
|
|
|
|
|
|
|
|
/* current arguments of plug handlers
|
|
|
|
* (for use by proxy's negotiate function)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* closing */
|
2003-05-04 18:18:18 +04:00
|
|
|
const char *closing_error_msg;
|
2002-03-23 20:47:21 +03:00
|
|
|
int closing_error_code;
|
|
|
|
int closing_calling_back;
|
|
|
|
|
|
|
|
/* receive */
|
|
|
|
int receive_urgent;
|
|
|
|
char *receive_data;
|
|
|
|
int receive_len;
|
|
|
|
|
|
|
|
/* sent */
|
|
|
|
int sent_bufsize;
|
|
|
|
|
|
|
|
/* accepting */
|
2013-11-17 18:03:55 +04:00
|
|
|
accept_fn_t accepting_constructor;
|
|
|
|
accept_ctx_t accepting_ctx;
|
2002-03-23 20:47:21 +03:00
|
|
|
|
2003-01-12 18:26:10 +03:00
|
|
|
/* configuration, used to look up proxy settings */
|
Post-release destabilisation! Completely remove the struct type
'Config' in putty.h, which stores all PuTTY's settings and includes an
arbitrary length limit on every single one of those settings which is
stored in string form. In place of it is 'Conf', an opaque data type
everywhere outside the new file conf.c, which stores a list of (key,
value) pairs in which every key contains an integer identifying a
configuration setting, and for some of those integers the key also
contains extra parts (so that, for instance, CONF_environmt is a
string-to-string mapping). Everywhere that a Config was previously
used, a Conf is now; everywhere there was a Config structure copy,
conf_copy() is called; every lookup, adjustment, load and save
operation on a Config has been rewritten; and there's a mechanism for
serialising a Conf into a binary blob and back for use with Duplicate
Session.
User-visible effects of this change _should_ be minimal, though I
don't doubt I've introduced one or two bugs here and there which will
eventually be found. The _intended_ visible effects of this change are
that all arbitrary limits on configuration strings and lists (e.g.
limit on number of port forwardings) should now disappear; that list
boxes in the configuration will now be displayed in a sorted order
rather than the arbitrary order in which they were added to the list
(since the underlying data structure is now a sorted tree234 rather
than an ad-hoc comma-separated string); and one more specific change,
which is that local and dynamic port forwardings on the same port
number are now mutually exclusive in the configuration (putting 'D' in
the key rather than the value was a mistake in the first place).
One other reorganisation as a result of this is that I've moved all
the dialog.c standard handlers (dlg_stdeditbox_handler and friends)
out into config.c, because I can't really justify calling them generic
any more. When they took a pointer to an arbitrary structure type and
the offset of a field within that structure, they were independent of
whether that structure was a Config or something completely different,
but now they really do expect to talk to a Conf, which can _only_ be
used for PuTTY configuration, so I've renamed them all things like
conf_editbox_handler and moved them out of the nominally independent
dialog-box management module into the PuTTY-specific config.c.
[originally from svn r9214]
2011-07-14 22:52:21 +04:00
|
|
|
Conf *conf;
|
2004-08-30 17:11:17 +04:00
|
|
|
|
|
|
|
/* CHAP transient data */
|
|
|
|
int chap_num_attributes;
|
|
|
|
int chap_num_attributes_processed;
|
|
|
|
int chap_current_attribute;
|
|
|
|
int chap_current_datalen;
|
2002-03-23 20:47:21 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct Plug_proxy_tag * Proxy_Plug;
|
|
|
|
|
|
|
|
struct Plug_proxy_tag {
|
2002-10-26 15:12:24 +04:00
|
|
|
const struct plug_function_table *fn;
|
2002-03-23 20:47:21 +03:00
|
|
|
/* the above variable absolutely *must* be the first in this structure */
|
|
|
|
|
|
|
|
Proxy_Socket proxy_socket;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
extern void proxy_activate (Proxy_Socket);
|
|
|
|
|
|
|
|
extern int proxy_http_negotiate (Proxy_Socket, int);
|
|
|
|
extern int proxy_telnet_negotiate (Proxy_Socket, int);
|
2002-04-27 19:01:18 +04:00
|
|
|
extern int proxy_socks4_negotiate (Proxy_Socket, int);
|
|
|
|
extern int proxy_socks5_negotiate (Proxy_Socket, int);
|
2002-03-23 20:47:21 +03:00
|
|
|
|
2003-05-06 23:52:31 +04:00
|
|
|
/*
|
|
|
|
* This may be reused by local-command proxies on individual
|
|
|
|
* platforms.
|
|
|
|
*/
|
Post-release destabilisation! Completely remove the struct type
'Config' in putty.h, which stores all PuTTY's settings and includes an
arbitrary length limit on every single one of those settings which is
stored in string form. In place of it is 'Conf', an opaque data type
everywhere outside the new file conf.c, which stores a list of (key,
value) pairs in which every key contains an integer identifying a
configuration setting, and for some of those integers the key also
contains extra parts (so that, for instance, CONF_environmt is a
string-to-string mapping). Everywhere that a Config was previously
used, a Conf is now; everywhere there was a Config structure copy,
conf_copy() is called; every lookup, adjustment, load and save
operation on a Config has been rewritten; and there's a mechanism for
serialising a Conf into a binary blob and back for use with Duplicate
Session.
User-visible effects of this change _should_ be minimal, though I
don't doubt I've introduced one or two bugs here and there which will
eventually be found. The _intended_ visible effects of this change are
that all arbitrary limits on configuration strings and lists (e.g.
limit on number of port forwardings) should now disappear; that list
boxes in the configuration will now be displayed in a sorted order
rather than the arbitrary order in which they were added to the list
(since the underlying data structure is now a sorted tree234 rather
than an ad-hoc comma-separated string); and one more specific change,
which is that local and dynamic port forwardings on the same port
number are now mutually exclusive in the configuration (putting 'D' in
the key rather than the value was a mistake in the first place).
One other reorganisation as a result of this is that I've moved all
the dialog.c standard handlers (dlg_stdeditbox_handler and friends)
out into config.c, because I can't really justify calling them generic
any more. When they took a pointer to an arbitrary structure type and
the offset of a field within that structure, they were independent of
whether that structure was a Config or something completely different,
but now they really do expect to talk to a Conf, which can _only_ be
used for PuTTY configuration, so I've renamed them all things like
conf_editbox_handler and moved them out of the nominally independent
dialog-box management module into the PuTTY-specific config.c.
[originally from svn r9214]
2011-07-14 22:52:21 +04:00
|
|
|
char *format_telnet_command(SockAddr addr, int port, Conf *conf);
|
2003-05-06 23:52:31 +04:00
|
|
|
|
2004-08-30 17:11:17 +04:00
|
|
|
/*
|
|
|
|
* These are implemented in cproxy.c or nocproxy.c, depending on
|
|
|
|
* whether encrypted proxy authentication is available.
|
|
|
|
*/
|
|
|
|
extern void proxy_socks5_offerencryptedauth(char *command, int *len);
|
|
|
|
extern int proxy_socks5_handlechap (Proxy_Socket p);
|
|
|
|
extern int proxy_socks5_selectchap(Proxy_Socket p);
|
|
|
|
|
2002-03-23 20:47:21 +03:00
|
|
|
#endif
|