Fixes for more robust handling of command-line parse errors.
[u/mdw/putty] / plink.c
1 /*
2 * PLink - a command-line (stdin/stdout) variant of PuTTY.
3 */
4
5 #ifndef AUTO_WINSOCK
6 #include <winsock2.h>
7 #endif
8 #include <windows.h>
9 #include <stdio.h>
10 #include <stdlib.h>
11 #include <assert.h>
12 #include <stdarg.h>
13
14 #define PUTTY_DO_GLOBALS /* actually _define_ globals */
15 #include "putty.h"
16 #include "storage.h"
17 #include "tree234.h"
18
19 #define MAX_STDIN_BACKLOG 4096
20
21 void fatalbox(char *p, ...)
22 {
23 va_list ap;
24 fprintf(stderr, "FATAL ERROR: ");
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 }
32 void modalfatalbox(char *p, ...)
33 {
34 va_list ap;
35 fprintf(stderr, "FATAL ERROR: ");
36 va_start(ap, p);
37 vfprintf(stderr, p, ap);
38 va_end(ap);
39 fputc('\n', stderr);
40 WSACleanup();
41 cleanup_exit(1);
42 }
43 void connection_fatal(void *frontend, char *p, ...)
44 {
45 va_list ap;
46 fprintf(stderr, "FATAL ERROR: ");
47 va_start(ap, p);
48 vfprintf(stderr, p, ap);
49 va_end(ap);
50 fputc('\n', stderr);
51 WSACleanup();
52 cleanup_exit(1);
53 }
54 void 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 }
64
65 static char *password = NULL;
66
67 HANDLE inhandle, outhandle, errhandle;
68 DWORD orig_console_mode;
69
70 WSAEVENT netevent;
71
72 static Backend *back;
73 static void *backhandle;
74
75 int term_ldisc(Terminal *term, int mode)
76 {
77 return FALSE;
78 }
79 void ldisc_update(void *frontend, int echo, int edit)
80 {
81 /* Update stdin read mode to reflect changes in line discipline. */
82 DWORD mode;
83
84 mode = ENABLE_PROCESSED_INPUT;
85 if (echo)
86 mode = mode | ENABLE_ECHO_INPUT;
87 else
88 mode = mode & ~ENABLE_ECHO_INPUT;
89 if (edit)
90 mode = mode | ENABLE_LINE_INPUT;
91 else
92 mode = mode & ~ENABLE_LINE_INPUT;
93 SetConsoleMode(inhandle, mode);
94 }
95
96 struct input_data {
97 DWORD len;
98 char buffer[4096];
99 HANDLE event, eventback;
100 };
101
102 static DWORD WINAPI stdin_read_thread(void *param)
103 {
104 struct input_data *idata = (struct input_data *) param;
105 HANDLE inhandle;
106
107 inhandle = GetStdHandle(STD_INPUT_HANDLE);
108
109 while (ReadFile(inhandle, idata->buffer, sizeof(idata->buffer),
110 &idata->len, NULL) && idata->len > 0) {
111 SetEvent(idata->event);
112 WaitForSingleObject(idata->eventback, INFINITE);
113 }
114
115 idata->len = 0;
116 SetEvent(idata->event);
117
118 return 0;
119 }
120
121 struct 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
130 static 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
151 bufchain stdout_data, stderr_data;
152 struct output_data odata, edata;
153
154 void 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
170 int from_backend(void *frontend_handle, int is_stderr, char *data, int len)
171 {
172 HANDLE h = (is_stderr ? errhandle : outhandle);
173 int osize, esize;
174
175 assert(len > 0);
176
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
191 /*
192 * Short description of parameters.
193 */
194 static 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");
199 printf(" (\"host\" can also be a PuTTY saved session name)\n");
200 printf("Options:\n");
201 printf(" -v show verbose messages\n");
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");
205 printf(" -P port connect to specified port\n");
206 printf(" -l user connect with specified username\n");
207 printf(" -m file read remote command(s) from file\n");
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");
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");
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");
221 exit(1);
222 }
223
224 char *do_select(SOCKET skt, int startup)
225 {
226 int events;
227 if (startup) {
228 events = (FD_CONNECT | FD_READ | FD_WRITE |
229 FD_OOB | FD_CLOSE | FD_ACCEPT);
230 } else {
231 events = 0;
232 }
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 }
240 }
241 return NULL;
242 }
243
244 int main(int argc, char **argv)
245 {
246 WSADATA wsadata;
247 WORD winsock_ver;
248 WSAEVENT stdinevent, stdoutevent, stderrevent;
249 HANDLE handles[4];
250 DWORD in_threadid, out_threadid, err_threadid;
251 struct input_data idata;
252 int reading;
253 int sending;
254 int portnumber = -1;
255 SOCKET *sklist;
256 int skcount, sksize;
257 int connopen;
258 int exitcode;
259 int errors;
260
261 ssh_get_line = console_get_line;
262
263 sklist = NULL;
264 skcount = sksize = 0;
265 /*
266 * Initialise port and protocol to sensible defaults. (These
267 * will be overridden by more or less anything.)
268 */
269 default_protocol = PROT_SSH;
270 default_port = 22;
271
272 flags = FLAG_STDERR;
273 /*
274 * Process the command line.
275 */
276 do_defaults(NULL, &cfg);
277 default_protocol = cfg.protocol;
278 default_port = cfg.port;
279 errors = 0;
280 {
281 /*
282 * Override the default protocol if PLINK_PROTOCOL is set.
283 */
284 char *p = getenv("PLINK_PROTOCOL");
285 int i;
286 if (p) {
287 for (i = 0; backends[i].backend != NULL; i++) {
288 if (!strcmp(backends[i].name, p)) {
289 default_protocol = cfg.protocol = backends[i].protocol;
290 default_port = cfg.port =
291 backends[i].backend->default_port;
292 break;
293 }
294 }
295 }
296 }
297 while (--argc) {
298 char *p = *++argv;
299 if (*p == '-') {
300 int ret = cmdline_process_param(p, (argc > 1 ? argv[1] : NULL), 1);
301 if (ret == -2) {
302 fprintf(stderr,
303 "plink: option \"%s\" requires an argument\n", p);
304 errors = 1;
305 } else if (ret == 2) {
306 --argc, ++argv;
307 } else if (ret == 1) {
308 continue;
309 } else if (!strcmp(p, "-batch")) {
310 console_batch_mode = 1;
311 } else {
312 fprintf(stderr, "plink: unknown option \"%s\"\n", p);
313 errors = 1;
314 }
315 } else if (*p) {
316 if (!*cfg.host) {
317 char *q = p;
318 /*
319 * If the hostname starts with "telnet:", set the
320 * protocol to Telnet and process the string as a
321 * Telnet URL.
322 */
323 if (!strncmp(q, "telnet:", 7)) {
324 char c;
325
326 q += 7;
327 if (q[0] == '/' && q[1] == '/')
328 q += 2;
329 cfg.protocol = PROT_TELNET;
330 p = q;
331 while (*p && *p != ':' && *p != '/')
332 p++;
333 c = *p;
334 if (*p)
335 *p++ = '\0';
336 if (c == ':')
337 cfg.port = atoi(p);
338 else
339 cfg.port = -1;
340 strncpy(cfg.host, q, sizeof(cfg.host) - 1);
341 cfg.host[sizeof(cfg.host) - 1] = '\0';
342 } else {
343 char *r;
344 /*
345 * Before we process the [user@]host string, we
346 * first check for the presence of a protocol
347 * prefix (a protocol name followed by ",").
348 */
349 r = strchr(p, ',');
350 if (r) {
351 int i, j;
352 for (i = 0; backends[i].backend != NULL; i++) {
353 j = strlen(backends[i].name);
354 if (j == r - p &&
355 !memcmp(backends[i].name, p, j)) {
356 default_protocol = cfg.protocol =
357 backends[i].protocol;
358 portnumber =
359 backends[i].backend->default_port;
360 p = r + 1;
361 break;
362 }
363 }
364 }
365
366 /*
367 * Three cases. Either (a) there's a nonzero
368 * length string followed by an @, in which
369 * case that's user and the remainder is host.
370 * Or (b) there's only one string, not counting
371 * a potential initial @, and it exists in the
372 * saved-sessions database. Or (c) only one
373 * string and it _doesn't_ exist in the
374 * database.
375 */
376 r = strrchr(p, '@');
377 if (r == p)
378 p++, r = NULL; /* discount initial @ */
379 if (r == NULL) {
380 /*
381 * One string.
382 */
383 Config cfg2;
384 do_defaults(p, &cfg2);
385 if (cfg2.host[0] == '\0') {
386 /* No settings for this host; use defaults */
387 strncpy(cfg.host, p, sizeof(cfg.host) - 1);
388 cfg.host[sizeof(cfg.host) - 1] = '\0';
389 cfg.port = default_port;
390 } else {
391 cfg = cfg2;
392 cfg.remote_cmd_ptr = cfg.remote_cmd;
393 }
394 } else {
395 *r++ = '\0';
396 strncpy(cfg.username, p, sizeof(cfg.username) - 1);
397 cfg.username[sizeof(cfg.username) - 1] = '\0';
398 strncpy(cfg.host, r, sizeof(cfg.host) - 1);
399 cfg.host[sizeof(cfg.host) - 1] = '\0';
400 cfg.port = default_port;
401 }
402 }
403 } else {
404 char *command;
405 int cmdlen, cmdsize;
406 cmdlen = cmdsize = 0;
407 command = NULL;
408
409 while (argc) {
410 while (*p) {
411 if (cmdlen >= cmdsize) {
412 cmdsize = cmdlen + 512;
413 command = srealloc(command, cmdsize);
414 }
415 command[cmdlen++]=*p++;
416 }
417 if (cmdlen >= cmdsize) {
418 cmdsize = cmdlen + 512;
419 command = srealloc(command, cmdsize);
420 }
421 command[cmdlen++]=' '; /* always add trailing space */
422 if (--argc) p = *++argv;
423 }
424 if (cmdlen) command[--cmdlen]='\0';
425 /* change trailing blank to NUL */
426 cfg.remote_cmd_ptr = command;
427 cfg.remote_cmd_ptr2 = NULL;
428 cfg.nopty = TRUE; /* command => no terminal */
429
430 break; /* done with cmdline */
431 }
432 }
433 }
434
435 if (errors)
436 return 1;
437
438 if (!*cfg.host) {
439 usage();
440 }
441
442 /*
443 * Trim leading whitespace off the hostname if it's there.
444 */
445 {
446 int space = strspn(cfg.host, " \t");
447 memmove(cfg.host, cfg.host+space, 1+strlen(cfg.host)-space);
448 }
449
450 /* See if host is of the form user@host */
451 if (cfg.host[0] != '\0') {
452 char *atsign = strchr(cfg.host, '@');
453 /* Make sure we're not overflowing the user field */
454 if (atsign) {
455 if (atsign - cfg.host < sizeof cfg.username) {
456 strncpy(cfg.username, cfg.host, atsign - cfg.host);
457 cfg.username[atsign - cfg.host] = '\0';
458 }
459 memmove(cfg.host, atsign + 1, 1 + strlen(atsign + 1));
460 }
461 }
462
463 /*
464 * Perform command-line overrides on session configuration.
465 */
466 cmdline_run_saved();
467
468 /*
469 * Trim a colon suffix off the hostname if it's there.
470 */
471 cfg.host[strcspn(cfg.host, ":")] = '\0';
472
473 /*
474 * Remove any remaining whitespace from the hostname.
475 */
476 {
477 int p1 = 0, p2 = 0;
478 while (cfg.host[p2] != '\0') {
479 if (cfg.host[p2] != ' ' && cfg.host[p2] != '\t') {
480 cfg.host[p1] = cfg.host[p2];
481 p1++;
482 }
483 p2++;
484 }
485 cfg.host[p1] = '\0';
486 }
487
488 if (!*cfg.remote_cmd_ptr)
489 flags |= FLAG_INTERACTIVE;
490
491 /*
492 * Select protocol. This is farmed out into a table in a
493 * separate file to enable an ssh-free variant.
494 */
495 {
496 int i;
497 back = NULL;
498 for (i = 0; backends[i].backend != NULL; i++)
499 if (backends[i].protocol == cfg.protocol) {
500 back = backends[i].backend;
501 break;
502 }
503 if (back == NULL) {
504 fprintf(stderr,
505 "Internal fault: Unsupported protocol found\n");
506 return 1;
507 }
508 }
509
510 /*
511 * Select port.
512 */
513 if (portnumber != -1)
514 cfg.port = portnumber;
515
516 /*
517 * Initialise WinSock.
518 */
519 winsock_ver = MAKEWORD(2, 0);
520 if (WSAStartup(winsock_ver, &wsadata)) {
521 MessageBox(NULL, "Unable to initialise WinSock", "WinSock Error",
522 MB_OK | MB_ICONEXCLAMATION);
523 return 1;
524 }
525 if (LOBYTE(wsadata.wVersion) != 2 || HIBYTE(wsadata.wVersion) != 0) {
526 MessageBox(NULL, "WinSock version is incompatible with 2.0",
527 "WinSock Error", MB_OK | MB_ICONEXCLAMATION);
528 WSACleanup();
529 return 1;
530 }
531 sk_init();
532
533 /*
534 * Start up the connection.
535 */
536 netevent = CreateEvent(NULL, FALSE, FALSE, NULL);
537 {
538 char *error;
539 char *realhost;
540 /* nodelay is only useful if stdin is a character device (console) */
541 int nodelay = cfg.tcp_nodelay &&
542 (GetFileType(GetStdHandle(STD_INPUT_HANDLE)) == FILE_TYPE_CHAR);
543
544 error = back->init(NULL, &backhandle, cfg.host, cfg.port,
545 &realhost, nodelay);
546 if (error) {
547 fprintf(stderr, "Unable to open connection:\n%s", error);
548 return 1;
549 }
550 logctx = log_init(NULL);
551 back->provide_logctx(backhandle, logctx);
552 sfree(realhost);
553 }
554 connopen = 1;
555
556 stdinevent = CreateEvent(NULL, FALSE, FALSE, NULL);
557 stdoutevent = CreateEvent(NULL, FALSE, FALSE, NULL);
558 stderrevent = CreateEvent(NULL, FALSE, FALSE, NULL);
559
560 inhandle = GetStdHandle(STD_INPUT_HANDLE);
561 outhandle = GetStdHandle(STD_OUTPUT_HANDLE);
562 errhandle = GetStdHandle(STD_ERROR_HANDLE);
563 GetConsoleMode(inhandle, &orig_console_mode);
564 SetConsoleMode(inhandle, ENABLE_PROCESSED_INPUT);
565
566 /*
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 */
571 handles[0] = netevent;
572 handles[1] = stdinevent;
573 handles[2] = stdoutevent;
574 handles[3] = stderrevent;
575 sending = FALSE;
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");
588 cleanup_exit(1);
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");
597 cleanup_exit(1);
598 }
599
600 while (1) {
601 int n;
602
603 if (!sending && back->sendok(backhandle)) {
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,
623 &idata, 0, &in_threadid)) {
624 fprintf(stderr, "Unable to create input thread\n");
625 cleanup_exit(1);
626 }
627 sending = TRUE;
628 }
629
630 n = WaitForMultipleObjects(4, handles, FALSE, INFINITE);
631 if (n == 0) {
632 WSANETWORKEVENTS things;
633 SOCKET socket;
634 extern SOCKET first_socket(int *), next_socket(int *);
635 extern int select_result(WPARAM, LPARAM);
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;
660 socket = next_socket(&socketstate)) {
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;
669 if (!WSAEnumNetworkEvents(socket, NULL, &things)) {
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
680 noise_ultralight(socket);
681 noise_ultralight(things.lNetworkEvents);
682
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 }
690 }
691 }
692 } else if (n == 1) {
693 reading = 0;
694 noise_ultralight(idata.len);
695 if (connopen && back->socket(backhandle) != NULL) {
696 if (idata.len > 0) {
697 back->send(backhandle, idata.buffer, idata.len);
698 } else {
699 back->special(backhandle, TS_EOF);
700 }
701 }
702 } else if (n == 2) {
703 odata.busy = 0;
704 if (!odata.writeret) {
705 fprintf(stderr, "Unable to write to standard output\n");
706 cleanup_exit(0);
707 }
708 bufchain_consume(&stdout_data, odata.lenwritten);
709 if (bufchain_size(&stdout_data) > 0)
710 try_output(0);
711 if (connopen && back->socket(backhandle) != NULL) {
712 back->unthrottle(backhandle, bufchain_size(&stdout_data) +
713 bufchain_size(&stderr_data));
714 }
715 } else if (n == 3) {
716 edata.busy = 0;
717 if (!edata.writeret) {
718 fprintf(stderr, "Unable to write to standard output\n");
719 cleanup_exit(0);
720 }
721 bufchain_consume(&stderr_data, edata.lenwritten);
722 if (bufchain_size(&stderr_data) > 0)
723 try_output(1);
724 if (connopen && back->socket(backhandle) != NULL) {
725 back->unthrottle(backhandle, bufchain_size(&stdout_data) +
726 bufchain_size(&stderr_data));
727 }
728 }
729 if (!reading && back->sendbuffer(backhandle) < MAX_STDIN_BACKLOG) {
730 SetEvent(idata.eventback);
731 reading = 1;
732 }
733 if ((!connopen || back->socket(backhandle) == NULL) &&
734 bufchain_size(&stdout_data) == 0 &&
735 bufchain_size(&stderr_data) == 0)
736 break; /* we closed the connection */
737 }
738 WSACleanup();
739 exitcode = back->exitcode(backhandle);
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;
745 }