xref: /freebsd/crypto/openssh/ssh.c (revision c4f6a2a9e1b1879b618c436ab4f56ff75c73a0f5)
1 /*
2  * Author: Tatu Ylonen <ylo@cs.hut.fi>
3  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4  *                    All rights reserved
5  * Ssh client program.  This program can be used to log into a remote machine.
6  * The software supports strong authentication, encryption, and forwarding
7  * of X11, TCP/IP, and authentication connections.
8  *
9  * As far as I am concerned, the code I have written for this software
10  * can be used freely for any purpose.  Any derived versions of this
11  * software must be clearly marked as such, and if the derived work is
12  * incompatible with the protocol description in the RFC file, it must be
13  * called by a name other than "ssh" or "Secure Shell".
14  *
15  * Copyright (c) 1999 Niels Provos.  All rights reserved.
16  * Copyright (c) 2000, 2001, 2002 Markus Friedl.  All rights reserved.
17  *
18  * Modified to work with SSL by Niels Provos <provos@citi.umich.edu>
19  * in Canada (German citizen).
20  *
21  * Redistribution and use in source and binary forms, with or without
22  * modification, are permitted provided that the following conditions
23  * are met:
24  * 1. Redistributions of source code must retain the above copyright
25  *    notice, this list of conditions and the following disclaimer.
26  * 2. Redistributions in binary form must reproduce the above copyright
27  *    notice, this list of conditions and the following disclaimer in the
28  *    documentation and/or other materials provided with the distribution.
29  *
30  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40  */
41 
42 #include "includes.h"
43 RCSID("$OpenBSD: ssh.c,v 1.179 2002/06/12 01:09:52 markus Exp $");
44 RCSID("$FreeBSD$");
45 
46 #include <openssl/evp.h>
47 #include <openssl/err.h>
48 
49 #include "ssh.h"
50 #include "ssh1.h"
51 #include "ssh2.h"
52 #include "compat.h"
53 #include "cipher.h"
54 #include "xmalloc.h"
55 #include "packet.h"
56 #include "buffer.h"
57 #include "channels.h"
58 #include "key.h"
59 #include "authfd.h"
60 #include "authfile.h"
61 #include "pathnames.h"
62 #include "clientloop.h"
63 #include "log.h"
64 #include "readconf.h"
65 #include "sshconnect.h"
66 #include "tildexpand.h"
67 #include "dispatch.h"
68 #include "misc.h"
69 #include "kex.h"
70 #include "mac.h"
71 #include "sshtty.h"
72 
73 #ifdef SMARTCARD
74 #include "scard.h"
75 #endif
76 
77 #ifdef HAVE___PROGNAME
78 extern char *__progname;
79 #else
80 char *__progname;
81 #endif
82 
83 /* Flag indicating whether IPv4 or IPv6.  This can be set on the command line.
84    Default value is AF_UNSPEC means both IPv4 and IPv6. */
85 #ifdef IPV4_DEFAULT
86 int IPv4or6 = AF_INET;
87 #else
88 int IPv4or6 = AF_UNSPEC;
89 #endif
90 
91 /* Flag indicating whether debug mode is on.  This can be set on the command line. */
92 int debug_flag = 0;
93 
94 /* Flag indicating whether a tty should be allocated */
95 int tty_flag = 0;
96 int no_tty_flag = 0;
97 int force_tty_flag = 0;
98 
99 /* don't exec a shell */
100 int no_shell_flag = 0;
101 
102 /*
103  * Flag indicating that nothing should be read from stdin.  This can be set
104  * on the command line.
105  */
106 int stdin_null_flag = 0;
107 
108 /*
109  * Flag indicating that ssh should fork after authentication.  This is useful
110  * so that the passphrase can be entered manually, and then ssh goes to the
111  * background.
112  */
113 int fork_after_authentication_flag = 0;
114 
115 /*
116  * General data structure for command line options and options configurable
117  * in configuration files.  See readconf.h.
118  */
119 Options options;
120 
121 /* optional user configfile */
122 char *config = NULL;
123 
124 /*
125  * Name of the host we are connecting to.  This is the name given on the
126  * command line, or the HostName specified for the user-supplied name in a
127  * configuration file.
128  */
129 char *host;
130 
131 /* socket address the host resolves to */
132 struct sockaddr_storage hostaddr;
133 
134 /* Private host keys. */
135 Sensitive sensitive_data;
136 
137 /* Original real UID. */
138 uid_t original_real_uid;
139 uid_t original_effective_uid;
140 
141 /* command to be executed */
142 Buffer command;
143 
144 /* Should we execute a command or invoke a subsystem? */
145 int subsystem_flag = 0;
146 
147 /* # of replies received for global requests */
148 static int client_global_request_id = 0;
149 
150 /* Prints a help message to the user.  This function never returns. */
151 
152 static void
153 usage(void)
154 {
155 	fprintf(stderr, "Usage: %s [options] host [command]\n", __progname);
156 	fprintf(stderr, "Options:\n");
157 	fprintf(stderr, "  -l user     Log in using this user name.\n");
158 	fprintf(stderr, "  -n          Redirect input from " _PATH_DEVNULL ".\n");
159 	fprintf(stderr, "  -F config   Config file (default: ~/%s).\n",
160 	     _PATH_SSH_USER_CONFFILE);
161 	fprintf(stderr, "  -A          Enable authentication agent forwarding.\n");
162 	fprintf(stderr, "  -a          Disable authentication agent forwarding (default).\n");
163 #ifdef AFS
164 	fprintf(stderr, "  -k          Disable Kerberos ticket and AFS token forwarding.\n");
165 #endif				/* AFS */
166 	fprintf(stderr, "  -X          Enable X11 connection forwarding.\n");
167 	fprintf(stderr, "  -x          Disable X11 connection forwarding (default).\n");
168 	fprintf(stderr, "  -i file     Identity for public key authentication "
169 	    "(default: ~/.ssh/identity)\n");
170 #ifdef SMARTCARD
171 	fprintf(stderr, "  -I reader   Set smartcard reader.\n");
172 #endif
173 	fprintf(stderr, "  -t          Tty; allocate a tty even if command is given.\n");
174 	fprintf(stderr, "  -T          Do not allocate a tty.\n");
175 	fprintf(stderr, "  -v          Verbose; display verbose debugging messages.\n");
176 	fprintf(stderr, "              Multiple -v increases verbosity.\n");
177 	fprintf(stderr, "  -V          Display version number only.\n");
178 	fprintf(stderr, "  -P          Don't allocate a privileged port.\n");
179 	fprintf(stderr, "  -q          Quiet; don't display any warning messages.\n");
180 	fprintf(stderr, "  -f          Fork into background after authentication.\n");
181 	fprintf(stderr, "  -e char     Set escape character; ``none'' = disable (default: ~).\n");
182 
183 	fprintf(stderr, "  -c cipher   Select encryption algorithm\n");
184 	fprintf(stderr, "  -m macs     Specify MAC algorithms for protocol version 2.\n");
185 	fprintf(stderr, "  -p port     Connect to this port.  Server must be on the same port.\n");
186 	fprintf(stderr, "  -L listen-port:host:port   Forward local port to remote address\n");
187 	fprintf(stderr, "  -R listen-port:host:port   Forward remote port to local address\n");
188 	fprintf(stderr, "              These cause %s to listen for connections on a port, and\n", __progname);
189 	fprintf(stderr, "              forward them to the other side by connecting to host:port.\n");
190 	fprintf(stderr, "  -D port     Enable dynamic application-level port forwarding.\n");
191 	fprintf(stderr, "  -C          Enable compression.\n");
192 	fprintf(stderr, "  -N          Do not execute a shell or command.\n");
193 	fprintf(stderr, "  -g          Allow remote hosts to connect to forwarded ports.\n");
194 	fprintf(stderr, "  -1          Force protocol version 1.\n");
195 	fprintf(stderr, "  -2          Force protocol version 2.\n");
196 	fprintf(stderr, "  -4          Use IPv4 only.\n");
197 	fprintf(stderr, "  -6          Use IPv6 only.\n");
198 	fprintf(stderr, "  -o 'option' Process the option as if it was read from a configuration file.\n");
199 	fprintf(stderr, "  -s          Invoke command (mandatory) as SSH2 subsystem.\n");
200 	fprintf(stderr, "  -b addr     Local IP address.\n");
201 	exit(1);
202 }
203 
204 static int ssh_session(void);
205 static int ssh_session2(void);
206 static void load_public_identity_files(void);
207 
208 /*
209  * Main program for the ssh client.
210  */
211 int
212 main(int ac, char **av)
213 {
214 	int i, opt, exit_status;
215 	u_short fwd_port, fwd_host_port;
216 	char sfwd_port[6], sfwd_host_port[6];
217 	char *p, *cp, buf[256];
218 	struct stat st;
219 	struct passwd *pw;
220 	int dummy;
221 	extern int optind, optreset;
222 	extern char *optarg;
223 
224 	__progname = get_progname(av[0]);
225 	init_rng();
226 
227 	/*
228 	 * Save the original real uid.  It will be needed later (uid-swapping
229 	 * may clobber the real uid).
230 	 */
231 	original_real_uid = getuid();
232 	original_effective_uid = geteuid();
233 
234 #ifdef HAVE_SETRLIMIT
235 	/* If we are installed setuid root be careful to not drop core. */
236 	if (original_real_uid != original_effective_uid) {
237 		struct rlimit rlim;
238 		rlim.rlim_cur = rlim.rlim_max = 0;
239 		if (setrlimit(RLIMIT_CORE, &rlim) < 0)
240 			fatal("setrlimit failed: %.100s", strerror(errno));
241 	}
242 #endif
243 	/* Get user data. */
244 	pw = getpwuid(original_real_uid);
245 	if (!pw) {
246 		log("unknown user %d", original_real_uid);
247 		exit(1);
248 	}
249 	/* Take a copy of the returned structure. */
250 	pw = pwcopy(pw);
251 
252 	/*
253 	 * Use uid-swapping to give up root privileges for the duration of
254 	 * option processing.  We will re-instantiate the rights when we are
255 	 * ready to create the privileged port, and will permanently drop
256 	 * them when the port has been created (actually, when the connection
257 	 * has been made, as we may need to create the port several times).
258 	 */
259 	PRIV_END;
260 
261 	/*
262 	 * Set our umask to something reasonable, as some files are created
263 	 * with the default umask.  This will make them world-readable but
264 	 * writable only by the owner, which is ok for all files for which we
265 	 * don't set the modes explicitly.
266 	 */
267 	umask(022);
268 
269 	/* Initialize option structure to indicate that no values have been set. */
270 	initialize_options(&options);
271 
272 	/* Parse command-line arguments. */
273 	host = NULL;
274 
275 again:
276 	while ((opt = getopt(ac, av,
277 	    "1246ab:c:e:fgi:kl:m:no:p:qstvxACD:F:I:L:NPR:TVX")) != -1) {
278 		switch (opt) {
279 		case '1':
280 			options.protocol = SSH_PROTO_1;
281 			break;
282 		case '2':
283 			options.protocol = SSH_PROTO_2;
284 			break;
285 		case '4':
286 			IPv4or6 = AF_INET;
287 			break;
288 		case '6':
289 			IPv4or6 = AF_INET6;
290 			break;
291 		case 'n':
292 			stdin_null_flag = 1;
293 			break;
294 		case 'f':
295 			fork_after_authentication_flag = 1;
296 			stdin_null_flag = 1;
297 			break;
298 		case 'x':
299 			options.forward_x11 = 0;
300 			break;
301 		case 'X':
302 			options.forward_x11 = 1;
303 			break;
304 		case 'g':
305 			options.gateway_ports = 1;
306 			break;
307 		case 'P':
308 			options.use_privileged_port = 0;
309 			break;
310 		case 'a':
311 			options.forward_agent = 0;
312 			break;
313 		case 'A':
314 			options.forward_agent = 1;
315 			break;
316 #ifdef AFS
317 		case 'k':
318 			options.kerberos_tgt_passing = 0;
319 			options.afs_token_passing = 0;
320 			break;
321 #endif
322 		case 'i':
323 			if (stat(optarg, &st) < 0) {
324 				fprintf(stderr, "Warning: Identity file %s "
325 				    "does not exist.\n", optarg);
326 				break;
327 			}
328 			if (options.num_identity_files >=
329 			    SSH_MAX_IDENTITY_FILES)
330 				fatal("Too many identity files specified "
331 				    "(max %d)", SSH_MAX_IDENTITY_FILES);
332 			options.identity_files[options.num_identity_files++] =
333 			    xstrdup(optarg);
334 			break;
335 		case 'I':
336 #ifdef SMARTCARD
337 			options.smartcard_device = xstrdup(optarg);
338 #else
339 			fprintf(stderr, "no support for smartcards.\n");
340 #endif
341 			break;
342 		case 't':
343 			if (tty_flag)
344 				force_tty_flag = 1;
345 			tty_flag = 1;
346 			break;
347 		case 'v':
348 			if (0 == debug_flag) {
349 				debug_flag = 1;
350 				options.log_level = SYSLOG_LEVEL_DEBUG1;
351 			} else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
352 				options.log_level++;
353 				break;
354 			} else
355 				fatal("Too high debugging level.");
356 			/* fallthrough */
357 		case 'V':
358 			fprintf(stderr,
359 			    "%s, SSH protocols %d.%d/%d.%d, OpenSSL 0x%8.8lx\n",
360 			    SSH_VERSION,
361 			    PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1,
362 			    PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2,
363 			    SSLeay());
364 			if (opt == 'V')
365 				exit(0);
366 			break;
367 		case 'q':
368 			options.log_level = SYSLOG_LEVEL_QUIET;
369 			break;
370 		case 'e':
371 			if (optarg[0] == '^' && optarg[2] == 0 &&
372 			    (u_char) optarg[1] >= 64 &&
373 			    (u_char) optarg[1] < 128)
374 				options.escape_char = (u_char) optarg[1] & 31;
375 			else if (strlen(optarg) == 1)
376 				options.escape_char = (u_char) optarg[0];
377 			else if (strcmp(optarg, "none") == 0)
378 				options.escape_char = SSH_ESCAPECHAR_NONE;
379 			else {
380 				fprintf(stderr, "Bad escape character '%s'.\n",
381 				    optarg);
382 				exit(1);
383 			}
384 			break;
385 		case 'c':
386 			if (ciphers_valid(optarg)) {
387 				/* SSH2 only */
388 				options.ciphers = xstrdup(optarg);
389 				options.cipher = SSH_CIPHER_ILLEGAL;
390 			} else {
391 				/* SSH1 only */
392 				options.cipher = cipher_number(optarg);
393 				if (options.cipher == -1) {
394 					fprintf(stderr,
395 					    "Unknown cipher type '%s'\n",
396 					    optarg);
397 					exit(1);
398 				}
399 				if (options.cipher == SSH_CIPHER_3DES)
400 					options.ciphers = "3des-cbc";
401 				else if (options.cipher == SSH_CIPHER_BLOWFISH)
402 					options.ciphers = "blowfish-cbc";
403 				else
404 					options.ciphers = (char *)-1;
405 			}
406 			break;
407 		case 'm':
408 			if (mac_valid(optarg))
409 				options.macs = xstrdup(optarg);
410 			else {
411 				fprintf(stderr, "Unknown mac type '%s'\n",
412 				    optarg);
413 				exit(1);
414 			}
415 			break;
416 		case 'p':
417 			options.port = a2port(optarg);
418 			if (options.port == 0) {
419 				fprintf(stderr, "Bad port '%s'\n", optarg);
420 				exit(1);
421 			}
422 			break;
423 		case 'l':
424 			options.user = optarg;
425 			break;
426 
427 		case 'L':
428 		case 'R':
429 			if (sscanf(optarg, "%5[0-9]:%255[^:]:%5[0-9]",
430 			    sfwd_port, buf, sfwd_host_port) != 3 &&
431 			    sscanf(optarg, "%5[0-9]/%255[^/]/%5[0-9]",
432 			    sfwd_port, buf, sfwd_host_port) != 3) {
433 				fprintf(stderr,
434 				    "Bad forwarding specification '%s'\n",
435 				    optarg);
436 				usage();
437 				/* NOTREACHED */
438 			}
439 			if ((fwd_port = a2port(sfwd_port)) == 0 ||
440 			    (fwd_host_port = a2port(sfwd_host_port)) == 0) {
441 				fprintf(stderr,
442 				    "Bad forwarding port(s) '%s'\n", optarg);
443 				exit(1);
444 			}
445 			if (opt == 'L')
446 				add_local_forward(&options, fwd_port, buf,
447 				    fwd_host_port);
448 			else if (opt == 'R')
449 				add_remote_forward(&options, fwd_port, buf,
450 				    fwd_host_port);
451 			break;
452 
453 		case 'D':
454 			fwd_port = a2port(optarg);
455 			if (fwd_port == 0) {
456 				fprintf(stderr, "Bad dynamic port '%s'\n",
457 				    optarg);
458 				exit(1);
459 			}
460 			add_local_forward(&options, fwd_port, "socks4", 0);
461 			break;
462 
463 		case 'C':
464 			options.compression = 1;
465 			break;
466 		case 'N':
467 			no_shell_flag = 1;
468 			no_tty_flag = 1;
469 			break;
470 		case 'T':
471 			no_tty_flag = 1;
472 			break;
473 		case 'o':
474 			dummy = 1;
475 			if (process_config_line(&options, host ? host : "",
476 			    optarg, "command-line", 0, &dummy) != 0)
477 				exit(1);
478 			break;
479 		case 's':
480 			subsystem_flag = 1;
481 			break;
482 		case 'b':
483 			options.bind_address = optarg;
484 			break;
485 		case 'F':
486 			config = optarg;
487 			break;
488 		default:
489 			usage();
490 		}
491 	}
492 
493 	ac -= optind;
494 	av += optind;
495 
496 	if (ac > 0 && !host && **av != '-') {
497 		if (strchr(*av, '@')) {
498 			p = xstrdup(*av);
499 			cp = strchr(p, '@');
500 			if (cp == NULL || cp == p)
501 				usage();
502 			options.user = p;
503 			*cp = '\0';
504 			host = ++cp;
505 		} else
506 			host = *av;
507 		ac--, av++;
508 		if (ac > 0) {
509 			optind = 0;
510 			optreset = 1;
511 			goto again;
512 		}
513 	}
514 
515 	/* Check that we got a host name. */
516 	if (!host)
517 		usage();
518 
519 	SSLeay_add_all_algorithms();
520 	ERR_load_crypto_strings();
521 	channel_set_af(IPv4or6);
522 
523 	/* Initialize the command to execute on remote host. */
524 	buffer_init(&command);
525 
526 	/*
527 	 * Save the command to execute on the remote host in a buffer. There
528 	 * is no limit on the length of the command, except by the maximum
529 	 * packet size.  Also sets the tty flag if there is no command.
530 	 */
531 	if (!ac) {
532 		/* No command specified - execute shell on a tty. */
533 		tty_flag = 1;
534 		if (subsystem_flag) {
535 			fprintf(stderr,
536 			    "You must specify a subsystem to invoke.\n");
537 			usage();
538 		}
539 	} else {
540 		/* A command has been specified.  Store it into the buffer. */
541 		for (i = 0; i < ac; i++) {
542 			if (i)
543 				buffer_append(&command, " ", 1);
544 			buffer_append(&command, av[i], strlen(av[i]));
545 		}
546 	}
547 
548 	/* Cannot fork to background if no command. */
549 	if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
550 		fatal("Cannot fork into background without a command to execute.");
551 
552 	/* Allocate a tty by default if no command specified. */
553 	if (buffer_len(&command) == 0)
554 		tty_flag = 1;
555 
556 	/* Force no tty*/
557 	if (no_tty_flag)
558 		tty_flag = 0;
559 	/* Do not allocate a tty if stdin is not a tty. */
560 	if (!isatty(fileno(stdin)) && !force_tty_flag) {
561 		if (tty_flag)
562 			log("Pseudo-terminal will not be allocated because stdin is not a terminal.");
563 		tty_flag = 0;
564 	}
565 
566 	/*
567 	 * Initialize "log" output.  Since we are the client all output
568 	 * actually goes to stderr.
569 	 */
570 	log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
571 	    SYSLOG_FACILITY_USER, 1);
572 
573 	/*
574 	 * Read per-user configuration file.  Ignore the system wide config
575 	 * file if the user specifies a config file on the command line.
576 	 */
577 	if (config != NULL) {
578 		if (!read_config_file(config, host, &options))
579 			fatal("Can't open user config file %.100s: "
580 			    "%.100s", config, strerror(errno));
581 	} else  {
582 		snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,
583 		    _PATH_SSH_USER_CONFFILE);
584 		(void)read_config_file(buf, host, &options);
585 
586 		/* Read systemwide configuration file after use config. */
587 		(void)read_config_file(_PATH_HOST_CONFIG_FILE, host, &options);
588 	}
589 
590 	/* Fill configuration defaults. */
591 	fill_default_options(&options);
592 
593 	/* reinit */
594 	log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
595 
596 	seed_rng();
597 
598 	if (options.user == NULL)
599 		options.user = xstrdup(pw->pw_name);
600 
601 	if (options.hostname != NULL)
602 		host = options.hostname;
603 
604 	/* Find canonic host name. */
605 	if (strchr(host, '.') == 0) {
606 		struct addrinfo hints;
607 		struct addrinfo *ai = NULL;
608 		int errgai;
609 		memset(&hints, 0, sizeof(hints));
610 		hints.ai_family = IPv4or6;
611 		hints.ai_flags = AI_CANONNAME;
612 		hints.ai_socktype = SOCK_STREAM;
613 		errgai = getaddrinfo(host, NULL, &hints, &ai);
614 		if (errgai == 0) {
615 			if (ai->ai_canonname != NULL)
616 				host = xstrdup(ai->ai_canonname);
617 			freeaddrinfo(ai);
618 		}
619 	}
620 
621 	/* Disable rhosts authentication if not running as root. */
622 #ifdef HAVE_CYGWIN
623 	/* Ignore uid if running under Windows */
624 	if (!options.use_privileged_port) {
625 #else
626 	if (original_effective_uid != 0 || !options.use_privileged_port) {
627 #endif
628 		debug("Rhosts Authentication disabled, "
629 		    "originating port will not be trusted.");
630 		options.rhosts_authentication = 0;
631 	}
632 	/* Open a connection to the remote host. */
633 
634 	if (ssh_connect(host, &hostaddr, options.port, IPv4or6,
635 	    options.connection_attempts,
636 #ifdef HAVE_CYGWIN
637 	    options.use_privileged_port,
638 #else
639 	    original_effective_uid == 0 && options.use_privileged_port,
640 #endif
641 	    options.proxy_command) != 0)
642 		exit(1);
643 
644 	/*
645 	 * If we successfully made the connection, load the host private key
646 	 * in case we will need it later for combined rsa-rhosts
647 	 * authentication. This must be done before releasing extra
648 	 * privileges, because the file is only readable by root.
649 	 * If we cannot access the private keys, load the public keys
650 	 * instead and try to execute the ssh-keysign helper instead.
651 	 */
652 	sensitive_data.nkeys = 0;
653 	sensitive_data.keys = NULL;
654 	sensitive_data.external_keysign = 0;
655 	if (options.rhosts_rsa_authentication ||
656 	    options.hostbased_authentication) {
657 		sensitive_data.nkeys = 3;
658 		sensitive_data.keys = xmalloc(sensitive_data.nkeys*sizeof(Key));
659 
660 		PRIV_START;
661 		sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
662 		    _PATH_HOST_KEY_FILE, "", NULL);
663 		sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
664 		    _PATH_HOST_DSA_KEY_FILE, "", NULL);
665 		sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
666 		    _PATH_HOST_RSA_KEY_FILE, "", NULL);
667 		PRIV_END;
668 
669 		if (sensitive_data.keys[0] == NULL &&
670 		    sensitive_data.keys[1] == NULL &&
671 		    sensitive_data.keys[2] == NULL) {
672 			sensitive_data.keys[1] = key_load_public(
673 			    _PATH_HOST_DSA_KEY_FILE, NULL);
674 			sensitive_data.keys[2] = key_load_public(
675 			    _PATH_HOST_RSA_KEY_FILE, NULL);
676 			sensitive_data.external_keysign = 1;
677 		}
678 	}
679 	/*
680 	 * Get rid of any extra privileges that we may have.  We will no
681 	 * longer need them.  Also, extra privileges could make it very hard
682 	 * to read identity files and other non-world-readable files from the
683 	 * user's home directory if it happens to be on a NFS volume where
684 	 * root is mapped to nobody.
685 	 */
686 	seteuid(original_real_uid);
687 	setuid(original_real_uid);
688 
689 	/*
690 	 * Now that we are back to our own permissions, create ~/.ssh
691 	 * directory if it doesn\'t already exist.
692 	 */
693 	snprintf(buf, sizeof buf, "%.100s%s%.100s", pw->pw_dir, strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
694 	if (stat(buf, &st) < 0)
695 		if (mkdir(buf, 0700) < 0)
696 			error("Could not create directory '%.200s'.", buf);
697 
698 	/* load options.identity_files */
699 	load_public_identity_files();
700 
701 	/* Expand ~ in known host file names. */
702 	/* XXX mem-leaks: */
703 	options.system_hostfile =
704 	    tilde_expand_filename(options.system_hostfile, original_real_uid);
705 	options.user_hostfile =
706 	    tilde_expand_filename(options.user_hostfile, original_real_uid);
707 	options.system_hostfile2 =
708 	    tilde_expand_filename(options.system_hostfile2, original_real_uid);
709 	options.user_hostfile2 =
710 	    tilde_expand_filename(options.user_hostfile2, original_real_uid);
711 
712 	signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
713 
714 	/* Log into the remote system.  This never returns if the login fails. */
715 	ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr, pw);
716 
717 	/* We no longer need the private host keys.  Clear them now. */
718 	if (sensitive_data.nkeys != 0) {
719 		for (i = 0; i < sensitive_data.nkeys; i++) {
720 			if (sensitive_data.keys[i] != NULL) {
721 				/* Destroys contents safely */
722 				debug3("clear hostkey %d", i);
723 				key_free(sensitive_data.keys[i]);
724 				sensitive_data.keys[i] = NULL;
725 			}
726 		}
727 		xfree(sensitive_data.keys);
728 	}
729 	for (i = 0; i < options.num_identity_files; i++) {
730 		if (options.identity_files[i]) {
731 			xfree(options.identity_files[i]);
732 			options.identity_files[i] = NULL;
733 		}
734 		if (options.identity_keys[i]) {
735 			key_free(options.identity_keys[i]);
736 			options.identity_keys[i] = NULL;
737 		}
738 	}
739 
740 	exit_status = compat20 ? ssh_session2() : ssh_session();
741 	packet_close();
742 	return exit_status;
743 }
744 
745 static void
746 x11_get_proto(char **_proto, char **_data)
747 {
748 	char line[512];
749 	static char proto[512], data[512];
750 	FILE *f;
751 	int got_data = 0, i;
752 	char *display;
753 
754 	*_proto = proto;
755 	*_data = data;
756 	proto[0] = data[0] = '\0';
757 	if (options.xauth_location && (display = getenv("DISPLAY"))) {
758 		/* Try to get Xauthority information for the display. */
759 		if (strncmp(display, "localhost:", 10) == 0)
760 			/*
761 			 * Handle FamilyLocal case where $DISPLAY does
762 			 * not match an authorization entry.  For this we
763 			 * just try "xauth list unix:displaynum.screennum".
764 			 * XXX: "localhost" match to determine FamilyLocal
765 			 *      is not perfect.
766 			 */
767 			snprintf(line, sizeof line, "%s list unix:%s 2>"
768 			    _PATH_DEVNULL, options.xauth_location, display+10);
769 		else
770 			snprintf(line, sizeof line, "%s list %.200s 2>"
771 			    _PATH_DEVNULL, options.xauth_location, display);
772 		debug2("x11_get_proto %s", line);
773 		f = popen(line, "r");
774 		if (f && fgets(line, sizeof(line), f) &&
775 		    sscanf(line, "%*s %511s %511s", proto, data) == 2)
776 			got_data = 1;
777 		if (f)
778 			pclose(f);
779 	}
780 	/*
781 	 * If we didn't get authentication data, just make up some
782 	 * data.  The forwarding code will check the validity of the
783 	 * response anyway, and substitute this data.  The X11
784 	 * server, however, will ignore this fake data and use
785 	 * whatever authentication mechanisms it was using otherwise
786 	 * for the local connection.
787 	 */
788 	if (!got_data) {
789 		u_int32_t rand = 0;
790 
791 		strlcpy(proto, "MIT-MAGIC-COOKIE-1", sizeof proto);
792 		for (i = 0; i < 16; i++) {
793 			if (i % 4 == 0)
794 				rand = arc4random();
795 			snprintf(data + 2 * i, sizeof data - 2 * i, "%02x", rand & 0xff);
796 			rand >>= 8;
797 		}
798 	}
799 }
800 
801 static void
802 ssh_init_forwarding(void)
803 {
804 	int success = 0;
805 	int i;
806 
807 	/* Initiate local TCP/IP port forwardings. */
808 	for (i = 0; i < options.num_local_forwards; i++) {
809 		debug("Connections to local port %d forwarded to remote address %.200s:%d",
810 		    options.local_forwards[i].port,
811 		    options.local_forwards[i].host,
812 		    options.local_forwards[i].host_port);
813 		success += channel_setup_local_fwd_listener(
814 		    options.local_forwards[i].port,
815 		    options.local_forwards[i].host,
816 		    options.local_forwards[i].host_port,
817 		    options.gateway_ports);
818 	}
819 	if (i > 0 && success == 0)
820 		error("Could not request local forwarding.");
821 
822 	/* Initiate remote TCP/IP port forwardings. */
823 	for (i = 0; i < options.num_remote_forwards; i++) {
824 		debug("Connections to remote port %d forwarded to local address %.200s:%d",
825 		    options.remote_forwards[i].port,
826 		    options.remote_forwards[i].host,
827 		    options.remote_forwards[i].host_port);
828 		channel_request_remote_forwarding(
829 		    options.remote_forwards[i].port,
830 		    options.remote_forwards[i].host,
831 		    options.remote_forwards[i].host_port);
832 	}
833 }
834 
835 static void
836 check_agent_present(void)
837 {
838 	if (options.forward_agent) {
839 		/* Clear agent forwarding if we don\'t have an agent. */
840 		int authfd = ssh_get_authentication_socket();
841 		if (authfd < 0)
842 			options.forward_agent = 0;
843 		else
844 			ssh_close_authentication_socket(authfd);
845 	}
846 }
847 
848 static int
849 ssh_session(void)
850 {
851 	int type;
852 	int interactive = 0;
853 	int have_tty = 0;
854 	struct winsize ws;
855 	char *cp;
856 
857 	/* Enable compression if requested. */
858 	if (options.compression) {
859 		debug("Requesting compression at level %d.", options.compression_level);
860 
861 		if (options.compression_level < 1 || options.compression_level > 9)
862 			fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
863 
864 		/* Send the request. */
865 		packet_start(SSH_CMSG_REQUEST_COMPRESSION);
866 		packet_put_int(options.compression_level);
867 		packet_send();
868 		packet_write_wait();
869 		type = packet_read();
870 		if (type == SSH_SMSG_SUCCESS)
871 			packet_start_compression(options.compression_level);
872 		else if (type == SSH_SMSG_FAILURE)
873 			log("Warning: Remote host refused compression.");
874 		else
875 			packet_disconnect("Protocol error waiting for compression response.");
876 	}
877 	/* Allocate a pseudo tty if appropriate. */
878 	if (tty_flag) {
879 		debug("Requesting pty.");
880 
881 		/* Start the packet. */
882 		packet_start(SSH_CMSG_REQUEST_PTY);
883 
884 		/* Store TERM in the packet.  There is no limit on the
885 		   length of the string. */
886 		cp = getenv("TERM");
887 		if (!cp)
888 			cp = "";
889 		packet_put_cstring(cp);
890 
891 		/* Store window size in the packet. */
892 		if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
893 			memset(&ws, 0, sizeof(ws));
894 		packet_put_int(ws.ws_row);
895 		packet_put_int(ws.ws_col);
896 		packet_put_int(ws.ws_xpixel);
897 		packet_put_int(ws.ws_ypixel);
898 
899 		/* Store tty modes in the packet. */
900 		tty_make_modes(fileno(stdin), NULL);
901 
902 		/* Send the packet, and wait for it to leave. */
903 		packet_send();
904 		packet_write_wait();
905 
906 		/* Read response from the server. */
907 		type = packet_read();
908 		if (type == SSH_SMSG_SUCCESS) {
909 			interactive = 1;
910 			have_tty = 1;
911 		} else if (type == SSH_SMSG_FAILURE)
912 			log("Warning: Remote host failed or refused to allocate a pseudo tty.");
913 		else
914 			packet_disconnect("Protocol error waiting for pty request response.");
915 	}
916 	/* Request X11 forwarding if enabled and DISPLAY is set. */
917 	if (options.forward_x11 && getenv("DISPLAY") != NULL) {
918 		char *proto, *data;
919 		/* Get reasonable local authentication information. */
920 		x11_get_proto(&proto, &data);
921 		/* Request forwarding with authentication spoofing. */
922 		debug("Requesting X11 forwarding with authentication spoofing.");
923 		x11_request_forwarding_with_spoofing(0, proto, data);
924 
925 		/* Read response from the server. */
926 		type = packet_read();
927 		if (type == SSH_SMSG_SUCCESS) {
928 			interactive = 1;
929 		} else if (type == SSH_SMSG_FAILURE) {
930 			log("Warning: Remote host denied X11 forwarding.");
931 		} else {
932 			packet_disconnect("Protocol error waiting for X11 forwarding");
933 		}
934 	}
935 	/* Tell the packet module whether this is an interactive session. */
936 	packet_set_interactive(interactive);
937 
938 	/* Request authentication agent forwarding if appropriate. */
939 	check_agent_present();
940 
941 	if (options.forward_agent) {
942 		debug("Requesting authentication agent forwarding.");
943 		auth_request_forwarding();
944 
945 		/* Read response from the server. */
946 		type = packet_read();
947 		packet_check_eom();
948 		if (type != SSH_SMSG_SUCCESS)
949 			log("Warning: Remote host denied authentication agent forwarding.");
950 	}
951 
952 	/* Initiate port forwardings. */
953 	ssh_init_forwarding();
954 
955 	/* If requested, let ssh continue in the background. */
956 	if (fork_after_authentication_flag)
957 		if (daemon(1, 1) < 0)
958 			fatal("daemon() failed: %.200s", strerror(errno));
959 
960 	/*
961 	 * If a command was specified on the command line, execute the
962 	 * command now. Otherwise request the server to start a shell.
963 	 */
964 	if (buffer_len(&command) > 0) {
965 		int len = buffer_len(&command);
966 		if (len > 900)
967 			len = 900;
968 		debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
969 		packet_start(SSH_CMSG_EXEC_CMD);
970 		packet_put_string(buffer_ptr(&command), buffer_len(&command));
971 		packet_send();
972 		packet_write_wait();
973 	} else {
974 		debug("Requesting shell.");
975 		packet_start(SSH_CMSG_EXEC_SHELL);
976 		packet_send();
977 		packet_write_wait();
978 	}
979 
980 	/* Enter the interactive session. */
981 	return client_loop(have_tty, tty_flag ?
982 	    options.escape_char : SSH_ESCAPECHAR_NONE, 0);
983 }
984 
985 static void
986 client_subsystem_reply(int type, u_int32_t seq, void *ctxt)
987 {
988 	int id, len;
989 
990 	id = packet_get_int();
991 	len = buffer_len(&command);
992 	if (len > 900)
993 		len = 900;
994 	packet_check_eom();
995 	if (type == SSH2_MSG_CHANNEL_FAILURE)
996 		fatal("Request for subsystem '%.*s' failed on channel %d",
997 		    len, (u_char *)buffer_ptr(&command), id);
998 }
999 
1000 void
1001 client_global_request_reply(int type, u_int32_t seq, void *ctxt)
1002 {
1003 	int i;
1004 
1005 	i = client_global_request_id++;
1006 	if (i >= options.num_remote_forwards) {
1007 		debug("client_global_request_reply: too many replies %d > %d",
1008 		    i, options.num_remote_forwards);
1009 		return;
1010 	}
1011 	debug("remote forward %s for: listen %d, connect %s:%d",
1012 	    type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
1013 	    options.remote_forwards[i].port,
1014 	    options.remote_forwards[i].host,
1015 	    options.remote_forwards[i].host_port);
1016 	if (type == SSH2_MSG_REQUEST_FAILURE)
1017 		log("Warning: remote port forwarding failed for listen port %d",
1018 		    options.remote_forwards[i].port);
1019 }
1020 
1021 /* request pty/x11/agent/tcpfwd/shell for channel */
1022 static void
1023 ssh_session2_setup(int id, void *arg)
1024 {
1025 	int len;
1026 	int interactive = 0;
1027 	struct termios tio;
1028 
1029 	debug("ssh_session2_setup: id %d", id);
1030 
1031 	if (tty_flag) {
1032 		struct winsize ws;
1033 		char *cp;
1034 		cp = getenv("TERM");
1035 		if (!cp)
1036 			cp = "";
1037 		/* Store window size in the packet. */
1038 		if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1039 			memset(&ws, 0, sizeof(ws));
1040 
1041 		channel_request_start(id, "pty-req", 0);
1042 		packet_put_cstring(cp);
1043 		packet_put_int(ws.ws_col);
1044 		packet_put_int(ws.ws_row);
1045 		packet_put_int(ws.ws_xpixel);
1046 		packet_put_int(ws.ws_ypixel);
1047 		tio = get_saved_tio();
1048 		tty_make_modes(/*ignored*/ 0, &tio);
1049 		packet_send();
1050 		interactive = 1;
1051 		/* XXX wait for reply */
1052 	}
1053 	if (options.forward_x11 &&
1054 	    getenv("DISPLAY") != NULL) {
1055 		char *proto, *data;
1056 		/* Get reasonable local authentication information. */
1057 		x11_get_proto(&proto, &data);
1058 		/* Request forwarding with authentication spoofing. */
1059 		debug("Requesting X11 forwarding with authentication spoofing.");
1060 		x11_request_forwarding_with_spoofing(id, proto, data);
1061 		interactive = 1;
1062 		/* XXX wait for reply */
1063 	}
1064 
1065 	check_agent_present();
1066 	if (options.forward_agent) {
1067 		debug("Requesting authentication agent forwarding.");
1068 		channel_request_start(id, "auth-agent-req@openssh.com", 0);
1069 		packet_send();
1070 	}
1071 
1072 	len = buffer_len(&command);
1073 	if (len > 0) {
1074 		if (len > 900)
1075 			len = 900;
1076 		if (subsystem_flag) {
1077 			debug("Sending subsystem: %.*s", len, (u_char *)buffer_ptr(&command));
1078 			channel_request_start(id, "subsystem", /*want reply*/ 1);
1079 			/* register callback for reply */
1080 			/* XXX we assume that client_loop has already been called */
1081 			dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &client_subsystem_reply);
1082 			dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &client_subsystem_reply);
1083 		} else {
1084 			debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
1085 			channel_request_start(id, "exec", 0);
1086 		}
1087 		packet_put_string(buffer_ptr(&command), buffer_len(&command));
1088 		packet_send();
1089 	} else {
1090 		channel_request_start(id, "shell", 0);
1091 		packet_send();
1092 	}
1093 
1094 	packet_set_interactive(interactive);
1095 }
1096 
1097 /* open new channel for a session */
1098 static int
1099 ssh_session2_open(void)
1100 {
1101 	Channel *c;
1102 	int window, packetmax, in, out, err;
1103 
1104 	if (stdin_null_flag) {
1105 		in = open(_PATH_DEVNULL, O_RDONLY);
1106 	} else {
1107 		in = dup(STDIN_FILENO);
1108 	}
1109 	out = dup(STDOUT_FILENO);
1110 	err = dup(STDERR_FILENO);
1111 
1112 	if (in < 0 || out < 0 || err < 0)
1113 		fatal("dup() in/out/err failed");
1114 
1115 	/* enable nonblocking unless tty */
1116 	if (!isatty(in))
1117 		set_nonblock(in);
1118 	if (!isatty(out))
1119 		set_nonblock(out);
1120 	if (!isatty(err))
1121 		set_nonblock(err);
1122 
1123 	window = CHAN_SES_WINDOW_DEFAULT;
1124 	packetmax = CHAN_SES_PACKET_DEFAULT;
1125 	if (tty_flag) {
1126 		window >>= 1;
1127 		packetmax >>= 1;
1128 	}
1129 	c = channel_new(
1130 	    "session", SSH_CHANNEL_OPENING, in, out, err,
1131 	    window, packetmax, CHAN_EXTENDED_WRITE,
1132 	    xstrdup("client-session"), /*nonblock*/0);
1133 
1134 	debug3("ssh_session2_open: channel_new: %d", c->self);
1135 
1136 	channel_send_open(c->self);
1137 	if (!no_shell_flag)
1138 		channel_register_confirm(c->self, ssh_session2_setup);
1139 
1140 	return c->self;
1141 }
1142 
1143 static int
1144 ssh_session2(void)
1145 {
1146 	int id = -1;
1147 
1148 	/* XXX should be pre-session */
1149 	ssh_init_forwarding();
1150 
1151 	if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1152 		id = ssh_session2_open();
1153 
1154 	/* If requested, let ssh continue in the background. */
1155 	if (fork_after_authentication_flag)
1156 		if (daemon(1, 1) < 0)
1157 			fatal("daemon() failed: %.200s", strerror(errno));
1158 
1159 	return client_loop(tty_flag, tty_flag ?
1160 	    options.escape_char : SSH_ESCAPECHAR_NONE, id);
1161 }
1162 
1163 static void
1164 load_public_identity_files(void)
1165 {
1166 	char *filename;
1167 	int i = 0;
1168 	Key *public;
1169 #ifdef SMARTCARD
1170 	Key **keys;
1171 
1172 	if (options.smartcard_device != NULL &&
1173 	    options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
1174 	    (keys = sc_get_keys(options.smartcard_device, NULL)) != NULL ) {
1175 		int count = 0;
1176 		for (i = 0; keys[i] != NULL; i++) {
1177 			count++;
1178 			memmove(&options.identity_files[1], &options.identity_files[0],
1179 			    sizeof(char *) * (SSH_MAX_IDENTITY_FILES - 1));
1180 			memmove(&options.identity_keys[1], &options.identity_keys[0],
1181 			    sizeof(Key *) * (SSH_MAX_IDENTITY_FILES - 1));
1182 			options.num_identity_files++;
1183 			options.identity_keys[0] = keys[i];
1184 			options.identity_files[0] = xstrdup("smartcard key");;
1185 		}
1186 		if (options.num_identity_files > SSH_MAX_IDENTITY_FILES)
1187 			options.num_identity_files = SSH_MAX_IDENTITY_FILES;
1188 		i = count;
1189 		xfree(keys);
1190 	}
1191 #endif /* SMARTCARD */
1192 	for (; i < options.num_identity_files; i++) {
1193 		filename = tilde_expand_filename(options.identity_files[i],
1194 		    original_real_uid);
1195 		public = key_load_public(filename, NULL);
1196 		debug("identity file %s type %d", filename,
1197 		    public ? public->type : -1);
1198 		xfree(options.identity_files[i]);
1199 		options.identity_files[i] = filename;
1200 		options.identity_keys[i] = public;
1201 	}
1202 }
1203