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