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