Set up kbd_codepage at the start of the program, as well as when the
[u/mdw/putty] / winnet.c
CommitLineData
2f75bae1 1/*
2 * Windows networking abstraction.
c4d8e107 3 *
4 * Due to this clean abstraction it was possible
5 * to easily implement IPv6 support :)
6 *
7 * IPv6 patch 1 (27 October 2000) Jeroen Massar <jeroen@unfix.org>
8 * - Preliminary hacked IPv6 support.
9 * - Connecting to IPv6 address (eg fec0:4242:4242:100:2d0:b7ff:fe8f:5d42) works.
10 * - Connecting to IPv6 hostname (eg heaven.ipv6.unfix.org) works.
11 * - Compiles as either IPv4 or IPv6.
12 *
13 * IPv6 patch 2 (29 October 2000) Jeroen Massar <jeroen@unfix.org>
14 * - When compiled as IPv6 it also allows connecting to IPv4 hosts.
15 * - Added some more documentation.
16 *
17 * IPv6 patch 3 (18 November 2000) Jeroen Massar <jeroen@unfix.org>
18 * - It now supports dynamically loading the IPv6 resolver dll's.
19 * This way we should be able to distribute one (1) binary
20 * which supports both IPv4 and IPv6.
21 * - getaddrinfo() and getnameinfo() are loaded dynamicaly if possible.
22 * - in6addr_any is defined in this file so we don't need to link to wship6.lib
23 * - The patch is now more unified so that we can still
24 * remove all IPv6 support by undef'ing IPV6.
25 * But where it fallsback to IPv4 it uses the IPv4 code which is already in place...
26 * - Canonical name resolving works.
27 *
28 * IPv6 patch 4 (07 January 2001) Jeroen Massar <jeroen@unfix.org>
29 * - patch against CVS of today, will be submitted to the bugs list
30 * as a 'cvs diff -u' on Simon's request...
31 *
2f75bae1 32 */
33
c4d8e107 34/*
35 * Define IPV6 to have IPv6 on-the-fly-loading support.
36 * This means that one doesn't have to have an IPv6 stack to use it.
37 * But if an IPv6 stack is found it is used with a fallback to IPv4.
38 */
39/* #define IPV6 1 */
40
41#ifdef IPV6
42#include <winsock2.h>
43#include <ws2tcpip.h>
44#include <tpipv6.h>
45#else
2f75bae1 46#include <winsock.h>
c4d8e107 47#endif
48#include <windows.h>
2f75bae1 49#include <stdio.h>
49bad831 50#include <stdlib.h>
5471d09a 51#include <assert.h>
2f75bae1 52
7e78000d 53#define DEFINE_PLUG_METHOD_MACROS
2f75bae1 54#include "putty.h"
55#include "network.h"
56#include "tree234.h"
57
2f75bae1 58struct Socket_tag {
7e78000d 59 struct socket_function_table *fn;
60 /* the above variable absolutely *must* be the first in this structure */
2f75bae1 61 char *error;
62 SOCKET s;
7e78000d 63 Plug plug;
2f75bae1 64 void *private_ptr;
5471d09a 65 bufchain output_data;
3ad9d396 66 int connected;
2f75bae1 67 int writable;
5471d09a 68 int frozen; /* this causes readability notifications to be ignored */
69 int frozen_readable; /* this means we missed at least one readability
70 * notification while we were frozen */
bc4802a1 71 int localhost_only; /* for listening sockets */
5471d09a 72 char oobdata[1];
1ad4eb6f 73 int sending_oob;
4b1e8acc 74 int oobinline;
7732d38a 75 int pending_error; /* in case send() returns error */
2f75bae1 76};
77
7e78000d 78/*
79 * We used to typedef struct Socket_tag *Socket.
80 *
81 * Since we have made the networking abstraction slightly more
82 * abstract, Socket no longer means a tcp socket (it could mean
83 * an ssl socket). So now we must use Actual_Socket when we know
84 * we are talking about a tcp socket.
85 */
86typedef struct Socket_tag *Actual_Socket;
87
2f75bae1 88struct SockAddr_tag {
89 char *error;
c4d8e107 90 /* address family this belongs to, AF_INET for IPv4, AF_INET6 for IPv6. */
32874aea 91 int family;
c4d8e107 92 unsigned long address; /* Address IPv4 style. */
93#ifdef IPV6
94 struct addrinfo *ai; /* Address IPv6 style. */
95#endif
2f75bae1 96};
97
2f75bae1 98static tree234 *sktree;
99
32874aea 100static int cmpfortree(void *av, void *bv)
101{
102 Actual_Socket a = (Actual_Socket) av, b = (Actual_Socket) bv;
103 unsigned long as = (unsigned long) a->s, bs = (unsigned long) b->s;
104 if (as < bs)
105 return -1;
106 if (as > bs)
107 return +1;
2f75bae1 108 return 0;
109}
110
32874aea 111static int cmpforsearch(void *av, void *bv)
112{
113 Actual_Socket b = (Actual_Socket) bv;
114 unsigned long as = (unsigned long) av, bs = (unsigned long) b->s;
115 if (as < bs)
116 return -1;
117 if (as > bs)
118 return +1;
2f75bae1 119 return 0;
120}
121
32874aea 122void sk_init(void)
123{
2f75bae1 124 sktree = newtree234(cmpfortree);
125}
126
32874aea 127char *winsock_error_string(int error)
128{
e74fbad9 129 switch (error) {
32874aea 130 case WSAEACCES:
131 return "Network error: Permission denied";
132 case WSAEADDRINUSE:
133 return "Network error: Address already in use";
134 case WSAEADDRNOTAVAIL:
135 return "Network error: Cannot assign requested address";
136 case WSAEAFNOSUPPORT:
137 return
138 "Network error: Address family not supported by protocol family";
139 case WSAEALREADY:
140 return "Network error: Operation already in progress";
141 case WSAECONNABORTED:
142 return "Network error: Software caused connection abort";
143 case WSAECONNREFUSED:
144 return "Network error: Connection refused";
145 case WSAECONNRESET:
146 return "Network error: Connection reset by peer";
147 case WSAEDESTADDRREQ:
148 return "Network error: Destination address required";
149 case WSAEFAULT:
150 return "Network error: Bad address";
151 case WSAEHOSTDOWN:
152 return "Network error: Host is down";
153 case WSAEHOSTUNREACH:
154 return "Network error: No route to host";
155 case WSAEINPROGRESS:
156 return "Network error: Operation now in progress";
157 case WSAEINTR:
158 return "Network error: Interrupted function call";
159 case WSAEINVAL:
160 return "Network error: Invalid argument";
161 case WSAEISCONN:
162 return "Network error: Socket is already connected";
163 case WSAEMFILE:
164 return "Network error: Too many open files";
165 case WSAEMSGSIZE:
166 return "Network error: Message too long";
167 case WSAENETDOWN:
168 return "Network error: Network is down";
169 case WSAENETRESET:
170 return "Network error: Network dropped connection on reset";
171 case WSAENETUNREACH:
172 return "Network error: Network is unreachable";
173 case WSAENOBUFS:
174 return "Network error: No buffer space available";
175 case WSAENOPROTOOPT:
176 return "Network error: Bad protocol option";
177 case WSAENOTCONN:
178 return "Network error: Socket is not connected";
179 case WSAENOTSOCK:
180 return "Network error: Socket operation on non-socket";
181 case WSAEOPNOTSUPP:
182 return "Network error: Operation not supported";
183 case WSAEPFNOSUPPORT:
184 return "Network error: Protocol family not supported";
185 case WSAEPROCLIM:
186 return "Network error: Too many processes";
187 case WSAEPROTONOSUPPORT:
188 return "Network error: Protocol not supported";
189 case WSAEPROTOTYPE:
190 return "Network error: Protocol wrong type for socket";
191 case WSAESHUTDOWN:
192 return "Network error: Cannot send after socket shutdown";
193 case WSAESOCKTNOSUPPORT:
194 return "Network error: Socket type not supported";
195 case WSAETIMEDOUT:
196 return "Network error: Connection timed out";
197 case WSAEWOULDBLOCK:
198 return "Network error: Resource temporarily unavailable";
199 case WSAEDISCON:
200 return "Network error: Graceful shutdown in progress";
201 default:
202 return "Unknown network error";
e74fbad9 203 }
204}
205
c4d8e107 206SockAddr sk_namelookup(char *host, char **canonicalname)
207{
2f75bae1 208 SockAddr ret = smalloc(sizeof(struct SockAddr_tag));
209 unsigned long a;
c4d8e107 210 struct hostent *h = NULL;
6e1ebb76 211 char realhost[8192];
2f75bae1 212
c4d8e107 213 /* Clear the structure and default to IPv4. */
214 memset(ret, 0, sizeof(struct SockAddr_tag));
215 ret->family = 0; /* We set this one when we have resolved the host. */
6e1ebb76 216 *realhost = '\0';
c4d8e107 217
32874aea 218 if ((a = inet_addr(host)) == (unsigned long) INADDR_NONE) {
c4d8e107 219#ifdef IPV6
220
221 /* Try to get the getaddrinfo() function from wship6.dll */
222 /* This way one doesn't need to have IPv6 dll's to use PuTTY and
223 * it will fallback to IPv4. */
32874aea 224 typedef int (CALLBACK * FGETADDRINFO) (const char *nodename,
225 const char *servname,
226 const struct addrinfo *
227 hints,
228 struct addrinfo ** res);
c4d8e107 229 FGETADDRINFO fGetAddrInfo = NULL;
230
231 HINSTANCE dllWSHIP6 = LoadLibrary("wship6.dll");
232 if (dllWSHIP6)
32874aea 233 fGetAddrInfo = (FGETADDRINFO) GetProcAddress(dllWSHIP6,
234 "getaddrinfo");
c4d8e107 235
236 /*
237 * Use fGetAddrInfo when it's available (which usually also
238 * means IPv6 is installed...)
239 */
32874aea 240 if (fGetAddrInfo) {
c4d8e107 241 /*debug(("Resolving \"%s\" with getaddrinfo() (IPv4+IPv6 capable)...\n", host)); */
242 if (fGetAddrInfo(host, NULL, NULL, &ret->ai) == 0)
243 ret->family = ret->ai->ai_family;
32874aea 244 } else
c4d8e107 245#endif
32874aea 246 {
c4d8e107 247 /*
248 * Otherwise use the IPv4-only gethostbyname...
249 * (NOTE: we don't use gethostbyname as a
250 * fallback!)
251 */
32874aea 252 if (ret->family == 0) {
253 /*debug(("Resolving \"%s\" with gethostbyname() (IPv4 only)...\n", host)); */
2d466ffd 254 if ( (h = gethostbyname(host)) )
32874aea 255 ret->family = AF_INET;
256 }
c4d8e107 257 }
258 /*debug(("Done resolving...(family is %d) AF_INET = %d, AF_INET6 = %d\n", ret->family, AF_INET, AF_INET6)); */
259
32874aea 260 if (ret->family == 0) {
2f75bae1 261 DWORD err = WSAGetLastError();
c4d8e107 262 ret->error = (err == WSAENETDOWN ? "Network is down" :
32874aea 263 err ==
264 WSAHOST_NOT_FOUND ? "Host does not exist" : err
265 == WSATRY_AGAIN ? "Host not found" :
c4d8e107 266#ifdef IPV6
267 fGetAddrInfo ? "getaddrinfo: unknown error" :
268#endif
269 "gethostbyname: unknown error");
270#ifdef DEBUG
271 {
272 LPVOID lpMsgBuf;
32874aea 273 FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER |
274 FORMAT_MESSAGE_FROM_SYSTEM |
275 FORMAT_MESSAGE_IGNORE_INSERTS, NULL, err,
276 MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
277 (LPTSTR) & lpMsgBuf, 0, NULL);
278 /*debug(("Error %ld: %s (h=%lx)\n", err, lpMsgBuf, h)); */
c4d8e107 279 /* Free the buffer. */
280 LocalFree(lpMsgBuf);
281 }
282#endif
32874aea 283 } else {
c4d8e107 284 ret->error = NULL;
285
286#ifdef IPV6
287 /* If we got an address info use that... */
32874aea 288 if (ret->ai) {
289 typedef int (CALLBACK * FGETNAMEINFO)
290 (const struct sockaddr FAR * sa, socklen_t salen,
291 char FAR * host, size_t hostlen, char FAR * serv,
292 size_t servlen, int flags);
c4d8e107 293 FGETNAMEINFO fGetNameInfo = NULL;
294
295 /* Are we in IPv4 fallback mode? */
296 /* We put the IPv4 address into the a variable so we can further-on use the IPv4 code... */
297 if (ret->family == AF_INET)
32874aea 298 memcpy(&a,
299 (char *) &((SOCKADDR_IN *) ret->ai->
300 ai_addr)->sin_addr, sizeof(a));
c4d8e107 301
302 /* Now let's find that canonicalname... */
32874aea 303 if ((dllWSHIP6)
304 && (fGetNameInfo =
305 (FGETNAMEINFO) GetProcAddress(dllWSHIP6,
306 "getnameinfo"))) {
307 if (fGetNameInfo
308 ((struct sockaddr *) ret->ai->ai_addr,
309 ret->family ==
310 AF_INET ? sizeof(SOCKADDR_IN) :
6e1ebb76 311 sizeof(SOCKADDR_IN6), realhost,
312 sizeof(realhost), NULL, 0, 0) != 0) {
313 strncpy(realhost, host, sizeof(realhost));
c4d8e107 314 }
315 }
316 }
317 /* We used the IPv4-only gethostbyname()... */
318 else
c4d8e107 319#endif
32874aea 320 {
c4d8e107 321 memcpy(&a, h->h_addr, sizeof(a));
322 /* This way we are always sure the h->h_name is valid :) */
6e1ebb76 323 strncpy(realhost, h->h_name, sizeof(realhost));
c4d8e107 324 }
c4d8e107 325 }
326#ifdef IPV6
327 FreeLibrary(dllWSHIP6);
328#endif
32874aea 329 } else {
87ed061f 330 /*
331 * This must be a numeric IPv4 address because it caused a
332 * success return from inet_addr.
333 */
32874aea 334 ret->family = AF_INET;
6e1ebb76 335 strncpy(realhost, host, sizeof(realhost));
2f75bae1 336 }
337 ret->address = ntohl(a);
6e1ebb76 338 realhost[lenof(realhost)-1] = '\0';
339 *canonicalname = smalloc(1+strlen(realhost));
340 strcpy(*canonicalname, realhost);
2f75bae1 341 return ret;
342}
343
3ad9d396 344void sk_getaddr(SockAddr addr, char *buf, int buflen)
345{
346#ifdef IPV6
347 if (addr->family == AF_INET) {
348#endif
349 struct in_addr a;
350 a.s_addr = htonl(addr->address);
351 strncpy(buf, inet_ntoa(a), buflen);
352#ifdef IPV6
353 } else {
354 FIXME; /* I don't know how to get a text form of an IPv6 address. */
355 }
356#endif
357}
358
32874aea 359void sk_addr_free(SockAddr addr)
360{
2f75bae1 361 sfree(addr);
362}
363
32874aea 364static Plug sk_tcp_plug(Socket sock, Plug p)
365{
7e78000d 366 Actual_Socket s = (Actual_Socket) sock;
367 Plug ret = s->plug;
32874aea 368 if (p)
369 s->plug = p;
7e78000d 370 return ret;
371}
372
32874aea 373static void sk_tcp_flush(Socket s)
374{
7e78000d 375 /*
376 * We send data to the socket as soon as we can anyway,
377 * so we don't need to do anything here. :-)
378 */
379}
380
2d466ffd 381static void sk_tcp_close(Socket s);
5471d09a 382static int sk_tcp_write(Socket s, char *data, int len);
383static int sk_tcp_write_oob(Socket s, char *data, int len);
2d466ffd 384static char *sk_tcp_socket_error(Socket s);
7e78000d 385
d74d141c 386extern char *do_select(SOCKET skt, int startup);
387
388Socket sk_register(void *sock, Plug plug)
389{
390 static struct socket_function_table fn_table = {
391 sk_tcp_plug,
392 sk_tcp_close,
393 sk_tcp_write,
394 sk_tcp_write_oob,
395 sk_tcp_flush,
396 sk_tcp_socket_error
397 };
398
399 DWORD err;
400 char *errstr;
401 Actual_Socket ret;
402
403 /*
404 * Create Socket structure.
405 */
406 ret = smalloc(sizeof(struct Socket_tag));
407 ret->fn = &fn_table;
408 ret->error = NULL;
409 ret->plug = plug;
5471d09a 410 bufchain_init(&ret->output_data);
d74d141c 411 ret->writable = 1; /* to start with */
412 ret->sending_oob = 0;
413 ret->frozen = 1;
5471d09a 414 ret->frozen_readable = 0;
bc4802a1 415 ret->localhost_only = 0; /* unused, but best init anyway */
7732d38a 416 ret->pending_error = 0;
d74d141c 417
418 ret->s = (SOCKET)sock;
419
420 if (ret->s == INVALID_SOCKET) {
421 err = WSAGetLastError();
422 ret->error = winsock_error_string(err);
423 return (Socket) ret;
424 }
425
426 ret->oobinline = 0;
427
428 /* Set up a select mechanism. This could be an AsyncSelect on a
429 * window, or an EventSelect on an event object. */
430 errstr = do_select(ret->s, 1);
431 if (errstr) {
432 ret->error = errstr;
433 return (Socket) ret;
434 }
435
436 add234(sktree, ret);
437
438 return (Socket) ret;
439}
440
4b1e8acc 441Socket sk_new(SockAddr addr, int port, int privport, int oobinline,
32874aea 442 Plug plug)
7e78000d 443{
444 static struct socket_function_table fn_table = {
445 sk_tcp_plug,
446 sk_tcp_close,
447 sk_tcp_write,
448 sk_tcp_write_oob,
449 sk_tcp_flush,
450 sk_tcp_socket_error
451 };
452
2f75bae1 453 SOCKET s;
c4d8e107 454#ifdef IPV6
455 SOCKADDR_IN6 a6;
456#endif
2f75bae1 457 SOCKADDR_IN a;
458 DWORD err;
459 char *errstr;
7e78000d 460 Actual_Socket ret;
c91409da 461 short localport;
2f75bae1 462
463 /*
464 * Create Socket structure.
465 */
466 ret = smalloc(sizeof(struct Socket_tag));
7e78000d 467 ret->fn = &fn_table;
2f75bae1 468 ret->error = NULL;
7e78000d 469 ret->plug = plug;
5471d09a 470 bufchain_init(&ret->output_data);
3ad9d396 471 ret->connected = 0; /* to start with */
472 ret->writable = 0; /* to start with */
33232c8f 473 ret->sending_oob = 0;
d74d141c 474 ret->frozen = 0;
5471d09a 475 ret->frozen_readable = 0;
bc4802a1 476 ret->localhost_only = 0; /* unused, but best init anyway */
7732d38a 477 ret->pending_error = 0;
2f75bae1 478
479 /*
480 * Open socket.
481 */
c4d8e107 482 s = socket(addr->family, SOCK_STREAM, 0);
2f75bae1 483 ret->s = s;
484
485 if (s == INVALID_SOCKET) {
486 err = WSAGetLastError();
32874aea 487 ret->error = winsock_error_string(err);
7e78000d 488 return (Socket) ret;
2f75bae1 489 }
4b1e8acc 490
491 ret->oobinline = oobinline;
492 if (oobinline) {
1ad4eb6f 493 BOOL b = TRUE;
32874aea 494 setsockopt(s, SOL_SOCKET, SO_OOBINLINE, (void *) &b, sizeof(b));
1ad4eb6f 495 }
2f75bae1 496
497 /*
498 * Bind to local address.
499 */
c91409da 500 if (privport)
32874aea 501 localport = 1023; /* count from 1023 downwards */
c4d8e107 502 else
32874aea 503 localport = 0; /* just use port 0 (ie winsock picks) */
c91409da 504
505 /* Loop round trying to bind */
506 while (1) {
32874aea 507 int retcode;
c91409da 508
509#ifdef IPV6
32874aea 510 if (addr->family == AF_INET6) {
511 memset(&a6, 0, sizeof(a6));
512 a6.sin6_family = AF_INET6;
513/*a6.sin6_addr = in6addr_any; *//* == 0 */
514 a6.sin6_port = htons(localport);
515 } else
c4d8e107 516#endif
32874aea 517 {
518 a.sin_family = AF_INET;
519 a.sin_addr.s_addr = htonl(INADDR_ANY);
520 a.sin_port = htons(localport);
521 }
c4d8e107 522#ifdef IPV6
32874aea 523 retcode = bind(s, (addr->family == AF_INET6 ?
524 (struct sockaddr *) &a6 :
525 (struct sockaddr *) &a),
526 (addr->family ==
527 AF_INET6 ? sizeof(a6) : sizeof(a)));
c4d8e107 528#else
32874aea 529 retcode = bind(s, (struct sockaddr *) &a, sizeof(a));
c4d8e107 530#endif
32874aea 531 if (retcode != SOCKET_ERROR) {
532 err = 0;
533 break; /* done */
534 } else {
535 err = WSAGetLastError();
536 if (err != WSAEADDRINUSE) /* failed, for a bad reason */
537 break;
538 }
539
540 if (localport == 0)
541 break; /* we're only looping once */
542 localport--;
543 if (localport == 0)
544 break; /* we might have got to the end */
c91409da 545 }
546
32874aea 547 if (err) {
c4d8e107 548 ret->error = winsock_error_string(err);
7e78000d 549 return (Socket) ret;
2f75bae1 550 }
551
552 /*
553 * Connect to remote address.
554 */
c4d8e107 555#ifdef IPV6
32874aea 556 if (addr->family == AF_INET6) {
557 memset(&a, 0, sizeof(a));
c4d8e107 558 a6.sin6_family = AF_INET6;
32874aea 559 a6.sin6_port = htons((short) port);
560 a6.sin6_addr =
561 ((struct sockaddr_in6 *) addr->ai->ai_addr)->sin6_addr;
562 } else
c4d8e107 563#endif
32874aea 564 {
c4d8e107 565 a.sin_family = AF_INET;
566 a.sin_addr.s_addr = htonl(addr->address);
32874aea 567 a.sin_port = htons((short) port);
c4d8e107 568 }
3ad9d396 569
570 /* Set up a select mechanism. This could be an AsyncSelect on a
571 * window, or an EventSelect on an event object. */
572 errstr = do_select(s, 1);
573 if (errstr) {
574 ret->error = errstr;
575 return (Socket) ret;
576 }
577
32874aea 578 if ((
579#ifdef IPV6
580 connect(s, ((addr->family == AF_INET6) ?
581 (struct sockaddr *) &a6 : (struct sockaddr *) &a),
582 (addr->family == AF_INET6) ? sizeof(a6) : sizeof(a))
c4d8e107 583#else
32874aea 584 connect(s, (struct sockaddr *) &a, sizeof(a))
c4d8e107 585#endif
32874aea 586 ) == SOCKET_ERROR) {
2f75bae1 587 err = WSAGetLastError();
3ad9d396 588 /*
589 * We expect a potential EWOULDBLOCK here, because the
590 * chances are the front end has done a select for
591 * FD_CONNECT, so that connect() will complete
592 * asynchronously.
593 */
594 if ( err != WSAEWOULDBLOCK ) {
595 ret->error = winsock_error_string(err);
596 return (Socket) ret;
597 }
598 } else {
599 /*
600 * If we _don't_ get EWOULDBLOCK, the connect has completed
601 * and we should set the socket as writable.
602 */
603 ret->writable = 1;
2f75bae1 604 }
605
606 add234(sktree, ret);
607
7e78000d 608 return (Socket) ret;
2f75bae1 609}
610
bcce45ed 611Socket sk_newlistener(int port, Plug plug, int local_host_only)
d74d141c 612{
613 static struct socket_function_table fn_table = {
614 sk_tcp_plug,
615 sk_tcp_close,
616 sk_tcp_write,
617 sk_tcp_write_oob,
618 sk_tcp_flush,
619 sk_tcp_socket_error
620 };
621
622 SOCKET s;
623#ifdef IPV6
624 SOCKADDR_IN6 a6;
625#endif
626 SOCKADDR_IN a;
627 DWORD err;
628 char *errstr;
629 Actual_Socket ret;
630 int retcode;
631 int on = 1;
632
633 /*
634 * Create Socket structure.
635 */
636 ret = smalloc(sizeof(struct Socket_tag));
637 ret->fn = &fn_table;
638 ret->error = NULL;
639 ret->plug = plug;
5471d09a 640 bufchain_init(&ret->output_data);
d74d141c 641 ret->writable = 0; /* to start with */
642 ret->sending_oob = 0;
643 ret->frozen = 0;
5471d09a 644 ret->frozen_readable = 0;
bc4802a1 645 ret->localhost_only = local_host_only;
7732d38a 646 ret->pending_error = 0;
d74d141c 647
648 /*
649 * Open socket.
650 */
651 s = socket(AF_INET, SOCK_STREAM, 0);
652 ret->s = s;
653
654 if (s == INVALID_SOCKET) {
655 err = WSAGetLastError();
656 ret->error = winsock_error_string(err);
657 return (Socket) ret;
658 }
659
660 ret->oobinline = 0;
661
662
663 setsockopt(s, SOL_SOCKET, SO_REUSEADDR, (const char *)&on, sizeof(on));
664
665
666#ifdef IPV6
667 if (addr->family == AF_INET6) {
668 memset(&a6, 0, sizeof(a6));
669 a6.sin6_family = AF_INET6;
bcce45ed 670 if (local_host_only)
671 a6.sin6_addr = in6addr_loopback;
672 else
673 a6.sin6_addr = in6addr_any;
d74d141c 674 a6.sin6_port = htons(port);
675 } else
676#endif
677 {
678 a.sin_family = AF_INET;
bcce45ed 679 if (local_host_only)
680 a.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
681 else
682 a.sin_addr.s_addr = htonl(INADDR_ANY);
d74d141c 683 a.sin_port = htons((short)port);
684 }
685#ifdef IPV6
686 retcode = bind(s, (addr->family == AF_INET6 ?
687 (struct sockaddr *) &a6 :
688 (struct sockaddr *) &a),
689 (addr->family ==
690 AF_INET6 ? sizeof(a6) : sizeof(a)));
691#else
692 retcode = bind(s, (struct sockaddr *) &a, sizeof(a));
693#endif
694 if (retcode != SOCKET_ERROR) {
695 err = 0;
696 } else {
697 err = WSAGetLastError();
698 }
699
700 if (err) {
701 ret->error = winsock_error_string(err);
702 return (Socket) ret;
703 }
704
705
706 if (listen(s, SOMAXCONN) == SOCKET_ERROR) {
707 closesocket(s);
708 ret->error = winsock_error_string(err);
709 return (Socket) ret;
710 }
711
712 /* Set up a select mechanism. This could be an AsyncSelect on a
713 * window, or an EventSelect on an event object. */
714 errstr = do_select(s, 1);
715 if (errstr) {
716 ret->error = errstr;
717 return (Socket) ret;
718 }
719
720 add234(sktree, ret);
721
722 return (Socket) ret;
723}
724
32874aea 725static void sk_tcp_close(Socket sock)
726{
9c964e85 727 extern char *do_select(SOCKET skt, int startup);
7e78000d 728 Actual_Socket s = (Actual_Socket) sock;
9c964e85 729
2f75bae1 730 del234(sktree, s);
731 do_select(s->s, 0);
732 closesocket(s->s);
dcbde236 733 sfree(s);
2f75bae1 734}
735
2f75bae1 736/*
737 * The function which tries to send on a socket once it's deemed
738 * writable.
739 */
32874aea 740void try_send(Actual_Socket s)
741{
5471d09a 742 while (s->sending_oob || bufchain_size(&s->output_data) > 0) {
2f75bae1 743 int nsent;
744 DWORD err;
5471d09a 745 void *data;
32874aea 746 int len, urgentflag;
747
748 if (s->sending_oob) {
749 urgentflag = MSG_OOB;
750 len = s->sending_oob;
5471d09a 751 data = &s->oobdata;
32874aea 752 } else {
753 urgentflag = 0;
5471d09a 754 bufchain_prefix(&s->output_data, &data, &len);
32874aea 755 }
5471d09a 756 nsent = send(s->s, data, len, urgentflag);
32874aea 757 noise_ultralight(nsent);
2f75bae1 758 if (nsent <= 0) {
759 err = (nsent < 0 ? WSAGetLastError() : 0);
e5eb3a1c 760 if ((err < WSABASEERR && nsent < 0) || err == WSAEWOULDBLOCK) {
d40a94b9 761 /*
762 * Perfectly normal: we've sent all we can for the moment.
763 *
e5eb3a1c 764 * (Some WinSock send() implementations can return
765 * <0 but leave no sensible error indication -
766 * WSAGetLastError() is called but returns zero or
767 * a small number - so we check that case and treat
768 * it just like WSAEWOULDBLOCK.)
d40a94b9 769 */
2f75bae1 770 s->writable = FALSE;
32874aea 771 return;
2f75bae1 772 } else if (nsent == 0 ||
32874aea 773 err == WSAECONNABORTED || err == WSAECONNRESET) {
774 /*
7732d38a 775 * If send() returns CONNABORTED or CONNRESET, we
776 * unfortunately can't just call plug_closing(),
777 * because it's quite likely that we're currently
778 * _in_ a call from the code we'd be calling back
779 * to, so we'd have to make half the SSH code
780 * reentrant. Instead we flag a pending error on
781 * the socket, to be dealt with (by calling
782 * plug_closing()) at some suitable future moment.
32874aea 783 */
7732d38a 784 s->pending_error = err;
785 return;
2f75bae1 786 } else {
787 fatalbox(winsock_error_string(err));
788 }
789 } else {
5471d09a 790 if (s->sending_oob) {
791 if (nsent < len) {
792 memmove(s->oobdata, s->oobdata+nsent, len-nsent);
793 s->sending_oob = len - nsent;
794 } else {
795 s->sending_oob = 0;
796 }
797 } else {
798 bufchain_consume(&s->output_data, nsent);
2f75bae1 799 }
800 }
801 }
802}
803
5471d09a 804static int sk_tcp_write(Socket sock, char *buf, int len)
32874aea 805{
7e78000d 806 Actual_Socket s = (Actual_Socket) sock;
807
2f75bae1 808 /*
809 * Add the data to the buffer list on the socket.
810 */
5471d09a 811 bufchain_add(&s->output_data, buf, len);
2f75bae1 812
813 /*
814 * Now try sending from the start of the buffer list.
815 */
816 if (s->writable)
817 try_send(s);
5471d09a 818
819 return bufchain_size(&s->output_data);
2f75bae1 820}
821
5471d09a 822static int sk_tcp_write_oob(Socket sock, char *buf, int len)
32874aea 823{
7e78000d 824 Actual_Socket s = (Actual_Socket) sock;
825
2f75bae1 826 /*
827 * Replace the buffer list on the socket with the data.
828 */
5471d09a 829 bufchain_clear(&s->output_data);
830 assert(len <= sizeof(s->oobdata));
831 memcpy(s->oobdata, buf, len);
2f75bae1 832 s->sending_oob = len;
833
834 /*
835 * Now try sending from the start of the buffer list.
836 */
837 if (s->writable)
838 try_send(s);
5471d09a 839
840 return s->sending_oob;
2f75bae1 841}
842
32874aea 843int select_result(WPARAM wParam, LPARAM lParam)
844{
f9d3f227 845 int ret, open;
2f75bae1 846 DWORD err;
b675c612 847 char buf[20480]; /* nice big buffer for plenty of speed */
7e78000d 848 Actual_Socket s;
49bad831 849 u_long atmark;
2f75bae1 850
851 /* wParam is the socket itself */
32874aea 852 s = find234(sktree, (void *) wParam, cmpforsearch);
2f75bae1 853 if (!s)
854 return 1; /* boggle */
855
856 if ((err = WSAGETSELECTERROR(lParam)) != 0) {
32874aea 857 /*
858 * An error has occurred on this socket. Pass it to the
859 * plug.
860 */
861 return plug_closing(s->plug, winsock_error_string(err), err, 0);
2f75bae1 862 }
863
7d6ee6ff 864 noise_ultralight(lParam);
865
2f75bae1 866 switch (WSAGETSELECTEVENT(lParam)) {
3ad9d396 867 case FD_CONNECT:
868 s->connected = s->writable = 1;
869 break;
2f75bae1 870 case FD_READ:
d74d141c 871 /* In the case the socket is still frozen, we don't even bother */
5471d09a 872 if (s->frozen) {
873 s->frozen_readable = 1;
d74d141c 874 break;
5471d09a 875 }
d74d141c 876
32874aea 877 /*
878 * We have received data on the socket. For an oobinline
879 * socket, this might be data _before_ an urgent pointer,
880 * in which case we send it to the back end with type==1
881 * (data prior to urgent).
882 */
883 if (s->oobinline) {
884 atmark = 1;
885 ioctlsocket(s->s, SIOCATMARK, &atmark);
886 /*
887 * Avoid checking the return value from ioctlsocket(),
888 * on the grounds that some WinSock wrappers don't
889 * support it. If it does nothing, we get atmark==1,
890 * which is equivalent to `no OOB pending', so the
891 * effect will be to non-OOB-ify any OOB data.
892 */
893 } else
894 atmark = 1;
4b1e8acc 895
2f75bae1 896 ret = recv(s->s, buf, sizeof(buf), 0);
32874aea 897 noise_ultralight(ret);
2f75bae1 898 if (ret < 0) {
899 err = WSAGetLastError();
900 if (err == WSAEWOULDBLOCK) {
901 break;
902 }
903 }
904 if (ret < 0) {
32874aea 905 return plug_closing(s->plug, winsock_error_string(err), err,
906 0);
7e78000d 907 } else if (0 == ret) {
32874aea 908 return plug_closing(s->plug, NULL, 0, 0);
2f75bae1 909 } else {
32874aea 910 return plug_receive(s->plug, atmark ? 0 : 1, buf, ret);
2f75bae1 911 }
912 break;
913 case FD_OOB:
32874aea 914 /*
915 * This will only happen on a non-oobinline socket. It
916 * indicates that we can immediately perform an OOB read
917 * and get back OOB data, which we will send to the back
918 * end with type==2 (urgent data).
919 */
920 ret = recv(s->s, buf, sizeof(buf), MSG_OOB);
921 noise_ultralight(ret);
922 if (ret <= 0) {
923 fatalbox(ret == 0 ? "Internal networking trouble" :
924 winsock_error_string(WSAGetLastError()));
925 } else {
926 return plug_receive(s->plug, 2, buf, ret);
927 }
928 break;
2f75bae1 929 case FD_WRITE:
5471d09a 930 {
931 int bufsize_before, bufsize_after;
932 s->writable = 1;
933 bufsize_before = s->sending_oob + bufchain_size(&s->output_data);
934 try_send(s);
935 bufsize_after = s->sending_oob + bufchain_size(&s->output_data);
936 if (bufsize_after < bufsize_before)
937 plug_sent(s->plug, bufsize_after);
938 }
2f75bae1 939 break;
940 case FD_CLOSE:
f9d3f227 941 /* Signal a close on the socket. First read any outstanding data. */
32874aea 942 open = 1;
943 do {
944 ret = recv(s->s, buf, sizeof(buf), 0);
945 if (ret < 0) {
946 err = WSAGetLastError();
947 if (err == WSAEWOULDBLOCK)
948 break;
949 return plug_closing(s->plug, winsock_error_string(err),
950 err, 0);
951 } else {
952 if (ret)
953 open &= plug_receive(s->plug, 0, buf, ret);
954 else
955 open &= plug_closing(s->plug, NULL, 0, 0);
7e78000d 956 }
f9d3f227 957 } while (ret > 0);
32874aea 958 return open;
d74d141c 959 case FD_ACCEPT:
960 {
bc4802a1 961 struct sockaddr_in isa;
962 int addrlen = sizeof(struct sockaddr_in);
bcce45ed 963 SOCKET t; /* socket of connection */
964
bc4802a1 965 memset(&isa, 0, sizeof(struct sockaddr_in));
bcce45ed 966 err = 0;
967 t = accept(s->s,&isa,&addrlen);
968 if (t == INVALID_SOCKET)
969 {
970 err = WSAGetLastError();
971 if (err == WSATRY_AGAIN)
972 break;
973 }
974
bc4802a1 975 if (s->localhost_only &&
976 ntohl(isa.sin_addr.s_addr) != INADDR_LOOPBACK) {
977 closesocket(t); /* dodgy WinSock let nonlocal through */
978 } else if (plug_accepting(s->plug, (void*)t)) {
bcce45ed 979 closesocket(t); /* denied or error */
980 }
d74d141c 981 }
2f75bae1 982 }
983
984 return 1;
985}
986
987/*
7732d38a 988 * Deal with socket errors detected in try_send().
989 */
990void net_pending_errors(void)
991{
992 int i;
993 Actual_Socket s;
994
995 /*
996 * This might be a fiddly business, because it's just possible
997 * that handling a pending error on one socket might cause
998 * others to be closed. (I can't think of any reason this might
999 * happen in current SSH implementation, but to maintain
1000 * generality of this network layer I'll assume the worst.)
1001 *
1002 * So what we'll do is search the socket list for _one_ socket
1003 * with a pending error, and then handle it, and then search
1004 * the list again _from the beginning_. Repeat until we make a
1005 * pass with no socket errors present. That way we are
1006 * protected against the socket list changing under our feet.
1007 */
1008
1009 do {
1010 for (i = 0; (s = index234(sktree, i)) != NULL; i++) {
1011 if (s->pending_error) {
1012 /*
1013 * An error has occurred on this socket. Pass it to the
1014 * plug.
1015 */
1016 plug_closing(s->plug,
1017 winsock_error_string(s->pending_error),
1018 s->pending_error, 0);
1019 break;
1020 }
1021 }
1022 } while (s);
1023}
1024
1025/*
2f75bae1 1026 * Each socket abstraction contains a `void *' private field in
1027 * which the client can keep state.
1028 */
32874aea 1029void sk_set_private_ptr(Socket sock, void *ptr)
1030{
7e78000d 1031 Actual_Socket s = (Actual_Socket) sock;
2f75bae1 1032 s->private_ptr = ptr;
1033}
32874aea 1034
1035void *sk_get_private_ptr(Socket sock)
1036{
7e78000d 1037 Actual_Socket s = (Actual_Socket) sock;
2f75bae1 1038 return s->private_ptr;
1039}
1040
1041/*
1042 * Special error values are returned from sk_namelookup and sk_new
1043 * if there's a problem. These functions extract an error message,
1044 * or return NULL if there's no problem.
1045 */
32874aea 1046char *sk_addr_error(SockAddr addr)
1047{
2f75bae1 1048 return addr->error;
1049}
32874aea 1050static char *sk_tcp_socket_error(Socket sock)
1051{
7e78000d 1052 Actual_Socket s = (Actual_Socket) sock;
2f75bae1 1053 return s->error;
1054}
1055
d74d141c 1056void sk_set_frozen(Socket sock, int is_frozen)
1057{
1058 Actual_Socket s = (Actual_Socket) sock;
5471d09a 1059 if (s->frozen == is_frozen)
1060 return;
d74d141c 1061 s->frozen = is_frozen;
5471d09a 1062 if (!is_frozen && s->frozen_readable) {
d74d141c 1063 char c;
1064 recv(s->s, &c, 1, MSG_PEEK);
1065 }
5471d09a 1066 s->frozen_readable = 0;
d74d141c 1067}
1068
2f75bae1 1069/*
1070 * For Plink: enumerate all sockets currently active.
1071 */
32874aea 1072SOCKET first_socket(int *state)
1073{
d2371c81 1074 Actual_Socket s;
1075 *state = 0;
1076 s = index234(sktree, (*state)++);
2f75bae1 1077 return s ? s->s : INVALID_SOCKET;
1078}
32874aea 1079
1080SOCKET next_socket(int *state)
1081{
d2371c81 1082 Actual_Socket s = index234(sktree, (*state)++);
2f75bae1 1083 return s ? s->s : INVALID_SOCKET;
1084}