xref: /netbsd-src/crypto/external/bsd/openssh/dist/sshconnect.c (revision cb63e24e8d6aae7ddac1859a9015f48b1d8bd90e)
1 /*	$NetBSD: sshconnect.c,v 1.38 2024/06/25 16:36:54 christos Exp $	*/
2 /* $OpenBSD: sshconnect.c,v 1.366 2024/01/11 01:45:36 djm Exp $ */
3 
4 /*
5  * Author: Tatu Ylonen <ylo@cs.hut.fi>
6  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
7  *                    All rights reserved
8  * Code to connect to a remote host, and to perform the client side of the
9  * login (authentication) dialog.
10  *
11  * As far as I am concerned, the code I have written for this software
12  * can be used freely for any purpose.  Any derived versions of this
13  * software must be clearly marked as such, and if the derived work is
14  * incompatible with the protocol description in the RFC file, it must be
15  * called by a name other than "ssh" or "Secure Shell".
16  */
17 
18 #include "includes.h"
19 __RCSID("$NetBSD: sshconnect.c,v 1.38 2024/06/25 16:36:54 christos Exp $");
20 
21 #include <sys/param.h>	/* roundup */
22 #include <sys/types.h>
23 #include <sys/param.h>
24 #include <sys/wait.h>
25 #include <sys/stat.h>
26 #include <sys/socket.h>
27 #include <sys/time.h>
28 
29 #include <net/if.h>
30 #include <netinet/in.h>
31 #include <netinet/in_var.h>
32 #include <netinet6/ip6_var.h>
33 #include <rpc/rpc.h>
34 
35 #include <ctype.h>
36 #include <errno.h>
37 #include <fcntl.h>
38 #include <netdb.h>
39 #include <limits.h>
40 #include <paths.h>
41 #include <signal.h>
42 #include <pwd.h>
43 #include <stdio.h>
44 #include <stdlib.h>
45 #include <stdarg.h>
46 #include <string.h>
47 #include <unistd.h>
48 #include <ifaddrs.h>
49 
50 #include "xmalloc.h"
51 #include "ssh.h"
52 #include "sshbuf.h"
53 #include "packet.h"
54 #include "sshkey.h"
55 #include "sshconnect.h"
56 #include "hostfile.h"
57 #include "log.h"
58 #include "misc.h"
59 #include "readconf.h"
60 #include "atomicio.h"
61 #include "dns.h"
62 #include "monitor_fdpass.h"
63 #include "ssh2.h"
64 #include "version.h"
65 #include "authfile.h"
66 #include "ssherr.h"
67 #include "authfd.h"
68 #include "kex.h"
69 
70 struct sshkey *previous_host_key = NULL;
71 
72 static int matching_host_key_dns = 0;
73 
74 static pid_t proxy_command_pid = 0;
75 
76 /* import */
77 extern int debug_flag;
78 extern Options options;
79 extern char *__progname;
80 
81 static int show_other_keys(struct hostkeys *, struct sshkey *);
82 static void warn_changed_key(struct sshkey *);
83 
84 /* Expand a proxy command */
85 static char *
86 expand_proxy_command(const char *proxy_command, const char *user,
87     const char *host, const char *host_arg, int port)
88 {
89 	char *tmp, *ret, strport[NI_MAXSERV];
90 	const char *keyalias = options.host_key_alias ?
91 	    options.host_key_alias : host_arg;
92 
93 	snprintf(strport, sizeof strport, "%d", port);
94 	xasprintf(&tmp, "exec %s", proxy_command);
95 	ret = percent_expand(tmp,
96 	    "h", host,
97 	    "k", keyalias,
98 	    "n", host_arg,
99 	    "p", strport,
100 	    "r", options.user,
101 	    (char *)NULL);
102 	free(tmp);
103 	return ret;
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,
112     const char *host_arg, u_short port, const char *proxy_command)
113 {
114 	char *command_string;
115 	int sp[2], sock;
116 	pid_t pid;
117 	const char *shell;
118 
119 	if ((shell = getenv("SHELL")) == NULL)
120 		shell = _PATH_BSHELL;
121 
122 	if (socketpair(AF_UNIX, SOCK_STREAM, 0, sp) == -1)
123 		fatal("Could not create socketpair to communicate with "
124 		    "proxy dialer: %.100s", strerror(errno));
125 	close(sp[1]);
126 
127 	command_string = expand_proxy_command(proxy_command, options.user,
128 	    host, host_arg, port);
129 	debug("Executing proxy dialer command: %.500s", command_string);
130 
131 	/* Fork and execute the proxy command. */
132 	if ((pid = fork()) == 0) {
133 		char *argv[10];
134 
135 		close(sp[1]);
136 		/* Redirect stdin and stdout. */
137 		if (sp[0] != 0) {
138 			if (dup2(sp[0], 0) == -1)
139 				perror("dup2 stdin");
140 		}
141 		if (sp[0] != 1) {
142 			if (dup2(sp[0], 1) == -1)
143 				perror("dup2 stdout");
144 		}
145 		if (sp[0] >= 2)
146 			close(sp[0]);
147 
148 		/*
149 		 * Stderr is left for non-ControlPersist connections is so
150 		 * error messages may be printed on the user's terminal.
151 		 */
152 		if (!debug_flag && options.control_path != NULL &&
153 		    options.control_persist && stdfd_devnull(0, 0, 1) == -1)
154 			error_f("stdfd_devnull failed");
155 
156 		argv[0] = __UNCONST(shell);
157 		argv[1] = __UNCONST("-c");
158 		argv[2] = command_string;
159 		argv[3] = NULL;
160 
161 		/*
162 		 * Execute the proxy command.
163 		 * Note that we gave up any extra privileges above.
164 		 */
165 		execv(argv[0], argv);
166 		perror(argv[0]);
167 		exit(1);
168 	}
169 	/* Parent. */
170 	if (pid == -1)
171 		fatal("fork failed: %.100s", strerror(errno));
172 	close(sp[0]);
173 	free(command_string);
174 
175 	if ((sock = mm_receive_fd(sp[1])) == -1)
176 		fatal("proxy dialer did not pass back a connection");
177 	close(sp[1]);
178 
179 	while (waitpid(pid, NULL, 0) == -1)
180 		if (errno != EINTR)
181 			fatal("Couldn't wait for child: %s", strerror(errno));
182 
183 	/* Set the connection file descriptors. */
184 	if (ssh_packet_set_connection(ssh, sock, sock) == NULL)
185 		return -1; /* ssh_packet_set_connection logs error */
186 
187 	return 0;
188 }
189 
190 /*
191  * Connect to the given ssh server using a proxy command.
192  */
193 static int
194 ssh_proxy_connect(struct ssh *ssh, const char *host, const char *host_arg,
195     u_short port, const char *proxy_command)
196 {
197 	char *command_string;
198 	int pin[2], pout[2];
199 	pid_t pid;
200 	char *shell;
201 
202 	if ((shell = getenv("SHELL")) == NULL || *shell == '\0')
203 		shell = __UNCONST(_PATH_BSHELL);
204 
205 	/* Create pipes for communicating with the proxy. */
206 	if (pipe(pin) == -1 || pipe(pout) == -1)
207 		fatal("Could not create pipes to communicate with the proxy: %.100s",
208 		    strerror(errno));
209 
210 	command_string = expand_proxy_command(proxy_command, options.user,
211 	    host, host_arg, port);
212 	debug("Executing proxy command: %.500s", command_string);
213 
214 	/* Fork and execute the proxy command. */
215 	if ((pid = fork()) == 0) {
216 		char *argv[10];
217 
218 		/* Redirect stdin and stdout. */
219 		close(pin[1]);
220 		if (pin[0] != 0) {
221 			if (dup2(pin[0], 0) == -1)
222 				perror("dup2 stdin");
223 			close(pin[0]);
224 		}
225 		close(pout[0]);
226 		if (dup2(pout[1], 1) == -1)
227 			perror("dup2 stdout");
228 		/* Cannot be 1 because pin allocated two descriptors. */
229 		close(pout[1]);
230 
231 		/*
232 		 * Stderr is left for non-ControlPersist connections is so
233 		 * error messages may be printed on the user's terminal.
234 		 */
235 		if (!debug_flag && options.control_path != NULL &&
236 		    options.control_persist && stdfd_devnull(0, 0, 1) == -1)
237 			error_f("stdfd_devnull failed");
238 
239 		argv[0] = shell;
240 		argv[1] = __UNCONST("-c");
241 		argv[2] = command_string;
242 		argv[3] = NULL;
243 
244 		/*
245 		 * Execute the proxy command.  Note that we gave up any
246 		 * extra privileges above.
247 		 */
248 		ssh_signal(SIGPIPE, SIG_DFL);
249 		execv(argv[0], argv);
250 		perror(argv[0]);
251 		exit(1);
252 	}
253 	/* Parent. */
254 	if (pid == -1)
255 		fatal("fork failed: %.100s", strerror(errno));
256 	else
257 		proxy_command_pid = pid; /* save pid to clean up later */
258 
259 	/* Close child side of the descriptors. */
260 	close(pin[0]);
261 	close(pout[1]);
262 
263 	/* Free the command name. */
264 	free(command_string);
265 
266 	/* Set the connection file descriptors. */
267 	if (ssh_packet_set_connection(ssh, pout[0], pin[1]) == NULL)
268 		return -1; /* ssh_packet_set_connection logs error */
269 
270 	return 0;
271 }
272 
273 void
274 ssh_kill_proxy_command(void)
275 {
276 	/*
277 	 * Send SIGHUP to proxy command if used. We don't wait() in
278 	 * case it hangs and instead rely on init to reap the child
279 	 */
280 	if (proxy_command_pid > 1)
281 		kill(proxy_command_pid, SIGHUP);
282 }
283 
284 /*
285  * Set TCP receive buffer if requested.
286  * Note: tuning needs to happen after the socket is
287  * created but before the connection happens
288  * so winscale is negotiated properly -cjr
289  */
290 static void
291 ssh_set_socket_recvbuf(int sock)
292 {
293 	void *buf = (void *)&options.tcp_rcv_buf;
294 	int sz = sizeof(options.tcp_rcv_buf);
295 	int socksize;
296 	socklen_t socksizelen = sizeof(int);
297 
298 	debug("setsockopt Attempting to set SO_RCVBUF to %d",
299 	    options.tcp_rcv_buf);
300 	if (setsockopt(sock, SOL_SOCKET, SO_RCVBUF, buf, sz) >= 0) {
301 		getsockopt(sock, SOL_SOCKET, SO_RCVBUF, &socksize,
302 		    &socksizelen);
303 		debug("setsockopt SO_RCVBUF: %.100s %d", strerror(errno),
304 		    socksize);
305 	} else {
306 		error("Couldn't set socket receive buffer to %d: %.100s",
307 		    options.tcp_rcv_buf, strerror(errno));
308 	}
309 }
310 
311 /*
312  * Search a interface address list (returned from getifaddrs(3)) for an
313  * address that matches the desired address family on the specified interface.
314  * Returns 0 and fills in *resultp and *rlenp on success. Returns -1 on failure.
315  */
316 static int
317 check_ifaddrs(const char *ifname, int af, const struct ifaddrs *ifaddrs,
318     int prefertemp, struct sockaddr_storage *resultp, socklen_t *rlenp)
319 {
320 	struct sockaddr_in6 *sa6;
321 	struct sockaddr_in *sa;
322 	struct in6_addr *v6addr;
323 	const struct ifaddrs *ifa;
324 	int try;
325 
326 	/*
327 	 * Prefer temporary addresses according to prefertemp.
328 	 * Prefer addresses that are not loopback or linklocal, but use them
329 	 * if nothing else matches.
330 	 */
331 	for (try = 0; try < 3; try++) {
332 		for (ifa = ifaddrs; ifa != NULL; ifa = ifa->ifa_next) {
333 			if (ifa->ifa_addr == NULL || ifa->ifa_name == NULL ||
334 			    (ifa->ifa_flags & IFF_UP) == 0 ||
335 			    ifa->ifa_addr->sa_family != af ||
336 			    strcmp(ifa->ifa_name, ifname) != 0)
337 				continue;
338 			switch (ifa->ifa_addr->sa_family) {
339 			case AF_INET:
340 				sa = (struct sockaddr_in *)ifa->ifa_addr;
341 				if (try < 2 && sa->sin_addr.s_addr ==
342 				    htonl(INADDR_LOOPBACK))
343 					continue;
344 				if (*rlenp < sizeof(struct sockaddr_in)) {
345 					error_f("v4 addr doesn't fit");
346 					return -1;
347 				}
348 				*rlenp = sizeof(struct sockaddr_in);
349 				memcpy(resultp, sa, *rlenp);
350 				return 0;
351 			case AF_INET6:
352 				sa6 = (struct sockaddr_in6 *)ifa->ifa_addr;
353 				v6addr = &sa6->sin6_addr;
354 				if (try < 2 &&
355 				    (IN6_IS_ADDR_LINKLOCAL(v6addr) ||
356 				    IN6_IS_ADDR_LOOPBACK(v6addr)))
357 					continue;
358 				if (*rlenp < sizeof(struct sockaddr_in6)) {
359 					error_f("v6 addr doesn't fit");
360 					return -1;
361 				}
362 
363 				/*
364 				 * For now, ignore scope and
365 				 * don't allow deprecated addresses.  XXX
366 				 */
367 				if (ifa->ifa_addrflags & IN6_IFF_ANYCAST)
368 					continue;
369 				if (ifa->ifa_addrflags & IN6_IFF_NOTREADY)
370 					continue;
371 				if (ifa->ifa_addrflags & IN6_IFF_DETACHED)
372 					continue;
373 				if (ifa->ifa_addrflags & IN6_IFF_DEPRECATED)
374 					continue;
375 
376 				if (prefertemp >= 0 && try < 1) {
377 					int istemp = ifa->ifa_addrflags
378 						& IN6_IFF_TEMPORARY;
379 					if (!!istemp != prefertemp)
380 						continue;
381 				}
382 				*rlenp = sizeof(struct sockaddr_in6);
383 				memcpy(resultp, sa6, *rlenp);
384 				return 0;
385 			}
386 		}
387 	}
388 	return -1;
389 }
390 
391 /*
392  * Creates a socket for use as the ssh connection.
393  */
394 static int
395 ssh_create_socket(struct addrinfo *ai)
396 {
397 	int sock, r;
398 	struct sockaddr_storage bindaddr;
399 	socklen_t bindaddrlen = 0;
400 	struct addrinfo hints, *res = NULL;
401 	struct ifaddrs *ifaddrs = NULL;
402 	char ntop[NI_MAXHOST];
403 
404 	sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
405 	if (sock == -1) {
406 		error("socket: %s", strerror(errno));
407 		return -1;
408 	}
409 	(void)fcntl(sock, F_SETFD, FD_CLOEXEC);
410 
411 	if (options.tcp_rcv_buf > 0)
412 		ssh_set_socket_recvbuf(sock);
413 
414 	/* Use interactive QOS (if specified) until authentication completed */
415 	if (options.ip_qos_interactive != INT_MAX)
416 		set_sock_tos(sock, options.ip_qos_interactive);
417 
418 	/* Bind the socket to an alternative local IP address */
419 	if (options.bind_address != NULL) {
420 		memset(&hints, 0, sizeof(hints));
421 		hints.ai_family = ai->ai_family;
422 		hints.ai_socktype = ai->ai_socktype;
423 		hints.ai_protocol = ai->ai_protocol;
424 		hints.ai_flags = AI_PASSIVE;
425 		if ((r = getaddrinfo(options.bind_address, NULL,
426 		    &hints, &res)) != 0) {
427 			error("getaddrinfo: %s: %s", options.bind_address,
428 			    ssh_gai_strerror(r));
429 			goto fail;
430 		}
431 		if (res == NULL) {
432 			error("getaddrinfo: no addrs");
433 			goto fail;
434 		}
435 		memcpy(&bindaddr, res->ai_addr, res->ai_addrlen);
436 		bindaddrlen = res->ai_addrlen;
437 	} else if (options.bind_interface != NULL) {
438 		if ((r = getifaddrs(&ifaddrs)) != 0) {
439 			error("getifaddrs: %s: %s", options.bind_interface,
440 			    strerror(errno));
441 			goto fail;
442 		}
443 		bindaddrlen = sizeof(bindaddr);
444 		if (check_ifaddrs(options.bind_interface, ai->ai_family,
445 		    ifaddrs, options.ipv6_prefer_temporary,
446 		    &bindaddr, &bindaddrlen) != 0) {
447 			logit("getifaddrs: %s: no suitable addresses",
448 			    options.bind_interface);
449 			goto fail;
450 		}
451 	} else {
452 		/* Apply user specified temporary address preference */
453 		if (ai->ai_family == AF_INET6
454 		    && options.ipv6_prefer_temporary >= 0) {
455 			int temp = options.ipv6_prefer_temporary
456 				? IP6PO_TEMPADDR_PREFER
457 				: IP6PO_TEMPADDR_NOTPREFER;
458 			if (setsockopt(sock, IPPROTO_IPV6, IPV6_PREFER_TEMPADDR,
459 			    &temp, sizeof temp) < 0)
460 				error("setsockopt(IPV6_PREFER_TEMPADDR: %.100s",
461 				    strerror(errno));
462 		}
463 		return sock;
464 	}
465 
466 	if ((r = getnameinfo((struct sockaddr *)&bindaddr, bindaddrlen,
467 	    ntop, sizeof(ntop), NULL, 0, NI_NUMERICHOST)) != 0) {
468 		error_f("getnameinfo failed: %s", ssh_gai_strerror(r));
469 		goto fail;
470 	}
471 	if (bind(sock, (struct sockaddr *)&bindaddr, bindaddrlen) != 0) {
472 		error("bind %s: %s", ntop, strerror(errno));
473 		goto fail;
474 	}
475 	debug_f("bound to %s", ntop);
476 	/* success */
477 	goto out;
478 fail:
479 	close(sock);
480 	sock = -1;
481  out:
482 	if (res != NULL)
483 		freeaddrinfo(res);
484 	if (ifaddrs != NULL)
485 		freeifaddrs(ifaddrs);
486 	return sock;
487 }
488 
489 /*
490  * Opens a TCP/IP connection to the remote server on the given host.
491  * The address of the remote host will be returned in hostaddr.
492  * If port is 0, the default port will be used.
493  * Connection_attempts specifies the maximum number of tries (one per
494  * second).  If proxy_command is non-NULL, it specifies the command (with %h
495  * and %p substituted for host and port, respectively) to use to contact
496  * the daemon.
497  */
498 static int
499 ssh_connect_direct(struct ssh *ssh, const char *host, struct addrinfo *aitop,
500     struct sockaddr_storage *hostaddr, u_short port, int connection_attempts,
501     int *timeout_ms, int want_keepalive)
502 {
503 	int on = 1, saved_timeout_ms = *timeout_ms;
504 	int oerrno, sock = -1, attempt;
505 	char ntop[NI_MAXHOST], strport[NI_MAXSERV];
506 	struct addrinfo *ai;
507 
508 	debug3_f("entering");
509 	memset(ntop, 0, sizeof(ntop));
510 	memset(strport, 0, sizeof(strport));
511 
512 	for (attempt = 0; attempt < connection_attempts; attempt++) {
513 		if (attempt > 0) {
514 			/* Sleep a moment before retrying. */
515 			sleep(1);
516 			debug("Trying again...");
517 		}
518 		/*
519 		 * Loop through addresses for this host, and try each one in
520 		 * sequence until the connection succeeds.
521 		 */
522 		for (ai = aitop; ai; ai = ai->ai_next) {
523 			if (ai->ai_family != AF_INET &&
524 			    ai->ai_family != AF_INET6) {
525 				errno = EAFNOSUPPORT;
526 				continue;
527 			}
528 			if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
529 			    ntop, sizeof(ntop), strport, sizeof(strport),
530 			    NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
531 				oerrno = errno;
532 				error_f("getnameinfo failed");
533 				errno = oerrno;
534 				continue;
535 			}
536 			if (options.address_family != AF_UNSPEC &&
537 			    ai->ai_family != options.address_family) {
538 				debug2_f("skipping address [%s]:%s: "
539 				    "wrong address family", ntop, strport);
540 				errno = EAFNOSUPPORT;
541 				continue;
542 			}
543 
544 			debug("Connecting to %.200s [%.100s] port %s.",
545 				host, ntop, strport);
546 
547 			/* Create a socket for connecting. */
548 			sock = ssh_create_socket(ai);
549 			if (sock < 0) {
550 				/* Any error is already output */
551 				errno = 0;
552 				continue;
553 			}
554 
555 			*timeout_ms = saved_timeout_ms;
556 			if (timeout_connect(sock, ai->ai_addr, ai->ai_addrlen,
557 			    timeout_ms) >= 0) {
558 				/* Successful connection. */
559 				memcpy(hostaddr, ai->ai_addr, ai->ai_addrlen);
560 				break;
561 			} else {
562 				oerrno = errno;
563 				debug("connect to address %s port %s: %s",
564 				    ntop, strport, strerror(errno));
565 				close(sock);
566 				sock = -1;
567 				errno = oerrno;
568 			}
569 		}
570 		if (sock != -1)
571 			break;	/* Successful connection. */
572 	}
573 
574 	/* Return failure if we didn't get a successful connection. */
575 	if (sock == -1) {
576 		error("ssh: connect to host %s port %s: %s",
577 		    host, strport, errno == 0 ? "failure" : strerror(errno));
578 		return -1;
579 	}
580 
581 	debug("Connection established.");
582 
583 	/* Set SO_KEEPALIVE if requested. */
584 	if (want_keepalive &&
585 	    setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE, (void *)&on,
586 	    sizeof(on)) == -1)
587 		error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
588 
589 	/* Set the connection. */
590 	if (ssh_packet_set_connection(ssh, sock, sock) == NULL)
591 		return -1; /* ssh_packet_set_connection logs error */
592 
593 	return 0;
594 }
595 
596 int
597 ssh_connect(struct ssh *ssh, const char *host, const char *host_arg,
598     struct addrinfo *addrs, struct sockaddr_storage *hostaddr, u_short port,
599     int connection_attempts, int *timeout_ms, int want_keepalive)
600 {
601 	int in, out;
602 
603 	if (options.proxy_command == NULL) {
604 		return ssh_connect_direct(ssh, host, addrs, hostaddr, port,
605 		    connection_attempts, timeout_ms, want_keepalive);
606 	} else if (strcmp(options.proxy_command, "-") == 0) {
607 		if ((in = dup(STDIN_FILENO)) == -1 ||
608 		    (out = dup(STDOUT_FILENO)) == -1) {
609 			if (in >= 0)
610 				close(in);
611 			error_f("dup() in/out failed");
612 			return -1; /* ssh_packet_set_connection logs error */
613 		}
614 		if ((ssh_packet_set_connection(ssh, in, out)) == NULL)
615 			return -1; /* ssh_packet_set_connection logs error */
616 		return 0;
617 	} else if (options.proxy_use_fdpass) {
618 		return ssh_proxy_fdpass_connect(ssh, host, host_arg, port,
619 		    options.proxy_command);
620 	}
621 	return ssh_proxy_connect(ssh, host, host_arg, port,
622 	    options.proxy_command);
623 }
624 
625 /* defaults to 'no' */
626 static int
627 confirm(const char *prompt, const char *fingerprint)
628 {
629 	const char *msg, *again = "Please type 'yes' or 'no': ";
630 	const char *again_fp = "Please type 'yes', 'no' or the fingerprint: ";
631 	char *p, *cp;
632 	int ret = -1;
633 
634 	if (options.batch_mode)
635 		return 0;
636 	for (msg = prompt;;msg = fingerprint ? again_fp : again) {
637 		cp = p = read_passphrase(msg, RP_ECHO);
638 		if (p == NULL)
639 			return 0;
640 		p += strspn(p, " \t"); /* skip leading whitespace */
641 		p[strcspn(p, " \t\n")] = '\0'; /* remove trailing whitespace */
642 		if (p[0] == '\0' || strcasecmp(p, "no") == 0)
643 			ret = 0;
644 		else if (strcasecmp(p, "yes") == 0 || (fingerprint != NULL &&
645 		    strcmp(p, fingerprint) == 0))
646 			ret = 1;
647 		free(cp);
648 		if (ret != -1)
649 			return ret;
650 	}
651 }
652 
653 static int
654 sockaddr_is_local(struct sockaddr *hostaddr)
655 {
656 	switch (hostaddr->sa_family) {
657 	case AF_INET:
658 		return (ntohl(((struct sockaddr_in *)hostaddr)->
659 		    sin_addr.s_addr) >> 24) == IN_LOOPBACKNET;
660 	case AF_INET6:
661 		return IN6_IS_ADDR_LOOPBACK(
662 		    &(((struct sockaddr_in6 *)hostaddr)->sin6_addr));
663 	default:
664 		return 0;
665 	}
666 }
667 
668 /*
669  * Prepare the hostname and ip address strings that are used to lookup
670  * host keys in known_hosts files. These may have a port number appended.
671  */
672 void
673 get_hostfile_hostname_ipaddr(char *hostname, struct sockaddr *hostaddr,
674     u_short port, char **hostfile_hostname, char **hostfile_ipaddr)
675 {
676 	char ntop[NI_MAXHOST];
677 
678 	/*
679 	 * We don't have the remote ip-address for connections
680 	 * using a proxy command
681 	 */
682 	if (hostfile_ipaddr != NULL) {
683 		if (options.proxy_command == NULL) {
684 			if (getnameinfo(hostaddr, hostaddr->sa_len,
685 			    ntop, sizeof(ntop), NULL, 0, NI_NUMERICHOST) != 0)
686 			fatal_f("getnameinfo failed");
687 			*hostfile_ipaddr = put_host_port(ntop, port);
688 		} else {
689 			*hostfile_ipaddr = xstrdup("<no hostip for proxy "
690 			    "command>");
691 		}
692 	}
693 
694 	/*
695 	 * Allow the user to record the key under a different name or
696 	 * differentiate a non-standard port.  This is useful for ssh
697 	 * tunneling over forwarded connections or if you run multiple
698 	 * sshd's on different ports on the same machine.
699 	 */
700 	if (hostfile_hostname != NULL) {
701 		if (options.host_key_alias != NULL) {
702 			*hostfile_hostname = xstrdup(options.host_key_alias);
703 			debug("using hostkeyalias: %s", *hostfile_hostname);
704 		} else {
705 			*hostfile_hostname = put_host_port(hostname, port);
706 		}
707 	}
708 }
709 
710 /* returns non-zero if path appears in hostfiles, or 0 if not. */
711 static int
712 path_in_hostfiles(const char *path, char **hostfiles, u_int num_hostfiles)
713 {
714 	u_int i;
715 
716 	for (i = 0; i < num_hostfiles; i++) {
717 		if (strcmp(path, hostfiles[i]) == 0)
718 			return 1;
719 	}
720 	return 0;
721 }
722 
723 struct find_by_key_ctx {
724 	const char *host, *ip;
725 	const struct sshkey *key;
726 	char **names;
727 	u_int nnames;
728 };
729 
730 /* Try to replace home directory prefix (per $HOME) with a ~/ sequence */
731 static char *
732 try_tilde_unexpand(const char *path)
733 {
734 	char *home, *ret = NULL;
735 	size_t l;
736 
737 	if (*path != '/')
738 		return xstrdup(path);
739 	if ((home = getenv("HOME")) == NULL || (l = strlen(home)) == 0)
740 		return xstrdup(path);
741 	if (strncmp(path, home, l) != 0)
742 		return xstrdup(path);
743 	/*
744 	 * ensure we have matched on a path boundary: either the $HOME that
745 	 * we just compared ends with a '/' or the next character of the path
746 	 * must be a '/'.
747 	 */
748 	if (home[l - 1] != '/' && path[l] != '/')
749 		return xstrdup(path);
750 	if (path[l] == '/')
751 		l++;
752 	xasprintf(&ret, "~/%s", path + l);
753 	return ret;
754 }
755 
756 static int
757 hostkeys_find_by_key_cb(struct hostkey_foreach_line *l, void *_ctx)
758 {
759 	struct find_by_key_ctx *ctx = (struct find_by_key_ctx *)_ctx;
760 	char *path;
761 
762 	/* we are looking for keys with names that *do not* match */
763 	if ((l->match & HKF_MATCH_HOST) != 0)
764 		return 0;
765 	/* not interested in marker lines */
766 	if (l->marker != MRK_NONE)
767 		return 0;
768 	/* we are only interested in exact key matches */
769 	if (l->key == NULL || !sshkey_equal(ctx->key, l->key))
770 		return 0;
771 	path = try_tilde_unexpand(l->path);
772 	debug_f("found matching key in %s:%lu", path, l->linenum);
773 	ctx->names = xrecallocarray(ctx->names,
774 	    ctx->nnames, ctx->nnames + 1, sizeof(*ctx->names));
775 	xasprintf(&ctx->names[ctx->nnames], "%s:%lu: %s", path, l->linenum,
776 	    strncmp(l->hosts, HASH_MAGIC, strlen(HASH_MAGIC)) == 0 ?
777 	    "[hashed name]" : l->hosts);
778 	ctx->nnames++;
779 	free(path);
780 	return 0;
781 }
782 
783 static int
784 hostkeys_find_by_key_hostfile(const char *file, const char *which,
785     struct find_by_key_ctx *ctx)
786 {
787 	int r;
788 
789 	debug3_f("trying %s hostfile \"%s\"", which, file);
790 	if ((r = hostkeys_foreach(file, hostkeys_find_by_key_cb, ctx,
791 	    ctx->host, ctx->ip, HKF_WANT_PARSE_KEY, 0)) != 0) {
792 		if (r == SSH_ERR_SYSTEM_ERROR && errno == ENOENT) {
793 			debug_f("hostkeys file %s does not exist", file);
794 			return 0;
795 		}
796 		error_fr(r, "hostkeys_foreach failed for %s", file);
797 		return r;
798 	}
799 	return 0;
800 }
801 
802 /*
803  * Find 'key' in known hosts file(s) that do not match host/ip.
804  * Used to display also-known-as information for previously-unseen hostkeys.
805  */
806 static void
807 hostkeys_find_by_key(const char *host, const char *ip, const struct sshkey *key,
808     char **user_hostfiles, u_int num_user_hostfiles,
809     char **system_hostfiles, u_int num_system_hostfiles,
810     char ***names, u_int *nnames)
811 {
812 	struct find_by_key_ctx ctx = {0, 0, 0, 0, 0};
813 	u_int i;
814 
815 	*names = NULL;
816 	*nnames = 0;
817 
818 	if (key == NULL || sshkey_is_cert(key))
819 		return;
820 
821 	ctx.host = host;
822 	ctx.ip = ip;
823 	ctx.key = key;
824 
825 	for (i = 0; i < num_user_hostfiles; i++) {
826 		if (hostkeys_find_by_key_hostfile(user_hostfiles[i],
827 		    "user", &ctx) != 0)
828 			goto fail;
829 	}
830 	for (i = 0; i < num_system_hostfiles; i++) {
831 		if (hostkeys_find_by_key_hostfile(system_hostfiles[i],
832 		    "system", &ctx) != 0)
833 			goto fail;
834 	}
835 	/* success */
836 	*names = ctx.names;
837 	*nnames = ctx.nnames;
838 	ctx.names = NULL;
839 	ctx.nnames = 0;
840 	return;
841  fail:
842 	for (i = 0; i < ctx.nnames; i++)
843 		free(ctx.names[i]);
844 	free(ctx.names);
845 }
846 
847 #define MAX_OTHER_NAMES	8 /* Maximum number of names to list */
848 static char *
849 other_hostkeys_message(const char *host, const char *ip,
850     const struct sshkey *key,
851     char **user_hostfiles, u_int num_user_hostfiles,
852     char **system_hostfiles, u_int num_system_hostfiles)
853 {
854 	char *ret = NULL, **othernames = NULL;
855 	u_int i, n, num_othernames = 0;
856 
857 	hostkeys_find_by_key(host, ip, key,
858 	    user_hostfiles, num_user_hostfiles,
859 	    system_hostfiles, num_system_hostfiles,
860 	    &othernames, &num_othernames);
861 	if (num_othernames == 0)
862 		return xstrdup("This key is not known by any other names.");
863 
864 	xasprintf(&ret, "This host key is known by the following other "
865 	    "names/addresses:");
866 
867 	n = num_othernames;
868 	if (n > MAX_OTHER_NAMES)
869 		n = MAX_OTHER_NAMES;
870 	for (i = 0; i < n; i++) {
871 		xextendf(&ret, "\n", "    %s", othernames[i]);
872 	}
873 	if (n < num_othernames) {
874 		xextendf(&ret, "\n", "    (%d additional names omitted)",
875 		    num_othernames - n);
876 	}
877 	for (i = 0; i < num_othernames; i++)
878 		free(othernames[i]);
879 	free(othernames);
880 	return ret;
881 }
882 
883 void
884 load_hostkeys_command(struct hostkeys *hostkeys, const char *command_template,
885     const char *invocation, const struct ssh_conn_info *cinfo,
886     const struct sshkey *host_key, const char *hostfile_hostname)
887 {
888 	int r, i, ac = 0;
889 	char *key_fp = NULL, *keytext = NULL, *tmp;
890 	char *command = NULL, *tag = NULL, **av = NULL;
891 	FILE *f = NULL;
892 	pid_t pid;
893 	void (*osigchld)(int);
894 
895 	xasprintf(&tag, "KnownHostsCommand-%s", invocation);
896 
897 	if (host_key != NULL) {
898 		if ((key_fp = sshkey_fingerprint(host_key,
899 		    options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL)
900 			fatal_f("sshkey_fingerprint failed");
901 		if ((r = sshkey_to_base64(host_key, &keytext)) != 0)
902 			fatal_fr(r, "sshkey_to_base64 failed");
903 	}
904 	/*
905 	 * NB. all returns later this function should go via "out" to
906 	 * ensure the original SIGCHLD handler is restored properly.
907 	 */
908 	osigchld = ssh_signal(SIGCHLD, SIG_DFL);
909 
910 	/* Turn the command into an argument vector */
911 	if (argv_split(command_template, &ac, &av, 0) != 0) {
912 		error("%s \"%s\" contains invalid quotes", tag,
913 		    command_template);
914 		goto out;
915 	}
916 	if (ac == 0) {
917 		error("%s \"%s\" yielded no arguments", tag,
918 		    command_template);
919 		goto out;
920 	}
921 	for (i = 1; i < ac; i++) {
922 		tmp = percent_dollar_expand(av[i],
923 		    DEFAULT_CLIENT_PERCENT_EXPAND_ARGS(cinfo),
924 		    "H", hostfile_hostname,
925 		    "I", invocation,
926 		    "t", host_key == NULL ? "NONE" : sshkey_ssh_name(host_key),
927 		    "f", key_fp == NULL ? "NONE" : key_fp,
928 		    "K", keytext == NULL ? "NONE" : keytext,
929 		    (char *)NULL);
930 		if (tmp == NULL)
931 			fatal_f("percent_expand failed");
932 		free(av[i]);
933 		av[i] = tmp;
934 	}
935 	/* Prepare a printable command for logs, etc. */
936 	command = argv_assemble(ac, av);
937 
938 	if ((pid = subprocess(tag, command, ac, av, &f,
939 	    SSH_SUBPROCESS_STDOUT_CAPTURE|SSH_SUBPROCESS_UNSAFE_PATH|
940 	    SSH_SUBPROCESS_PRESERVE_ENV, NULL, NULL, NULL)) == 0)
941 		goto out;
942 
943 	load_hostkeys_file(hostkeys, hostfile_hostname, tag, f, 1);
944 
945 	if (exited_cleanly(pid, tag, command, 0) != 0)
946 		fatal("KnownHostsCommand failed");
947 
948  out:
949 	if (f != NULL)
950 		fclose(f);
951 	ssh_signal(SIGCHLD, osigchld);
952 	for (i = 0; i < ac; i++)
953 		free(av[i]);
954 	free(av);
955 	free(tag);
956 	free(command);
957 	free(key_fp);
958 	free(keytext);
959 }
960 
961 /*
962  * check whether the supplied host key is valid, return -1 if the key
963  * is not valid. user_hostfile[0] will not be updated if 'readonly' is true.
964  */
965 #define RDRW	0
966 #define RDONLY	1
967 #define ROQUIET	2
968 static int
969 check_host_key(char *hostname, const struct ssh_conn_info *cinfo,
970     struct sockaddr *hostaddr, u_short port,
971     struct sshkey *host_key, int readonly, int clobber_port,
972     char **user_hostfiles, u_int num_user_hostfiles,
973     char **system_hostfiles, u_int num_system_hostfiles,
974     const char *hostfile_command)
975 {
976 	HostStatus host_status = -1, ip_status = -1;
977 	struct sshkey *raw_key = NULL;
978 	char *ip = NULL, *host = NULL;
979 	char hostline[1000], *hostp, *fp, *ra;
980 	char msg[1024];
981 	const char *type, *fail_reason = NULL;
982 	const struct hostkey_entry *host_found = NULL, *ip_found = NULL;
983 	int len, cancelled_forwarding = 0, confirmed;
984 	int local = sockaddr_is_local(hostaddr);
985 	int r, want_cert = sshkey_is_cert(host_key), host_ip_differ = 0;
986 	int hostkey_trusted = 0; /* Known or explicitly accepted by user */
987 	struct hostkeys *host_hostkeys, *ip_hostkeys;
988 	u_int i;
989 
990 	/*
991 	 * Force accepting of the host key for loopback/localhost. The
992 	 * problem is that if the home directory is NFS-mounted to multiple
993 	 * machines, localhost will refer to a different machine in each of
994 	 * them, and the user will get bogus HOST_CHANGED warnings.  This
995 	 * essentially disables host authentication for localhost; however,
996 	 * this is probably not a real problem.
997 	 */
998 	if (options.no_host_authentication_for_localhost == 1 && local &&
999 	    options.host_key_alias == NULL) {
1000 		debug("Forcing accepting of host key for "
1001 		    "loopback/localhost.");
1002 		options.update_hostkeys = 0;
1003 		return 0;
1004 	}
1005 
1006 	/*
1007 	 * Don't ever try to write an invalid name to a known hosts file.
1008 	 * Note: do this before get_hostfile_hostname_ipaddr() to catch
1009 	 * '[' or ']' in the name before they are added.
1010 	 */
1011 	if (strcspn(hostname, "@?*#[]|'\'\"\\") != strlen(hostname)) {
1012 		debug_f("invalid hostname \"%s\"; will not record: %s",
1013 		    hostname, fail_reason);
1014 		readonly = RDONLY;
1015 	}
1016 
1017 	/*
1018 	 * Prepare the hostname and address strings used for hostkey lookup.
1019 	 * In some cases, these will have a port number appended.
1020 	 */
1021 	get_hostfile_hostname_ipaddr(hostname, hostaddr,
1022 	    clobber_port ? 0 : port, &host, &ip);
1023 
1024 	/*
1025 	 * Turn off check_host_ip if the connection is to localhost, via proxy
1026 	 * command or if we don't have a hostname to compare with
1027 	 */
1028 	if (options.check_host_ip && (local ||
1029 	    strcmp(hostname, ip) == 0 || options.proxy_command != NULL))
1030 		options.check_host_ip = 0;
1031 
1032 	host_hostkeys = init_hostkeys();
1033 	for (i = 0; i < num_user_hostfiles; i++)
1034 		load_hostkeys(host_hostkeys, host, user_hostfiles[i], 0);
1035 	for (i = 0; i < num_system_hostfiles; i++)
1036 		load_hostkeys(host_hostkeys, host, system_hostfiles[i], 0);
1037 	if (hostfile_command != NULL && !clobber_port) {
1038 		load_hostkeys_command(host_hostkeys, hostfile_command,
1039 		    "HOSTNAME", cinfo, host_key, host);
1040 	}
1041 
1042 	ip_hostkeys = NULL;
1043 	if (!want_cert && options.check_host_ip) {
1044 		ip_hostkeys = init_hostkeys();
1045 		for (i = 0; i < num_user_hostfiles; i++)
1046 			load_hostkeys(ip_hostkeys, ip, user_hostfiles[i], 0);
1047 		for (i = 0; i < num_system_hostfiles; i++)
1048 			load_hostkeys(ip_hostkeys, ip, system_hostfiles[i], 0);
1049 		if (hostfile_command != NULL && !clobber_port) {
1050 			load_hostkeys_command(ip_hostkeys, hostfile_command,
1051 			    "ADDRESS", cinfo, host_key, ip);
1052 		}
1053 	}
1054 
1055  retry:
1056 	/* Reload these as they may have changed on cert->key downgrade */
1057 	want_cert = sshkey_is_cert(host_key);
1058 	type = sshkey_type(host_key);
1059 
1060 	/*
1061 	 * Check if the host key is present in the user's list of known
1062 	 * hosts or in the systemwide list.
1063 	 */
1064 	host_status = check_key_in_hostkeys(host_hostkeys, host_key,
1065 	    &host_found);
1066 
1067 	/*
1068 	 * If there are no hostfiles, or if the hostkey was found via
1069 	 * KnownHostsCommand, then don't try to touch the disk.
1070 	 */
1071 	if (!readonly && (num_user_hostfiles == 0 ||
1072 	    (host_found != NULL && host_found->note != 0)))
1073 		readonly = RDONLY;
1074 
1075 	/*
1076 	 * Also perform check for the ip address, skip the check if we are
1077 	 * localhost, looking for a certificate, or the hostname was an ip
1078 	 * address to begin with.
1079 	 */
1080 	if (!want_cert && ip_hostkeys != NULL) {
1081 		ip_status = check_key_in_hostkeys(ip_hostkeys, host_key,
1082 		    &ip_found);
1083 		if (host_status == HOST_CHANGED &&
1084 		    (ip_status != HOST_CHANGED ||
1085 		    (ip_found != NULL &&
1086 		    !sshkey_equal(ip_found->key, host_found->key))))
1087 			host_ip_differ = 1;
1088 	} else
1089 		ip_status = host_status;
1090 
1091 	switch (host_status) {
1092 	case HOST_OK:
1093 		/* The host is known and the key matches. */
1094 		debug("Host '%.200s' is known and matches the %s host %s.",
1095 		    host, type, want_cert ? "certificate" : "key");
1096 		debug("Found %s in %s:%lu", want_cert ? "CA key" : "key",
1097 		    host_found->file, host_found->line);
1098 		if (want_cert) {
1099 			if (sshkey_cert_check_host(host_key,
1100 			    options.host_key_alias == NULL ?
1101 			    hostname : options.host_key_alias, 0,
1102 			    options.ca_sign_algorithms, &fail_reason) != 0) {
1103 				error("%s", fail_reason);
1104 				goto fail;
1105 			}
1106 			/*
1107 			 * Do not attempt hostkey update if a certificate was
1108 			 * successfully matched.
1109 			 */
1110 			if (options.update_hostkeys != 0) {
1111 				options.update_hostkeys = 0;
1112 				debug3_f("certificate host key in use; "
1113 				    "disabling UpdateHostkeys");
1114 			}
1115 		}
1116 		/* Turn off UpdateHostkeys if key was in system known_hosts */
1117 		if (options.update_hostkeys != 0 &&
1118 		    (path_in_hostfiles(host_found->file,
1119 		    system_hostfiles, num_system_hostfiles) ||
1120 		    (ip_status == HOST_OK && ip_found != NULL &&
1121 		    path_in_hostfiles(ip_found->file,
1122 		    system_hostfiles, num_system_hostfiles)))) {
1123 			options.update_hostkeys = 0;
1124 			debug3_f("host key found in GlobalKnownHostsFile; "
1125 			    "disabling UpdateHostkeys");
1126 		}
1127 		if (options.update_hostkeys != 0 && host_found->note) {
1128 			options.update_hostkeys = 0;
1129 			debug3_f("host key found via KnownHostsCommand; "
1130 			    "disabling UpdateHostkeys");
1131 		}
1132 		if (options.check_host_ip && ip_status == HOST_NEW) {
1133 			if (readonly || want_cert)
1134 				logit("%s host key for IP address "
1135 				    "'%.128s' not in list of known hosts.",
1136 				    type, ip);
1137 			else if (!add_host_to_hostfile(user_hostfiles[0], ip,
1138 			    host_key, options.hash_known_hosts))
1139 				logit("Failed to add the %s host key for IP "
1140 				    "address '%.128s' to the list of known "
1141 				    "hosts (%.500s).", type, ip,
1142 				    user_hostfiles[0]);
1143 			else
1144 				logit("Warning: Permanently added the %s host "
1145 				    "key for IP address '%.128s' to the list "
1146 				    "of known hosts.", type, ip);
1147 		} else if (options.visual_host_key) {
1148 			fp = sshkey_fingerprint(host_key,
1149 			    options.fingerprint_hash, SSH_FP_DEFAULT);
1150 			ra = sshkey_fingerprint(host_key,
1151 			    options.fingerprint_hash, SSH_FP_RANDOMART);
1152 			if (fp == NULL || ra == NULL)
1153 				fatal_f("sshkey_fingerprint failed");
1154 			logit("Host key fingerprint is %s\n%s", fp, ra);
1155 			free(ra);
1156 			free(fp);
1157 		}
1158 		hostkey_trusted = 1;
1159 		break;
1160 	case HOST_NEW:
1161 		if (options.host_key_alias == NULL && port != 0 &&
1162 		    port != SSH_DEFAULT_PORT && !clobber_port) {
1163 			debug("checking without port identifier");
1164 			if (check_host_key(hostname, cinfo, hostaddr, 0,
1165 			    host_key, ROQUIET, 1,
1166 			    user_hostfiles, num_user_hostfiles,
1167 			    system_hostfiles, num_system_hostfiles,
1168 			    hostfile_command) == 0) {
1169 				debug("found matching key w/out port");
1170 				break;
1171 			}
1172 		}
1173 		if (readonly || want_cert)
1174 			goto fail;
1175 		/* The host is new. */
1176 		if (options.strict_host_key_checking ==
1177 		    SSH_STRICT_HOSTKEY_YES) {
1178 			/*
1179 			 * User has requested strict host key checking.  We
1180 			 * will not add the host key automatically.  The only
1181 			 * alternative left is to abort.
1182 			 */
1183 			error("No %s host key is known for %.200s and you "
1184 			    "have requested strict checking.", type, host);
1185 			goto fail;
1186 		} else if (options.strict_host_key_checking ==
1187 		    SSH_STRICT_HOSTKEY_ASK) {
1188 			char *msg1 = NULL, *msg2 = NULL;
1189 
1190 			xasprintf(&msg1, "The authenticity of host "
1191 			    "'%.200s (%s)' can't be established", host, ip);
1192 
1193 			if (show_other_keys(host_hostkeys, host_key)) {
1194 				xextendf(&msg1, "\n", "but keys of different "
1195 				    "type are already known for this host.");
1196 			} else
1197 				xextendf(&msg1, "", ".");
1198 
1199 			fp = sshkey_fingerprint(host_key,
1200 			    options.fingerprint_hash, SSH_FP_DEFAULT);
1201 			ra = sshkey_fingerprint(host_key,
1202 			    options.fingerprint_hash, SSH_FP_RANDOMART);
1203 			if (fp == NULL || ra == NULL)
1204 				fatal_f("sshkey_fingerprint failed");
1205 			xextendf(&msg1, "\n", "%s key fingerprint is %s.",
1206 			    type, fp);
1207 			if (options.visual_host_key)
1208 				xextendf(&msg1, "\n", "%s", ra);
1209 			if (options.verify_host_key_dns) {
1210 				xextendf(&msg1, "\n",
1211 				    "%s host key fingerprint found in DNS.",
1212 				    matching_host_key_dns ?
1213 				    "Matching" : "No matching");
1214 			}
1215 			/* msg2 informs for other names matching this key */
1216 			if ((msg2 = other_hostkeys_message(host, ip, host_key,
1217 			    user_hostfiles, num_user_hostfiles,
1218 			    system_hostfiles, num_system_hostfiles)) != NULL)
1219 				xextendf(&msg1, "\n", "%s", msg2);
1220 
1221 			xextendf(&msg1, "\n",
1222 			    "Are you sure you want to continue connecting "
1223 			    "(yes/no/[fingerprint])? ");
1224 
1225 			confirmed = confirm(msg1, fp);
1226 			free(ra);
1227 			free(fp);
1228 			free(msg1);
1229 			free(msg2);
1230 			if (!confirmed)
1231 				goto fail;
1232 			hostkey_trusted = 1; /* user explicitly confirmed */
1233 		}
1234 		/*
1235 		 * If in "new" or "off" strict mode, add the key automatically
1236 		 * to the local known_hosts file.
1237 		 */
1238 		if (options.check_host_ip && ip_status == HOST_NEW) {
1239 			snprintf(hostline, sizeof(hostline), "%s,%s", host, ip);
1240 			hostp = hostline;
1241 			if (options.hash_known_hosts) {
1242 				/* Add hash of host and IP separately */
1243 				r = add_host_to_hostfile(user_hostfiles[0],
1244 				    host, host_key, options.hash_known_hosts) &&
1245 				    add_host_to_hostfile(user_hostfiles[0], ip,
1246 				    host_key, options.hash_known_hosts);
1247 			} else {
1248 				/* Add unhashed "host,ip" */
1249 				r = add_host_to_hostfile(user_hostfiles[0],
1250 				    hostline, host_key,
1251 				    options.hash_known_hosts);
1252 			}
1253 		} else {
1254 			r = add_host_to_hostfile(user_hostfiles[0], host,
1255 			    host_key, options.hash_known_hosts);
1256 			hostp = host;
1257 		}
1258 
1259 		if (!r)
1260 			logit("Failed to add the host to the list of known "
1261 			    "hosts (%.500s).", user_hostfiles[0]);
1262 		else
1263 			logit("Warning: Permanently added '%.200s' (%s) to the "
1264 			    "list of known hosts.", hostp, type);
1265 		break;
1266 	case HOST_REVOKED:
1267 		error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1268 		error("@       WARNING: REVOKED HOST KEY DETECTED!               @");
1269 		error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1270 		error("The %s host key for %s is marked as revoked.", type, host);
1271 		error("This could mean that a stolen key is being used to");
1272 		error("impersonate this host.");
1273 
1274 		/*
1275 		 * If strict host key checking is in use, the user will have
1276 		 * to edit the key manually and we can only abort.
1277 		 */
1278 		if (options.strict_host_key_checking !=
1279 		    SSH_STRICT_HOSTKEY_OFF) {
1280 			error("%s host key for %.200s was revoked and you have "
1281 			    "requested strict checking.", type, host);
1282 			goto fail;
1283 		}
1284 		goto continue_unsafe;
1285 
1286 	case HOST_CHANGED:
1287 		if (want_cert) {
1288 			/*
1289 			 * This is only a debug() since it is valid to have
1290 			 * CAs with wildcard DNS matches that don't match
1291 			 * all hosts that one might visit.
1292 			 */
1293 			debug("Host certificate authority does not "
1294 			    "match %s in %s:%lu", CA_MARKER,
1295 			    host_found->file, host_found->line);
1296 			goto fail;
1297 		}
1298 		if (readonly == ROQUIET)
1299 			goto fail;
1300 		if (options.check_host_ip && host_ip_differ) {
1301 			const char *key_msg;
1302 			if (ip_status == HOST_NEW)
1303 				key_msg = "is unknown";
1304 			else if (ip_status == HOST_OK)
1305 				key_msg = "is unchanged";
1306 			else
1307 				key_msg = "has a different value";
1308 			error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1309 			error("@       WARNING: POSSIBLE DNS SPOOFING DETECTED!          @");
1310 			error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1311 			error("The %s host key for %s has changed,", type, host);
1312 			error("and the key for the corresponding IP address %s", ip);
1313 			error("%s. This could either mean that", key_msg);
1314 			error("DNS SPOOFING is happening or the IP address for the host");
1315 			error("and its host key have changed at the same time.");
1316 			if (ip_status != HOST_NEW)
1317 				error("Offending key for IP in %s:%lu",
1318 				    ip_found->file, ip_found->line);
1319 		}
1320 		/* The host key has changed. */
1321 		warn_changed_key(host_key);
1322 		if (num_user_hostfiles > 0 || num_system_hostfiles > 0) {
1323 			error("Add correct host key in %.100s to get rid "
1324 			    "of this message.", num_user_hostfiles > 0 ?
1325 			    user_hostfiles[0] : system_hostfiles[0]);
1326 		}
1327 		error("Offending %s key in %s:%lu",
1328 		    sshkey_type(host_found->key),
1329 		    host_found->file, host_found->line);
1330 
1331 		/*
1332 		 * If strict host key checking is in use, the user will have
1333 		 * to edit the key manually and we can only abort.
1334 		 */
1335 		if (options.strict_host_key_checking !=
1336 		    SSH_STRICT_HOSTKEY_OFF) {
1337 			error("Host key for %.200s has changed and you have "
1338 			    "requested strict checking.", host);
1339 			goto fail;
1340 		}
1341 
1342  continue_unsafe:
1343 		/*
1344 		 * If strict host key checking has not been requested, allow
1345 		 * the connection but without MITM-able authentication or
1346 		 * forwarding.
1347 		 */
1348 		if (options.password_authentication) {
1349 			error("Password authentication is disabled to avoid "
1350 			    "man-in-the-middle attacks.");
1351 			options.password_authentication = 0;
1352 			cancelled_forwarding = 1;
1353 		}
1354 		if (options.kbd_interactive_authentication) {
1355 			error("Keyboard-interactive authentication is disabled"
1356 			    " to avoid man-in-the-middle attacks.");
1357 			options.kbd_interactive_authentication = 0;
1358 			cancelled_forwarding = 1;
1359 		}
1360 		if (options.forward_agent) {
1361 			error("Agent forwarding is disabled to avoid "
1362 			    "man-in-the-middle attacks.");
1363 			options.forward_agent = 0;
1364 			cancelled_forwarding = 1;
1365 		}
1366 		if (options.forward_x11) {
1367 			error("X11 forwarding is disabled to avoid "
1368 			    "man-in-the-middle attacks.");
1369 			options.forward_x11 = 0;
1370 			cancelled_forwarding = 1;
1371 		}
1372 		if (options.num_local_forwards > 0 ||
1373 		    options.num_remote_forwards > 0) {
1374 			error("Port forwarding is disabled to avoid "
1375 			    "man-in-the-middle attacks.");
1376 			options.num_local_forwards =
1377 			    options.num_remote_forwards = 0;
1378 			cancelled_forwarding = 1;
1379 		}
1380 		if (options.tun_open != SSH_TUNMODE_NO) {
1381 			error("Tunnel forwarding is disabled to avoid "
1382 			    "man-in-the-middle attacks.");
1383 			options.tun_open = SSH_TUNMODE_NO;
1384 			cancelled_forwarding = 1;
1385 		}
1386 		if (options.update_hostkeys != 0) {
1387 			error("UpdateHostkeys is disabled because the host "
1388 			    "key is not trusted.");
1389 			options.update_hostkeys = 0;
1390 		}
1391 		if (options.exit_on_forward_failure && cancelled_forwarding)
1392 			fatal("Error: forwarding disabled due to host key "
1393 			    "check failure");
1394 
1395 		/*
1396 		 * XXX Should permit the user to change to use the new id.
1397 		 * This could be done by converting the host key to an
1398 		 * identifying sentence, tell that the host identifies itself
1399 		 * by that sentence, and ask the user if they wish to
1400 		 * accept the authentication.
1401 		 */
1402 		break;
1403 	case HOST_FOUND:
1404 		fatal("internal error");
1405 		break;
1406 	}
1407 
1408 	if (options.check_host_ip && host_status != HOST_CHANGED &&
1409 	    ip_status == HOST_CHANGED) {
1410 		snprintf(msg, sizeof(msg),
1411 		    "Warning: the %s host key for '%.200s' "
1412 		    "differs from the key for the IP address '%.128s'"
1413 		    "\nOffending key for IP in %s:%lu",
1414 		    type, host, ip, ip_found->file, ip_found->line);
1415 		if (host_status == HOST_OK) {
1416 			len = strlen(msg);
1417 			snprintf(msg + len, sizeof(msg) - len,
1418 			    "\nMatching host key in %s:%lu",
1419 			    host_found->file, host_found->line);
1420 		}
1421 		if (options.strict_host_key_checking ==
1422 		    SSH_STRICT_HOSTKEY_ASK) {
1423 			strlcat(msg, "\nAre you sure you want "
1424 			    "to continue connecting (yes/no)? ", sizeof(msg));
1425 			if (!confirm(msg, NULL))
1426 				goto fail;
1427 		} else if (options.strict_host_key_checking !=
1428 		    SSH_STRICT_HOSTKEY_OFF) {
1429 			logit("%s", msg);
1430 			error("Exiting, you have requested strict checking.");
1431 			goto fail;
1432 		} else {
1433 			logit("%s", msg);
1434 		}
1435 	}
1436 
1437 	if (!hostkey_trusted && options.update_hostkeys) {
1438 		debug_f("hostkey not known or explicitly trusted: "
1439 		    "disabling UpdateHostkeys");
1440 		options.update_hostkeys = 0;
1441 	}
1442 
1443 	free(ip);
1444 	free(host);
1445 	if (host_hostkeys != NULL)
1446 		free_hostkeys(host_hostkeys);
1447 	if (ip_hostkeys != NULL)
1448 		free_hostkeys(ip_hostkeys);
1449 	return 0;
1450 
1451 fail:
1452 	if (want_cert && host_status != HOST_REVOKED) {
1453 		/*
1454 		 * No matching certificate. Downgrade cert to raw key and
1455 		 * search normally.
1456 		 */
1457 		debug("No matching CA found. Retry with plain key");
1458 		if ((r = sshkey_from_private(host_key, &raw_key)) != 0)
1459 			fatal_fr(r, "decode key");
1460 		if ((r = sshkey_drop_cert(raw_key)) != 0)
1461 			fatal_r(r, "Couldn't drop certificate");
1462 		host_key = raw_key;
1463 		goto retry;
1464 	}
1465 	sshkey_free(raw_key);
1466 	free(ip);
1467 	free(host);
1468 	if (host_hostkeys != NULL)
1469 		free_hostkeys(host_hostkeys);
1470 	if (ip_hostkeys != NULL)
1471 		free_hostkeys(ip_hostkeys);
1472 	return -1;
1473 }
1474 
1475 /* returns 0 if key verifies or -1 if key does NOT verify */
1476 int
1477 verify_host_key(char *host, struct sockaddr *hostaddr, struct sshkey *host_key,
1478     const struct ssh_conn_info *cinfo)
1479 {
1480 	u_int i;
1481 	int r = -1, flags = 0;
1482 	char valid[64], *fp = NULL, *cafp = NULL;
1483 	struct sshkey *plain = NULL;
1484 
1485 	if ((fp = sshkey_fingerprint(host_key,
1486 	    options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL) {
1487 		error_fr(r, "fingerprint host key");
1488 		r = -1;
1489 		goto out;
1490 	}
1491 
1492 	if (sshkey_is_cert(host_key)) {
1493 		if ((cafp = sshkey_fingerprint(host_key->cert->signature_key,
1494 		    options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL) {
1495 			error_fr(r, "fingerprint CA key");
1496 			r = -1;
1497 			goto out;
1498 		}
1499 		sshkey_format_cert_validity(host_key->cert,
1500 		    valid, sizeof(valid));
1501 		debug("Server host certificate: %s %s, serial %llu "
1502 		    "ID \"%s\" CA %s %s valid %s",
1503 		    sshkey_ssh_name(host_key), fp,
1504 		    (unsigned long long)host_key->cert->serial,
1505 		    host_key->cert->key_id,
1506 		    sshkey_ssh_name(host_key->cert->signature_key), cafp,
1507 		    valid);
1508 		for (i = 0; i < host_key->cert->nprincipals; i++) {
1509 			debug2("Server host certificate hostname: %s",
1510 			    host_key->cert->principals[i]);
1511 		}
1512 	} else {
1513 		debug("Server host key: %s %s", sshkey_ssh_name(host_key), fp);
1514 	}
1515 
1516 	if (sshkey_equal(previous_host_key, host_key)) {
1517 		debug2_f("server host key %s %s matches cached key",
1518 		    sshkey_type(host_key), fp);
1519 		r = 0;
1520 		goto out;
1521 	}
1522 
1523 	/* Check in RevokedHostKeys file if specified */
1524 	if (options.revoked_host_keys != NULL) {
1525 		r = sshkey_check_revoked(host_key, options.revoked_host_keys);
1526 		switch (r) {
1527 		case 0:
1528 			break; /* not revoked */
1529 		case SSH_ERR_KEY_REVOKED:
1530 			error("Host key %s %s revoked by file %s",
1531 			    sshkey_type(host_key), fp,
1532 			    options.revoked_host_keys);
1533 			r = -1;
1534 			goto out;
1535 		default:
1536 			error_r(r, "Error checking host key %s %s in "
1537 			    "revoked keys file %s", sshkey_type(host_key),
1538 			    fp, options.revoked_host_keys);
1539 			r = -1;
1540 			goto out;
1541 		}
1542 	}
1543 
1544 	if (options.verify_host_key_dns) {
1545 		/*
1546 		 * XXX certs are not yet supported for DNS, so downgrade
1547 		 * them and try the plain key.
1548 		 */
1549 		if ((r = sshkey_from_private(host_key, &plain)) != 0)
1550 			goto out;
1551 		if (sshkey_is_cert(plain))
1552 			sshkey_drop_cert(plain);
1553 		if (verify_host_key_dns(host, hostaddr, plain, &flags) == 0) {
1554 			if (flags & DNS_VERIFY_FOUND) {
1555 				if (options.verify_host_key_dns == 1 &&
1556 				    flags & DNS_VERIFY_MATCH &&
1557 				    flags & DNS_VERIFY_SECURE) {
1558 					r = 0;
1559 					goto out;
1560 				}
1561 				if (flags & DNS_VERIFY_MATCH) {
1562 					matching_host_key_dns = 1;
1563 				} else {
1564 					warn_changed_key(plain);
1565 					error("Update the SSHFP RR in DNS "
1566 					    "with the new host key to get rid "
1567 					    "of this message.");
1568 				}
1569 			}
1570 		}
1571 	}
1572 	r = check_host_key(host, cinfo, hostaddr, options.port, host_key,
1573 	    RDRW, 0, options.user_hostfiles, options.num_user_hostfiles,
1574 	    options.system_hostfiles, options.num_system_hostfiles,
1575 	    options.known_hosts_command);
1576 
1577 out:
1578 	sshkey_free(plain);
1579 	free(fp);
1580 	free(cafp);
1581 	if (r == 0 && host_key != NULL) {
1582 		sshkey_free(previous_host_key);
1583 		r = sshkey_from_private(host_key, &previous_host_key);
1584 	}
1585 
1586 	return r;
1587 }
1588 
1589 /*
1590  * Starts a dialog with the server, and authenticates the current user on the
1591  * server.  This does not need any extra privileges.  The basic connection
1592  * to the server must already have been established before this is called.
1593  * If login fails, this function prints an error and never returns.
1594  * This function does not require super-user privileges.
1595  */
1596 void
1597 ssh_login(struct ssh *ssh, Sensitive *sensitive, const char *orighost,
1598     struct sockaddr *hostaddr, u_short port, struct passwd *pw, int timeout_ms,
1599     const struct ssh_conn_info *cinfo)
1600 {
1601 	char *host;
1602 	char *server_user, *local_user;
1603 	int r;
1604 
1605 	local_user = xstrdup(pw->pw_name);
1606 	server_user = options.user ? options.user : local_user;
1607 
1608 	/* Convert the user-supplied hostname into all lowercase. */
1609 	host = xstrdup(orighost);
1610 	lowercase(host);
1611 
1612 	/* Exchange protocol version identification strings with the server. */
1613 	if ((r = kex_exchange_identification(ssh, timeout_ms, NULL)) != 0)
1614 		sshpkt_fatal(ssh, r, "banner exchange");
1615 
1616 	/* Put the connection into non-blocking mode. */
1617 	ssh_packet_set_nonblocking(ssh);
1618 
1619 	/* key exchange */
1620 	/* authenticate user */
1621 	debug("Authenticating to %s:%d as '%s'", host, port, server_user);
1622 	ssh_kex2(ssh, host, hostaddr, port, cinfo);
1623 	ssh_userauth2(ssh, local_user, server_user, host, sensitive);
1624 	free(local_user);
1625 	free(host);
1626 }
1627 
1628 /* print all known host keys for a given host, but skip keys of given type */
1629 static int
1630 show_other_keys(struct hostkeys *hostkeys, struct sshkey *key)
1631 {
1632 	int type[] = {
1633 		KEY_RSA,
1634 #ifdef WITH_DSA
1635 		KEY_DSA,
1636 #endif
1637 		KEY_ECDSA,
1638 		KEY_ED25519,
1639 		KEY_XMSS,
1640 		-1
1641 	};
1642 	int i, ret = 0;
1643 	char *fp, *ra;
1644 	const struct hostkey_entry *found;
1645 
1646 	for (i = 0; type[i] != -1; i++) {
1647 		if (type[i] == key->type)
1648 			continue;
1649 		if (!lookup_key_in_hostkeys_by_type(hostkeys, type[i],
1650 		    -1, &found))
1651 			continue;
1652 		fp = sshkey_fingerprint(found->key,
1653 		    options.fingerprint_hash, SSH_FP_DEFAULT);
1654 		ra = sshkey_fingerprint(found->key,
1655 		    options.fingerprint_hash, SSH_FP_RANDOMART);
1656 		if (fp == NULL || ra == NULL)
1657 			fatal_f("sshkey_fingerprint fail");
1658 		logit("WARNING: %s key found for host %s\n"
1659 		    "in %s:%lu\n"
1660 		    "%s key fingerprint %s.",
1661 		    sshkey_type(found->key),
1662 		    found->host, found->file, found->line,
1663 		    sshkey_type(found->key), fp);
1664 		if (options.visual_host_key)
1665 			logit("%s", ra);
1666 		free(ra);
1667 		free(fp);
1668 		ret = 1;
1669 	}
1670 	return ret;
1671 }
1672 
1673 static void
1674 warn_changed_key(struct sshkey *host_key)
1675 {
1676 	char *fp;
1677 
1678 	fp = sshkey_fingerprint(host_key, options.fingerprint_hash,
1679 	    SSH_FP_DEFAULT);
1680 	if (fp == NULL)
1681 		fatal_f("sshkey_fingerprint fail");
1682 
1683 	error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1684 	error("@    WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!     @");
1685 	error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1686 	error("IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!");
1687 	error("Someone could be eavesdropping on you right now (man-in-the-middle attack)!");
1688 	error("It is also possible that a host key has just been changed.");
1689 	error("The fingerprint for the %s key sent by the remote host is\n%s.",
1690 	    sshkey_type(host_key), fp);
1691 	error("Please contact your system administrator.");
1692 
1693 	free(fp);
1694 }
1695 
1696 /*
1697  * Execute a local command
1698  */
1699 int
1700 ssh_local_cmd(const char *args)
1701 {
1702 	const char *shell;
1703 	pid_t pid;
1704 	int status;
1705 	void (*osighand)(int);
1706 
1707 	if (!options.permit_local_command ||
1708 	    args == NULL || !*args)
1709 		return (1);
1710 
1711 	if ((shell = getenv("SHELL")) == NULL || *shell == '\0')
1712 		shell = _PATH_BSHELL;
1713 
1714 	osighand = ssh_signal(SIGCHLD, SIG_DFL);
1715 	pid = fork();
1716 	if (pid == 0) {
1717 		ssh_signal(SIGPIPE, SIG_DFL);
1718 		debug3("Executing %s -c \"%s\"", shell, args);
1719 		execl(shell, shell, "-c", args, (char *)NULL);
1720 		error("Couldn't execute %s -c \"%s\": %s",
1721 		    shell, args, strerror(errno));
1722 		_exit(1);
1723 	} else if (pid == -1)
1724 		fatal("fork failed: %.100s", strerror(errno));
1725 	while (waitpid(pid, &status, 0) == -1)
1726 		if (errno != EINTR)
1727 			fatal("Couldn't wait for child: %s", strerror(errno));
1728 	ssh_signal(SIGCHLD, osighand);
1729 
1730 	if (!WIFEXITED(status))
1731 		return (1);
1732 
1733 	return (WEXITSTATUS(status));
1734 }
1735 
1736 void
1737 maybe_add_key_to_agent(const char *authfile, struct sshkey *private,
1738     const char *comment, const char *passphrase)
1739 {
1740 	int auth_sock = -1, r;
1741 	const char *skprovider = NULL;
1742 
1743 	if (options.add_keys_to_agent == 0)
1744 		return;
1745 
1746 	if ((r = ssh_get_authentication_socket(&auth_sock)) != 0) {
1747 		debug3("no authentication agent, not adding key");
1748 		return;
1749 	}
1750 
1751 	if (options.add_keys_to_agent == 2 &&
1752 	    !ask_permission("Add key %s (%s) to agent?", authfile, comment)) {
1753 		debug3("user denied adding this key");
1754 		close(auth_sock);
1755 		return;
1756 	}
1757 	if (sshkey_is_sk(private))
1758 		skprovider = options.sk_provider;
1759 	if ((r = ssh_add_identity_constrained(auth_sock, private,
1760 	    comment == NULL ? authfile : comment,
1761 	    options.add_keys_to_agent_lifespan,
1762 	    (options.add_keys_to_agent == 3), 0, skprovider, NULL, 0)) == 0)
1763 		debug("identity added to agent: %s", authfile);
1764 	else
1765 		debug("could not add identity to agent: %s (%d)", authfile, r);
1766 	close(auth_sock);
1767 }
1768