xref: /openbsd-src/usr.bin/ssh/sshconnect.c (revision f933361f20df4def12f9bc8391f68d6bfad3bb75)
1 /* $OpenBSD: sshconnect.c,v 1.280 2017/05/30 14:13:40 markus Exp $ */
2 /*
3  * Author: Tatu Ylonen <ylo@cs.hut.fi>
4  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5  *                    All rights reserved
6  * Code to connect to a remote host, and to perform the client side of the
7  * login (authentication) dialog.
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 
16 #include <sys/types.h>
17 #include <sys/wait.h>
18 #include <sys/stat.h>
19 #include <sys/socket.h>
20 #include <sys/time.h>
21 
22 #include <netinet/in.h>
23 
24 #include <ctype.h>
25 #include <errno.h>
26 #include <fcntl.h>
27 #include <netdb.h>
28 #include <paths.h>
29 #include <signal.h>
30 #include <pwd.h>
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <string.h>
34 #include <unistd.h>
35 
36 #include "xmalloc.h"
37 #include "ssh.h"
38 #include "rsa.h"
39 #include "buffer.h"
40 #include "packet.h"
41 #include "uidswap.h"
42 #include "compat.h"
43 #include "key.h"
44 #include "sshconnect.h"
45 #include "hostfile.h"
46 #include "log.h"
47 #include "misc.h"
48 #include "readconf.h"
49 #include "atomicio.h"
50 #include "dns.h"
51 #include "monitor_fdpass.h"
52 #include "ssh2.h"
53 #include "version.h"
54 #include "authfile.h"
55 #include "ssherr.h"
56 #include "authfd.h"
57 
58 char *client_version_string = NULL;
59 char *server_version_string = NULL;
60 struct sshkey *previous_host_key = NULL;
61 
62 static int matching_host_key_dns = 0;
63 
64 static pid_t proxy_command_pid = 0;
65 
66 /* import */
67 extern Options options;
68 extern char *__progname;
69 extern uid_t original_real_uid;
70 extern uid_t original_effective_uid;
71 
72 static int show_other_keys(struct hostkeys *, struct sshkey *);
73 static void warn_changed_key(struct sshkey *);
74 
75 /* Expand a proxy command */
76 static char *
77 expand_proxy_command(const char *proxy_command, const char *user,
78     const char *host, int port)
79 {
80 	char *tmp, *ret, strport[NI_MAXSERV];
81 
82 	snprintf(strport, sizeof strport, "%d", port);
83 	xasprintf(&tmp, "exec %s", proxy_command);
84 	ret = percent_expand(tmp, "h", host, "p", strport,
85 	    "r", options.user, (char *)NULL);
86 	free(tmp);
87 	return ret;
88 }
89 
90 /*
91  * Connect to the given ssh server using a proxy command that passes a
92  * a connected fd back to us.
93  */
94 static int
95 ssh_proxy_fdpass_connect(const char *host, u_short port,
96     const char *proxy_command)
97 {
98 	char *command_string;
99 	int sp[2], sock;
100 	pid_t pid;
101 	char *shell;
102 
103 	if ((shell = getenv("SHELL")) == NULL)
104 		shell = _PATH_BSHELL;
105 
106 	if (socketpair(AF_UNIX, SOCK_STREAM, 0, sp) < 0)
107 		fatal("Could not create socketpair to communicate with "
108 		    "proxy dialer: %.100s", strerror(errno));
109 
110 	command_string = expand_proxy_command(proxy_command, options.user,
111 	    host, port);
112 	debug("Executing proxy dialer command: %.500s", command_string);
113 
114 	/* Fork and execute the proxy command. */
115 	if ((pid = fork()) == 0) {
116 		char *argv[10];
117 
118 		/* Child.  Permanently give up superuser privileges. */
119 		permanently_drop_suid(original_real_uid);
120 
121 		close(sp[1]);
122 		/* Redirect stdin and stdout. */
123 		if (sp[0] != 0) {
124 			if (dup2(sp[0], 0) < 0)
125 				perror("dup2 stdin");
126 		}
127 		if (sp[0] != 1) {
128 			if (dup2(sp[0], 1) < 0)
129 				perror("dup2 stdout");
130 		}
131 		if (sp[0] >= 2)
132 			close(sp[0]);
133 
134 		/*
135 		 * Stderr is left as it is so that error messages get
136 		 * printed on the user's terminal.
137 		 */
138 		argv[0] = shell;
139 		argv[1] = "-c";
140 		argv[2] = command_string;
141 		argv[3] = NULL;
142 
143 		/*
144 		 * Execute the proxy command.
145 		 * Note that we gave up any extra privileges above.
146 		 */
147 		execv(argv[0], argv);
148 		perror(argv[0]);
149 		exit(1);
150 	}
151 	/* Parent. */
152 	if (pid < 0)
153 		fatal("fork failed: %.100s", strerror(errno));
154 	close(sp[0]);
155 	free(command_string);
156 
157 	if ((sock = mm_receive_fd(sp[1])) == -1)
158 		fatal("proxy dialer did not pass back a connection");
159 	close(sp[1]);
160 
161 	while (waitpid(pid, NULL, 0) == -1)
162 		if (errno != EINTR)
163 			fatal("Couldn't wait for child: %s", strerror(errno));
164 
165 	/* Set the connection file descriptors. */
166 	packet_set_connection(sock, sock);
167 
168 	return 0;
169 }
170 
171 /*
172  * Connect to the given ssh server using a proxy command.
173  */
174 static int
175 ssh_proxy_connect(const char *host, u_short port, const char *proxy_command)
176 {
177 	char *command_string;
178 	int pin[2], pout[2];
179 	pid_t pid;
180 	char *shell;
181 
182 	if ((shell = getenv("SHELL")) == NULL || *shell == '\0')
183 		shell = _PATH_BSHELL;
184 
185 	/* Create pipes for communicating with the proxy. */
186 	if (pipe(pin) < 0 || pipe(pout) < 0)
187 		fatal("Could not create pipes to communicate with the proxy: %.100s",
188 		    strerror(errno));
189 
190 	command_string = expand_proxy_command(proxy_command, options.user,
191 	    host, port);
192 	debug("Executing proxy command: %.500s", command_string);
193 
194 	/* Fork and execute the proxy command. */
195 	if ((pid = fork()) == 0) {
196 		char *argv[10];
197 
198 		/* Child.  Permanently give up superuser privileges. */
199 		permanently_drop_suid(original_real_uid);
200 
201 		/* Redirect stdin and stdout. */
202 		close(pin[1]);
203 		if (pin[0] != 0) {
204 			if (dup2(pin[0], 0) < 0)
205 				perror("dup2 stdin");
206 			close(pin[0]);
207 		}
208 		close(pout[0]);
209 		if (dup2(pout[1], 1) < 0)
210 			perror("dup2 stdout");
211 		/* Cannot be 1 because pin allocated two descriptors. */
212 		close(pout[1]);
213 
214 		/* Stderr is left as it is so that error messages get
215 		   printed on the user's terminal. */
216 		argv[0] = shell;
217 		argv[1] = "-c";
218 		argv[2] = command_string;
219 		argv[3] = NULL;
220 
221 		/* Execute the proxy command.  Note that we gave up any
222 		   extra privileges above. */
223 		signal(SIGPIPE, SIG_DFL);
224 		execv(argv[0], argv);
225 		perror(argv[0]);
226 		exit(1);
227 	}
228 	/* Parent. */
229 	if (pid < 0)
230 		fatal("fork failed: %.100s", strerror(errno));
231 	else
232 		proxy_command_pid = pid; /* save pid to clean up later */
233 
234 	/* Close child side of the descriptors. */
235 	close(pin[0]);
236 	close(pout[1]);
237 
238 	/* Free the command name. */
239 	free(command_string);
240 
241 	/* Set the connection file descriptors. */
242 	packet_set_connection(pout[0], pin[1]);
243 
244 	/* Indicate OK return */
245 	return 0;
246 }
247 
248 void
249 ssh_kill_proxy_command(void)
250 {
251 	/*
252 	 * Send SIGHUP to proxy command if used. We don't wait() in
253 	 * case it hangs and instead rely on init to reap the child
254 	 */
255 	if (proxy_command_pid > 1)
256 		kill(proxy_command_pid, SIGHUP);
257 }
258 
259 /*
260  * Creates a (possibly privileged) socket for use as the ssh connection.
261  */
262 static int
263 ssh_create_socket(int privileged, struct addrinfo *ai)
264 {
265 	int sock, r, gaierr;
266 	struct addrinfo hints, *res = NULL;
267 
268 	sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
269 	if (sock < 0) {
270 		error("socket: %s", strerror(errno));
271 		return -1;
272 	}
273 	fcntl(sock, F_SETFD, FD_CLOEXEC);
274 
275 	/* Bind the socket to an alternative local IP address */
276 	if (options.bind_address == NULL && !privileged)
277 		return sock;
278 
279 	if (options.bind_address) {
280 		memset(&hints, 0, sizeof(hints));
281 		hints.ai_family = ai->ai_family;
282 		hints.ai_socktype = ai->ai_socktype;
283 		hints.ai_protocol = ai->ai_protocol;
284 		hints.ai_flags = AI_PASSIVE;
285 		gaierr = getaddrinfo(options.bind_address, NULL, &hints, &res);
286 		if (gaierr) {
287 			error("getaddrinfo: %s: %s", options.bind_address,
288 			    ssh_gai_strerror(gaierr));
289 			close(sock);
290 			return -1;
291 		}
292 	}
293 	/*
294 	 * If we are running as root and want to connect to a privileged
295 	 * port, bind our own socket to a privileged port.
296 	 */
297 	if (privileged) {
298 		PRIV_START;
299 		r = bindresvport_sa(sock, res ? res->ai_addr : NULL);
300 		PRIV_END;
301 		if (r < 0) {
302 			error("bindresvport_sa: af=%d %s", ai->ai_family,
303 			    strerror(errno));
304 			goto fail;
305 		}
306 	} else {
307 		if (bind(sock, res->ai_addr, res->ai_addrlen) < 0) {
308 			error("bind: %s: %s", options.bind_address,
309 			    strerror(errno));
310  fail:
311 			close(sock);
312 			freeaddrinfo(res);
313 			return -1;
314 		}
315 	}
316 	if (res != NULL)
317 		freeaddrinfo(res);
318 	return sock;
319 }
320 
321 static int
322 timeout_connect(int sockfd, const struct sockaddr *serv_addr,
323     socklen_t addrlen, int *timeoutp)
324 {
325 	fd_set *fdset;
326 	struct timeval tv, t_start;
327 	socklen_t optlen;
328 	int optval, rc, result = -1;
329 
330 	gettimeofday(&t_start, NULL);
331 
332 	if (*timeoutp <= 0) {
333 		result = connect(sockfd, serv_addr, addrlen);
334 		goto done;
335 	}
336 
337 	set_nonblock(sockfd);
338 	rc = connect(sockfd, serv_addr, addrlen);
339 	if (rc == 0) {
340 		unset_nonblock(sockfd);
341 		result = 0;
342 		goto done;
343 	}
344 	if (errno != EINPROGRESS) {
345 		result = -1;
346 		goto done;
347 	}
348 
349 	fdset = xcalloc(howmany(sockfd + 1, NFDBITS),
350 	    sizeof(fd_mask));
351 	FD_SET(sockfd, fdset);
352 	ms_to_timeval(&tv, *timeoutp);
353 
354 	for (;;) {
355 		rc = select(sockfd + 1, NULL, fdset, NULL, &tv);
356 		if (rc != -1 || errno != EINTR)
357 			break;
358 	}
359 
360 	switch (rc) {
361 	case 0:
362 		/* Timed out */
363 		errno = ETIMEDOUT;
364 		break;
365 	case -1:
366 		/* Select error */
367 		debug("select: %s", strerror(errno));
368 		break;
369 	case 1:
370 		/* Completed or failed */
371 		optval = 0;
372 		optlen = sizeof(optval);
373 		if (getsockopt(sockfd, SOL_SOCKET, SO_ERROR, &optval,
374 		    &optlen) == -1) {
375 			debug("getsockopt: %s", strerror(errno));
376 			break;
377 		}
378 		if (optval != 0) {
379 			errno = optval;
380 			break;
381 		}
382 		result = 0;
383 		unset_nonblock(sockfd);
384 		break;
385 	default:
386 		/* Should not occur */
387 		fatal("Bogus return (%d) from select()", rc);
388 	}
389 
390 	free(fdset);
391 
392  done:
393  	if (result == 0 && *timeoutp > 0) {
394 		ms_subtract_diff(&t_start, timeoutp);
395 		if (*timeoutp <= 0) {
396 			errno = ETIMEDOUT;
397 			result = -1;
398 		}
399 	}
400 
401 	return (result);
402 }
403 
404 /*
405  * Opens a TCP/IP connection to the remote server on the given host.
406  * The address of the remote host will be returned in hostaddr.
407  * If port is 0, the default port will be used.  If needpriv is true,
408  * a privileged port will be allocated to make the connection.
409  * This requires super-user privileges if needpriv is true.
410  * Connection_attempts specifies the maximum number of tries (one per
411  * second).  If proxy_command is non-NULL, it specifies the command (with %h
412  * and %p substituted for host and port, respectively) to use to contact
413  * the daemon.
414  */
415 static int
416 ssh_connect_direct(const char *host, struct addrinfo *aitop,
417     struct sockaddr_storage *hostaddr, u_short port, int family,
418     int connection_attempts, int *timeout_ms, int want_keepalive, int needpriv)
419 {
420 	int on = 1;
421 	int sock = -1, attempt;
422 	char ntop[NI_MAXHOST], strport[NI_MAXSERV];
423 	struct addrinfo *ai;
424 
425 	debug2("%s: needpriv %d", __func__, needpriv);
426 	memset(ntop, 0, sizeof(ntop));
427 	memset(strport, 0, sizeof(strport));
428 
429 	for (attempt = 0; attempt < connection_attempts; attempt++) {
430 		if (attempt > 0) {
431 			/* Sleep a moment before retrying. */
432 			sleep(1);
433 			debug("Trying again...");
434 		}
435 		/*
436 		 * Loop through addresses for this host, and try each one in
437 		 * sequence until the connection succeeds.
438 		 */
439 		for (ai = aitop; ai; ai = ai->ai_next) {
440 			if (ai->ai_family != AF_INET &&
441 			    ai->ai_family != AF_INET6)
442 				continue;
443 			if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
444 			    ntop, sizeof(ntop), strport, sizeof(strport),
445 			    NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
446 				error("%s: getnameinfo failed", __func__);
447 				continue;
448 			}
449 			debug("Connecting to %.200s [%.100s] port %s.",
450 				host, ntop, strport);
451 
452 			/* Create a socket for connecting. */
453 			sock = ssh_create_socket(needpriv, ai);
454 			if (sock < 0)
455 				/* Any error is already output */
456 				continue;
457 
458 			if (timeout_connect(sock, ai->ai_addr, ai->ai_addrlen,
459 			    timeout_ms) >= 0) {
460 				/* Successful connection. */
461 				memcpy(hostaddr, ai->ai_addr, ai->ai_addrlen);
462 				break;
463 			} else {
464 				debug("connect to address %s port %s: %s",
465 				    ntop, strport, strerror(errno));
466 				close(sock);
467 				sock = -1;
468 			}
469 		}
470 		if (sock != -1)
471 			break;	/* Successful connection. */
472 	}
473 
474 	/* Return failure if we didn't get a successful connection. */
475 	if (sock == -1) {
476 		error("ssh: connect to host %s port %s: %s",
477 		    host, strport, strerror(errno));
478 		return (-1);
479 	}
480 
481 	debug("Connection established.");
482 
483 	/* Set SO_KEEPALIVE if requested. */
484 	if (want_keepalive &&
485 	    setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE, (void *)&on,
486 	    sizeof(on)) < 0)
487 		error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
488 
489 	/* Set the connection. */
490 	packet_set_connection(sock, sock);
491 
492 	return 0;
493 }
494 
495 int
496 ssh_connect(const char *host, struct addrinfo *addrs,
497     struct sockaddr_storage *hostaddr, u_short port, int family,
498     int connection_attempts, int *timeout_ms, int want_keepalive, int needpriv)
499 {
500 	if (options.proxy_command == NULL) {
501 		return ssh_connect_direct(host, addrs, hostaddr, port, family,
502 		    connection_attempts, timeout_ms, want_keepalive, needpriv);
503 	} else if (strcmp(options.proxy_command, "-") == 0) {
504 		packet_set_connection(STDIN_FILENO, STDOUT_FILENO);
505 		return 0; /* Always succeeds */
506 	} else if (options.proxy_use_fdpass) {
507 		return ssh_proxy_fdpass_connect(host, port,
508 		    options.proxy_command);
509 	}
510 	return ssh_proxy_connect(host, port, options.proxy_command);
511 }
512 
513 static void
514 send_client_banner(int connection_out, int minor1)
515 {
516 	/* Send our own protocol version identification. */
517 	xasprintf(&client_version_string, "SSH-%d.%d-%.100s\r\n",
518 	    PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2, SSH_VERSION);
519 	if (atomicio(vwrite, connection_out, client_version_string,
520 	    strlen(client_version_string)) != strlen(client_version_string))
521 		fatal("write: %.100s", strerror(errno));
522 	chop(client_version_string);
523 	debug("Local version string %.100s", client_version_string);
524 }
525 
526 /*
527  * Waits for the server identification string, and sends our own
528  * identification string.
529  */
530 void
531 ssh_exchange_identification(int timeout_ms)
532 {
533 	char buf[256], remote_version[256];	/* must be same size! */
534 	int remote_major, remote_minor, mismatch;
535 	int connection_in = packet_get_connection_in();
536 	int connection_out = packet_get_connection_out();
537 	u_int i, n;
538 	size_t len;
539 	int fdsetsz, remaining, rc;
540 	struct timeval t_start, t_remaining;
541 	fd_set *fdset;
542 
543 	fdsetsz = howmany(connection_in + 1, NFDBITS) * sizeof(fd_mask);
544 	fdset = xcalloc(1, fdsetsz);
545 
546 	send_client_banner(connection_out, 0);
547 
548 	/* Read other side's version identification. */
549 	remaining = timeout_ms;
550 	for (n = 0;;) {
551 		for (i = 0; i < sizeof(buf) - 1; i++) {
552 			if (timeout_ms > 0) {
553 				gettimeofday(&t_start, NULL);
554 				ms_to_timeval(&t_remaining, remaining);
555 				FD_SET(connection_in, fdset);
556 				rc = select(connection_in + 1, fdset, NULL,
557 				    fdset, &t_remaining);
558 				ms_subtract_diff(&t_start, &remaining);
559 				if (rc == 0 || remaining <= 0)
560 					fatal("Connection timed out during "
561 					    "banner exchange");
562 				if (rc == -1) {
563 					if (errno == EINTR)
564 						continue;
565 					fatal("ssh_exchange_identification: "
566 					    "select: %s", strerror(errno));
567 				}
568 			}
569 
570 			len = atomicio(read, connection_in, &buf[i], 1);
571 
572 			if (len != 1 && errno == EPIPE)
573 				fatal("ssh_exchange_identification: "
574 				    "Connection closed by remote host");
575 			else if (len != 1)
576 				fatal("ssh_exchange_identification: "
577 				    "read: %.100s", strerror(errno));
578 			if (buf[i] == '\r') {
579 				buf[i] = '\n';
580 				buf[i + 1] = 0;
581 				continue;		/**XXX wait for \n */
582 			}
583 			if (buf[i] == '\n') {
584 				buf[i + 1] = 0;
585 				break;
586 			}
587 			if (++n > 65536)
588 				fatal("ssh_exchange_identification: "
589 				    "No banner received");
590 		}
591 		buf[sizeof(buf) - 1] = 0;
592 		if (strncmp(buf, "SSH-", 4) == 0)
593 			break;
594 		debug("ssh_exchange_identification: %s", buf);
595 	}
596 	server_version_string = xstrdup(buf);
597 	free(fdset);
598 
599 	/*
600 	 * Check that the versions match.  In future this might accept
601 	 * several versions and set appropriate flags to handle them.
602 	 */
603 	if (sscanf(server_version_string, "SSH-%d.%d-%[^\n]\n",
604 	    &remote_major, &remote_minor, remote_version) != 3)
605 		fatal("Bad remote protocol version identification: '%.100s'", buf);
606 	debug("Remote protocol version %d.%d, remote software version %.100s",
607 	    remote_major, remote_minor, remote_version);
608 
609 	active_state->compat = compat_datafellows(remote_version);
610 	mismatch = 0;
611 
612 	switch (remote_major) {
613 	case 2:
614 		break;
615 	case 1:
616 		if (remote_minor != 99)
617 			mismatch = 1;
618 		break;
619 	default:
620 		mismatch = 1;
621 		break;
622 	}
623 	if (mismatch)
624 		fatal("Protocol major versions differ: %d vs. %d",
625 		    PROTOCOL_MAJOR_2, remote_major);
626 	if ((datafellows & SSH_BUG_DERIVEKEY) != 0)
627 		fatal("Server version \"%.100s\" uses unsafe key agreement; "
628 		    "refusing connection", remote_version);
629 	if ((datafellows & SSH_BUG_RSASIGMD5) != 0)
630 		logit("Server version \"%.100s\" uses unsafe RSA signature "
631 		    "scheme; disabling use of RSA keys", remote_version);
632 	chop(server_version_string);
633 }
634 
635 /* defaults to 'no' */
636 static int
637 confirm(const char *prompt)
638 {
639 	const char *msg, *again = "Please type 'yes' or 'no': ";
640 	char *p;
641 	int ret = -1;
642 
643 	if (options.batch_mode)
644 		return 0;
645 	for (msg = prompt;;msg = again) {
646 		p = read_passphrase(msg, RP_ECHO);
647 		if (p == NULL ||
648 		    (p[0] == '\0') || (p[0] == '\n') ||
649 		    strncasecmp(p, "no", 2) == 0)
650 			ret = 0;
651 		if (p && strncasecmp(p, "yes", 3) == 0)
652 			ret = 1;
653 		free(p);
654 		if (ret != -1)
655 			return ret;
656 	}
657 }
658 
659 static int
660 check_host_cert(const char *host, const struct sshkey *host_key)
661 {
662 	const char *reason;
663 
664 	if (key_cert_check_authority(host_key, 1, 0, host, &reason) != 0) {
665 		error("%s", reason);
666 		return 0;
667 	}
668 	if (buffer_len(host_key->cert->critical) != 0) {
669 		error("Certificate for %s contains unsupported "
670 		    "critical options(s)", host);
671 		return 0;
672 	}
673 	return 1;
674 }
675 
676 static int
677 sockaddr_is_local(struct sockaddr *hostaddr)
678 {
679 	switch (hostaddr->sa_family) {
680 	case AF_INET:
681 		return (ntohl(((struct sockaddr_in *)hostaddr)->
682 		    sin_addr.s_addr) >> 24) == IN_LOOPBACKNET;
683 	case AF_INET6:
684 		return IN6_IS_ADDR_LOOPBACK(
685 		    &(((struct sockaddr_in6 *)hostaddr)->sin6_addr));
686 	default:
687 		return 0;
688 	}
689 }
690 
691 /*
692  * Prepare the hostname and ip address strings that are used to lookup
693  * host keys in known_hosts files. These may have a port number appended.
694  */
695 void
696 get_hostfile_hostname_ipaddr(char *hostname, struct sockaddr *hostaddr,
697     u_short port, char **hostfile_hostname, char **hostfile_ipaddr)
698 {
699 	char ntop[NI_MAXHOST];
700 
701 	/*
702 	 * We don't have the remote ip-address for connections
703 	 * using a proxy command
704 	 */
705 	if (hostfile_ipaddr != NULL) {
706 		if (options.proxy_command == NULL) {
707 			if (getnameinfo(hostaddr, hostaddr->sa_len,
708 			    ntop, sizeof(ntop), NULL, 0, NI_NUMERICHOST) != 0)
709 			fatal("%s: getnameinfo failed", __func__);
710 			*hostfile_ipaddr = put_host_port(ntop, port);
711 		} else {
712 			*hostfile_ipaddr = xstrdup("<no hostip for proxy "
713 			    "command>");
714 		}
715 	}
716 
717 	/*
718 	 * Allow the user to record the key under a different name or
719 	 * differentiate a non-standard port.  This is useful for ssh
720 	 * tunneling over forwarded connections or if you run multiple
721 	 * sshd's on different ports on the same machine.
722 	 */
723 	if (hostfile_hostname != NULL) {
724 		if (options.host_key_alias != NULL) {
725 			*hostfile_hostname = xstrdup(options.host_key_alias);
726 			debug("using hostkeyalias: %s", *hostfile_hostname);
727 		} else {
728 			*hostfile_hostname = put_host_port(hostname, port);
729 		}
730 	}
731 }
732 
733 /*
734  * check whether the supplied host key is valid, return -1 if the key
735  * is not valid. user_hostfile[0] will not be updated if 'readonly' is true.
736  */
737 #define RDRW	0
738 #define RDONLY	1
739 #define ROQUIET	2
740 static int
741 check_host_key(char *hostname, struct sockaddr *hostaddr, u_short port,
742     struct sshkey *host_key, int readonly,
743     char **user_hostfiles, u_int num_user_hostfiles,
744     char **system_hostfiles, u_int num_system_hostfiles)
745 {
746 	HostStatus host_status;
747 	HostStatus ip_status;
748 	struct sshkey *raw_key = NULL;
749 	char *ip = NULL, *host = NULL;
750 	char hostline[1000], *hostp, *fp, *ra;
751 	char msg[1024];
752 	const char *type;
753 	const struct hostkey_entry *host_found, *ip_found;
754 	int len, cancelled_forwarding = 0;
755 	int local = sockaddr_is_local(hostaddr);
756 	int r, want_cert = sshkey_is_cert(host_key), host_ip_differ = 0;
757 	int hostkey_trusted = 0; /* Known or explicitly accepted by user */
758 	struct hostkeys *host_hostkeys, *ip_hostkeys;
759 	u_int i;
760 
761 	/*
762 	 * Force accepting of the host key for loopback/localhost. The
763 	 * problem is that if the home directory is NFS-mounted to multiple
764 	 * machines, localhost will refer to a different machine in each of
765 	 * them, and the user will get bogus HOST_CHANGED warnings.  This
766 	 * essentially disables host authentication for localhost; however,
767 	 * this is probably not a real problem.
768 	 */
769 	if (options.no_host_authentication_for_localhost == 1 && local &&
770 	    options.host_key_alias == NULL) {
771 		debug("Forcing accepting of host key for "
772 		    "loopback/localhost.");
773 		return 0;
774 	}
775 
776 	/*
777 	 * Prepare the hostname and address strings used for hostkey lookup.
778 	 * In some cases, these will have a port number appended.
779 	 */
780 	get_hostfile_hostname_ipaddr(hostname, hostaddr, port, &host, &ip);
781 
782 	/*
783 	 * Turn off check_host_ip if the connection is to localhost, via proxy
784 	 * command or if we don't have a hostname to compare with
785 	 */
786 	if (options.check_host_ip && (local ||
787 	    strcmp(hostname, ip) == 0 || options.proxy_command != NULL))
788 		options.check_host_ip = 0;
789 
790 	host_hostkeys = init_hostkeys();
791 	for (i = 0; i < num_user_hostfiles; i++)
792 		load_hostkeys(host_hostkeys, host, user_hostfiles[i]);
793 	for (i = 0; i < num_system_hostfiles; i++)
794 		load_hostkeys(host_hostkeys, host, system_hostfiles[i]);
795 
796 	ip_hostkeys = NULL;
797 	if (!want_cert && options.check_host_ip) {
798 		ip_hostkeys = init_hostkeys();
799 		for (i = 0; i < num_user_hostfiles; i++)
800 			load_hostkeys(ip_hostkeys, ip, user_hostfiles[i]);
801 		for (i = 0; i < num_system_hostfiles; i++)
802 			load_hostkeys(ip_hostkeys, ip, system_hostfiles[i]);
803 	}
804 
805  retry:
806 	/* Reload these as they may have changed on cert->key downgrade */
807 	want_cert = sshkey_is_cert(host_key);
808 	type = sshkey_type(host_key);
809 
810 	/*
811 	 * Check if the host key is present in the user's list of known
812 	 * hosts or in the systemwide list.
813 	 */
814 	host_status = check_key_in_hostkeys(host_hostkeys, host_key,
815 	    &host_found);
816 
817 	/*
818 	 * Also perform check for the ip address, skip the check if we are
819 	 * localhost, looking for a certificate, or the hostname was an ip
820 	 * address to begin with.
821 	 */
822 	if (!want_cert && ip_hostkeys != NULL) {
823 		ip_status = check_key_in_hostkeys(ip_hostkeys, host_key,
824 		    &ip_found);
825 		if (host_status == HOST_CHANGED &&
826 		    (ip_status != HOST_CHANGED ||
827 		    (ip_found != NULL &&
828 		    !sshkey_equal(ip_found->key, host_found->key))))
829 			host_ip_differ = 1;
830 	} else
831 		ip_status = host_status;
832 
833 	switch (host_status) {
834 	case HOST_OK:
835 		/* The host is known and the key matches. */
836 		debug("Host '%.200s' is known and matches the %s host %s.",
837 		    host, type, want_cert ? "certificate" : "key");
838 		debug("Found %s in %s:%lu", want_cert ? "CA key" : "key",
839 		    host_found->file, host_found->line);
840 		if (want_cert && !check_host_cert(hostname, host_key))
841 			goto fail;
842 		if (options.check_host_ip && ip_status == HOST_NEW) {
843 			if (readonly || want_cert)
844 				logit("%s host key for IP address "
845 				    "'%.128s' not in list of known hosts.",
846 				    type, ip);
847 			else if (!add_host_to_hostfile(user_hostfiles[0], ip,
848 			    host_key, options.hash_known_hosts))
849 				logit("Failed to add the %s host key for IP "
850 				    "address '%.128s' to the list of known "
851 				    "hosts (%.500s).", type, ip,
852 				    user_hostfiles[0]);
853 			else
854 				logit("Warning: Permanently added the %s host "
855 				    "key for IP address '%.128s' to the list "
856 				    "of known hosts.", type, ip);
857 		} else if (options.visual_host_key) {
858 			fp = sshkey_fingerprint(host_key,
859 			    options.fingerprint_hash, SSH_FP_DEFAULT);
860 			ra = sshkey_fingerprint(host_key,
861 			    options.fingerprint_hash, SSH_FP_RANDOMART);
862 			if (fp == NULL || ra == NULL)
863 				fatal("%s: sshkey_fingerprint fail", __func__);
864 			logit("Host key fingerprint is %s\n%s", fp, ra);
865 			free(ra);
866 			free(fp);
867 		}
868 		hostkey_trusted = 1;
869 		break;
870 	case HOST_NEW:
871 		if (options.host_key_alias == NULL && port != 0 &&
872 		    port != SSH_DEFAULT_PORT) {
873 			debug("checking without port identifier");
874 			if (check_host_key(hostname, hostaddr, 0, host_key,
875 			    ROQUIET, user_hostfiles, num_user_hostfiles,
876 			    system_hostfiles, num_system_hostfiles) == 0) {
877 				debug("found matching key w/out port");
878 				break;
879 			}
880 		}
881 		if (readonly || want_cert)
882 			goto fail;
883 		/* The host is new. */
884 		if (options.strict_host_key_checking == 1) {
885 			/*
886 			 * User has requested strict host key checking.  We
887 			 * will not add the host key automatically.  The only
888 			 * alternative left is to abort.
889 			 */
890 			error("No %s host key is known for %.200s and you "
891 			    "have requested strict checking.", type, host);
892 			goto fail;
893 		} else if (options.strict_host_key_checking == 2) {
894 			char msg1[1024], msg2[1024];
895 
896 			if (show_other_keys(host_hostkeys, host_key))
897 				snprintf(msg1, sizeof(msg1),
898 				    "\nbut keys of different type are already"
899 				    " known for this host.");
900 			else
901 				snprintf(msg1, sizeof(msg1), ".");
902 			/* The default */
903 			fp = sshkey_fingerprint(host_key,
904 			    options.fingerprint_hash, SSH_FP_DEFAULT);
905 			ra = sshkey_fingerprint(host_key,
906 			    options.fingerprint_hash, SSH_FP_RANDOMART);
907 			if (fp == NULL || ra == NULL)
908 				fatal("%s: sshkey_fingerprint fail", __func__);
909 			msg2[0] = '\0';
910 			if (options.verify_host_key_dns) {
911 				if (matching_host_key_dns)
912 					snprintf(msg2, sizeof(msg2),
913 					    "Matching host key fingerprint"
914 					    " found in DNS.\n");
915 				else
916 					snprintf(msg2, sizeof(msg2),
917 					    "No matching host key fingerprint"
918 					    " found in DNS.\n");
919 			}
920 			snprintf(msg, sizeof(msg),
921 			    "The authenticity of host '%.200s (%s)' can't be "
922 			    "established%s\n"
923 			    "%s key fingerprint is %s.%s%s\n%s"
924 			    "Are you sure you want to continue connecting "
925 			    "(yes/no)? ",
926 			    host, ip, msg1, type, fp,
927 			    options.visual_host_key ? "\n" : "",
928 			    options.visual_host_key ? ra : "",
929 			    msg2);
930 			free(ra);
931 			free(fp);
932 			if (!confirm(msg))
933 				goto fail;
934 			hostkey_trusted = 1; /* user explicitly confirmed */
935 		}
936 		/*
937 		 * If not in strict mode, add the key automatically to the
938 		 * local known_hosts file.
939 		 */
940 		if (options.check_host_ip && ip_status == HOST_NEW) {
941 			snprintf(hostline, sizeof(hostline), "%s,%s", host, ip);
942 			hostp = hostline;
943 			if (options.hash_known_hosts) {
944 				/* Add hash of host and IP separately */
945 				r = add_host_to_hostfile(user_hostfiles[0],
946 				    host, host_key, options.hash_known_hosts) &&
947 				    add_host_to_hostfile(user_hostfiles[0], ip,
948 				    host_key, options.hash_known_hosts);
949 			} else {
950 				/* Add unhashed "host,ip" */
951 				r = add_host_to_hostfile(user_hostfiles[0],
952 				    hostline, host_key,
953 				    options.hash_known_hosts);
954 			}
955 		} else {
956 			r = add_host_to_hostfile(user_hostfiles[0], host,
957 			    host_key, options.hash_known_hosts);
958 			hostp = host;
959 		}
960 
961 		if (!r)
962 			logit("Failed to add the host to the list of known "
963 			    "hosts (%.500s).", user_hostfiles[0]);
964 		else
965 			logit("Warning: Permanently added '%.200s' (%s) to the "
966 			    "list of known hosts.", hostp, type);
967 		break;
968 	case HOST_REVOKED:
969 		error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
970 		error("@       WARNING: REVOKED HOST KEY DETECTED!               @");
971 		error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
972 		error("The %s host key for %s is marked as revoked.", type, host);
973 		error("This could mean that a stolen key is being used to");
974 		error("impersonate this host.");
975 
976 		/*
977 		 * If strict host key checking is in use, the user will have
978 		 * to edit the key manually and we can only abort.
979 		 */
980 		if (options.strict_host_key_checking) {
981 			error("%s host key for %.200s was revoked and you have "
982 			    "requested strict checking.", type, host);
983 			goto fail;
984 		}
985 		goto continue_unsafe;
986 
987 	case HOST_CHANGED:
988 		if (want_cert) {
989 			/*
990 			 * This is only a debug() since it is valid to have
991 			 * CAs with wildcard DNS matches that don't match
992 			 * all hosts that one might visit.
993 			 */
994 			debug("Host certificate authority does not "
995 			    "match %s in %s:%lu", CA_MARKER,
996 			    host_found->file, host_found->line);
997 			goto fail;
998 		}
999 		if (readonly == ROQUIET)
1000 			goto fail;
1001 		if (options.check_host_ip && host_ip_differ) {
1002 			char *key_msg;
1003 			if (ip_status == HOST_NEW)
1004 				key_msg = "is unknown";
1005 			else if (ip_status == HOST_OK)
1006 				key_msg = "is unchanged";
1007 			else
1008 				key_msg = "has a different value";
1009 			error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1010 			error("@       WARNING: POSSIBLE DNS SPOOFING DETECTED!          @");
1011 			error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1012 			error("The %s host key for %s has changed,", type, host);
1013 			error("and the key for the corresponding IP address %s", ip);
1014 			error("%s. This could either mean that", key_msg);
1015 			error("DNS SPOOFING is happening or the IP address for the host");
1016 			error("and its host key have changed at the same time.");
1017 			if (ip_status != HOST_NEW)
1018 				error("Offending key for IP in %s:%lu",
1019 				    ip_found->file, ip_found->line);
1020 		}
1021 		/* The host key has changed. */
1022 		warn_changed_key(host_key);
1023 		error("Add correct host key in %.100s to get rid of this message.",
1024 		    user_hostfiles[0]);
1025 		error("Offending %s key in %s:%lu",
1026 		    sshkey_type(host_found->key),
1027 		    host_found->file, host_found->line);
1028 
1029 		/*
1030 		 * If strict host key checking is in use, the user will have
1031 		 * to edit the key manually and we can only abort.
1032 		 */
1033 		if (options.strict_host_key_checking) {
1034 			error("%s host key for %.200s has changed and you have "
1035 			    "requested strict checking.", type, host);
1036 			goto fail;
1037 		}
1038 
1039  continue_unsafe:
1040 		/*
1041 		 * If strict host key checking has not been requested, allow
1042 		 * the connection but without MITM-able authentication or
1043 		 * forwarding.
1044 		 */
1045 		if (options.password_authentication) {
1046 			error("Password authentication is disabled to avoid "
1047 			    "man-in-the-middle attacks.");
1048 			options.password_authentication = 0;
1049 			cancelled_forwarding = 1;
1050 		}
1051 		if (options.kbd_interactive_authentication) {
1052 			error("Keyboard-interactive authentication is disabled"
1053 			    " to avoid man-in-the-middle attacks.");
1054 			options.kbd_interactive_authentication = 0;
1055 			options.challenge_response_authentication = 0;
1056 			cancelled_forwarding = 1;
1057 		}
1058 		if (options.challenge_response_authentication) {
1059 			error("Challenge/response authentication is disabled"
1060 			    " to avoid man-in-the-middle attacks.");
1061 			options.challenge_response_authentication = 0;
1062 			cancelled_forwarding = 1;
1063 		}
1064 		if (options.forward_agent) {
1065 			error("Agent forwarding is disabled to avoid "
1066 			    "man-in-the-middle attacks.");
1067 			options.forward_agent = 0;
1068 			cancelled_forwarding = 1;
1069 		}
1070 		if (options.forward_x11) {
1071 			error("X11 forwarding is disabled to avoid "
1072 			    "man-in-the-middle attacks.");
1073 			options.forward_x11 = 0;
1074 			cancelled_forwarding = 1;
1075 		}
1076 		if (options.num_local_forwards > 0 ||
1077 		    options.num_remote_forwards > 0) {
1078 			error("Port forwarding is disabled to avoid "
1079 			    "man-in-the-middle attacks.");
1080 			options.num_local_forwards =
1081 			    options.num_remote_forwards = 0;
1082 			cancelled_forwarding = 1;
1083 		}
1084 		if (options.tun_open != SSH_TUNMODE_NO) {
1085 			error("Tunnel forwarding is disabled to avoid "
1086 			    "man-in-the-middle attacks.");
1087 			options.tun_open = SSH_TUNMODE_NO;
1088 			cancelled_forwarding = 1;
1089 		}
1090 		if (options.exit_on_forward_failure && cancelled_forwarding)
1091 			fatal("Error: forwarding disabled due to host key "
1092 			    "check failure");
1093 
1094 		/*
1095 		 * XXX Should permit the user to change to use the new id.
1096 		 * This could be done by converting the host key to an
1097 		 * identifying sentence, tell that the host identifies itself
1098 		 * by that sentence, and ask the user if he/she wishes to
1099 		 * accept the authentication.
1100 		 */
1101 		break;
1102 	case HOST_FOUND:
1103 		fatal("internal error");
1104 		break;
1105 	}
1106 
1107 	if (options.check_host_ip && host_status != HOST_CHANGED &&
1108 	    ip_status == HOST_CHANGED) {
1109 		snprintf(msg, sizeof(msg),
1110 		    "Warning: the %s host key for '%.200s' "
1111 		    "differs from the key for the IP address '%.128s'"
1112 		    "\nOffending key for IP in %s:%lu",
1113 		    type, host, ip, ip_found->file, ip_found->line);
1114 		if (host_status == HOST_OK) {
1115 			len = strlen(msg);
1116 			snprintf(msg + len, sizeof(msg) - len,
1117 			    "\nMatching host key in %s:%lu",
1118 			    host_found->file, host_found->line);
1119 		}
1120 		if (options.strict_host_key_checking == 1) {
1121 			logit("%s", msg);
1122 			error("Exiting, you have requested strict checking.");
1123 			goto fail;
1124 		} else if (options.strict_host_key_checking == 2) {
1125 			strlcat(msg, "\nAre you sure you want "
1126 			    "to continue connecting (yes/no)? ", sizeof(msg));
1127 			if (!confirm(msg))
1128 				goto fail;
1129 		} else {
1130 			logit("%s", msg);
1131 		}
1132 	}
1133 
1134 	if (!hostkey_trusted && options.update_hostkeys) {
1135 		debug("%s: hostkey not known or explicitly trusted: "
1136 		    "disabling UpdateHostkeys", __func__);
1137 		options.update_hostkeys = 0;
1138 	}
1139 
1140 	free(ip);
1141 	free(host);
1142 	if (host_hostkeys != NULL)
1143 		free_hostkeys(host_hostkeys);
1144 	if (ip_hostkeys != NULL)
1145 		free_hostkeys(ip_hostkeys);
1146 	return 0;
1147 
1148 fail:
1149 	if (want_cert && host_status != HOST_REVOKED) {
1150 		/*
1151 		 * No matching certificate. Downgrade cert to raw key and
1152 		 * search normally.
1153 		 */
1154 		debug("No matching CA found. Retry with plain key");
1155 		if ((r = sshkey_from_private(host_key, &raw_key)) != 0)
1156 			fatal("%s: sshkey_from_private: %s",
1157 			    __func__, ssh_err(r));
1158 		if ((r = sshkey_drop_cert(raw_key)) != 0)
1159 			fatal("Couldn't drop certificate: %s", ssh_err(r));
1160 		host_key = raw_key;
1161 		goto retry;
1162 	}
1163 	if (raw_key != NULL)
1164 		sshkey_free(raw_key);
1165 	free(ip);
1166 	free(host);
1167 	if (host_hostkeys != NULL)
1168 		free_hostkeys(host_hostkeys);
1169 	if (ip_hostkeys != NULL)
1170 		free_hostkeys(ip_hostkeys);
1171 	return -1;
1172 }
1173 
1174 /* returns 0 if key verifies or -1 if key does NOT verify */
1175 int
1176 verify_host_key(char *host, struct sockaddr *hostaddr, struct sshkey *host_key)
1177 {
1178 	u_int i;
1179 	int r = -1, flags = 0;
1180 	char valid[64], *fp = NULL, *cafp = NULL;
1181 	struct sshkey *plain = NULL;
1182 
1183 	if ((fp = sshkey_fingerprint(host_key,
1184 	    options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL) {
1185 		error("%s: fingerprint host key: %s", __func__, ssh_err(r));
1186 		r = -1;
1187 		goto out;
1188 	}
1189 
1190 	if (sshkey_is_cert(host_key)) {
1191 		if ((cafp = sshkey_fingerprint(host_key->cert->signature_key,
1192 		    options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL) {
1193 			error("%s: fingerprint CA key: %s",
1194 			    __func__, ssh_err(r));
1195 			r = -1;
1196 			goto out;
1197 		}
1198 		sshkey_format_cert_validity(host_key->cert,
1199 		    valid, sizeof(valid));
1200 		debug("Server host certificate: %s %s, serial %llu "
1201 		    "ID \"%s\" CA %s %s valid %s",
1202 		    sshkey_ssh_name(host_key), fp,
1203 		    (unsigned long long)host_key->cert->serial,
1204 		    host_key->cert->key_id,
1205 		    sshkey_ssh_name(host_key->cert->signature_key), cafp,
1206 		    valid);
1207 		for (i = 0; i < host_key->cert->nprincipals; i++) {
1208 			debug2("Server host certificate hostname: %s",
1209 			    host_key->cert->principals[i]);
1210 		}
1211 	} else {
1212 		debug("Server host key: %s %s", sshkey_ssh_name(host_key), fp);
1213 	}
1214 
1215 	if (sshkey_equal(previous_host_key, host_key)) {
1216 		debug2("%s: server host key %s %s matches cached key",
1217 		    __func__, sshkey_type(host_key), fp);
1218 		r = 0;
1219 		goto out;
1220 	}
1221 
1222 	/* Check in RevokedHostKeys file if specified */
1223 	if (options.revoked_host_keys != NULL) {
1224 		r = sshkey_check_revoked(host_key, options.revoked_host_keys);
1225 		switch (r) {
1226 		case 0:
1227 			break; /* not revoked */
1228 		case SSH_ERR_KEY_REVOKED:
1229 			error("Host key %s %s revoked by file %s",
1230 			    sshkey_type(host_key), fp,
1231 			    options.revoked_host_keys);
1232 			r = -1;
1233 			goto out;
1234 		default:
1235 			error("Error checking host key %s %s in "
1236 			    "revoked keys file %s: %s", sshkey_type(host_key),
1237 			    fp, options.revoked_host_keys, ssh_err(r));
1238 			r = -1;
1239 			goto out;
1240 		}
1241 	}
1242 
1243 	if (options.verify_host_key_dns) {
1244 		/*
1245 		 * XXX certs are not yet supported for DNS, so downgrade
1246 		 * them and try the plain key.
1247 		 */
1248 		if ((r = sshkey_from_private(host_key, &plain)) != 0)
1249 			goto out;
1250 		if (sshkey_is_cert(plain))
1251 			sshkey_drop_cert(plain);
1252 		if (verify_host_key_dns(host, hostaddr, plain, &flags) == 0) {
1253 			if (flags & DNS_VERIFY_FOUND) {
1254 				if (options.verify_host_key_dns == 1 &&
1255 				    flags & DNS_VERIFY_MATCH &&
1256 				    flags & DNS_VERIFY_SECURE) {
1257 					r = 0;
1258 					goto out;
1259 				}
1260 				if (flags & DNS_VERIFY_MATCH) {
1261 					matching_host_key_dns = 1;
1262 				} else {
1263 					warn_changed_key(plain);
1264 					error("Update the SSHFP RR in DNS "
1265 					    "with the new host key to get rid "
1266 					    "of this message.");
1267 				}
1268 			}
1269 		}
1270 	}
1271 	r = check_host_key(host, hostaddr, options.port, host_key, RDRW,
1272 	    options.user_hostfiles, options.num_user_hostfiles,
1273 	    options.system_hostfiles, options.num_system_hostfiles);
1274 
1275 out:
1276 	sshkey_free(plain);
1277 	free(fp);
1278 	free(cafp);
1279 	if (r == 0 && host_key != NULL) {
1280 		sshkey_free(previous_host_key);
1281 		r = sshkey_from_private(host_key, &previous_host_key);
1282 	}
1283 
1284 	return r;
1285 }
1286 
1287 /*
1288  * Starts a dialog with the server, and authenticates the current user on the
1289  * server.  This does not need any extra privileges.  The basic connection
1290  * to the server must already have been established before this is called.
1291  * If login fails, this function prints an error and never returns.
1292  * This function does not require super-user privileges.
1293  */
1294 void
1295 ssh_login(Sensitive *sensitive, const char *orighost,
1296     struct sockaddr *hostaddr, u_short port, struct passwd *pw, int timeout_ms)
1297 {
1298 	char *host;
1299 	char *server_user, *local_user;
1300 
1301 	local_user = xstrdup(pw->pw_name);
1302 	server_user = options.user ? options.user : local_user;
1303 
1304 	/* Convert the user-supplied hostname into all lowercase. */
1305 	host = xstrdup(orighost);
1306 	lowercase(host);
1307 
1308 	/* Exchange protocol version identification strings with the server. */
1309 	ssh_exchange_identification(timeout_ms);
1310 
1311 	/* Put the connection into non-blocking mode. */
1312 	packet_set_nonblocking();
1313 
1314 	/* key exchange */
1315 	/* authenticate user */
1316 	debug("Authenticating to %s:%d as '%s'", host, port, server_user);
1317 	ssh_kex2(host, hostaddr, port);
1318 	ssh_userauth2(local_user, server_user, host, sensitive);
1319 	free(local_user);
1320 }
1321 
1322 void
1323 ssh_put_password(char *password)
1324 {
1325 	int size;
1326 	char *padded;
1327 
1328 	if (datafellows & SSH_BUG_PASSWORDPAD) {
1329 		packet_put_cstring(password);
1330 		return;
1331 	}
1332 	size = ROUNDUP(strlen(password) + 1, 32);
1333 	padded = xcalloc(1, size);
1334 	strlcpy(padded, password, size);
1335 	packet_put_string(padded, size);
1336 	explicit_bzero(padded, size);
1337 	free(padded);
1338 }
1339 
1340 /* print all known host keys for a given host, but skip keys of given type */
1341 static int
1342 show_other_keys(struct hostkeys *hostkeys, struct sshkey *key)
1343 {
1344 	int type[] = {
1345 		KEY_RSA,
1346 		KEY_DSA,
1347 		KEY_ECDSA,
1348 		KEY_ED25519,
1349 		-1
1350 	};
1351 	int i, ret = 0;
1352 	char *fp, *ra;
1353 	const struct hostkey_entry *found;
1354 
1355 	for (i = 0; type[i] != -1; i++) {
1356 		if (type[i] == key->type)
1357 			continue;
1358 		if (!lookup_key_in_hostkeys_by_type(hostkeys, type[i], &found))
1359 			continue;
1360 		fp = sshkey_fingerprint(found->key,
1361 		    options.fingerprint_hash, SSH_FP_DEFAULT);
1362 		ra = sshkey_fingerprint(found->key,
1363 		    options.fingerprint_hash, SSH_FP_RANDOMART);
1364 		if (fp == NULL || ra == NULL)
1365 			fatal("%s: sshkey_fingerprint fail", __func__);
1366 		logit("WARNING: %s key found for host %s\n"
1367 		    "in %s:%lu\n"
1368 		    "%s key fingerprint %s.",
1369 		    key_type(found->key),
1370 		    found->host, found->file, found->line,
1371 		    key_type(found->key), fp);
1372 		if (options.visual_host_key)
1373 			logit("%s", ra);
1374 		free(ra);
1375 		free(fp);
1376 		ret = 1;
1377 	}
1378 	return ret;
1379 }
1380 
1381 static void
1382 warn_changed_key(struct sshkey *host_key)
1383 {
1384 	char *fp;
1385 
1386 	fp = sshkey_fingerprint(host_key, options.fingerprint_hash,
1387 	    SSH_FP_DEFAULT);
1388 	if (fp == NULL)
1389 		fatal("%s: sshkey_fingerprint fail", __func__);
1390 
1391 	error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1392 	error("@    WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!     @");
1393 	error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1394 	error("IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!");
1395 	error("Someone could be eavesdropping on you right now (man-in-the-middle attack)!");
1396 	error("It is also possible that a host key has just been changed.");
1397 	error("The fingerprint for the %s key sent by the remote host is\n%s.",
1398 	    key_type(host_key), fp);
1399 	error("Please contact your system administrator.");
1400 
1401 	free(fp);
1402 }
1403 
1404 /*
1405  * Execute a local command
1406  */
1407 int
1408 ssh_local_cmd(const char *args)
1409 {
1410 	char *shell;
1411 	pid_t pid;
1412 	int status;
1413 	void (*osighand)(int);
1414 
1415 	if (!options.permit_local_command ||
1416 	    args == NULL || !*args)
1417 		return (1);
1418 
1419 	if ((shell = getenv("SHELL")) == NULL || *shell == '\0')
1420 		shell = _PATH_BSHELL;
1421 
1422 	osighand = signal(SIGCHLD, SIG_DFL);
1423 	pid = fork();
1424 	if (pid == 0) {
1425 		signal(SIGPIPE, SIG_DFL);
1426 		debug3("Executing %s -c \"%s\"", shell, args);
1427 		execl(shell, shell, "-c", args, (char *)NULL);
1428 		error("Couldn't execute %s -c \"%s\": %s",
1429 		    shell, args, strerror(errno));
1430 		_exit(1);
1431 	} else if (pid == -1)
1432 		fatal("fork failed: %.100s", strerror(errno));
1433 	while (waitpid(pid, &status, 0) == -1)
1434 		if (errno != EINTR)
1435 			fatal("Couldn't wait for child: %s", strerror(errno));
1436 	signal(SIGCHLD, osighand);
1437 
1438 	if (!WIFEXITED(status))
1439 		return (1);
1440 
1441 	return (WEXITSTATUS(status));
1442 }
1443 
1444 void
1445 maybe_add_key_to_agent(char *authfile, struct sshkey *private, char *comment,
1446     char *passphrase)
1447 {
1448 	int auth_sock = -1, r;
1449 
1450 	if (options.add_keys_to_agent == 0)
1451 		return;
1452 
1453 	if ((r = ssh_get_authentication_socket(&auth_sock)) != 0) {
1454 		debug3("no authentication agent, not adding key");
1455 		return;
1456 	}
1457 
1458 	if (options.add_keys_to_agent == 2 &&
1459 	    !ask_permission("Add key %s (%s) to agent?", authfile, comment)) {
1460 		debug3("user denied adding this key");
1461 		close(auth_sock);
1462 		return;
1463 	}
1464 
1465 	if ((r = ssh_add_identity_constrained(auth_sock, private, comment, 0,
1466 	    (options.add_keys_to_agent == 3))) == 0)
1467 		debug("identity added to agent: %s", authfile);
1468 	else
1469 		debug("could not add identity to agent: %s (%d)", authfile, r);
1470 	close(auth_sock);
1471 }
1472