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