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