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