Colin's const-fixing Patch Of Death. Seems to build fine on Windows
[u/mdw/putty] / plink.c
CommitLineData
12dc4ec0 1/*
2 * PLink - a command-line (stdin/stdout) variant of PuTTY.
3 */
4
4d331a77 5#ifndef AUTO_WINSOCK
12dc4ec0 6#include <winsock2.h>
4d331a77 7#endif
12dc4ec0 8#include <windows.h>
9#include <stdio.h>
49bad831 10#include <stdlib.h>
2b0c045b 11#include <assert.h>
12dc4ec0 12#include <stdarg.h>
13
32874aea 14#define PUTTY_DO_GLOBALS /* actually _define_ globals */
12dc4ec0 15#include "putty.h"
a9422f39 16#include "storage.h"
8df7a775 17#include "tree234.h"
12dc4ec0 18
c44bf5bd 19#define WM_AGENT_CALLBACK (WM_XUSER + 4)
20
5471d09a 21#define MAX_STDIN_BACKLOG 4096
22
c44bf5bd 23struct agent_callback {
24 void (*callback)(void *, void *, int);
25 void *callback_ctx;
26 void *data;
27 int len;
28};
29
32874aea 30void fatalbox(char *p, ...)
31{
12dc4ec0 32 va_list ap;
49bad831 33 fprintf(stderr, "FATAL ERROR: ");
1709795f 34 va_start(ap, p);
35 vfprintf(stderr, p, ap);
36 va_end(ap);
37 fputc('\n', stderr);
38 WSACleanup();
39 cleanup_exit(1);
40}
41void modalfatalbox(char *p, ...)
42{
43 va_list ap;
44 fprintf(stderr, "FATAL ERROR: ");
12dc4ec0 45 va_start(ap, p);
46 vfprintf(stderr, p, ap);
47 va_end(ap);
48 fputc('\n', stderr);
49 WSACleanup();
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);
60 WSACleanup();
93b581bd 61 cleanup_exit(1);
8d5de777 62}
c0a81592 63void cmdline_error(char *p, ...)
64{
65 va_list ap;
66 fprintf(stderr, "plink: ");
67 va_start(ap, p);
68 vfprintf(stderr, p, ap);
69 va_end(ap);
70 fputc('\n', stderr);
71 exit(1);
72}
12dc4ec0 73
0965bee0 74HANDLE inhandle, outhandle, errhandle;
6f34e365 75DWORD orig_console_mode;
76
8df7a775 77WSAEVENT netevent;
78
6b78788a 79static Backend *back;
80static void *backhandle;
3ea863a3 81static Config cfg;
6b78788a 82
887035a5 83int term_ldisc(Terminal *term, int mode)
32874aea 84{
85 return FALSE;
86}
b9d7bcad 87void ldisc_update(void *frontend, int echo, int edit)
32874aea 88{
0965bee0 89 /* Update stdin read mode to reflect changes in line discipline. */
90 DWORD mode;
91
92 mode = ENABLE_PROCESSED_INPUT;
93 if (echo)
32874aea 94 mode = mode | ENABLE_ECHO_INPUT;
0965bee0 95 else
32874aea 96 mode = mode & ~ENABLE_ECHO_INPUT;
0965bee0 97 if (edit)
32874aea 98 mode = mode | ENABLE_LINE_INPUT;
0965bee0 99 else
32874aea 100 mode = mode & ~ENABLE_LINE_INPUT;
0965bee0 101 SetConsoleMode(inhandle, mode);
102}
103
5471d09a 104struct input_data {
105 DWORD len;
106 char buffer[4096];
107 HANDLE event, eventback;
108};
109
32874aea 110static DWORD WINAPI stdin_read_thread(void *param)
111{
112 struct input_data *idata = (struct input_data *) param;
12dc4ec0 113 HANDLE inhandle;
114
115 inhandle = GetStdHandle(STD_INPUT_HANDLE);
116
117 while (ReadFile(inhandle, idata->buffer, sizeof(idata->buffer),
32874aea 118 &idata->len, NULL) && idata->len > 0) {
119 SetEvent(idata->event);
120 WaitForSingleObject(idata->eventback, INFINITE);
12dc4ec0 121 }
122
123 idata->len = 0;
124 SetEvent(idata->event);
125
126 return 0;
127}
128
5471d09a 129struct output_data {
130 DWORD len, lenwritten;
131 int writeret;
132 char *buffer;
133 int is_stderr, done;
134 HANDLE event, eventback;
135 int busy;
136};
137
138static DWORD WINAPI stdout_write_thread(void *param)
139{
140 struct output_data *odata = (struct output_data *) param;
141 HANDLE outhandle, errhandle;
142
143 outhandle = GetStdHandle(STD_OUTPUT_HANDLE);
144 errhandle = GetStdHandle(STD_ERROR_HANDLE);
145
146 while (1) {
147 WaitForSingleObject(odata->eventback, INFINITE);
148 if (odata->done)
149 break;
150 odata->writeret =
151 WriteFile(odata->is_stderr ? errhandle : outhandle,
152 odata->buffer, odata->len, &odata->lenwritten, NULL);
153 SetEvent(odata->event);
154 }
155
156 return 0;
157}
158
159bufchain stdout_data, stderr_data;
160struct output_data odata, edata;
161
162void try_output(int is_stderr)
163{
164 struct output_data *data = (is_stderr ? &edata : &odata);
165 void *senddata;
166 int sendlen;
167
168 if (!data->busy) {
169 bufchain_prefix(is_stderr ? &stderr_data : &stdout_data,
170 &senddata, &sendlen);
171 data->buffer = senddata;
172 data->len = sendlen;
173 SetEvent(data->eventback);
174 data->busy = 1;
175 }
176}
177
9fab77dc 178int from_backend(void *frontend_handle, int is_stderr,
179 const char *data, int len)
5471d09a 180{
5471d09a 181 int osize, esize;
182
2b0c045b 183 assert(len > 0);
184
5471d09a 185 if (is_stderr) {
186 bufchain_add(&stderr_data, data, len);
187 try_output(1);
188 } else {
189 bufchain_add(&stdout_data, data, len);
190 try_output(0);
191 }
192
193 osize = bufchain_size(&stdout_data);
194 esize = bufchain_size(&stderr_data);
195
196 return osize + esize;
197}
198
c44bf5bd 199static DWORD main_thread_id;
200
201void agent_schedule_callback(void (*callback)(void *, void *, int),
202 void *callback_ctx, void *data, int len)
203{
204 struct agent_callback *c = snew(struct agent_callback);
205 c->callback = callback;
206 c->callback_ctx = callback_ctx;
207 c->data = data;
208 c->len = len;
209 PostThreadMessage(main_thread_id, WM_AGENT_CALLBACK, 0, (LPARAM)c);
210}
211
d8426c54 212/*
213 * Short description of parameters.
214 */
215static void usage(void)
216{
217 printf("PuTTY Link: command-line connection utility\n");
218 printf("%s\n", ver);
219 printf("Usage: plink [options] [user@]host [command]\n");
e672967c 220 printf(" (\"host\" can also be a PuTTY saved session name)\n");
d8426c54 221 printf("Options:\n");
222 printf(" -v show verbose messages\n");
e2a197cf 223 printf(" -load sessname Load settings from saved session\n");
224 printf(" -ssh -telnet -rlogin -raw\n");
225 printf(" force use of a particular protocol (default SSH)\n");
d8426c54 226 printf(" -P port connect to specified port\n");
e2a197cf 227 printf(" -l user connect with specified username\n");
96621a84 228 printf(" -m file read remote command(s) from file\n");
e2a197cf 229 printf(" -batch disable all interactive prompts\n");
230 printf("The following options only apply to SSH connections:\n");
231 printf(" -pw passw login with specified password\n");
820ebe3b 232 printf(" -D listen-port Dynamic SOCKS-based port forwarding\n");
e7aabca4 233 printf(" -L listen-port:host:port Forward local port to "
234 "remote address\n");
235 printf(" -R listen-port:host:port Forward remote port to"
236 " local address\n");
e2a197cf 237 printf(" -X -x enable / disable X11 forwarding\n");
238 printf(" -A -a enable / disable agent forwarding\n");
239 printf(" -t -T enable / disable pty allocation\n");
240 printf(" -1 -2 force use of particular protocol version\n");
241 printf(" -C enable compression\n");
242 printf(" -i key private key file for authentication\n");
d8426c54 243 exit(1);
244}
245
32874aea 246char *do_select(SOCKET skt, int startup)
247{
8df7a775 248 int events;
249 if (startup) {
3ad9d396 250 events = (FD_CONNECT | FD_READ | FD_WRITE |
251 FD_OOB | FD_CLOSE | FD_ACCEPT);
8df7a775 252 } else {
253 events = 0;
254 }
32874aea 255 if (WSAEventSelect(skt, netevent, events) == SOCKET_ERROR) {
256 switch (WSAGetLastError()) {
257 case WSAENETDOWN:
258 return "Network is down";
259 default:
260 return "WSAAsyncSelect(): unknown error";
261 }
8df7a775 262 }
263 return NULL;
264}
265
32874aea 266int main(int argc, char **argv)
267{
12dc4ec0 268 WSADATA wsadata;
269 WORD winsock_ver;
5471d09a 270 WSAEVENT stdinevent, stdoutevent, stderrevent;
271 HANDLE handles[4];
272 DWORD in_threadid, out_threadid, err_threadid;
12dc4ec0 273 struct input_data idata;
5471d09a 274 int reading;
12dc4ec0 275 int sending;
d8426c54 276 int portnumber = -1;
8df7a775 277 SOCKET *sklist;
278 int skcount, sksize;
279 int connopen;
d8d6c7e5 280 int exitcode;
86256dc6 281 int errors;
12dc4ec0 282
ff2ae367 283 ssh_get_line = console_get_line;
67779be7 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);
e7a7383f 299 default_protocol = cfg.protocol;
300 default_port = cfg.port;
86256dc6 301 errors = 0;
8cb9c947 302 {
32874aea 303 /*
304 * Override the default protocol if PLINK_PROTOCOL is set.
305 */
306 char *p = getenv("PLINK_PROTOCOL");
307 int i;
308 if (p) {
309 for (i = 0; backends[i].backend != NULL; i++) {
310 if (!strcmp(backends[i].name, p)) {
311 default_protocol = cfg.protocol = backends[i].protocol;
312 default_port = cfg.port =
313 backends[i].backend->default_port;
314 break;
315 }
316 }
317 }
8cb9c947 318 }
12dc4ec0 319 while (--argc) {
32874aea 320 char *p = *++argv;
321 if (*p == '-') {
5555d393 322 int ret = cmdline_process_param(p, (argc > 1 ? argv[1] : NULL),
323 1, &cfg);
c0a81592 324 if (ret == -2) {
325 fprintf(stderr,
326 "plink: option \"%s\" requires an argument\n", p);
86256dc6 327 errors = 1;
c0a81592 328 } else if (ret == 2) {
329 --argc, ++argv;
330 } else if (ret == 1) {
331 continue;
ff2ae367 332 } else if (!strcmp(p, "-batch")) {
c0a81592 333 console_batch_mode = 1;
86256dc6 334 } else {
335 fprintf(stderr, "plink: unknown option \"%s\"\n", p);
336 errors = 1;
32874aea 337 }
12dc4ec0 338 } else if (*p) {
32874aea 339 if (!*cfg.host) {
340 char *q = p;
341 /*
342 * If the hostname starts with "telnet:", set the
343 * protocol to Telnet and process the string as a
344 * Telnet URL.
345 */
346 if (!strncmp(q, "telnet:", 7)) {
347 char c;
348
349 q += 7;
350 if (q[0] == '/' && q[1] == '/')
351 q += 2;
352 cfg.protocol = PROT_TELNET;
353 p = q;
354 while (*p && *p != ':' && *p != '/')
355 p++;
356 c = *p;
357 if (*p)
358 *p++ = '\0';
359 if (c == ':')
360 cfg.port = atoi(p);
361 else
362 cfg.port = -1;
363 strncpy(cfg.host, q, sizeof(cfg.host) - 1);
364 cfg.host[sizeof(cfg.host) - 1] = '\0';
365 } else {
366 char *r;
367 /*
368 * Before we process the [user@]host string, we
369 * first check for the presence of a protocol
370 * prefix (a protocol name followed by ",").
371 */
372 r = strchr(p, ',');
373 if (r) {
374 int i, j;
375 for (i = 0; backends[i].backend != NULL; i++) {
376 j = strlen(backends[i].name);
377 if (j == r - p &&
378 !memcmp(backends[i].name, p, j)) {
379 default_protocol = cfg.protocol =
380 backends[i].protocol;
381 portnumber =
382 backends[i].backend->default_port;
383 p = r + 1;
384 break;
385 }
386 }
387 }
388
389 /*
390 * Three cases. Either (a) there's a nonzero
391 * length string followed by an @, in which
392 * case that's user and the remainder is host.
393 * Or (b) there's only one string, not counting
394 * a potential initial @, and it exists in the
395 * saved-sessions database. Or (c) only one
396 * string and it _doesn't_ exist in the
397 * database.
398 */
399 r = strrchr(p, '@');
400 if (r == p)
401 p++, r = NULL; /* discount initial @ */
402 if (r == NULL) {
403 /*
404 * One string.
405 */
406 Config cfg2;
407 do_defaults(p, &cfg2);
408 if (cfg2.host[0] == '\0') {
409 /* No settings for this host; use defaults */
410 strncpy(cfg.host, p, sizeof(cfg.host) - 1);
411 cfg.host[sizeof(cfg.host) - 1] = '\0';
412 cfg.port = default_port;
413 } else {
414 cfg = cfg2;
415 cfg.remote_cmd_ptr = cfg.remote_cmd;
416 }
417 } else {
418 *r++ = '\0';
419 strncpy(cfg.username, p, sizeof(cfg.username) - 1);
420 cfg.username[sizeof(cfg.username) - 1] = '\0';
421 strncpy(cfg.host, r, sizeof(cfg.host) - 1);
422 cfg.host[sizeof(cfg.host) - 1] = '\0';
423 cfg.port = default_port;
424 }
425 }
426 } else {
385528da 427 char *command;
428 int cmdlen, cmdsize;
429 cmdlen = cmdsize = 0;
430 command = NULL;
431
432 while (argc) {
433 while (*p) {
434 if (cmdlen >= cmdsize) {
435 cmdsize = cmdlen + 512;
3d88e64d 436 command = sresize(command, cmdsize, char);
385528da 437 }
438 command[cmdlen++]=*p++;
439 }
440 if (cmdlen >= cmdsize) {
441 cmdsize = cmdlen + 512;
3d88e64d 442 command = sresize(command, cmdsize, char);
385528da 443 }
444 command[cmdlen++]=' '; /* always add trailing space */
445 if (--argc) p = *++argv;
32874aea 446 }
385528da 447 if (cmdlen) command[--cmdlen]='\0';
448 /* change trailing blank to NUL */
449 cfg.remote_cmd_ptr = command;
450 cfg.remote_cmd_ptr2 = NULL;
32874aea 451 cfg.nopty = TRUE; /* command => no terminal */
385528da 452
32874aea 453 break; /* done with cmdline */
454 }
12dc4ec0 455 }
456 }
457
86256dc6 458 if (errors)
459 return 1;
460
d8426c54 461 if (!*cfg.host) {
32874aea 462 usage();
d8426c54 463 }
d8426c54 464
449925a6 465 /*
466 * Trim leading whitespace off the hostname if it's there.
467 */
468 {
469 int space = strspn(cfg.host, " \t");
470 memmove(cfg.host, cfg.host+space, 1+strlen(cfg.host)-space);
471 }
472
473 /* See if host is of the form user@host */
474 if (cfg.host[0] != '\0') {
475 char *atsign = strchr(cfg.host, '@');
476 /* Make sure we're not overflowing the user field */
477 if (atsign) {
478 if (atsign - cfg.host < sizeof cfg.username) {
479 strncpy(cfg.username, cfg.host, atsign - cfg.host);
480 cfg.username[atsign - cfg.host] = '\0';
481 }
482 memmove(cfg.host, atsign + 1, 1 + strlen(atsign + 1));
483 }
484 }
485
486 /*
c0a81592 487 * Perform command-line overrides on session configuration.
488 */
5555d393 489 cmdline_run_saved(&cfg);
c0a81592 490
491 /*
449925a6 492 * Trim a colon suffix off the hostname if it's there.
493 */
494 cfg.host[strcspn(cfg.host, ":")] = '\0';
495
cae0c023 496 /*
497 * Remove any remaining whitespace from the hostname.
498 */
499 {
500 int p1 = 0, p2 = 0;
501 while (cfg.host[p2] != '\0') {
502 if (cfg.host[p2] != ' ' && cfg.host[p2] != '\t') {
503 cfg.host[p1] = cfg.host[p2];
504 p1++;
505 }
506 p2++;
507 }
508 cfg.host[p1] = '\0';
509 }
510
96621a84 511 if (!*cfg.remote_cmd_ptr)
32874aea 512 flags |= FLAG_INTERACTIVE;
67779be7 513
12dc4ec0 514 /*
515 * Select protocol. This is farmed out into a table in a
516 * separate file to enable an ssh-free variant.
517 */
518 {
32874aea 519 int i;
520 back = NULL;
521 for (i = 0; backends[i].backend != NULL; i++)
522 if (backends[i].protocol == cfg.protocol) {
523 back = backends[i].backend;
524 break;
525 }
526 if (back == NULL) {
527 fprintf(stderr,
528 "Internal fault: Unsupported protocol found\n");
529 return 1;
530 }
12dc4ec0 531 }
532
533 /*
8cb9c947 534 * Select port.
535 */
536 if (portnumber != -1)
32874aea 537 cfg.port = portnumber;
8cb9c947 538
539 /*
12dc4ec0 540 * Initialise WinSock.
541 */
542 winsock_ver = MAKEWORD(2, 0);
543 if (WSAStartup(winsock_ver, &wsadata)) {
544 MessageBox(NULL, "Unable to initialise WinSock", "WinSock Error",
545 MB_OK | MB_ICONEXCLAMATION);
546 return 1;
547 }
548 if (LOBYTE(wsadata.wVersion) != 2 || HIBYTE(wsadata.wVersion) != 0) {
549 MessageBox(NULL, "WinSock version is incompatible with 2.0",
550 "WinSock Error", MB_OK | MB_ICONEXCLAMATION);
551 WSACleanup();
552 return 1;
553 }
8df7a775 554 sk_init();
12dc4ec0 555
556 /*
557 * Start up the connection.
558 */
8df7a775 559 netevent = CreateEvent(NULL, FALSE, FALSE, NULL);
12dc4ec0 560 {
cbe2d68f 561 const char *error;
12dc4ec0 562 char *realhost;
2184a5d9 563 /* nodelay is only useful if stdin is a character device (console) */
564 int nodelay = cfg.tcp_nodelay &&
565 (GetFileType(GetStdHandle(STD_INPUT_HANDLE)) == FILE_TYPE_CHAR);
12dc4ec0 566
86916870 567 error = back->init(NULL, &backhandle, &cfg, cfg.host, cfg.port,
51470298 568 &realhost, nodelay);
12dc4ec0 569 if (error) {
570 fprintf(stderr, "Unable to open connection:\n%s", error);
571 return 1;
572 }
c229ef97 573 logctx = log_init(NULL, &cfg);
a8327734 574 back->provide_logctx(backhandle, logctx);
d3fef4a5 575 console_provide_logctx(logctx);
6e1ebb76 576 sfree(realhost);
12dc4ec0 577 }
8df7a775 578 connopen = 1;
12dc4ec0 579
12dc4ec0 580 stdinevent = CreateEvent(NULL, FALSE, FALSE, NULL);
5471d09a 581 stdoutevent = CreateEvent(NULL, FALSE, FALSE, NULL);
582 stderrevent = CreateEvent(NULL, FALSE, FALSE, NULL);
12dc4ec0 583
0965bee0 584 inhandle = GetStdHandle(STD_INPUT_HANDLE);
12dc4ec0 585 outhandle = GetStdHandle(STD_OUTPUT_HANDLE);
fe50e814 586 errhandle = GetStdHandle(STD_ERROR_HANDLE);
0965bee0 587 GetConsoleMode(inhandle, &orig_console_mode);
588 SetConsoleMode(inhandle, ENABLE_PROCESSED_INPUT);
12dc4ec0 589
c44bf5bd 590 main_thread_id = GetCurrentThreadId();
591
12dc4ec0 592 /*
12dc4ec0 593 * Turn off ECHO and LINE input modes. We don't care if this
594 * call fails, because we know we aren't necessarily running in
595 * a console.
596 */
12dc4ec0 597 handles[0] = netevent;
598 handles[1] = stdinevent;
5471d09a 599 handles[2] = stdoutevent;
600 handles[3] = stderrevent;
12dc4ec0 601 sending = FALSE;
5471d09a 602
603 /*
604 * Create spare threads to write to stdout and stderr, so we
605 * can arrange asynchronous writes.
606 */
607 odata.event = stdoutevent;
608 odata.eventback = CreateEvent(NULL, FALSE, FALSE, NULL);
609 odata.is_stderr = 0;
610 odata.busy = odata.done = 0;
611 if (!CreateThread(NULL, 0, stdout_write_thread,
612 &odata, 0, &out_threadid)) {
613 fprintf(stderr, "Unable to create output thread\n");
93b581bd 614 cleanup_exit(1);
5471d09a 615 }
616 edata.event = stderrevent;
617 edata.eventback = CreateEvent(NULL, FALSE, FALSE, NULL);
618 edata.is_stderr = 1;
619 edata.busy = edata.done = 0;
620 if (!CreateThread(NULL, 0, stdout_write_thread,
621 &edata, 0, &err_threadid)) {
622 fprintf(stderr, "Unable to create error output thread\n");
93b581bd 623 cleanup_exit(1);
5471d09a 624 }
625
12dc4ec0 626 while (1) {
32874aea 627 int n;
628
51470298 629 if (!sending && back->sendok(backhandle)) {
32874aea 630 /*
631 * Create a separate thread to read from stdin. This is
632 * a total pain, but I can't find another way to do it:
633 *
634 * - an overlapped ReadFile or ReadFileEx just doesn't
635 * happen; we get failure from ReadFileEx, and
636 * ReadFile blocks despite being given an OVERLAPPED
637 * structure. Perhaps we can't do overlapped reads
638 * on consoles. WHY THE HELL NOT?
639 *
640 * - WaitForMultipleObjects(netevent, console) doesn't
641 * work, because it signals the console when
642 * _anything_ happens, including mouse motions and
643 * other things that don't cause data to be readable
644 * - so we're back to ReadFile blocking.
645 */
646 idata.event = stdinevent;
647 idata.eventback = CreateEvent(NULL, FALSE, FALSE, NULL);
648 if (!CreateThread(NULL, 0, stdin_read_thread,
5471d09a 649 &idata, 0, &in_threadid)) {
650 fprintf(stderr, "Unable to create input thread\n");
93b581bd 651 cleanup_exit(1);
32874aea 652 }
653 sending = TRUE;
654 }
655
c44bf5bd 656 n = MsgWaitForMultipleObjects(4, handles, FALSE, INFINITE,
657 QS_POSTMESSAGE);
32874aea 658 if (n == 0) {
659 WSANETWORKEVENTS things;
8df7a775 660 SOCKET socket;
d2371c81 661 extern SOCKET first_socket(int *), next_socket(int *);
8df7a775 662 extern int select_result(WPARAM, LPARAM);
32874aea 663 int i, socketstate;
664
665 /*
666 * We must not call select_result() for any socket
667 * until we have finished enumerating within the tree.
668 * This is because select_result() may close the socket
669 * and modify the tree.
670 */
671 /* Count the active sockets. */
672 i = 0;
673 for (socket = first_socket(&socketstate);
674 socket != INVALID_SOCKET;
675 socket = next_socket(&socketstate)) i++;
676
677 /* Expand the buffer if necessary. */
678 if (i > sksize) {
679 sksize = i + 16;
3d88e64d 680 sklist = sresize(sklist, sksize, SOCKET);
32874aea 681 }
682
683 /* Retrieve the sockets into sklist. */
684 skcount = 0;
685 for (socket = first_socket(&socketstate);
686 socket != INVALID_SOCKET;
d2371c81 687 socket = next_socket(&socketstate)) {
32874aea 688 sklist[skcount++] = socket;
689 }
690
691 /* Now we're done enumerating; go through the list. */
692 for (i = 0; i < skcount; i++) {
693 WPARAM wp;
694 socket = sklist[i];
695 wp = (WPARAM) socket;
ffb959c7 696 if (!WSAEnumNetworkEvents(socket, NULL, &things)) {
64cdd21b 697 static const struct { int bit, mask; } eventtypes[] = {
698 {FD_CONNECT_BIT, FD_CONNECT},
699 {FD_READ_BIT, FD_READ},
700 {FD_CLOSE_BIT, FD_CLOSE},
701 {FD_OOB_BIT, FD_OOB},
702 {FD_WRITE_BIT, FD_WRITE},
703 {FD_ACCEPT_BIT, FD_ACCEPT},
704 };
705 int e;
706
32874aea 707 noise_ultralight(socket);
708 noise_ultralight(things.lNetworkEvents);
d74d141c 709
64cdd21b 710 for (e = 0; e < lenof(eventtypes); e++)
711 if (things.lNetworkEvents & eventtypes[e].mask) {
712 LPARAM lp;
713 int err = things.iErrorCode[eventtypes[e].bit];
714 lp = WSAMAKESELECTREPLY(eventtypes[e].mask, err);
715 connopen &= select_result(wp, lp);
716 }
8df7a775 717 }
718 }
32874aea 719 } else if (n == 1) {
5471d09a 720 reading = 0;
32874aea 721 noise_ultralight(idata.len);
51470298 722 if (connopen && back->socket(backhandle) != NULL) {
42856df4 723 if (idata.len > 0) {
51470298 724 back->send(backhandle, idata.buffer, idata.len);
42856df4 725 } else {
51470298 726 back->special(backhandle, TS_EOF);
42856df4 727 }
32874aea 728 }
5471d09a 729 } else if (n == 2) {
730 odata.busy = 0;
731 if (!odata.writeret) {
732 fprintf(stderr, "Unable to write to standard output\n");
93b581bd 733 cleanup_exit(0);
5471d09a 734 }
735 bufchain_consume(&stdout_data, odata.lenwritten);
736 if (bufchain_size(&stdout_data) > 0)
737 try_output(0);
51470298 738 if (connopen && back->socket(backhandle) != NULL) {
739 back->unthrottle(backhandle, bufchain_size(&stdout_data) +
42856df4 740 bufchain_size(&stderr_data));
741 }
5471d09a 742 } else if (n == 3) {
743 edata.busy = 0;
744 if (!edata.writeret) {
745 fprintf(stderr, "Unable to write to standard output\n");
93b581bd 746 cleanup_exit(0);
5471d09a 747 }
748 bufchain_consume(&stderr_data, edata.lenwritten);
749 if (bufchain_size(&stderr_data) > 0)
750 try_output(1);
51470298 751 if (connopen && back->socket(backhandle) != NULL) {
752 back->unthrottle(backhandle, bufchain_size(&stdout_data) +
42856df4 753 bufchain_size(&stderr_data));
754 }
c44bf5bd 755 } else if (n == 4) {
756 MSG msg;
757 while (PeekMessage(&msg, INVALID_HANDLE_VALUE,
758 WM_AGENT_CALLBACK, WM_AGENT_CALLBACK,
759 PM_REMOVE)) {
760 struct agent_callback *c = (struct agent_callback *)msg.lParam;
761 c->callback(c->callback_ctx, c->data, c->len);
762 sfree(c);
763 }
5471d09a 764 }
51470298 765 if (!reading && back->sendbuffer(backhandle) < MAX_STDIN_BACKLOG) {
32874aea 766 SetEvent(idata.eventback);
5471d09a 767 reading = 1;
32874aea 768 }
51470298 769 if ((!connopen || back->socket(backhandle) == NULL) &&
42856df4 770 bufchain_size(&stdout_data) == 0 &&
771 bufchain_size(&stderr_data) == 0)
32874aea 772 break; /* we closed the connection */
12dc4ec0 773 }
774 WSACleanup();
51470298 775 exitcode = back->exitcode(backhandle);
d8d6c7e5 776 if (exitcode < 0) {
777 fprintf(stderr, "Remote process exit code unavailable\n");
778 exitcode = 1; /* this is an error condition */
779 }
780 return exitcode;
12dc4ec0 781}