Support for falling back through the list of addresses returned from
[u/mdw/putty] / proxy.c
CommitLineData
8eebd221 1/*
2 * Network proxy abstraction in PuTTY
3 *
4 * A proxy layer, if necessary, wedges itself between the network
5 * code and the higher level backend.
6 */
7
7983f47e 8#include <assert.h>
de9aaffb 9#include <ctype.h>
10#include <string.h>
7983f47e 11
8eebd221 12#define DEFINE_PLUG_METHOD_MACROS
13#include "putty.h"
14#include "network.h"
15#include "proxy.h"
16
e8fa8f62 17#define do_proxy_dns(cfg) \
5ecd7ad0 18 (cfg->proxy_dns == FORCE_ON || \
10068a0b 19 (cfg->proxy_dns == AUTO && \
20 cfg->proxy_type != PROXY_SOCKS4 && \
21 cfg->proxy_type != PROXY_SOCKS5))
b7a189f3 22
8eebd221 23/*
24 * Call this when proxy negotiation is complete, so that this
25 * socket can begin working normally.
26 */
27void proxy_activate (Proxy_Socket p)
28{
29 void *data;
30 int len;
2d129d8e 31 long output_before, output_after;
32
8eebd221 33 p->state = PROXY_STATE_ACTIVE;
34
2d129d8e 35 /* we want to ignore new receive events until we have sent
36 * all of our buffered receive data.
37 */
8eebd221 38 sk_set_frozen(p->sub_socket, 1);
39
2d129d8e 40 /* how many bytes of output have we buffered? */
41 output_before = bufchain_size(&p->pending_oob_output_data) +
42 bufchain_size(&p->pending_output_data);
43 /* and keep track of how many bytes do not get sent. */
44 output_after = 0;
45
0e8f4cda 46 /* send buffered OOB writes */
8eebd221 47 while (bufchain_size(&p->pending_oob_output_data) > 0) {
48 bufchain_prefix(&p->pending_oob_output_data, &data, &len);
2d129d8e 49 output_after += sk_write_oob(p->sub_socket, data, len);
8eebd221 50 bufchain_consume(&p->pending_oob_output_data, len);
51 }
8eebd221 52
0e8f4cda 53 /* send buffered normal writes */
8eebd221 54 while (bufchain_size(&p->pending_output_data) > 0) {
55 bufchain_prefix(&p->pending_output_data, &data, &len);
2d129d8e 56 output_after += sk_write(p->sub_socket, data, len);
8eebd221 57 bufchain_consume(&p->pending_output_data, len);
58 }
2d129d8e 59
60 /* if we managed to send any data, let the higher levels know. */
61 if (output_after < output_before)
62 plug_sent(p->plug, output_after);
8eebd221 63
0e8f4cda 64 /* if we were asked to flush the output during
65 * the proxy negotiation process, do so now.
66 */
8eebd221 67 if (p->pending_flush) sk_flush(p->sub_socket);
8eebd221 68
2d129d8e 69 /* if the backend wanted the socket unfrozen, try to unfreeze.
70 * our set_frozen handler will flush buffered receive data before
71 * unfreezing the actual underlying socket.
72 */
73 if (!p->freeze)
74 sk_set_frozen((Socket)p, 0);
8eebd221 75}
76
77/* basic proxy socket functions */
78
79static Plug sk_proxy_plug (Socket s, Plug p)
80{
81 Proxy_Socket ps = (Proxy_Socket) s;
82 Plug ret = ps->plug;
83 if (p)
84 ps->plug = p;
85 return ret;
86}
87
88static void sk_proxy_close (Socket s)
89{
90 Proxy_Socket ps = (Proxy_Socket) s;
91
8eebd221 92 sk_close(ps->sub_socket);
f85e6f6e 93 sk_addr_free(ps->remote_addr);
8eebd221 94 sfree(ps);
95}
96
e0e7dff8 97static int sk_proxy_write (Socket s, const char *data, int len)
8eebd221 98{
99 Proxy_Socket ps = (Proxy_Socket) s;
100
8eebd221 101 if (ps->state != PROXY_STATE_ACTIVE) {
102 bufchain_add(&ps->pending_output_data, data, len);
103 return bufchain_size(&ps->pending_output_data);
104 }
105 return sk_write(ps->sub_socket, data, len);
106}
107
e0e7dff8 108static int sk_proxy_write_oob (Socket s, const char *data, int len)
8eebd221 109{
110 Proxy_Socket ps = (Proxy_Socket) s;
111
8eebd221 112 if (ps->state != PROXY_STATE_ACTIVE) {
113 bufchain_clear(&ps->pending_output_data);
114 bufchain_clear(&ps->pending_oob_output_data);
115 bufchain_add(&ps->pending_oob_output_data, data, len);
116 return len;
117 }
118 return sk_write_oob(ps->sub_socket, data, len);
119}
120
121static void sk_proxy_flush (Socket s)
122{
123 Proxy_Socket ps = (Proxy_Socket) s;
124
8eebd221 125 if (ps->state != PROXY_STATE_ACTIVE) {
126 ps->pending_flush = 1;
127 return;
128 }
129 sk_flush(ps->sub_socket);
130}
131
132static void sk_proxy_set_private_ptr (Socket s, void *ptr)
133{
134 Proxy_Socket ps = (Proxy_Socket) s;
135 sk_set_private_ptr(ps->sub_socket, ptr);
136}
137
138static void * sk_proxy_get_private_ptr (Socket s)
139{
140 Proxy_Socket ps = (Proxy_Socket) s;
141 return sk_get_private_ptr(ps->sub_socket);
142}
143
144static void sk_proxy_set_frozen (Socket s, int is_frozen)
145{
146 Proxy_Socket ps = (Proxy_Socket) s;
147
8eebd221 148 if (ps->state != PROXY_STATE_ACTIVE) {
149 ps->freeze = is_frozen;
150 return;
151 }
2d129d8e 152
153 /* handle any remaining buffered recv data first */
154 if (bufchain_size(&ps->pending_input_data) > 0) {
155 ps->freeze = is_frozen;
156
157 /* loop while we still have buffered data, and while we are
158 * unfrozen. the plug_receive call in the loop could result
159 * in a call back into this function refreezing the socket,
160 * so we have to check each time.
161 */
162 while (!ps->freeze && bufchain_size(&ps->pending_input_data) > 0) {
68a49acb 163 void *data;
d9d006d5 164 char databuf[512];
2d129d8e 165 int len;
166 bufchain_prefix(&ps->pending_input_data, &data, &len);
d9d006d5 167 if (len > lenof(databuf))
168 len = lenof(databuf);
169 memcpy(databuf, data, len);
2d129d8e 170 bufchain_consume(&ps->pending_input_data, len);
d9d006d5 171 plug_receive(ps->plug, 0, databuf, len);
2d129d8e 172 }
173
174 /* if we're still frozen, we'll have to wait for another
175 * call from the backend to finish unbuffering the data.
176 */
177 if (ps->freeze) return;
178 }
179
8eebd221 180 sk_set_frozen(ps->sub_socket, is_frozen);
181}
182
cbe2d68f 183static const char * sk_proxy_socket_error (Socket s)
8eebd221 184{
185 Proxy_Socket ps = (Proxy_Socket) s;
186 if (ps->error != NULL || ps->sub_socket == NULL) {
187 return ps->error;
188 }
189 return sk_socket_error(ps->sub_socket);
190}
191
192/* basic proxy plug functions */
193
7555d6a5 194static void plug_proxy_log(Plug plug, int type, SockAddr addr, int port,
195 const char *error_msg, int error_code)
196{
197 Proxy_Plug pp = (Proxy_Plug) plug;
198 Proxy_Socket ps = pp->proxy_socket;
199
200 plug_log(ps->plug, type, addr, port, error_msg, error_code);
201}
202
cbe2d68f 203static int plug_proxy_closing (Plug p, const char *error_msg,
8eebd221 204 int error_code, int calling_back)
205{
206 Proxy_Plug pp = (Proxy_Plug) p;
207 Proxy_Socket ps = pp->proxy_socket;
208
8eebd221 209 if (ps->state != PROXY_STATE_ACTIVE) {
210 ps->closing_error_msg = error_msg;
211 ps->closing_error_code = error_code;
212 ps->closing_calling_back = calling_back;
213 return ps->negotiate(ps, PROXY_CHANGE_CLOSING);
214 }
215 return plug_closing(ps->plug, error_msg,
216 error_code, calling_back);
217}
218
219static int plug_proxy_receive (Plug p, int urgent, char *data, int len)
220{
221 Proxy_Plug pp = (Proxy_Plug) p;
222 Proxy_Socket ps = pp->proxy_socket;
223
8eebd221 224 if (ps->state != PROXY_STATE_ACTIVE) {
225 /* we will lose the urgentness of this data, but since most,
226 * if not all, of this data will be consumed by the negotiation
227 * process, hopefully it won't affect the protocol above us
228 */
229 bufchain_add(&ps->pending_input_data, data, len);
230 ps->receive_urgent = urgent;
231 ps->receive_data = data;
232 ps->receive_len = len;
233 return ps->negotiate(ps, PROXY_CHANGE_RECEIVE);
234 }
235 return plug_receive(ps->plug, urgent, data, len);
236}
237
238static void plug_proxy_sent (Plug p, int bufsize)
239{
240 Proxy_Plug pp = (Proxy_Plug) p;
241 Proxy_Socket ps = pp->proxy_socket;
242
8eebd221 243 if (ps->state != PROXY_STATE_ACTIVE) {
244 ps->sent_bufsize = bufsize;
245 ps->negotiate(ps, PROXY_CHANGE_SENT);
246 return;
247 }
248 plug_sent(ps->plug, bufsize);
249}
250
f7f9fb5c 251static int plug_proxy_accepting (Plug p, OSSocket sock)
8eebd221 252{
253 Proxy_Plug pp = (Proxy_Plug) p;
254 Proxy_Socket ps = pp->proxy_socket;
255
8eebd221 256 if (ps->state != PROXY_STATE_ACTIVE) {
257 ps->accepting_sock = sock;
258 return ps->negotiate(ps, PROXY_CHANGE_ACCEPTING);
259 }
260 return plug_accepting(ps->plug, sock);
261}
262
b7a189f3 263/*
264 * This function can accept a NULL pointer as `addr', in which case
265 * it will only check the host name.
266 */
e8fa8f62 267static int proxy_for_destination (SockAddr addr, char *hostname, int port,
268 const Config *cfg)
8eebd221 269{
270 int s = 0, e = 0;
271 char hostip[64];
272 int hostip_len, hostname_len;
e8fa8f62 273 const char *exclude_list;
8eebd221 274
b804e1e5 275 /*
276 * Check the host name and IP against the hard-coded
277 * representations of `localhost'.
278 */
e8fa8f62 279 if (!cfg->even_proxy_localhost &&
b7a189f3 280 (sk_hostname_is_local(hostname) ||
281 (addr && sk_address_is_local(addr))))
b804e1e5 282 return 0; /* do not proxy */
283
8eebd221 284 /* we want a string representation of the IP address for comparisons */
b7a189f3 285 if (addr) {
286 sk_getaddr(addr, hostip, 64);
287 hostip_len = strlen(hostip);
7ffdbc1a 288 } else
289 hostip_len = 0; /* placate gcc; shouldn't be required */
8eebd221 290
8eebd221 291 hostname_len = strlen(hostname);
292
e8fa8f62 293 exclude_list = cfg->proxy_exclude_list;
8eebd221 294
295 /* now parse the exclude list, and see if either our IP
296 * or hostname matches anything in it.
297 */
298
299 while (exclude_list[s]) {
300 while (exclude_list[s] &&
e93ed432 301 (isspace((unsigned char)exclude_list[s]) ||
8eebd221 302 exclude_list[s] == ',')) s++;
303
304 if (!exclude_list[s]) break;
305
306 e = s;
307
308 while (exclude_list[e] &&
e93ed432 309 (isalnum((unsigned char)exclude_list[e]) ||
8eebd221 310 exclude_list[e] == '-' ||
311 exclude_list[e] == '.' ||
312 exclude_list[e] == '*')) e++;
313
314 if (exclude_list[s] == '*') {
315 /* wildcard at beginning of entry */
316
b7a189f3 317 if ((addr && strnicmp(hostip + hostip_len - (e - s - 1),
318 exclude_list + s + 1, e - s - 1) == 0) ||
8eebd221 319 strnicmp(hostname + hostname_len - (e - s - 1),
320 exclude_list + s + 1, e - s - 1) == 0)
321 return 0; /* IP/hostname range excluded. do not use proxy. */
322
323 } else if (exclude_list[e-1] == '*') {
324 /* wildcard at end of entry */
325
b7a189f3 326 if ((addr && strnicmp(hostip, exclude_list + s, e - s - 1) == 0) ||
8eebd221 327 strnicmp(hostname, exclude_list + s, e - s - 1) == 0)
328 return 0; /* IP/hostname range excluded. do not use proxy. */
329
330 } else {
331 /* no wildcard at either end, so let's try an absolute
332 * match (ie. a specific IP)
333 */
334
d6f842e3 335 if (addr && strnicmp(hostip, exclude_list + s, e - s) == 0)
8eebd221 336 return 0; /* IP/hostname excluded. do not use proxy. */
d6f842e3 337 if (strnicmp(hostname, exclude_list + s, e - s) == 0)
8eebd221 338 return 0; /* IP/hostname excluded. do not use proxy. */
339 }
340
341 s = e;
1b08e5d7 342
343 /* Make sure we really have reached the next comma or end-of-string */
344 while (exclude_list[s] &&
e93ed432 345 !isspace((unsigned char)exclude_list[s]) &&
1b08e5d7 346 exclude_list[s] != ',') s++;
8eebd221 347 }
348
349 /* no matches in the exclude list, so use the proxy */
350 return 1;
351}
352
e8fa8f62 353SockAddr name_lookup(char *host, int port, char **canonicalname,
05581745 354 const Config *cfg, int addressfamily)
b7a189f3 355{
e8fa8f62 356 if (cfg->proxy_type != PROXY_NONE &&
357 do_proxy_dns(cfg) &&
358 proxy_for_destination(NULL, host, port, cfg)) {
b7a189f3 359 *canonicalname = dupstr(host);
360 return sk_nonamelookup(host);
361 }
362
05581745 363 return sk_namelookup(host, canonicalname, addressfamily);
b7a189f3 364}
365
8eebd221 366Socket new_connection(SockAddr addr, char *hostname,
367 int port, int privport,
79bf227b 368 int oobinline, int nodelay, int keepalive,
369 Plug plug, const Config *cfg)
8eebd221 370{
7b6c9b99 371 static const struct socket_function_table socket_fn_table = {
8eebd221 372 sk_proxy_plug,
373 sk_proxy_close,
374 sk_proxy_write,
375 sk_proxy_write_oob,
376 sk_proxy_flush,
377 sk_proxy_set_private_ptr,
378 sk_proxy_get_private_ptr,
379 sk_proxy_set_frozen,
380 sk_proxy_socket_error
381 };
382
7b6c9b99 383 static const struct plug_function_table plug_fn_table = {
7555d6a5 384 plug_proxy_log,
8eebd221 385 plug_proxy_closing,
386 plug_proxy_receive,
387 plug_proxy_sent,
388 plug_proxy_accepting
389 };
390
e8fa8f62 391 if (cfg->proxy_type != PROXY_NONE &&
392 proxy_for_destination(addr, hostname, port, cfg))
8eebd221 393 {
394 Proxy_Socket ret;
395 Proxy_Plug pplug;
396 SockAddr proxy_addr;
cbe2d68f 397 char *proxy_canonical_name;
0f0a2507 398 Socket sret;
399
eba898cf 400 if ((sret = platform_new_connection(addr, hostname, port, privport,
79bf227b 401 oobinline, nodelay, keepalive,
402 plug, cfg)) !=
eba898cf 403 NULL)
0f0a2507 404 return sret;
8eebd221 405
3d88e64d 406 ret = snew(struct Socket_proxy_tag);
8eebd221 407 ret->fn = &socket_fn_table;
e8fa8f62 408 ret->cfg = *cfg; /* STRUCTURE COPY */
8eebd221 409 ret->plug = plug;
f85e6f6e 410 ret->remote_addr = addr; /* will need to be freed on close */
8eebd221 411 ret->remote_port = port;
412
65c78e88 413 ret->error = NULL;
414 ret->pending_flush = 0;
415 ret->freeze = 0;
416
8eebd221 417 bufchain_init(&ret->pending_input_data);
418 bufchain_init(&ret->pending_output_data);
419 bufchain_init(&ret->pending_oob_output_data);
420
8eebd221 421 ret->sub_socket = NULL;
422 ret->state = PROXY_STATE_NEW;
2d129d8e 423 ret->negotiate = NULL;
424
e8fa8f62 425 if (cfg->proxy_type == PROXY_HTTP) {
8eebd221 426 ret->negotiate = proxy_http_negotiate;
10068a0b 427 } else if (cfg->proxy_type == PROXY_SOCKS4) {
428 ret->negotiate = proxy_socks4_negotiate;
429 } else if (cfg->proxy_type == PROXY_SOCKS5) {
430 ret->negotiate = proxy_socks5_negotiate;
e8fa8f62 431 } else if (cfg->proxy_type == PROXY_TELNET) {
8eebd221 432 ret->negotiate = proxy_telnet_negotiate;
433 } else {
7983f47e 434 ret->error = "Proxy error: Unknown proxy method";
8eebd221 435 return (Socket) ret;
436 }
437
438 /* create the proxy plug to map calls from the actual
439 * socket into our proxy socket layer */
3d88e64d 440 pplug = snew(struct Plug_proxy_tag);
8eebd221 441 pplug->fn = &plug_fn_table;
442 pplug->proxy_socket = ret;
443
444 /* look-up proxy */
e8fa8f62 445 proxy_addr = sk_namelookup(cfg->proxy_host,
05581745 446 &proxy_canonical_name, cfg->addressfamily);
cbe2d68f 447 if (sk_addr_error(proxy_addr) != NULL) {
42389a9e 448 ret->error = "Proxy error: Unable to resolve proxy host name";
449 return (Socket)ret;
450 }
8eebd221 451 sfree(proxy_canonical_name);
452
453 /* create the actual socket we will be using,
454 * connected to our proxy server and port.
455 */
e8fa8f62 456 ret->sub_socket = sk_new(proxy_addr, cfg->proxy_port,
8eebd221 457 privport, oobinline,
79bf227b 458 nodelay, keepalive, (Plug) pplug);
8eebd221 459 if (sk_socket_error(ret->sub_socket) != NULL)
460 return (Socket) ret;
461
8eebd221 462 /* start the proxy negotiation process... */
463 sk_set_frozen(ret->sub_socket, 0);
464 ret->negotiate(ret, PROXY_CHANGE_NEW);
465
466 return (Socket) ret;
467 }
468
469 /* no proxy, so just return the direct socket */
79bf227b 470 return sk_new(addr, port, privport, oobinline, nodelay, keepalive, plug);
8eebd221 471}
472
e8fa8f62 473Socket new_listener(char *srcaddr, int port, Plug plug, int local_host_only,
05581745 474 const Config *cfg, int addressfamily)
8eebd221 475{
476 /* TODO: SOCKS (and potentially others) support inbound
477 * TODO: connections via the proxy. support them.
478 */
479
05581745 480 return sk_newlistener(srcaddr, port, plug, local_host_only, addressfamily);
8eebd221 481}
482
483/* ----------------------------------------------------------------------
484 * HTTP CONNECT proxy type.
485 */
486
487static int get_line_end (char * data, int len)
488{
489 int off = 0;
490
491 while (off < len)
492 {
493 if (data[off] == '\n') {
494 /* we have a newline */
495 off++;
496
497 /* is that the only thing on this line? */
498 if (off <= 2) return off;
499
500 /* if not, then there is the possibility that this header
501 * continues onto the next line, if it starts with a space
502 * or a tab.
503 */
504
505 if (off + 1 < len &&
506 data[off+1] != ' ' &&
507 data[off+1] != '\t') return off;
508
509 /* the line does continue, so we have to keep going
510 * until we see an the header's "real" end of line.
511 */
512 off++;
513 }
514
515 off++;
516 }
517
518 return -1;
519}
520
521int proxy_http_negotiate (Proxy_Socket p, int change)
522{
523 if (p->state == PROXY_STATE_NEW) {
524 /* we are just beginning the proxy negotiate process,
525 * so we'll send off the initial bits of the request.
526 * for this proxy method, it's just a simple HTTP
527 * request
528 */
b7a189f3 529 char *buf, dest[512];
8eebd221 530
b7a189f3 531 sk_getaddr(p->remote_addr, dest, lenof(dest));
8eebd221 532
57356d63 533 buf = dupprintf("CONNECT %s:%i HTTP/1.1\r\nHost: %s:%i\r\n",
534 dest, p->remote_port, dest, p->remote_port);
8eebd221 535 sk_write(p->sub_socket, buf, strlen(buf));
57356d63 536 sfree(buf);
8eebd221 537
e8fa8f62 538 if (p->cfg.proxy_username[0] || p->cfg.proxy_password[0]) {
539 char buf[sizeof(p->cfg.proxy_username)+sizeof(p->cfg.proxy_password)];
1549e076 540 char buf2[sizeof(buf)*4/3 + 100];
541 int i, j, len;
e8fa8f62 542 sprintf(buf, "%s:%s", p->cfg.proxy_username, p->cfg.proxy_password);
1549e076 543 len = strlen(buf);
6c434e1f 544 sprintf(buf2, "Proxy-Authorization: Basic ");
1549e076 545 for (i = 0, j = strlen(buf2); i < len; i += 3, j += 4)
616a115c 546 base64_encode_atom((unsigned char *)(buf+i),
547 (len-i > 3 ? 3 : len-i), buf2+j);
1549e076 548 strcpy(buf2+j, "\r\n");
549 sk_write(p->sub_socket, buf2, strlen(buf2));
550 }
551
9ddf18a4 552 sk_write(p->sub_socket, "\r\n", 2);
1549e076 553
8eebd221 554 p->state = 1;
8eebd221 555 return 0;
556 }
557
558 if (change == PROXY_CHANGE_CLOSING) {
559 /* if our proxy negotiation process involves closing and opening
560 * new sockets, then we would want to intercept this closing
561 * callback when we were expecting it. if we aren't anticipating
562 * a socket close, then some error must have occurred. we'll
563 * just pass those errors up to the backend.
564 */
565 return plug_closing(p->plug, p->closing_error_msg,
566 p->closing_error_code,
567 p->closing_calling_back);
568 }
569
570 if (change == PROXY_CHANGE_SENT) {
571 /* some (or all) of what we wrote to the proxy was sent.
572 * we don't do anything new, however, until we receive the
573 * proxy's response. we might want to set a timer so we can
574 * timeout the proxy negotiation after a while...
575 */
576 return 0;
577 }
578
579 if (change == PROXY_CHANGE_ACCEPTING) {
580 /* we should _never_ see this, as we are using our socket to
581 * connect to a proxy, not accepting inbound connections.
582 * what should we do? close the socket with an appropriate
583 * error message?
584 */
585 return plug_accepting(p->plug, p->accepting_sock);
586 }
587
588 if (change == PROXY_CHANGE_RECEIVE) {
589 /* we have received data from the underlying socket, which
590 * we'll need to parse, process, and respond to appropriately.
591 */
592
7983f47e 593 char *data, *datap;
8eebd221 594 int len;
595 int eol;
596
597 if (p->state == 1) {
598
599 int min_ver, maj_ver, status;
600
601 /* get the status line */
7983f47e 602 len = bufchain_size(&p->pending_input_data);
603 assert(len > 0); /* or we wouldn't be here */
8d8af571 604 data = snewn(len+1, char);
7983f47e 605 bufchain_fetch(&p->pending_input_data, data, len);
8d8af571 606 /*
607 * We must NUL-terminate this data, because Windows
608 * sscanf appears to require a NUL at the end of the
609 * string because it strlens it _first_. Sigh.
610 */
611 data[len] = '\0';
7983f47e 612
8eebd221 613 eol = get_line_end(data, len);
7983f47e 614 if (eol < 0) {
615 sfree(data);
616 return 1;
617 }
8eebd221 618
7983f47e 619 status = -1;
620 /* We can't rely on whether the %n incremented the sscanf return */
621 if (sscanf((char *)data, "HTTP/%i.%i %n",
622 &maj_ver, &min_ver, &status) < 2 || status == -1) {
623 plug_closing(p->plug, "Proxy error: HTTP response was absent",
624 PROXY_ERROR_GENERAL, 0);
625 sfree(data);
626 return 1;
627 }
8eebd221 628
629 /* remove the status line from the input buffer. */
630 bufchain_consume(&p->pending_input_data, eol);
7983f47e 631 if (data[status] != '2') {
8eebd221 632 /* error */
57356d63 633 char *buf;
7983f47e 634 data[eol] = '\0';
635 while (eol > status &&
636 (data[eol-1] == '\r' || data[eol-1] == '\n'))
637 data[--eol] = '\0';
57356d63 638 buf = dupprintf("Proxy error: %s", data+status);
7983f47e 639 plug_closing(p->plug, buf, PROXY_ERROR_GENERAL, 0);
57356d63 640 sfree(buf);
7983f47e 641 sfree(data);
8eebd221 642 return 1;
643 }
644
7983f47e 645 sfree(data);
646
8eebd221 647 p->state = 2;
648 }
649
650 if (p->state == 2) {
651
652 /* get headers. we're done when we get a
653 * header of length 2, (ie. just "\r\n")
654 */
655
7983f47e 656 len = bufchain_size(&p->pending_input_data);
657 assert(len > 0); /* or we wouldn't be here */
3d88e64d 658 data = snewn(len, char);
7983f47e 659 datap = data;
660 bufchain_fetch(&p->pending_input_data, data, len);
661
662 eol = get_line_end(datap, len);
663 if (eol < 0) {
664 sfree(data);
665 return 1;
666 }
8eebd221 667 while (eol > 2)
668 {
8eebd221 669 bufchain_consume(&p->pending_input_data, eol);
7983f47e 670 datap += eol;
9ddf18a4 671 len -= eol;
7983f47e 672 eol = get_line_end(datap, len);
8eebd221 673 }
674
675 if (eol == 2) {
676 /* we're done */
677 bufchain_consume(&p->pending_input_data, 2);
678 proxy_activate(p);
679 /* proxy activate will have dealt with
680 * whatever is left of the buffer */
7983f47e 681 sfree(data);
8eebd221 682 return 1;
683 }
684
7983f47e 685 sfree(data);
8eebd221 686 return 1;
687 }
688 }
689
7983f47e 690 plug_closing(p->plug, "Proxy error: unexpected proxy error",
8eebd221 691 PROXY_ERROR_UNEXPECTED, 0);
6971bbe7 692 return 1;
8eebd221 693}
694
695/* ----------------------------------------------------------------------
6971bbe7 696 * SOCKS proxy type.
8eebd221 697 */
698
6971bbe7 699/* SOCKS version 4 */
700int proxy_socks4_negotiate (Proxy_Socket p, int change)
8eebd221 701{
6971bbe7 702 if (p->state == PROXY_CHANGE_NEW) {
703
704 /* request format:
705 * version number (1 byte) = 4
706 * command code (1 byte)
707 * 1 = CONNECT
708 * 2 = BIND
709 * dest. port (2 bytes) [network order]
710 * dest. address (4 bytes)
711 * user ID (variable length, null terminated string)
712 */
713
b7a189f3 714 int length, type, namelen;
715 char *command, addr[4], hostname[512];
6971bbe7 716
b7a189f3 717 type = sk_addrtype(p->remote_addr);
718 if (type == ADDRTYPE_IPV6) {
7983f47e 719 plug_closing(p->plug, "Proxy error: SOCKS version 4 does"
720 " not support IPv6", PROXY_ERROR_GENERAL, 0);
6971bbe7 721 return 1;
b7a189f3 722 } else if (type == ADDRTYPE_IPV4) {
723 namelen = 0;
724 sk_addrcopy(p->remote_addr, addr);
725 } else { /* type == ADDRTYPE_NAME */
5e391f65 726 assert(type == ADDRTYPE_NAME);
b7a189f3 727 sk_getaddr(p->remote_addr, hostname, lenof(hostname));
728 namelen = strlen(hostname) + 1; /* include the NUL */
729 addr[0] = addr[1] = addr[2] = 0;
730 addr[3] = 1;
6971bbe7 731 }
732
e8fa8f62 733 length = strlen(p->cfg.proxy_username) + namelen + 9;
3d88e64d 734 command = snewn(length, char);
e8fa8f62 735 strcpy(command + 8, p->cfg.proxy_username);
6971bbe7 736
737 command[0] = 4; /* version 4 */
738 command[1] = 1; /* CONNECT command */
739
740 /* port */
741 command[2] = (char) (p->remote_port >> 8) & 0xff;
742 command[3] = (char) p->remote_port & 0xff;
743
744 /* address */
b7a189f3 745 memcpy(command + 4, addr, 4);
746
747 /* hostname */
e8fa8f62 748 memcpy(command + 8 + strlen(p->cfg.proxy_username) + 1,
b7a189f3 749 hostname, namelen);
6971bbe7 750
751 sk_write(p->sub_socket, command, length);
de9aaffb 752 sfree(command);
6971bbe7 753
754 p->state = 1;
755 return 0;
756 }
757
758 if (change == PROXY_CHANGE_CLOSING) {
759 /* if our proxy negotiation process involves closing and opening
760 * new sockets, then we would want to intercept this closing
761 * callback when we were expecting it. if we aren't anticipating
762 * a socket close, then some error must have occurred. we'll
763 * just pass those errors up to the backend.
764 */
765 return plug_closing(p->plug, p->closing_error_msg,
766 p->closing_error_code,
767 p->closing_calling_back);
768 }
769
770 if (change == PROXY_CHANGE_SENT) {
771 /* some (or all) of what we wrote to the proxy was sent.
772 * we don't do anything new, however, until we receive the
773 * proxy's response. we might want to set a timer so we can
774 * timeout the proxy negotiation after a while...
775 */
776 return 0;
777 }
778
779 if (change == PROXY_CHANGE_ACCEPTING) {
780 /* we should _never_ see this, as we are using our socket to
781 * connect to a proxy, not accepting inbound connections.
782 * what should we do? close the socket with an appropriate
783 * error message?
784 */
785 return plug_accepting(p->plug, p->accepting_sock);
786 }
787
788 if (change == PROXY_CHANGE_RECEIVE) {
789 /* we have received data from the underlying socket, which
790 * we'll need to parse, process, and respond to appropriately.
791 */
792
793 if (p->state == 1) {
794 /* response format:
795 * version number (1 byte) = 4
796 * reply code (1 byte)
797 * 90 = request granted
798 * 91 = request rejected or failed
799 * 92 = request rejected due to lack of IDENTD on client
800 * 93 = request rejected due to difference in user ID
801 * (what we sent vs. what IDENTD said)
802 * dest. port (2 bytes)
803 * dest. address (4 bytes)
804 */
805
7983f47e 806 char data[8];
6971bbe7 807
7983f47e 808 if (bufchain_size(&p->pending_input_data) < 8)
809 return 1; /* not got anything yet */
810
6971bbe7 811 /* get the response */
7983f47e 812 bufchain_fetch(&p->pending_input_data, data, 8);
6971bbe7 813
814 if (data[0] != 0) {
7983f47e 815 plug_closing(p->plug, "Proxy error: SOCKS proxy responded with "
6971bbe7 816 "unexpected reply code version",
817 PROXY_ERROR_GENERAL, 0);
818 return 1;
819 }
820
821 if (data[1] != 90) {
822
823 switch (data[1]) {
824 case 92:
7983f47e 825 plug_closing(p->plug, "Proxy error: SOCKS server wanted IDENTD on client",
6971bbe7 826 PROXY_ERROR_GENERAL, 0);
827 break;
828 case 93:
7983f47e 829 plug_closing(p->plug, "Proxy error: Username and IDENTD on client don't agree",
6971bbe7 830 PROXY_ERROR_GENERAL, 0);
831 break;
832 case 91:
833 default:
7983f47e 834 plug_closing(p->plug, "Proxy error: Error while communicating with proxy",
6971bbe7 835 PROXY_ERROR_GENERAL, 0);
836 break;
837 }
838
839 return 1;
840 }
7983f47e 841 bufchain_consume(&p->pending_input_data, 8);
6971bbe7 842
843 /* we're done */
844 proxy_activate(p);
845 /* proxy activate will have dealt with
846 * whatever is left of the buffer */
847 return 1;
848 }
849 }
850
7983f47e 851 plug_closing(p->plug, "Proxy error: unexpected proxy error",
6971bbe7 852 PROXY_ERROR_UNEXPECTED, 0);
853 return 1;
854}
855
856/* SOCKS version 5 */
857int proxy_socks5_negotiate (Proxy_Socket p, int change)
858{
859 if (p->state == PROXY_CHANGE_NEW) {
860
861 /* initial command:
862 * version number (1 byte) = 5
863 * number of available authentication methods (1 byte)
864 * available authentication methods (1 byte * previous value)
865 * authentication methods:
866 * 0x00 = no authentication
867 * 0x01 = GSSAPI
868 * 0x02 = username/password
869 * 0x03 = CHAP
870 */
871
f33ba69e 872 char command[5];
aab91a3e 873 int len;
6971bbe7 874
875 command[0] = 5; /* version 5 */
e8fa8f62 876 if (p->cfg.proxy_username[0] || p->cfg.proxy_password[0]) {
aab91a3e 877 command[2] = 0x00; /* no authentication */
f33ba69e 878 len = 3;
879 proxy_socks5_offerencryptedauth (command, &len);
880 command[len++] = 0x02; /* username/password */
881 command[1] = len - 2; /* Number of methods supported */
aab91a3e 882 } else {
883 command[1] = 1; /* one methods supported: */
884 command[2] = 0x00; /* no authentication */
885 len = 3;
886 }
6971bbe7 887
aab91a3e 888 sk_write(p->sub_socket, command, len);
6971bbe7 889
890 p->state = 1;
891 return 0;
892 }
893
894 if (change == PROXY_CHANGE_CLOSING) {
895 /* if our proxy negotiation process involves closing and opening
896 * new sockets, then we would want to intercept this closing
897 * callback when we were expecting it. if we aren't anticipating
898 * a socket close, then some error must have occurred. we'll
899 * just pass those errors up to the backend.
900 */
901 return plug_closing(p->plug, p->closing_error_msg,
902 p->closing_error_code,
903 p->closing_calling_back);
904 }
905
906 if (change == PROXY_CHANGE_SENT) {
907 /* some (or all) of what we wrote to the proxy was sent.
908 * we don't do anything new, however, until we receive the
909 * proxy's response. we might want to set a timer so we can
910 * timeout the proxy negotiation after a while...
911 */
912 return 0;
913 }
914
915 if (change == PROXY_CHANGE_ACCEPTING) {
916 /* we should _never_ see this, as we are using our socket to
917 * connect to a proxy, not accepting inbound connections.
918 * what should we do? close the socket with an appropriate
919 * error message?
920 */
921 return plug_accepting(p->plug, p->accepting_sock);
922 }
923
924 if (change == PROXY_CHANGE_RECEIVE) {
925 /* we have received data from the underlying socket, which
926 * we'll need to parse, process, and respond to appropriately.
927 */
928
6971bbe7 929 if (p->state == 1) {
930
931 /* initial response:
932 * version number (1 byte) = 5
933 * authentication method (1 byte)
934 * authentication methods:
935 * 0x00 = no authentication
936 * 0x01 = GSSAPI
f33ba69e 937 * 0x02 = username/password
6971bbe7 938 * 0x03 = CHAP
939 * 0xff = no acceptable methods
940 */
7983f47e 941 char data[2];
942
943 if (bufchain_size(&p->pending_input_data) < 2)
944 return 1; /* not got anything yet */
6971bbe7 945
946 /* get the response */
7983f47e 947 bufchain_fetch(&p->pending_input_data, data, 2);
6971bbe7 948
949 if (data[0] != 5) {
7983f47e 950 plug_closing(p->plug, "Proxy error: SOCKS proxy returned unexpected version",
6971bbe7 951 PROXY_ERROR_GENERAL, 0);
952 return 1;
953 }
954
955 if (data[1] == 0x00) p->state = 2; /* no authentication needed */
956 else if (data[1] == 0x01) p->state = 4; /* GSSAPI authentication */
957 else if (data[1] == 0x02) p->state = 5; /* username/password authentication */
958 else if (data[1] == 0x03) p->state = 6; /* CHAP authentication */
959 else {
7983f47e 960 plug_closing(p->plug, "Proxy error: SOCKS proxy did not accept our authentication",
6971bbe7 961 PROXY_ERROR_GENERAL, 0);
962 return 1;
963 }
aab91a3e 964 bufchain_consume(&p->pending_input_data, 2);
965 }
966
967 if (p->state == 7) {
968
969 /* password authentication reply format:
970 * version number (1 bytes) = 1
971 * reply code (1 byte)
972 * 0 = succeeded
973 * >0 = failed
974 */
7983f47e 975 char data[2];
976
977 if (bufchain_size(&p->pending_input_data) < 2)
978 return 1; /* not got anything yet */
aab91a3e 979
980 /* get the response */
7983f47e 981 bufchain_fetch(&p->pending_input_data, data, 2);
aab91a3e 982
983 if (data[0] != 1) {
7983f47e 984 plug_closing(p->plug, "Proxy error: SOCKS password "
985 "subnegotiation contained wrong version number",
aab91a3e 986 PROXY_ERROR_GENERAL, 0);
987 return 1;
988 }
989
990 if (data[1] != 0) {
991
7983f47e 992 plug_closing(p->plug, "Proxy error: SOCKS proxy refused"
993 " password authentication",
aab91a3e 994 PROXY_ERROR_GENERAL, 0);
995 return 1;
996 }
997
998 bufchain_consume(&p->pending_input_data, 2);
999 p->state = 2; /* now proceed as authenticated */
6971bbe7 1000 }
1001
f33ba69e 1002 if (p->state == 8) {
1003 int ret;
1004 ret = proxy_socks5_handlechap(p);
1005 if (ret) return ret;
1006 }
1007
6971bbe7 1008 if (p->state == 2) {
1009
1010 /* request format:
1011 * version number (1 byte) = 5
1012 * command code (1 byte)
1013 * 1 = CONNECT
1014 * 2 = BIND
1015 * 3 = UDP ASSOCIATE
1016 * reserved (1 byte) = 0x00
1017 * address type (1 byte)
1018 * 1 = IPv4
1019 * 3 = domainname (first byte has length, no terminating null)
1020 * 4 = IPv6
1021 * dest. address (variable)
1022 * dest. port (2 bytes) [network order]
1023 */
1024
b7a189f3 1025 char command[512];
6971bbe7 1026 int len;
b7a189f3 1027 int type;
6971bbe7 1028
b7a189f3 1029 type = sk_addrtype(p->remote_addr);
1030 if (type == ADDRTYPE_IPV4) {
1031 len = 10; /* 4 hdr + 4 addr + 2 trailer */
6971bbe7 1032 command[3] = 1; /* IPv4 */
b7a189f3 1033 sk_addrcopy(p->remote_addr, command+4);
1034 } else if (type == ADDRTYPE_IPV6) {
1035 len = 22; /* 4 hdr + 16 addr + 2 trailer */
6971bbe7 1036 command[3] = 4; /* IPv6 */
b7a189f3 1037 sk_addrcopy(p->remote_addr, command+4);
5e391f65 1038 } else {
1039 assert(type == ADDRTYPE_NAME);
b7a189f3 1040 command[3] = 3;
1041 sk_getaddr(p->remote_addr, command+5, 256);
1042 command[4] = strlen(command+5);
1043 len = 7 + command[4]; /* 4 hdr, 1 len, N addr, 2 trailer */
6971bbe7 1044 }
1045
1046 command[0] = 5; /* version 5 */
1047 command[1] = 1; /* CONNECT command */
1048 command[2] = 0x00;
1049
6971bbe7 1050 /* port */
1051 command[len-2] = (char) (p->remote_port >> 8) & 0xff;
1052 command[len-1] = (char) p->remote_port & 0xff;
1053
1054 sk_write(p->sub_socket, command, len);
1055
1056 p->state = 3;
1057 return 1;
1058 }
1059
1060 if (p->state == 3) {
1061
1062 /* reply format:
1063 * version number (1 bytes) = 5
1064 * reply code (1 byte)
1065 * 0 = succeeded
1066 * 1 = general SOCKS server failure
1067 * 2 = connection not allowed by ruleset
1068 * 3 = network unreachable
1069 * 4 = host unreachable
1070 * 5 = connection refused
1071 * 6 = TTL expired
1072 * 7 = command not supported
1073 * 8 = address type not supported
1074 * reserved (1 byte) = x00
1075 * address type (1 byte)
1076 * 1 = IPv4
1077 * 3 = domainname (first byte has length, no terminating null)
1078 * 4 = IPv6
1079 * server bound address (variable)
1080 * server bound port (2 bytes) [network order]
1081 */
7983f47e 1082 char data[5];
1083 int len;
1084
1085 /* First 5 bytes of packet are enough to tell its length. */
1086 if (bufchain_size(&p->pending_input_data) < 5)
1087 return 1; /* not got anything yet */
6971bbe7 1088
1089 /* get the response */
7983f47e 1090 bufchain_fetch(&p->pending_input_data, data, 5);
6971bbe7 1091
1092 if (data[0] != 5) {
7983f47e 1093 plug_closing(p->plug, "Proxy error: SOCKS proxy returned wrong version number",
6971bbe7 1094 PROXY_ERROR_GENERAL, 0);
1095 return 1;
1096 }
1097
1098 if (data[1] != 0) {
7983f47e 1099 char buf[256];
1100
1101 strcpy(buf, "Proxy error: ");
6971bbe7 1102
1103 switch (data[1]) {
7983f47e 1104 case 1: strcat(buf, "General SOCKS server failure"); break;
1105 case 2: strcat(buf, "Connection not allowed by ruleset"); break;
1106 case 3: strcat(buf, "Network unreachable"); break;
1107 case 4: strcat(buf, "Host unreachable"); break;
1108 case 5: strcat(buf, "Connection refused"); break;
1109 case 6: strcat(buf, "TTL expired"); break;
1110 case 7: strcat(buf, "Command not supported"); break;
1111 case 8: strcat(buf, "Address type not supported"); break;
1112 default: sprintf(buf+strlen(buf),
1113 "Unrecognised SOCKS error code %d",
1114 data[1]);
6971bbe7 1115 break;
1116 }
7983f47e 1117 plug_closing(p->plug, buf, PROXY_ERROR_GENERAL, 0);
1118
1119 return 1;
1120 }
6971bbe7 1121
7983f47e 1122 /*
1123 * Eat the rest of the reply packet.
1124 */
1125 len = 6; /* first 4 bytes, last 2 */
1126 switch (data[3]) {
1127 case 1: len += 4; break; /* IPv4 address */
1128 case 4: len += 16; break;/* IPv6 address */
1129 case 3: len += (unsigned char)data[4]; break; /* domain name */
1130 default:
1131 plug_closing(p->plug, "Proxy error: SOCKS proxy returned "
1132 "unrecognised address format",
1133 PROXY_ERROR_GENERAL, 0);
6971bbe7 1134 return 1;
1135 }
7983f47e 1136 if (bufchain_size(&p->pending_input_data) < len)
1137 return 1; /* not got whole reply yet */
1138 bufchain_consume(&p->pending_input_data, len);
6971bbe7 1139
1140 /* we're done */
1141 proxy_activate(p);
6971bbe7 1142 return 1;
1143 }
1144
1145 if (p->state == 4) {
1146 /* TODO: Handle GSSAPI authentication */
2192a8e4 1147 plug_closing(p->plug, "Proxy error: We don't support GSSAPI authentication",
6971bbe7 1148 PROXY_ERROR_GENERAL, 0);
1149 return 1;
1150 }
1151
1152 if (p->state == 5) {
e8fa8f62 1153 if (p->cfg.proxy_username[0] || p->cfg.proxy_password[0]) {
aab91a3e 1154 char userpwbuf[514];
1155 int ulen, plen;
e8fa8f62 1156 ulen = strlen(p->cfg.proxy_username);
aab91a3e 1157 if (ulen > 255) ulen = 255; if (ulen < 1) ulen = 1;
e8fa8f62 1158 plen = strlen(p->cfg.proxy_password);
aab91a3e 1159 if (plen > 255) plen = 255; if (plen < 1) plen = 1;
1160 userpwbuf[0] = 1; /* version number of subnegotiation */
1161 userpwbuf[1] = ulen;
e8fa8f62 1162 memcpy(userpwbuf+2, p->cfg.proxy_username, ulen);
aab91a3e 1163 userpwbuf[ulen+2] = plen;
e8fa8f62 1164 memcpy(userpwbuf+ulen+3, p->cfg.proxy_password, plen);
aab91a3e 1165 sk_write(p->sub_socket, userpwbuf, ulen + plen + 3);
1166 p->state = 7;
1167 } else
2192a8e4 1168 plug_closing(p->plug, "Proxy error: Server chose "
aab91a3e 1169 "username/password authentication but we "
1170 "didn't offer it!",
6971bbe7 1171 PROXY_ERROR_GENERAL, 0);
1172 return 1;
1173 }
1174
1175 if (p->state == 6) {
f33ba69e 1176 int ret;
1177 ret = proxy_socks5_selectchap(p);
1178 if (ret) return ret;
6971bbe7 1179 }
aab91a3e 1180
6971bbe7 1181 }
1182
2192a8e4 1183 plug_closing(p->plug, "Proxy error: Unexpected proxy error",
6971bbe7 1184 PROXY_ERROR_UNEXPECTED, 0);
1185 return 1;
8eebd221 1186}
1187
1188/* ----------------------------------------------------------------------
0e8f4cda 1189 * `Telnet' proxy type.
8eebd221 1190 *
1191 * (This is for ad-hoc proxies where you connect to the proxy's
1192 * telnet port and send a command such as `connect host port'. The
1193 * command is configurable, since this proxy type is typically not
1194 * standardised or at all well-defined.)
1195 */
1196
0f0a2507 1197char *format_telnet_command(SockAddr addr, int port, const Config *cfg)
8eebd221 1198{
0f0a2507 1199 char *ret = NULL;
1200 int retlen = 0, retsize = 0;
1201 int so = 0, eo = 0;
1202#define ENSURE(n) do { \
1203 if (retsize < retlen + n) { \
1204 retsize = retlen + n + 512; \
1205 ret = sresize(ret, retsize, char); \
1206 } \
1207} while (0)
1208
1209 /* we need to escape \\, \%, \r, \n, \t, \x??, \0???,
1210 * %%, %host, %port, %user, and %pass
1211 */
0e8f4cda 1212
0f0a2507 1213 while (cfg->proxy_telnet_command[eo] != 0) {
0e8f4cda 1214
0f0a2507 1215 /* scan forward until we hit end-of-line,
1216 * or an escape character (\ or %) */
1217 while (cfg->proxy_telnet_command[eo] != 0 &&
1218 cfg->proxy_telnet_command[eo] != '%' &&
1219 cfg->proxy_telnet_command[eo] != '\\') eo++;
0e8f4cda 1220
0f0a2507 1221 /* if we hit eol, break out of our escaping loop */
1222 if (cfg->proxy_telnet_command[eo] == 0) break;
0e8f4cda 1223
0f0a2507 1224 /* if there was any unescaped text before the escape
1225 * character, send that now */
1226 if (eo != so) {
1227 ENSURE(eo - so);
1228 memcpy(ret + retlen, cfg->proxy_telnet_command + so, eo - so);
1229 retlen += eo - so;
1230 }
0e8f4cda 1231
0f0a2507 1232 so = eo++;
0e8f4cda 1233
0f0a2507 1234 /* if the escape character was the last character of
1235 * the line, we'll just stop and send it. */
1236 if (cfg->proxy_telnet_command[eo] == 0) break;
0e8f4cda 1237
0f0a2507 1238 if (cfg->proxy_telnet_command[so] == '\\') {
0e8f4cda 1239
0f0a2507 1240 /* we recognize \\, \%, \r, \n, \t, \x??.
1241 * anything else, we just send unescaped (including the \).
1242 */
0e8f4cda 1243
0f0a2507 1244 switch (cfg->proxy_telnet_command[eo]) {
1245
1246 case '\\':
1247 ENSURE(1);
1248 ret[retlen++] = '\\';
1249 eo++;
1250 break;
1251
1252 case '%':
1253 ENSURE(1);
1254 ret[retlen++] = '%';
1255 eo++;
1256 break;
1257
1258 case 'r':
1259 ENSURE(1);
1260 ret[retlen++] = '\r';
1261 eo++;
1262 break;
1263
1264 case 'n':
1265 ENSURE(1);
1266 ret[retlen++] = '\n';
1267 eo++;
1268 break;
1269
1270 case 't':
1271 ENSURE(1);
1272 ret[retlen++] = '\t';
1273 eo++;
1274 break;
1275
1276 case 'x':
1277 case 'X':
1278 {
0e8f4cda 1279 /* escaped hexadecimal value (ie. \xff) */
1280 unsigned char v = 0;
1281 int i = 0;
1282
1283 for (;;) {
1284 eo++;
0f0a2507 1285 if (cfg->proxy_telnet_command[eo] >= '0' &&
1286 cfg->proxy_telnet_command[eo] <= '9')
1287 v += cfg->proxy_telnet_command[eo] - '0';
1288 else if (cfg->proxy_telnet_command[eo] >= 'a' &&
1289 cfg->proxy_telnet_command[eo] <= 'f')
1290 v += cfg->proxy_telnet_command[eo] - 'a' + 10;
1291 else if (cfg->proxy_telnet_command[eo] >= 'A' &&
1292 cfg->proxy_telnet_command[eo] <= 'F')
1293 v += cfg->proxy_telnet_command[eo] - 'A' + 10;
0e8f4cda 1294 else {
1295 /* non hex character, so we abort and just
1296 * send the whole thing unescaped (including \x)
1297 */
0f0a2507 1298 ENSURE(1);
1299 ret[retlen++] = '\\';
0e8f4cda 1300 eo = so + 1;
1301 break;
1302 }
1303
1304 /* we only extract two hex characters */
1305 if (i == 1) {
0f0a2507 1306 ENSURE(1);
1307 ret[retlen++] = v;
0e8f4cda 1308 eo++;
1309 break;
1310 }
1311
1312 i++;
1313 v <<= 4;
1314 }
0e8f4cda 1315 }
0f0a2507 1316 break;
0e8f4cda 1317
0f0a2507 1318 default:
1319 ENSURE(2);
1320 memcpy(ret+retlen, cfg->proxy_telnet_command + so, 2);
1321 retlen += 2;
1322 eo++;
1323 break;
0e8f4cda 1324 }
0f0a2507 1325 } else {
0e8f4cda 1326
0f0a2507 1327 /* % escape. we recognize %%, %host, %port, %user, %pass.
c4190b30 1328 * %proxyhost, %proxyport. Anything else we just send
1329 * unescaped (including the %).
0f0a2507 1330 */
0e8f4cda 1331
0f0a2507 1332 if (cfg->proxy_telnet_command[eo] == '%') {
1333 ENSURE(1);
1334 ret[retlen++] = '%';
1335 eo++;
1336 }
1337 else if (strnicmp(cfg->proxy_telnet_command + eo,
1338 "host", 4) == 0) {
1339 char dest[512];
1340 int destlen;
1341 sk_getaddr(addr, dest, lenof(dest));
1342 destlen = strlen(dest);
1343 ENSURE(destlen);
1344 memcpy(ret+retlen, dest, destlen);
1345 retlen += destlen;
1346 eo += 4;
1347 }
1348 else if (strnicmp(cfg->proxy_telnet_command + eo,
1349 "port", 4) == 0) {
1350 char portstr[8], portlen;
1351 portlen = sprintf(portstr, "%i", port);
1352 ENSURE(portlen);
1353 memcpy(ret + retlen, portstr, portlen);
1354 retlen += portlen;
1355 eo += 4;
1356 }
1357 else if (strnicmp(cfg->proxy_telnet_command + eo,
1358 "user", 4) == 0) {
1359 int userlen = strlen(cfg->proxy_username);
1360 ENSURE(userlen);
1361 memcpy(ret+retlen, cfg->proxy_username, userlen);
1362 retlen += userlen;
1363 eo += 4;
1364 }
1365 else if (strnicmp(cfg->proxy_telnet_command + eo,
1366 "pass", 4) == 0) {
1367 int passlen = strlen(cfg->proxy_password);
1368 ENSURE(passlen);
1369 memcpy(ret+retlen, cfg->proxy_password, passlen);
1370 retlen += passlen;
1371 eo += 4;
1372 }
c4190b30 1373 else if (strnicmp(cfg->proxy_telnet_command + eo,
1374 "proxyhost", 4) == 0) {
1375 int phlen = strlen(cfg->proxy_host);
1376 ENSURE(phlen);
1377 memcpy(ret+retlen, cfg->proxy_host, phlen);
1378 retlen += phlen;
1379 eo += 9;
1380 }
1381 else if (strnicmp(cfg->proxy_telnet_command + eo,
1382 "proxyport", 4) == 0) {
1383 char pport[50];
1384 int pplen;
1385 sprintf(pport, "%d", cfg->proxy_port);
1386 pplen = strlen(cfg->proxy_host);
1387 ENSURE(pplen);
1388 memcpy(ret+retlen, pport, pplen);
1389 retlen += pplen;
1390 eo += 9;
1391 }
0f0a2507 1392 else {
1393 /* we don't escape this, so send the % now, and
1394 * don't advance eo, so that we'll consider the
1395 * text immediately following the % as unescaped.
1396 */
1397 ENSURE(1);
1398 ret[retlen++] = '%';
1399 }
0e8f4cda 1400 }
1401
0f0a2507 1402 /* resume scanning for additional escapes after this one. */
1403 so = eo;
1404 }
1405
1406 /* if there is any unescaped text at the end of the line, send it */
1407 if (eo != so) {
1408 ENSURE(eo - so);
1409 memcpy(ret + retlen, cfg->proxy_telnet_command + so, eo - so);
1410 retlen += eo - so;
1411 }
1412
1413 ENSURE(1);
1414 ret[retlen] = '\0';
1415 return ret;
1416
1417#undef ENSURE
1418}
1419
1420int proxy_telnet_negotiate (Proxy_Socket p, int change)
1421{
1422 if (p->state == PROXY_CHANGE_NEW) {
1423 char *formatted_cmd;
1424
1425 formatted_cmd = format_telnet_command(p->remote_addr, p->remote_port,
1426 &p->cfg);
1427
1428 sk_write(p->sub_socket, formatted_cmd, strlen(formatted_cmd));
1429 sfree(formatted_cmd);
1430
0e8f4cda 1431 p->state = 1;
0e8f4cda 1432 return 0;
1433 }
1434
1435 if (change == PROXY_CHANGE_CLOSING) {
1436 /* if our proxy negotiation process involves closing and opening
1437 * new sockets, then we would want to intercept this closing
1438 * callback when we were expecting it. if we aren't anticipating
1439 * a socket close, then some error must have occurred. we'll
1440 * just pass those errors up to the backend.
1441 */
1442 return plug_closing(p->plug, p->closing_error_msg,
1443 p->closing_error_code,
1444 p->closing_calling_back);
1445 }
1446
1447 if (change == PROXY_CHANGE_SENT) {
1448 /* some (or all) of what we wrote to the proxy was sent.
1449 * we don't do anything new, however, until we receive the
1450 * proxy's response. we might want to set a timer so we can
1451 * timeout the proxy negotiation after a while...
1452 */
1453 return 0;
1454 }
1455
1456 if (change == PROXY_CHANGE_ACCEPTING) {
1457 /* we should _never_ see this, as we are using our socket to
1458 * connect to a proxy, not accepting inbound connections.
1459 * what should we do? close the socket with an appropriate
1460 * error message?
1461 */
1462 return plug_accepting(p->plug, p->accepting_sock);
1463 }
1464
1465 if (change == PROXY_CHANGE_RECEIVE) {
1466 /* we have received data from the underlying socket, which
1467 * we'll need to parse, process, and respond to appropriately.
1468 */
1469
1470 /* we're done */
1471 proxy_activate(p);
1472 /* proxy activate will have dealt with
1473 * whatever is left of the buffer */
1474 return 1;
1475 }
1476
2192a8e4 1477 plug_closing(p->plug, "Proxy error: Unexpected proxy error",
0e8f4cda 1478 PROXY_ERROR_UNEXPECTED, 0);
6971bbe7 1479 return 1;
8eebd221 1480}