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