Centralise calls to fcntl into functions that carefully check the
[u/mdw/putty] / unix / uxplink.c
CommitLineData
c5e438ec 1/*
2 * PLink - a command-line (stdin/stdout) variant of PuTTY.
3 */
4
5#include <stdio.h>
6#include <stdlib.h>
5673d44e 7#include <errno.h>
c5e438ec 8#include <assert.h>
9#include <stdarg.h>
5673d44e 10#include <signal.h>
c5e438ec 11#include <unistd.h>
12#include <fcntl.h>
13#include <termios.h>
5a9eb105 14#include <pwd.h>
15#include <sys/ioctl.h>
154c73d5 16#include <sys/time.h>
17#ifndef HAVE_NO_SYS_SELECT_H
2a6848cc 18#include <sys/select.h>
154c73d5 19#endif
c5e438ec 20
c5e438ec 21#define PUTTY_DO_GLOBALS /* actually _define_ globals */
22#include "putty.h"
23#include "storage.h"
24#include "tree234.h"
25
26#define MAX_STDIN_BACKLOG 4096
27
7bfc5fd0 28void *logctx;
29
f7397dc6 30static struct termios orig_termios;
31
c5e438ec 32void fatalbox(char *p, ...)
33{
f7397dc6 34 struct termios cf;
c5e438ec 35 va_list ap;
f7397dc6 36 premsg(&cf);
c5e438ec 37 fprintf(stderr, "FATAL ERROR: ");
38 va_start(ap, p);
39 vfprintf(stderr, p, ap);
40 va_end(ap);
41 fputc('\n', stderr);
f7397dc6 42 postmsg(&cf);
7bfc5fd0 43 if (logctx) {
44 log_free(logctx);
45 logctx = NULL;
46 }
c5e438ec 47 cleanup_exit(1);
48}
49void modalfatalbox(char *p, ...)
50{
f7397dc6 51 struct termios cf;
c5e438ec 52 va_list ap;
f7397dc6 53 premsg(&cf);
c5e438ec 54 fprintf(stderr, "FATAL ERROR: ");
55 va_start(ap, p);
56 vfprintf(stderr, p, ap);
57 va_end(ap);
58 fputc('\n', stderr);
f7397dc6 59 postmsg(&cf);
7bfc5fd0 60 if (logctx) {
61 log_free(logctx);
62 logctx = NULL;
63 }
c5e438ec 64 cleanup_exit(1);
65}
33f4bde2 66void nonfatal(char *p, ...)
67{
68 struct termios cf;
69 va_list ap;
70 premsg(&cf);
71 fprintf(stderr, "ERROR: ");
72 va_start(ap, p);
73 vfprintf(stderr, p, ap);
74 va_end(ap);
75 fputc('\n', stderr);
76 postmsg(&cf);
77 if (logctx) {
78 log_free(logctx);
79 logctx = NULL;
80 }
81}
c5e438ec 82void connection_fatal(void *frontend, char *p, ...)
83{
f7397dc6 84 struct termios cf;
c5e438ec 85 va_list ap;
f7397dc6 86 premsg(&cf);
c5e438ec 87 fprintf(stderr, "FATAL ERROR: ");
88 va_start(ap, p);
89 vfprintf(stderr, p, ap);
90 va_end(ap);
91 fputc('\n', stderr);
f7397dc6 92 postmsg(&cf);
7bfc5fd0 93 if (logctx) {
94 log_free(logctx);
95 logctx = NULL;
96 }
c5e438ec 97 cleanup_exit(1);
98}
99void cmdline_error(char *p, ...)
100{
f7397dc6 101 struct termios cf;
c5e438ec 102 va_list ap;
f7397dc6 103 premsg(&cf);
c5e438ec 104 fprintf(stderr, "plink: ");
105 va_start(ap, p);
106 vfprintf(stderr, p, ap);
107 va_end(ap);
108 fputc('\n', stderr);
f7397dc6 109 postmsg(&cf);
c5e438ec 110 exit(1);
111}
112
21226fd7 113static int local_tty = FALSE; /* do we have a local tty? */
c5e438ec 114
115static Backend *back;
116static void *backhandle;
4a693cfc 117static Conf *conf;
c5e438ec 118
5a9eb105 119/*
120 * Default settings that are specific to pterm.
121 */
c85623f9 122char *platform_default_s(const char *name)
5a9eb105 123{
5a9eb105 124 if (!strcmp(name, "TermType"))
799dfcfa 125 return dupstr(getenv("TERM"));
42af6a67 126 if (!strcmp(name, "UserName"))
127 return get_username();
aef05b78 128 if (!strcmp(name, "SerialLine"))
129 return dupstr("/dev/ttyS0");
5a9eb105 130 return NULL;
131}
132
c85623f9 133int platform_default_i(const char *name, int def)
5a9eb105 134{
5a9eb105 135 return def;
136}
137
ae62eaeb 138FontSpec *platform_default_fontspec(const char *name)
9a30e26b 139{
ae62eaeb 140 return fontspec_new("");
9a30e26b 141}
142
962468d4 143Filename *platform_default_filename(const char *name)
9a30e26b 144{
9a30e26b 145 if (!strcmp(name, "LogFileName"))
962468d4 146 return filename_from_str("putty.log");
9a30e26b 147 else
962468d4 148 return filename_from_str("");
9a30e26b 149}
150
c85623f9 151char *x_get_default(const char *key)
c5e438ec 152{
153 return NULL; /* this is a stub */
154}
155int term_ldisc(Terminal *term, int mode)
156{
157 return FALSE;
158}
159void ldisc_update(void *frontend, int echo, int edit)
160{
161 /* Update stdin read mode to reflect changes in line discipline. */
162 struct termios mode;
163
c6ccd5c2 164 if (!local_tty) return;
165
c5e438ec 166 mode = orig_termios;
167
168 if (echo)
169 mode.c_lflag |= ECHO;
170 else
171 mode.c_lflag &= ~ECHO;
172
8cdf0e5f 173 if (edit) {
174 mode.c_iflag |= ICRNL;
c5e438ec 175 mode.c_lflag |= ISIG | ICANON;
e8269d30 176 mode.c_oflag |= OPOST;
8cdf0e5f 177 } else {
178 mode.c_iflag &= ~ICRNL;
c5e438ec 179 mode.c_lflag &= ~(ISIG | ICANON);
e8269d30 180 mode.c_oflag &= ~OPOST;
c6ccd5c2 181 /* Solaris sets these to unhelpful values */
259d0428 182 mode.c_cc[VMIN] = 1;
183 mode.c_cc[VTIME] = 0;
c6ccd5c2 184 /* FIXME: perhaps what we do with IXON/IXOFF should be an
185 * argument to ldisc_update(), to allow implementation of SSH-2
186 * "xon-xoff" and Rlogin's equivalent? */
187 mode.c_iflag &= ~IXON;
188 mode.c_iflag &= ~IXOFF;
8cdf0e5f 189 }
d0cb8c0c 190 /*
191 * Mark parity errors and (more important) BREAK on input. This
192 * is more complex than it need be because POSIX-2001 suggests
193 * that escaping of valid 0xff in the input stream is dependent on
194 * IGNPAR being clear even though marking of BREAK isn't. NetBSD
195 * 2.0 goes one worse and makes it dependent on INPCK too. We
196 * deal with this by forcing these flags into a useful state and
197 * then faking the state in which we found them in from_tty() if
198 * we get passed a parity or framing error.
199 */
200 mode.c_iflag = (mode.c_iflag | INPCK | PARMRK) & ~IGNPAR;
c5e438ec 201
21226fd7 202 tcsetattr(STDIN_FILENO, TCSANOW, &mode);
c5e438ec 203}
204
c6ccd5c2 205/* Helper function to extract a special character from a termios. */
206static char *get_ttychar(struct termios *t, int index)
207{
208 cc_t c = t->c_cc[index];
209#if defined(_POSIX_VDISABLE)
210 if (c == _POSIX_VDISABLE)
211 return dupprintf("");
212#endif
213 return dupprintf("^<%d>", c);
214}
215
216char *get_ttymode(void *frontend, const char *mode)
217{
218 /*
219 * Propagate appropriate terminal modes from the local terminal,
220 * if any.
221 */
222 if (!local_tty) return NULL;
223
224#define GET_CHAR(ourname, uxname) \
225 do { \
226 if (strcmp(mode, ourname) == 0) \
227 return get_ttychar(&orig_termios, uxname); \
228 } while(0)
229#define GET_BOOL(ourname, uxname, uxmemb, transform) \
230 do { \
231 if (strcmp(mode, ourname) == 0) { \
232 int b = (orig_termios.uxmemb & uxname) != 0; \
233 transform; \
234 return dupprintf("%d", b); \
235 } \
236 } while (0)
237
238 /*
239 * Modes that want to be the same on all terminal devices involved.
240 */
241 /* All the special characters supported by SSH */
242#if defined(VINTR)
243 GET_CHAR("INTR", VINTR);
244#endif
245#if defined(VQUIT)
246 GET_CHAR("QUIT", VQUIT);
247#endif
248#if defined(VERASE)
249 GET_CHAR("ERASE", VERASE);
250#endif
251#if defined(VKILL)
252 GET_CHAR("KILL", VKILL);
253#endif
254#if defined(VEOF)
255 GET_CHAR("EOF", VEOF);
256#endif
257#if defined(VEOL)
258 GET_CHAR("EOL", VEOL);
259#endif
260#if defined(VEOL2)
261 GET_CHAR("EOL2", VEOL2);
262#endif
263#if defined(VSTART)
264 GET_CHAR("START", VSTART);
265#endif
266#if defined(VSTOP)
267 GET_CHAR("STOP", VSTOP);
268#endif
269#if defined(VSUSP)
270 GET_CHAR("SUSP", VSUSP);
271#endif
272#if defined(VDSUSP)
273 GET_CHAR("DSUSP", VDSUSP);
274#endif
275#if defined(VREPRINT)
276 GET_CHAR("REPRINT", VREPRINT);
277#endif
278#if defined(VWERASE)
279 GET_CHAR("WERASE", VWERASE);
280#endif
281#if defined(VLNEXT)
282 GET_CHAR("LNEXT", VLNEXT);
283#endif
284#if defined(VFLUSH)
285 GET_CHAR("FLUSH", VFLUSH);
286#endif
287#if defined(VSWTCH)
288 GET_CHAR("SWTCH", VSWTCH);
289#endif
290#if defined(VSTATUS)
291 GET_CHAR("STATUS", VSTATUS);
292#endif
293#if defined(VDISCARD)
294 GET_CHAR("DISCARD", VDISCARD);
295#endif
296 /* Modes that "configure" other major modes. These should probably be
297 * considered as user preferences. */
298 /* Configuration of ICANON */
299#if defined(ECHOK)
300 GET_BOOL("ECHOK", ECHOK, c_lflag, );
301#endif
302#if defined(ECHOKE)
303 GET_BOOL("ECHOKE", ECHOKE, c_lflag, );
304#endif
305#if defined(ECHOE)
306 GET_BOOL("ECHOE", ECHOE, c_lflag, );
307#endif
308#if defined(ECHONL)
309 GET_BOOL("ECHONL", ECHONL, c_lflag, );
310#endif
311#if defined(XCASE)
312 GET_BOOL("XCASE", XCASE, c_lflag, );
313#endif
314 /* Configuration of ECHO */
315#if defined(ECHOCTL)
316 GET_BOOL("ECHOCTL", ECHOCTL, c_lflag, );
317#endif
318 /* Configuration of IXON/IXOFF */
319#if defined(IXANY)
320 GET_BOOL("IXANY", IXANY, c_iflag, );
321#endif
e8269d30 322 /* Configuration of OPOST */
7016cde4 323#if defined(OLCUC)
324 GET_BOOL("OLCUC", OLCUC, c_oflag, );
325#endif
e8269d30 326#if defined(ONLCR)
327 GET_BOOL("ONLCR", ONLCR, c_oflag, );
328#endif
329#if defined(OCRNL)
330 GET_BOOL("OCRNL", OCRNL, c_oflag, );
331#endif
332#if defined(ONOCR)
333 GET_BOOL("ONOCR", ONOCR, c_oflag, );
334#endif
20923089 335#if defined(ONLRET)
e8269d30 336 GET_BOOL("ONLRET", ONLRET, c_oflag, );
337#endif
c6ccd5c2 338
339 /*
340 * Modes that want to be set in only one place, and that we have
341 * squashed locally.
342 */
343#if defined(ISIG)
344 GET_BOOL("ISIG", ISIG, c_lflag, );
345#endif
346#if defined(ICANON)
347 GET_BOOL("ICANON", ICANON, c_lflag, );
348#endif
349#if defined(ECHO)
350 GET_BOOL("ECHO", ECHO, c_lflag, );
351#endif
352#if defined(IXON)
353 GET_BOOL("IXON", IXON, c_iflag, );
354#endif
355#if defined(IXOFF)
356 GET_BOOL("IXOFF", IXOFF, c_iflag, );
357#endif
e8269d30 358#if defined(OPOST)
359 GET_BOOL("OPOST", OPOST, c_oflag, );
360#endif
c6ccd5c2 361
362 /*
363 * We do not propagate the following modes:
364 * - Parity/serial settings, which are a local affair and don't
365 * make sense propagated over SSH's 8-bit byte-stream.
366 * IGNPAR PARMRK INPCK CS7 CS8 PARENB PARODD
367 * - Things that want to be enabled in one place that we don't
368 * squash locally.
7016cde4 369 * IUCLC
c6ccd5c2 370 * - Status bits.
371 * PENDIN
372 * - Things I don't know what to do with. (FIXME)
e8269d30 373 * ISTRIP IMAXBEL NOFLSH TOSTOP IEXTEN
374 * INLCR IGNCR ICRNL
c6ccd5c2 375 */
376
377#undef GET_CHAR
378#undef GET_BOOL
379
380 /* Fall through to here for unrecognised names, or ones that are
381 * unsupported on this platform */
382 return NULL;
383}
384
c5e438ec 385void cleanup_termios(void)
386{
c6ccd5c2 387 if (local_tty)
21226fd7 388 tcsetattr(STDIN_FILENO, TCSANOW, &orig_termios);
c5e438ec 389}
390
391bufchain stdout_data, stderr_data;
bc06669b 392enum { EOF_NO, EOF_PENDING, EOF_SENT } outgoingeof;
c5e438ec 393
885f465f 394int try_output(int is_stderr)
c5e438ec 395{
396 bufchain *chain = (is_stderr ? &stderr_data : &stdout_data);
21226fd7 397 int fd = (is_stderr ? STDERR_FILENO : STDOUT_FILENO);
c5e438ec 398 void *senddata;
f9520103 399 int sendlen, ret;
c5e438ec 400
bc06669b 401 if (bufchain_size(chain) > 0) {
f9520103 402 int prev_nonblock = nonblock(fd);
bc06669b 403 do {
404 bufchain_prefix(chain, &senddata, &sendlen);
405 ret = write(fd, senddata, sendlen);
406 if (ret > 0)
407 bufchain_consume(chain, ret);
408 } while (ret == sendlen && bufchain_size(chain) != 0);
f9520103 409 if (!prev_nonblock)
410 no_nonblock(fd);
bc06669b 411 if (ret < 0 && errno != EAGAIN) {
412 perror(is_stderr ? "stderr: write" : "stdout: write");
413 exit(1);
414 }
415 }
416 if (outgoingeof == EOF_PENDING && bufchain_size(&stdout_data) == 0) {
417 close(STDOUT_FILENO);
418 outgoingeof = EOF_SENT;
c5e438ec 419 }
885f465f 420 return bufchain_size(&stdout_data) + bufchain_size(&stderr_data);
c5e438ec 421}
422
9fab77dc 423int from_backend(void *frontend_handle, int is_stderr,
424 const char *data, int len)
c5e438ec 425{
c5e438ec 426 if (is_stderr) {
427 bufchain_add(&stderr_data, data, len);
885f465f 428 return try_output(TRUE);
c5e438ec 429 } else {
bc06669b 430 assert(outgoingeof == EOF_NO);
c5e438ec 431 bufchain_add(&stdout_data, data, len);
885f465f 432 return try_output(FALSE);
c5e438ec 433 }
c5e438ec 434}
435
edd0cb8a 436int from_backend_untrusted(void *frontend_handle, const char *data, int len)
437{
438 /*
439 * No "untrusted" output should get here (the way the code is
440 * currently, it's all diverted by FLAG_STDERR).
441 */
442 assert(!"Unexpected call to from_backend_untrusted()");
443 return 0; /* not reached */
444}
445
bc06669b 446int from_backend_eof(void *frontend_handle)
447{
448 assert(outgoingeof == EOF_NO);
449 outgoingeof = EOF_PENDING;
450 try_output(FALSE);
451 return FALSE; /* do not respond to incoming EOF with outgoing */
452}
453
edd0cb8a 454int get_userpass_input(prompts_t *p, unsigned char *in, int inlen)
455{
456 int ret;
457 ret = cmdline_get_passwd_input(p, in, inlen);
458 if (ret == -1)
459 ret = console_get_userpass_input(p, in, inlen);
460 return ret;
461}
462
d0cb8c0c 463/*
464 * Handle data from a local tty in PARMRK format.
465 */
deb0e1cf 466static void from_tty(void *vbuf, unsigned len)
d0cb8c0c 467{
deb0e1cf 468 char *p, *q, *end, *buf = vbuf;
d0cb8c0c 469 static enum {NORMAL, FF, FF00} state = NORMAL;
470
471 p = buf; end = buf + len;
472 while (p < end) {
473 switch (state) {
474 case NORMAL:
475 if (*p == '\xff') {
476 p++;
477 state = FF;
478 } else {
479 q = memchr(p, '\xff', end - p);
480 if (q == NULL) q = end;
481 back->send(backhandle, p, q - p);
482 p = q;
483 }
484 break;
485 case FF:
486 if (*p == '\xff') {
487 back->send(backhandle, p, 1);
488 p++;
489 state = NORMAL;
490 } else if (*p == '\0') {
491 p++;
492 state = FF00;
493 } else abort();
494 break;
495 case FF00:
496 if (*p == '\0') {
497 back->special(backhandle, TS_BRK);
498 } else {
499 /*
500 * Pretend that PARMRK wasn't set. This involves
501 * faking what INPCK and IGNPAR would have done if
502 * we hadn't overridden them. Unfortunately, we
503 * can't do this entirely correctly because INPCK
504 * distinguishes between framing and parity
505 * errors, but PARMRK format represents both in
506 * the same way. We assume that parity errors are
507 * more common than framing errors, and hence
508 * treat all input errors as being subject to
509 * INPCK.
510 */
511 if (orig_termios.c_iflag & INPCK) {
512 /* If IGNPAR is set, we throw away the character. */
513 if (!(orig_termios.c_iflag & IGNPAR)) {
514 /* PE/FE get passed on as NUL. */
515 *p = 0;
516 back->send(backhandle, p, 1);
517 }
518 } else {
519 /* INPCK not set. Assume we got a parity error. */
520 back->send(backhandle, p, 1);
521 }
522 }
523 p++;
524 state = NORMAL;
525 }
526 }
527}
528
5673d44e 529int signalpipe[2];
530
531void sigwinch(int signum)
532{
ecb25722 533 if (write(signalpipe[1], "x", 1) <= 0)
534 /* not much we can do about it */;
5673d44e 535}
536
c5e438ec 537/*
74aca06d 538 * In Plink our selects are synchronous, so these functions are
539 * empty stubs.
540 */
541int uxsel_input_add(int fd, int rwx) { return 0; }
542void uxsel_input_remove(int id) { }
543
544/*
c5e438ec 545 * Short description of parameters.
546 */
547static void usage(void)
548{
549 printf("PuTTY Link: command-line connection utility\n");
550 printf("%s\n", ver);
551 printf("Usage: plink [options] [user@]host [command]\n");
552 printf(" (\"host\" can also be a PuTTY saved session name)\n");
553 printf("Options:\n");
2285d016 554 printf(" -V print version information and exit\n");
555 printf(" -pgpfp print PGP key fingerprints and exit\n");
c5e438ec 556 printf(" -v show verbose messages\n");
557 printf(" -load sessname Load settings from saved session\n");
f41f07bc 558 printf(" -ssh -telnet -rlogin -raw -serial\n");
afd4d0d2 559 printf(" force use of a particular protocol\n");
c5e438ec 560 printf(" -P port connect to specified port\n");
561 printf(" -l user connect with specified username\n");
c5e438ec 562 printf(" -batch disable all interactive prompts\n");
563 printf("The following options only apply to SSH connections:\n");
564 printf(" -pw passw login with specified password\n");
dbe6c525 565 printf(" -D [listen-IP:]listen-port\n");
566 printf(" Dynamic SOCKS-based port forwarding\n");
567 printf(" -L [listen-IP:]listen-port:host:port\n");
568 printf(" Forward local port to remote address\n");
569 printf(" -R [listen-IP:]listen-port:host:port\n");
570 printf(" Forward remote port to local address\n");
c5e438ec 571 printf(" -X -x enable / disable X11 forwarding\n");
572 printf(" -A -a enable / disable agent forwarding\n");
573 printf(" -t -T enable / disable pty allocation\n");
574 printf(" -1 -2 force use of particular protocol version\n");
05581745 575 printf(" -4 -6 force use of IPv4 or IPv6\n");
c5e438ec 576 printf(" -C enable compression\n");
577 printf(" -i key private key file for authentication\n");
e5708bc7 578 printf(" -noagent disable use of Pageant\n");
579 printf(" -agent enable use of Pageant\n");
54018d95 580 printf(" -m file read remote command(s) from file\n");
09bdfcbb 581 printf(" -s remote command is an SSH subsystem (SSH-2 only)\n");
b72c366d 582 printf(" -N don't start a shell/command (SSH-2 only)\n");
23828b7e 583 printf(" -nc host:port\n");
584 printf(" open tunnel in place of session (SSH-2 only)\n");
9621bbab 585 printf(" -sercfg configuration-string (e.g. 19200,8,n,1,X)\n");
586 printf(" Specify the serial configuration (serial only)\n");
dc108ebc 587 exit(1);
588}
589
590static void version(void)
591{
592 printf("plink: %s\n", ver);
c5e438ec 593 exit(1);
594}
595
43a1c4a4 596void frontend_net_error_pending(void) {}
597
c5e438ec 598int main(int argc, char **argv)
599{
600 int sending;
601 int portnumber = -1;
0ff9ea38 602 int *fdlist;
603 int fd;
604 int i, fdcount, fdsize, fdstate;
c5e438ec 605 int connopen;
606 int exitcode;
86256dc6 607 int errors;
09bdfcbb 608 int use_subsystem = 0;
f0f51e90 609 int got_host = FALSE;
d719927e 610 unsigned long now;
679db585 611 struct winsize size;
c5e438ec 612
0ff9ea38 613 fdlist = NULL;
614 fdcount = fdsize = 0;
c5e438ec 615 /*
616 * Initialise port and protocol to sensible defaults. (These
617 * will be overridden by more or less anything.)
618 */
619 default_protocol = PROT_SSH;
620 default_port = 22;
621
bc06669b 622 bufchain_init(&stdout_data);
623 bufchain_init(&stderr_data);
624 outgoingeof = EOF_NO;
625
f7397dc6 626 flags = FLAG_STDERR | FLAG_STDERR_TTY;
627
628 stderr_tty_init();
c5e438ec 629 /*
630 * Process the command line.
631 */
4a693cfc 632 conf = conf_new();
633 do_defaults(NULL, conf);
18e62ad8 634 loaded_session = FALSE;
4a693cfc 635 default_protocol = conf_get_int(conf, CONF_protocol);
636 default_port = conf_get_int(conf, CONF_port);
86256dc6 637 errors = 0;
c5e438ec 638 {
639 /*
640 * Override the default protocol if PLINK_PROTOCOL is set.
641 */
642 char *p = getenv("PLINK_PROTOCOL");
c5e438ec 643 if (p) {
9e164d82 644 const Backend *b = backend_from_name(p);
645 if (b) {
4a693cfc 646 default_protocol = b->protocol;
647 default_port = b->default_port;
648 conf_set_int(conf, CONF_protocol, default_protocol);
649 conf_set_int(conf, CONF_port, default_port);
c5e438ec 650 }
651 }
652 }
653 while (--argc) {
654 char *p = *++argv;
655 if (*p == '-') {
9b41d3a8 656 int ret = cmdline_process_param(p, (argc > 1 ? argv[1] : NULL),
4a693cfc 657 1, conf);
c5e438ec 658 if (ret == -2) {
659 fprintf(stderr,
660 "plink: option \"%s\" requires an argument\n", p);
86256dc6 661 errors = 1;
c5e438ec 662 } else if (ret == 2) {
663 --argc, ++argv;
664 } else if (ret == 1) {
665 continue;
666 } else if (!strcmp(p, "-batch")) {
667 console_batch_mode = 1;
09bdfcbb 668 } else if (!strcmp(p, "-s")) {
4a693cfc 669 /* Save status to write to conf later. */
09bdfcbb 670 use_subsystem = 1;
bcb1823f 671 } else if (!strcmp(p, "-V") || !strcmp(p, "--version")) {
dc108ebc 672 version();
bcb1823f 673 } else if (!strcmp(p, "--help")) {
674 usage();
675 exit(0);
2285d016 676 } else if (!strcmp(p, "-pgpfp")) {
677 pgp_fingerprints();
678 exit(1);
a0e5ed33 679 } else if (!strcmp(p, "-o")) {
86256dc6 680 if (argc <= 1) {
a0e5ed33 681 fprintf(stderr,
682 "plink: option \"-o\" requires an argument\n");
86256dc6 683 errors = 1;
684 } else {
685 --argc;
686 provide_xrm_string(*++argv);
687 }
688 } else {
689 fprintf(stderr, "plink: unknown option \"%s\"\n", p);
690 errors = 1;
c5e438ec 691 }
692 } else if (*p) {
4a693cfc 693 if (!conf_launchable(conf) || !(got_host || loaded_session)) {
c5e438ec 694 char *q = p;
a0e5ed33 695
c5e438ec 696 /*
697 * If the hostname starts with "telnet:", set the
698 * protocol to Telnet and process the string as a
699 * Telnet URL.
700 */
701 if (!strncmp(q, "telnet:", 7)) {
702 char c;
703
704 q += 7;
705 if (q[0] == '/' && q[1] == '/')
706 q += 2;
4a693cfc 707 conf_set_int(conf, CONF_protocol, PROT_TELNET);
c5e438ec 708 p = q;
709 while (*p && *p != ':' && *p != '/')
710 p++;
711 c = *p;
712 if (*p)
713 *p++ = '\0';
714 if (c == ':')
4a693cfc 715 conf_set_int(conf, CONF_port, atoi(p));
c5e438ec 716 else
4a693cfc 717 conf_set_int(conf, CONF_port, -1);
718 conf_set_str(conf, CONF_host, q);
f0f51e90 719 got_host = TRUE;
c5e438ec 720 } else {
3608528b 721 char *r, *user, *host;
c5e438ec 722 /*
723 * Before we process the [user@]host string, we
724 * first check for the presence of a protocol
725 * prefix (a protocol name followed by ",").
726 */
727 r = strchr(p, ',');
728 if (r) {
9e164d82 729 const Backend *b;
730 *r = '\0';
731 b = backend_from_name(p);
732 if (b) {
4a693cfc 733 default_protocol = b->protocol;
734 conf_set_int(conf, CONF_protocol,
735 default_protocol);
9e164d82 736 portnumber = b->default_port;
c5e438ec 737 }
9e164d82 738 p = r + 1;
c5e438ec 739 }
740
741 /*
3608528b 742 * A nonzero length string followed by an @ is treated
743 * as a username. (We discount an _initial_ @.) The
744 * rest of the string (or the whole string if no @)
745 * is treated as a session name and/or hostname.
c5e438ec 746 */
747 r = strrchr(p, '@');
748 if (r == p)
749 p++, r = NULL; /* discount initial @ */
3608528b 750 if (r) {
751 *r++ = '\0';
752 user = p, host = r;
753 } else {
754 user = NULL, host = p;
755 }
756
757 /*
758 * Now attempt to load a saved session with the
759 * same name as the hostname.
760 */
761 {
4a693cfc 762 Conf *conf2 = conf_new();
763 do_defaults(host, conf2);
764 if (loaded_session || !conf_launchable(conf2)) {
c5e438ec 765 /* No settings for this host; use defaults */
18e62ad8 766 /* (or session was already loaded with -load) */
4a693cfc 767 conf_set_str(conf, CONF_host, host);
768 conf_set_int(conf, CONF_port, default_port);
f0f51e90 769 got_host = TRUE;
c5e438ec 770 } else {
4a693cfc 771 conf_copy_into(conf, conf2);
f0f51e90 772 loaded_session = TRUE;
c5e438ec 773 }
4a693cfc 774 conf_free(conf2);
3608528b 775 }
776
777 if (user) {
778 /* Patch in specified username. */
4a693cfc 779 conf_set_str(conf, CONF_username, user);
c5e438ec 780 }
3608528b 781
c5e438ec 782 }
783 } else {
784 char *command;
785 int cmdlen, cmdsize;
786 cmdlen = cmdsize = 0;
787 command = NULL;
788
789 while (argc) {
790 while (*p) {
791 if (cmdlen >= cmdsize) {
792 cmdsize = cmdlen + 512;
3d88e64d 793 command = sresize(command, cmdsize, char);
c5e438ec 794 }
795 command[cmdlen++]=*p++;
796 }
797 if (cmdlen >= cmdsize) {
798 cmdsize = cmdlen + 512;
3d88e64d 799 command = sresize(command, cmdsize, char);
c5e438ec 800 }
801 command[cmdlen++]=' '; /* always add trailing space */
802 if (--argc) p = *++argv;
803 }
804 if (cmdlen) command[--cmdlen]='\0';
805 /* change trailing blank to NUL */
4a693cfc 806 conf_set_str(conf, CONF_remote_cmd, command);
807 conf_set_str(conf, CONF_remote_cmd2, "");
808 conf_set_int(conf, CONF_nopty, TRUE); /* command => no tty */
c5e438ec 809
810 break; /* done with cmdline */
811 }
812 }
813 }
814
86256dc6 815 if (errors)
816 return 1;
817
4a693cfc 818 if (!conf_launchable(conf) || !(got_host || loaded_session)) {
c5e438ec 819 usage();
820 }
821
822 /*
4a693cfc 823 * Muck about with the hostname in various ways.
c5e438ec 824 */
825 {
4a693cfc 826 char *hostbuf = dupstr(conf_get_str(conf, CONF_host));
827 char *host = hostbuf;
828 char *p, *q;
829
830 /*
831 * Trim leading whitespace.
832 */
833 host += strspn(host, " \t");
c5e438ec 834
4a693cfc 835 /*
836 * See if host is of the form user@host, and separate out
837 * the username if so.
838 */
839 if (host[0] != '\0') {
840 char *atsign = strrchr(host, '@');
841 if (atsign) {
842 *atsign = '\0';
843 conf_set_str(conf, CONF_username, host);
844 host = atsign + 1;
c5e438ec 845 }
c5e438ec 846 }
4a693cfc 847
848 /*
849 * Trim off a colon suffix if it's there.
850 */
851 host[strcspn(host, ":")] = '\0';
852
853 /*
854 * Remove any remaining whitespace.
855 */
856 p = hostbuf;
857 q = host;
858 while (*q) {
859 if (*q != ' ' && *q != '\t')
860 *p++ = *q;
861 q++;
862 }
863 *p = '\0';
864
865 conf_set_str(conf, CONF_host, hostbuf);
866 sfree(hostbuf);
c5e438ec 867 }
868
869 /*
870 * Perform command-line overrides on session configuration.
871 */
4a693cfc 872 cmdline_run_saved(conf);
c5e438ec 873
874 /*
09bdfcbb 875 * Apply subsystem status.
876 */
877 if (use_subsystem)
4a693cfc 878 conf_set_int(conf, CONF_ssh_subsys, TRUE);
c5e438ec 879
4a693cfc 880 if (!*conf_get_str(conf, CONF_remote_cmd) &&
881 !*conf_get_str(conf, CONF_remote_cmd2) &&
882 !*conf_get_str(conf, CONF_ssh_nc_host))
c5e438ec 883 flags |= FLAG_INTERACTIVE;
884
885 /*
886 * Select protocol. This is farmed out into a table in a
887 * separate file to enable an ssh-free variant.
888 */
4a693cfc 889 back = backend_from_proto(conf_get_int(conf, CONF_protocol));
9e164d82 890 if (back == NULL) {
891 fprintf(stderr,
892 "Internal fault: Unsupported protocol found\n");
893 return 1;
c5e438ec 894 }
895
896 /*
897 * Select port.
898 */
899 if (portnumber != -1)
4a693cfc 900 conf_set_int(conf, CONF_port, portnumber);
c5e438ec 901
5673d44e 902 /*
1f39cbd0 903 * Block SIGPIPE, so that we'll get EPIPE individually on
904 * particular network connections that go wrong.
905 */
906 putty_signal(SIGPIPE, SIG_IGN);
907
908 /*
5673d44e 909 * Set up the pipe we'll use to tell us about SIGWINCH.
910 */
911 if (pipe(signalpipe) < 0) {
912 perror("pipe");
913 exit(1);
914 }
915 putty_signal(SIGWINCH, sigwinch);
916
679db585 917 /*
918 * Now that we've got the SIGWINCH handler installed, try to find
919 * out the initial terminal size.
920 */
921 if (ioctl(STDIN_FILENO, TIOCGWINSZ, &size) >= 0) {
922 conf_set_int(conf, CONF_width, size.ws_col);
923 conf_set_int(conf, CONF_height, size.ws_row);
924 }
925
c5e438ec 926 sk_init();
0ff9ea38 927 uxsel_init();
c5e438ec 928
929 /*
61f62bb3 930 * Unix Plink doesn't provide any way to add forwardings after the
931 * connection is set up, so if there are none now, we can safely set
932 * the "simple" flag.
933 */
4a693cfc 934 if (conf_get_int(conf, CONF_protocol) == PROT_SSH &&
935 !conf_get_int(conf, CONF_x11_forward) &&
936 !conf_get_int(conf, CONF_agentfwd) &&
937 !conf_get_str_nthstrkey(conf, CONF_portfwd, 0))
938 conf_set_int(conf, CONF_ssh_simple, TRUE);
939
61f62bb3 940 /*
c5e438ec 941 * Start up the connection.
942 */
4a693cfc 943 logctx = log_init(NULL, conf);
b51259f6 944 console_provide_logctx(logctx);
c5e438ec 945 {
cbe2d68f 946 const char *error;
c5e438ec 947 char *realhost;
948 /* nodelay is only useful if stdin is a terminal device */
4a693cfc 949 int nodelay = conf_get_int(conf, CONF_tcp_nodelay) && isatty(0);
c5e438ec 950
4a693cfc 951 error = back->init(NULL, &backhandle, conf,
952 conf_get_str(conf, CONF_host),
953 conf_get_int(conf, CONF_port),
954 &realhost, nodelay,
955 conf_get_int(conf, CONF_tcp_keepalives));
c5e438ec 956 if (error) {
984992ef 957 fprintf(stderr, "Unable to open connection:\n%s\n", error);
c5e438ec 958 return 1;
959 }
c5e438ec 960 back->provide_logctx(backhandle, logctx);
4a693cfc 961 ldisc_create(conf, NULL, back, backhandle, NULL);
c5e438ec 962 sfree(realhost);
963 }
964 connopen = 1;
965
966 /*
967 * Set up the initial console mode. We don't care if this call
968 * fails, because we know we aren't necessarily running in a
969 * console.
970 */
21226fd7 971 local_tty = (tcgetattr(STDIN_FILENO, &orig_termios) == 0);
c5e438ec 972 atexit(cleanup_termios);
973 ldisc_update(NULL, 1, 1);
974 sending = FALSE;
39934deb 975 now = GETTICKCOUNT();
c5e438ec 976
977 while (1) {
978 fd_set rset, wset, xset;
979 int maxfd;
980 int rwx;
981 int ret;
982
983 FD_ZERO(&rset);
984 FD_ZERO(&wset);
985 FD_ZERO(&xset);
986 maxfd = 0;
987
5673d44e 988 FD_SET_MAX(signalpipe[0], maxfd, rset);
989
c5e438ec 990 if (connopen && !sending &&
6226c939 991 back->connected(backhandle) &&
c5e438ec 992 back->sendok(backhandle) &&
993 back->sendbuffer(backhandle) < MAX_STDIN_BACKLOG) {
994 /* If we're OK to send, then try to read from stdin. */
21226fd7 995 FD_SET_MAX(STDIN_FILENO, maxfd, rset);
c5e438ec 996 }
997
998 if (bufchain_size(&stdout_data) > 0) {
999 /* If we have data for stdout, try to write to stdout. */
21226fd7 1000 FD_SET_MAX(STDOUT_FILENO, maxfd, wset);
c5e438ec 1001 }
1002
1003 if (bufchain_size(&stderr_data) > 0) {
1004 /* If we have data for stderr, try to write to stderr. */
21226fd7 1005 FD_SET_MAX(STDERR_FILENO, maxfd, wset);
c5e438ec 1006 }
1007
0ff9ea38 1008 /* Count the currently active fds. */
c5e438ec 1009 i = 0;
0ff9ea38 1010 for (fd = first_fd(&fdstate, &rwx); fd >= 0;
1011 fd = next_fd(&fdstate, &rwx)) i++;
c5e438ec 1012
0ff9ea38 1013 /* Expand the fdlist buffer if necessary. */
1014 if (i > fdsize) {
1015 fdsize = i + 16;
1016 fdlist = sresize(fdlist, fdsize, int);
c5e438ec 1017 }
1018
1019 /*
0ff9ea38 1020 * Add all currently open fds to the select sets, and store
1021 * them in fdlist as well.
c5e438ec 1022 */
0ff9ea38 1023 fdcount = 0;
1024 for (fd = first_fd(&fdstate, &rwx); fd >= 0;
1025 fd = next_fd(&fdstate, &rwx)) {
1026 fdlist[fdcount++] = fd;
c5e438ec 1027 if (rwx & 1)
0ff9ea38 1028 FD_SET_MAX(fd, maxfd, rset);
c5e438ec 1029 if (rwx & 2)
0ff9ea38 1030 FD_SET_MAX(fd, maxfd, wset);
c5e438ec 1031 if (rwx & 4)
0ff9ea38 1032 FD_SET_MAX(fd, maxfd, xset);
c5e438ec 1033 }
1034
5673d44e 1035 do {
d719927e 1036 unsigned long next, then;
1037 long ticks;
39934deb 1038 struct timeval tv, *ptv;
1039
1040 if (run_timers(now, &next)) {
d719927e 1041 then = now;
1042 now = GETTICKCOUNT();
1043 if (now - then > next - then)
1044 ticks = 0;
1045 else
1046 ticks = next - now;
39934deb 1047 tv.tv_sec = ticks / 1000;
1048 tv.tv_usec = ticks % 1000 * 1000;
1049 ptv = &tv;
1050 } else {
1051 ptv = NULL;
1052 }
1053 ret = select(maxfd, &rset, &wset, &xset, ptv);
1054 if (ret == 0)
1055 now = next;
c2eb6cb7 1056 else
1057 now = GETTICKCOUNT();
5673d44e 1058 } while (ret < 0 && errno == EINTR);
c5e438ec 1059
1060 if (ret < 0) {
1061 perror("select");
1062 exit(1);
1063 }
1064
0ff9ea38 1065 for (i = 0; i < fdcount; i++) {
1066 fd = fdlist[i];
56e5b2db 1067 /*
1068 * We must process exceptional notifications before
1069 * ordinary readability ones, or we may go straight
1070 * past the urgent marker.
1071 */
0ff9ea38 1072 if (FD_ISSET(fd, &xset))
1073 select_result(fd, 4);
1074 if (FD_ISSET(fd, &rset))
1075 select_result(fd, 1);
1076 if (FD_ISSET(fd, &wset))
1077 select_result(fd, 2);
c5e438ec 1078 }
1079
5673d44e 1080 if (FD_ISSET(signalpipe[0], &rset)) {
1081 char c[1];
1082 struct winsize size;
ecb25722 1083 if (read(signalpipe[0], c, 1) <= 0)
1084 /* ignore error */;
1085 /* ignore its value; it'll be `x' */
679db585 1086 if (ioctl(STDIN_FILENO, TIOCGWINSZ, (void *)&size) >= 0)
5673d44e 1087 back->size(backhandle, size.ws_col, size.ws_row);
1088 }
1089
21226fd7 1090 if (FD_ISSET(STDIN_FILENO, &rset)) {
c5e438ec 1091 char buf[4096];
1092 int ret;
1093
6226c939 1094 if (connopen && back->connected(backhandle)) {
21226fd7 1095 ret = read(STDIN_FILENO, buf, sizeof(buf));
c5e438ec 1096 if (ret < 0) {
1097 perror("stdin: read");
1098 exit(1);
1099 } else if (ret == 0) {
1100 back->special(backhandle, TS_EOF);
1101 sending = FALSE; /* send nothing further after this */
1102 } else {
d0cb8c0c 1103 if (local_tty)
1104 from_tty(buf, ret);
1105 else
1106 back->send(backhandle, buf, ret);
c5e438ec 1107 }
1108 }
1109 }
1110
21226fd7 1111 if (FD_ISSET(STDOUT_FILENO, &wset)) {
885f465f 1112 back->unthrottle(backhandle, try_output(FALSE));
c5e438ec 1113 }
1114
21226fd7 1115 if (FD_ISSET(STDERR_FILENO, &wset)) {
885f465f 1116 back->unthrottle(backhandle, try_output(TRUE));
c5e438ec 1117 }
1118
43a1c4a4 1119 net_pending_errors();
1120
6226c939 1121 if ((!connopen || !back->connected(backhandle)) &&
c5e438ec 1122 bufchain_size(&stdout_data) == 0 &&
1123 bufchain_size(&stderr_data) == 0)
1124 break; /* we closed the connection */
1125 }
1126 exitcode = back->exitcode(backhandle);
1127 if (exitcode < 0) {
1128 fprintf(stderr, "Remote process exit code unavailable\n");
1129 exitcode = 1; /* this is an error condition */
1130 }
d9c40fd6 1131 cleanup_exit(exitcode);
1132 return exitcode; /* shouldn't happen, but placates gcc */
c5e438ec 1133}