Rationalise access to, and content of, backends[] array.
[u/mdw/putty] / windows / winplink.c
CommitLineData
12dc4ec0 1/*
f4ff9455 2 * PLink - a Windows command-line (stdin/stdout) variant of PuTTY.
12dc4ec0 3 */
4
12dc4ec0 5#include <stdio.h>
49bad831 6#include <stdlib.h>
2b0c045b 7#include <assert.h>
12dc4ec0 8#include <stdarg.h>
9
32874aea 10#define PUTTY_DO_GLOBALS /* actually _define_ globals */
12dc4ec0 11#include "putty.h"
a9422f39 12#include "storage.h"
8df7a775 13#include "tree234.h"
12dc4ec0 14
604fab0c 15#define WM_AGENT_CALLBACK (WM_APP + 4)
c44bf5bd 16
c44bf5bd 17struct agent_callback {
18 void (*callback)(void *, void *, int);
19 void *callback_ctx;
20 void *data;
21 int len;
22};
23
32874aea 24void fatalbox(char *p, ...)
25{
12dc4ec0 26 va_list ap;
49bad831 27 fprintf(stderr, "FATAL ERROR: ");
1709795f 28 va_start(ap, p);
29 vfprintf(stderr, p, ap);
30 va_end(ap);
31 fputc('\n', stderr);
7bfc5fd0 32 if (logctx) {
33 log_free(logctx);
34 logctx = NULL;
35 }
1709795f 36 cleanup_exit(1);
37}
38void modalfatalbox(char *p, ...)
39{
40 va_list ap;
41 fprintf(stderr, "FATAL ERROR: ");
12dc4ec0 42 va_start(ap, p);
43 vfprintf(stderr, p, ap);
44 va_end(ap);
45 fputc('\n', stderr);
7bfc5fd0 46 if (logctx) {
47 log_free(logctx);
48 logctx = NULL;
49 }
93b581bd 50 cleanup_exit(1);
12dc4ec0 51}
a8327734 52void connection_fatal(void *frontend, char *p, ...)
32874aea 53{
8d5de777 54 va_list ap;
49bad831 55 fprintf(stderr, "FATAL ERROR: ");
8d5de777 56 va_start(ap, p);
57 vfprintf(stderr, p, ap);
58 va_end(ap);
59 fputc('\n', stderr);
7bfc5fd0 60 if (logctx) {
61 log_free(logctx);
62 logctx = NULL;
63 }
93b581bd 64 cleanup_exit(1);
8d5de777 65}
c0a81592 66void cmdline_error(char *p, ...)
67{
68 va_list ap;
69 fprintf(stderr, "plink: ");
70 va_start(ap, p);
71 vfprintf(stderr, p, ap);
72 va_end(ap);
73 fputc('\n', stderr);
74 exit(1);
75}
12dc4ec0 76
0965bee0 77HANDLE inhandle, outhandle, errhandle;
34292b1d 78struct handle *stdin_handle, *stdout_handle, *stderr_handle;
6f34e365 79DWORD orig_console_mode;
34292b1d 80int connopen;
6f34e365 81
8df7a775 82WSAEVENT netevent;
83
6b78788a 84static Backend *back;
85static void *backhandle;
3ea863a3 86static Config cfg;
6b78788a 87
887035a5 88int term_ldisc(Terminal *term, int mode)
32874aea 89{
90 return FALSE;
91}
b9d7bcad 92void ldisc_update(void *frontend, int echo, int edit)
32874aea 93{
0965bee0 94 /* Update stdin read mode to reflect changes in line discipline. */
95 DWORD mode;
96
97 mode = ENABLE_PROCESSED_INPUT;
98 if (echo)
32874aea 99 mode = mode | ENABLE_ECHO_INPUT;
0965bee0 100 else
32874aea 101 mode = mode & ~ENABLE_ECHO_INPUT;
0965bee0 102 if (edit)
32874aea 103 mode = mode | ENABLE_LINE_INPUT;
0965bee0 104 else
32874aea 105 mode = mode & ~ENABLE_LINE_INPUT;
0965bee0 106 SetConsoleMode(inhandle, mode);
107}
108
c6ccd5c2 109char *get_ttymode(void *frontend, const char *mode) { return NULL; }
110
9fab77dc 111int from_backend(void *frontend_handle, int is_stderr,
112 const char *data, int len)
5471d09a 113{
5471d09a 114 if (is_stderr) {
34292b1d 115 handle_write(stderr_handle, data, len);
5471d09a 116 } else {
34292b1d 117 handle_write(stdout_handle, data, len);
5471d09a 118 }
119
34292b1d 120 return handle_backlog(stdout_handle) + handle_backlog(stderr_handle);
5471d09a 121}
122
edd0cb8a 123int from_backend_untrusted(void *frontend_handle, const char *data, int len)
124{
125 /*
126 * No "untrusted" output should get here (the way the code is
127 * currently, it's all diverted by FLAG_STDERR).
128 */
129 assert(!"Unexpected call to from_backend_untrusted()");
130 return 0; /* not reached */
131}
132
133int get_userpass_input(prompts_t *p, unsigned char *in, int inlen)
134{
135 int ret;
136 ret = cmdline_get_passwd_input(p, in, inlen);
137 if (ret == -1)
138 ret = console_get_userpass_input(p, in, inlen);
139 return ret;
140}
141
c44bf5bd 142static DWORD main_thread_id;
143
144void agent_schedule_callback(void (*callback)(void *, void *, int),
145 void *callback_ctx, void *data, int len)
146{
147 struct agent_callback *c = snew(struct agent_callback);
148 c->callback = callback;
149 c->callback_ctx = callback_ctx;
150 c->data = data;
151 c->len = len;
152 PostThreadMessage(main_thread_id, WM_AGENT_CALLBACK, 0, (LPARAM)c);
153}
154
d8426c54 155/*
156 * Short description of parameters.
157 */
158static void usage(void)
159{
160 printf("PuTTY Link: command-line connection utility\n");
161 printf("%s\n", ver);
162 printf("Usage: plink [options] [user@]host [command]\n");
e672967c 163 printf(" (\"host\" can also be a PuTTY saved session name)\n");
d8426c54 164 printf("Options:\n");
2285d016 165 printf(" -V print version information and exit\n");
166 printf(" -pgpfp print PGP key fingerprints and exit\n");
d8426c54 167 printf(" -v show verbose messages\n");
e2a197cf 168 printf(" -load sessname Load settings from saved session\n");
169 printf(" -ssh -telnet -rlogin -raw\n");
afd4d0d2 170 printf(" force use of a particular protocol\n");
d8426c54 171 printf(" -P port connect to specified port\n");
e2a197cf 172 printf(" -l user connect with specified username\n");
e2a197cf 173 printf(" -batch disable all interactive prompts\n");
174 printf("The following options only apply to SSH connections:\n");
175 printf(" -pw passw login with specified password\n");
dbe6c525 176 printf(" -D [listen-IP:]listen-port\n");
177 printf(" Dynamic SOCKS-based port forwarding\n");
178 printf(" -L [listen-IP:]listen-port:host:port\n");
179 printf(" Forward local port to remote address\n");
180 printf(" -R [listen-IP:]listen-port:host:port\n");
181 printf(" Forward remote port to local address\n");
e2a197cf 182 printf(" -X -x enable / disable X11 forwarding\n");
183 printf(" -A -a enable / disable agent forwarding\n");
184 printf(" -t -T enable / disable pty allocation\n");
185 printf(" -1 -2 force use of particular protocol version\n");
05581745 186 printf(" -4 -6 force use of IPv4 or IPv6\n");
e2a197cf 187 printf(" -C enable compression\n");
188 printf(" -i key private key file for authentication\n");
e5708bc7 189 printf(" -noagent disable use of Pageant\n");
190 printf(" -agent enable use of Pageant\n");
54018d95 191 printf(" -m file read remote command(s) from file\n");
4d1cdf5d 192 printf(" -s remote command is an SSH subsystem (SSH-2 only)\n");
b72c366d 193 printf(" -N don't start a shell/command (SSH-2 only)\n");
23828b7e 194 printf(" -nc host:port\n");
195 printf(" open tunnel in place of session (SSH-2 only)\n");
dc108ebc 196 exit(1);
197}
198
199static void version(void)
200{
201 printf("plink: %s\n", ver);
d8426c54 202 exit(1);
203}
204
32874aea 205char *do_select(SOCKET skt, int startup)
206{
8df7a775 207 int events;
208 if (startup) {
3ad9d396 209 events = (FD_CONNECT | FD_READ | FD_WRITE |
210 FD_OOB | FD_CLOSE | FD_ACCEPT);
8df7a775 211 } else {
212 events = 0;
213 }
7440fd44 214 if (p_WSAEventSelect(skt, netevent, events) == SOCKET_ERROR) {
215 switch (p_WSAGetLastError()) {
32874aea 216 case WSAENETDOWN:
217 return "Network is down";
218 default:
7440fd44 219 return "WSAEventSelect(): unknown error";
32874aea 220 }
8df7a775 221 }
222 return NULL;
223}
224
34292b1d 225int stdin_gotdata(struct handle *h, void *data, int len)
226{
227 if (len < 0) {
228 /*
229 * Special case: report read error.
230 */
21ae394f 231 char buf[4096];
232 FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, NULL, -len, 0,
233 buf, lenof(buf), NULL);
234 buf[lenof(buf)-1] = '\0';
235 if (buf[strlen(buf)-1] == '\n')
236 buf[strlen(buf)-1] = '\0';
237 fprintf(stderr, "Unable to read from standard input: %s\n", buf);
34292b1d 238 cleanup_exit(0);
239 }
240 noise_ultralight(len);
6226c939 241 if (connopen && back->connected(backhandle)) {
34292b1d 242 if (len > 0) {
243 return back->send(backhandle, data, len);
244 } else {
245 back->special(backhandle, TS_EOF);
246 return 0;
247 }
248 } else
249 return 0;
250}
251
252void stdouterr_sent(struct handle *h, int new_backlog)
253{
254 if (new_backlog < 0) {
255 /*
256 * Special case: report write error.
257 */
21ae394f 258 char buf[4096];
259 FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, NULL, -new_backlog, 0,
260 buf, lenof(buf), NULL);
261 buf[lenof(buf)-1] = '\0';
262 if (buf[strlen(buf)-1] == '\n')
263 buf[strlen(buf)-1] = '\0';
264 fprintf(stderr, "Unable to write to standard %s: %s\n",
265 (h == stdout_handle ? "output" : "error"), buf);
34292b1d 266 cleanup_exit(0);
267 }
6226c939 268 if (connopen && back->connected(backhandle)) {
34292b1d 269 back->unthrottle(backhandle, (handle_backlog(stdout_handle) +
270 handle_backlog(stderr_handle)));
271 }
272}
273
32874aea 274int main(int argc, char **argv)
275{
12dc4ec0 276 int sending;
d8426c54 277 int portnumber = -1;
8df7a775 278 SOCKET *sklist;
279 int skcount, sksize;
d8d6c7e5 280 int exitcode;
86256dc6 281 int errors;
4d1cdf5d 282 int use_subsystem = 0;
39934deb 283 long now, next;
12dc4ec0 284
32874aea 285 sklist = NULL;
286 skcount = sksize = 0;
c9bdcd96 287 /*
288 * Initialise port and protocol to sensible defaults. (These
289 * will be overridden by more or less anything.)
290 */
291 default_protocol = PROT_SSH;
292 default_port = 22;
8df7a775 293
67779be7 294 flags = FLAG_STDERR;
12dc4ec0 295 /*
296 * Process the command line.
297 */
a9422f39 298 do_defaults(NULL, &cfg);
18e62ad8 299 loaded_session = FALSE;
e7a7383f 300 default_protocol = cfg.protocol;
301 default_port = cfg.port;
86256dc6 302 errors = 0;
8cb9c947 303 {
32874aea 304 /*
305 * Override the default protocol if PLINK_PROTOCOL is set.
306 */
307 char *p = getenv("PLINK_PROTOCOL");
308 int i;
309 if (p) {
9e164d82 310 const Backend *b = backend_from_name(p);
311 if (b) {
312 default_protocol = cfg.protocol = b->protocol;
313 default_port = cfg.port = b->default_port;
32874aea 314 }
315 }
8cb9c947 316 }
12dc4ec0 317 while (--argc) {
32874aea 318 char *p = *++argv;
319 if (*p == '-') {
5555d393 320 int ret = cmdline_process_param(p, (argc > 1 ? argv[1] : NULL),
321 1, &cfg);
c0a81592 322 if (ret == -2) {
323 fprintf(stderr,
324 "plink: option \"%s\" requires an argument\n", p);
86256dc6 325 errors = 1;
c0a81592 326 } else if (ret == 2) {
327 --argc, ++argv;
328 } else if (ret == 1) {
329 continue;
ff2ae367 330 } else if (!strcmp(p, "-batch")) {
c0a81592 331 console_batch_mode = 1;
4d1cdf5d 332 } else if (!strcmp(p, "-s")) {
333 /* Save status to write to cfg later. */
334 use_subsystem = 1;
dc108ebc 335 } else if (!strcmp(p, "-V")) {
336 version();
2285d016 337 } else if (!strcmp(p, "-pgpfp")) {
338 pgp_fingerprints();
339 exit(1);
86256dc6 340 } else {
341 fprintf(stderr, "plink: unknown option \"%s\"\n", p);
342 errors = 1;
32874aea 343 }
12dc4ec0 344 } else if (*p) {
7374c779 345 if (!cfg_launchable(&cfg)) {
32874aea 346 char *q = p;
347 /*
348 * If the hostname starts with "telnet:", set the
349 * protocol to Telnet and process the string as a
350 * Telnet URL.
351 */
352 if (!strncmp(q, "telnet:", 7)) {
353 char c;
354
355 q += 7;
356 if (q[0] == '/' && q[1] == '/')
357 q += 2;
358 cfg.protocol = PROT_TELNET;
359 p = q;
360 while (*p && *p != ':' && *p != '/')
361 p++;
362 c = *p;
363 if (*p)
364 *p++ = '\0';
365 if (c == ':')
366 cfg.port = atoi(p);
367 else
368 cfg.port = -1;
369 strncpy(cfg.host, q, sizeof(cfg.host) - 1);
370 cfg.host[sizeof(cfg.host) - 1] = '\0';
371 } else {
3608528b 372 char *r, *user, *host;
32874aea 373 /*
374 * Before we process the [user@]host string, we
375 * first check for the presence of a protocol
376 * prefix (a protocol name followed by ",").
377 */
378 r = strchr(p, ',');
379 if (r) {
9e164d82 380 const Backend *b;
381 *r = '\0';
382 b = backend_from_name(p);
383 if (b) {
384 default_protocol = cfg.protocol = b->protocol;
385 portnumber = b->default_port;
32874aea 386 }
9e164d82 387 p = r + 1;
32874aea 388 }
389
390 /*
3608528b 391 * A nonzero length string followed by an @ is treated
392 * as a username. (We discount an _initial_ @.) The
393 * rest of the string (or the whole string if no @)
394 * is treated as a session name and/or hostname.
32874aea 395 */
396 r = strrchr(p, '@');
397 if (r == p)
398 p++, r = NULL; /* discount initial @ */
3608528b 399 if (r) {
400 *r++ = '\0';
401 user = p, host = r;
402 } else {
403 user = NULL, host = p;
404 }
405
406 /*
407 * Now attempt to load a saved session with the
408 * same name as the hostname.
409 */
410 {
32874aea 411 Config cfg2;
3608528b 412 do_defaults(host, &cfg2);
7374c779 413 if (loaded_session || !cfg_launchable(&cfg2)) {
32874aea 414 /* No settings for this host; use defaults */
18e62ad8 415 /* (or session was already loaded with -load) */
3608528b 416 strncpy(cfg.host, host, sizeof(cfg.host) - 1);
32874aea 417 cfg.host[sizeof(cfg.host) - 1] = '\0';
418 cfg.port = default_port;
419 } else {
420 cfg = cfg2;
32874aea 421 }
3608528b 422 }
423
424 if (user) {
425 /* Patch in specified username. */
426 strncpy(cfg.username, user,
427 sizeof(cfg.username) - 1);
32874aea 428 cfg.username[sizeof(cfg.username) - 1] = '\0';
32874aea 429 }
3608528b 430
32874aea 431 }
432 } else {
385528da 433 char *command;
434 int cmdlen, cmdsize;
435 cmdlen = cmdsize = 0;
436 command = NULL;
437
438 while (argc) {
439 while (*p) {
440 if (cmdlen >= cmdsize) {
441 cmdsize = cmdlen + 512;
3d88e64d 442 command = sresize(command, cmdsize, char);
385528da 443 }
444 command[cmdlen++]=*p++;
445 }
446 if (cmdlen >= cmdsize) {
447 cmdsize = cmdlen + 512;
3d88e64d 448 command = sresize(command, cmdsize, char);
385528da 449 }
450 command[cmdlen++]=' '; /* always add trailing space */
451 if (--argc) p = *++argv;
32874aea 452 }
385528da 453 if (cmdlen) command[--cmdlen]='\0';
454 /* change trailing blank to NUL */
455 cfg.remote_cmd_ptr = command;
456 cfg.remote_cmd_ptr2 = NULL;
32874aea 457 cfg.nopty = TRUE; /* command => no terminal */
385528da 458
32874aea 459 break; /* done with cmdline */
460 }
12dc4ec0 461 }
462 }
463
86256dc6 464 if (errors)
465 return 1;
466
7374c779 467 if (!cfg_launchable(&cfg)) {
32874aea 468 usage();
d8426c54 469 }
d8426c54 470
449925a6 471 /*
472 * Trim leading whitespace off the hostname if it's there.
473 */
474 {
475 int space = strspn(cfg.host, " \t");
476 memmove(cfg.host, cfg.host+space, 1+strlen(cfg.host)-space);
477 }
478
479 /* See if host is of the form user@host */
7374c779 480 if (cfg_launchable(&cfg)) {
5dd103a8 481 char *atsign = strrchr(cfg.host, '@');
449925a6 482 /* Make sure we're not overflowing the user field */
483 if (atsign) {
484 if (atsign - cfg.host < sizeof cfg.username) {
485 strncpy(cfg.username, cfg.host, atsign - cfg.host);
486 cfg.username[atsign - cfg.host] = '\0';
487 }
488 memmove(cfg.host, atsign + 1, 1 + strlen(atsign + 1));
489 }
490 }
491
492 /*
c0a81592 493 * Perform command-line overrides on session configuration.
494 */
5555d393 495 cmdline_run_saved(&cfg);
c0a81592 496
497 /*
4d1cdf5d 498 * Apply subsystem status.
499 */
500 if (use_subsystem)
501 cfg.ssh_subsys = TRUE;
502
503 /*
449925a6 504 * Trim a colon suffix off the hostname if it's there.
505 */
506 cfg.host[strcspn(cfg.host, ":")] = '\0';
507
cae0c023 508 /*
509 * Remove any remaining whitespace from the hostname.
510 */
511 {
512 int p1 = 0, p2 = 0;
513 while (cfg.host[p2] != '\0') {
514 if (cfg.host[p2] != ' ' && cfg.host[p2] != '\t') {
515 cfg.host[p1] = cfg.host[p2];
516 p1++;
517 }
518 p2++;
519 }
520 cfg.host[p1] = '\0';
521 }
522
feb02b4e 523 if (!cfg.remote_cmd_ptr && !*cfg.remote_cmd && !*cfg.ssh_nc_host)
32874aea 524 flags |= FLAG_INTERACTIVE;
67779be7 525
12dc4ec0 526 /*
527 * Select protocol. This is farmed out into a table in a
528 * separate file to enable an ssh-free variant.
529 */
9e164d82 530 back = backend_from_proto(cfg.protocol);
531 if (back == NULL) {
532 fprintf(stderr,
533 "Internal fault: Unsupported protocol found\n");
534 return 1;
12dc4ec0 535 }
536
537 /*
8cb9c947 538 * Select port.
539 */
540 if (portnumber != -1)
32874aea 541 cfg.port = portnumber;
8cb9c947 542
7440fd44 543 sk_init();
544 if (p_WSAEventSelect == NULL) {
545 fprintf(stderr, "Plink requires WinSock 2\n");
12dc4ec0 546 return 1;
547 }
548
1626d169 549 logctx = log_init(NULL, &cfg);
550 console_provide_logctx(logctx);
551
12dc4ec0 552 /*
553 * Start up the connection.
554 */
8df7a775 555 netevent = CreateEvent(NULL, FALSE, FALSE, NULL);
12dc4ec0 556 {
cbe2d68f 557 const char *error;
12dc4ec0 558 char *realhost;
2184a5d9 559 /* nodelay is only useful if stdin is a character device (console) */
560 int nodelay = cfg.tcp_nodelay &&
561 (GetFileType(GetStdHandle(STD_INPUT_HANDLE)) == FILE_TYPE_CHAR);
12dc4ec0 562
86916870 563 error = back->init(NULL, &backhandle, &cfg, cfg.host, cfg.port,
79bf227b 564 &realhost, nodelay, cfg.tcp_keepalives);
12dc4ec0 565 if (error) {
566 fprintf(stderr, "Unable to open connection:\n%s", error);
567 return 1;
568 }
a8327734 569 back->provide_logctx(backhandle, logctx);
6e1ebb76 570 sfree(realhost);
12dc4ec0 571 }
8df7a775 572 connopen = 1;
12dc4ec0 573
0965bee0 574 inhandle = GetStdHandle(STD_INPUT_HANDLE);
12dc4ec0 575 outhandle = GetStdHandle(STD_OUTPUT_HANDLE);
fe50e814 576 errhandle = GetStdHandle(STD_ERROR_HANDLE);
34292b1d 577
12dc4ec0 578 /*
12dc4ec0 579 * Turn off ECHO and LINE input modes. We don't care if this
580 * call fails, because we know we aren't necessarily running in
581 * a console.
582 */
f8efb0d5 583 GetConsoleMode(inhandle, &orig_console_mode);
584 SetConsoleMode(inhandle, ENABLE_PROCESSED_INPUT);
585
34292b1d 586 /*
587 * Pass the output handles to the handle-handling subsystem.
588 * (The input one we leave until we're through the
589 * authentication process.)
590 */
bdebd7e9 591 stdout_handle = handle_output_new(outhandle, stdouterr_sent, NULL, 0);
592 stderr_handle = handle_output_new(errhandle, stdouterr_sent, NULL, 0);
34292b1d 593
f8efb0d5 594 main_thread_id = GetCurrentThreadId();
595
12dc4ec0 596 sending = FALSE;
5471d09a 597
39934deb 598 now = GETTICKCOUNT();
599
12dc4ec0 600 while (1) {
34292b1d 601 int nhandles;
602 HANDLE *handles;
32874aea 603 int n;
39934deb 604 DWORD ticks;
32874aea 605
51470298 606 if (!sending && back->sendok(backhandle)) {
bdebd7e9 607 stdin_handle = handle_input_new(inhandle, stdin_gotdata, NULL,
608 0);
32874aea 609 sending = TRUE;
610 }
611
39934deb 612 if (run_timers(now, &next)) {
613 ticks = next - GETTICKCOUNT();
614 if (ticks < 0) ticks = 0; /* just in case */
615 } else {
616 ticks = INFINITE;
617 }
618
34292b1d 619 handles = handle_get_events(&nhandles);
620 handles = sresize(handles, nhandles+1, HANDLE);
621 handles[nhandles] = netevent;
622 n = MsgWaitForMultipleObjects(nhandles+1, handles, FALSE, ticks,
c44bf5bd 623 QS_POSTMESSAGE);
34292b1d 624 if ((unsigned)(n - WAIT_OBJECT_0) < (unsigned)nhandles) {
625 handle_got_event(handles[n - WAIT_OBJECT_0]);
626 } else if (n == WAIT_OBJECT_0 + nhandles) {
32874aea 627 WSANETWORKEVENTS things;
8df7a775 628 SOCKET socket;
d2371c81 629 extern SOCKET first_socket(int *), next_socket(int *);
8df7a775 630 extern int select_result(WPARAM, LPARAM);
32874aea 631 int i, socketstate;
632
633 /*
634 * We must not call select_result() for any socket
635 * until we have finished enumerating within the tree.
636 * This is because select_result() may close the socket
637 * and modify the tree.
638 */
639 /* Count the active sockets. */
640 i = 0;
641 for (socket = first_socket(&socketstate);
642 socket != INVALID_SOCKET;
643 socket = next_socket(&socketstate)) i++;
644
645 /* Expand the buffer if necessary. */
646 if (i > sksize) {
647 sksize = i + 16;
3d88e64d 648 sklist = sresize(sklist, sksize, SOCKET);
32874aea 649 }
650
651 /* Retrieve the sockets into sklist. */
652 skcount = 0;
653 for (socket = first_socket(&socketstate);
654 socket != INVALID_SOCKET;
d2371c81 655 socket = next_socket(&socketstate)) {
32874aea 656 sklist[skcount++] = socket;
657 }
658
659 /* Now we're done enumerating; go through the list. */
660 for (i = 0; i < skcount; i++) {
661 WPARAM wp;
662 socket = sklist[i];
663 wp = (WPARAM) socket;
7440fd44 664 if (!p_WSAEnumNetworkEvents(socket, NULL, &things)) {
64cdd21b 665 static const struct { int bit, mask; } eventtypes[] = {
666 {FD_CONNECT_BIT, FD_CONNECT},
667 {FD_READ_BIT, FD_READ},
668 {FD_CLOSE_BIT, FD_CLOSE},
669 {FD_OOB_BIT, FD_OOB},
670 {FD_WRITE_BIT, FD_WRITE},
671 {FD_ACCEPT_BIT, FD_ACCEPT},
672 };
673 int e;
674
32874aea 675 noise_ultralight(socket);
676 noise_ultralight(things.lNetworkEvents);
d74d141c 677
64cdd21b 678 for (e = 0; e < lenof(eventtypes); e++)
679 if (things.lNetworkEvents & eventtypes[e].mask) {
680 LPARAM lp;
681 int err = things.iErrorCode[eventtypes[e].bit];
682 lp = WSAMAKESELECTREPLY(eventtypes[e].mask, err);
683 connopen &= select_result(wp, lp);
684 }
8df7a775 685 }
686 }
34292b1d 687 } else if (n == WAIT_OBJECT_0 + nhandles + 1) {
c44bf5bd 688 MSG msg;
689 while (PeekMessage(&msg, INVALID_HANDLE_VALUE,
690 WM_AGENT_CALLBACK, WM_AGENT_CALLBACK,
691 PM_REMOVE)) {
692 struct agent_callback *c = (struct agent_callback *)msg.lParam;
693 c->callback(c->callback_ctx, c->data, c->len);
694 sfree(c);
695 }
5471d09a 696 }
39934deb 697
698 if (n == WAIT_TIMEOUT) {
699 now = next;
700 } else {
701 now = GETTICKCOUNT();
702 }
703
34292b1d 704 sfree(handles);
705
706 if (sending)
707 handle_unthrottle(stdin_handle, back->sendbuffer(backhandle));
708
6226c939 709 if ((!connopen || !back->connected(backhandle)) &&
34292b1d 710 handle_backlog(stdout_handle) + handle_backlog(stderr_handle) == 0)
32874aea 711 break; /* we closed the connection */
12dc4ec0 712 }
51470298 713 exitcode = back->exitcode(backhandle);
d8d6c7e5 714 if (exitcode < 0) {
715 fprintf(stderr, "Remote process exit code unavailable\n");
716 exitcode = 1; /* this is an error condition */
717 }
7440fd44 718 cleanup_exit(exitcode);
719 return 0; /* placate compiler warning */
12dc4ec0 720}