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