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