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