xref: /freebsd/crypto/openssh/sshconnect.c (revision 4ed925457ab06e83238a5db33e89ccc94b99a713)
1 /* $OpenBSD: sshconnect.c,v 1.214 2009/05/28 16:50:16 andreas Exp $ */
2 /* $FreeBSD$ */
3 /*
4  * Author: Tatu Ylonen <ylo@cs.hut.fi>
5  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6  *                    All rights reserved
7  * Code to connect to a remote host, and to perform the client side of the
8  * login (authentication) dialog.
9  *
10  * As far as I am concerned, the code I have written for this software
11  * can be used freely for any purpose.  Any derived versions of this
12  * software must be clearly marked as such, and if the derived work is
13  * incompatible with the protocol description in the RFC file, it must be
14  * called by a name other than "ssh" or "Secure Shell".
15  */
16 
17 #include "includes.h"
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 
30 #include <ctype.h>
31 #include <errno.h>
32 #include <netdb.h>
33 #ifdef HAVE_PATHS_H
34 #include <paths.h>
35 #endif
36 #include <pwd.h>
37 #include <stdarg.h>
38 #include <stdio.h>
39 #include <stdlib.h>
40 #include <string.h>
41 #include <unistd.h>
42 
43 #include "xmalloc.h"
44 #include "key.h"
45 #include "hostfile.h"
46 #include "ssh.h"
47 #include "rsa.h"
48 #include "buffer.h"
49 #include "packet.h"
50 #include "uidswap.h"
51 #include "compat.h"
52 #include "key.h"
53 #include "sshconnect.h"
54 #include "hostfile.h"
55 #include "log.h"
56 #include "readconf.h"
57 #include "atomicio.h"
58 #include "misc.h"
59 #include "dns.h"
60 #include "roaming.h"
61 #include "version.h"
62 
63 char *client_version_string = NULL;
64 char *server_version_string = NULL;
65 
66 static int matching_host_key_dns = 0;
67 
68 /* import */
69 extern Options options;
70 extern char *__progname;
71 extern uid_t original_real_uid;
72 extern uid_t original_effective_uid;
73 extern pid_t proxy_command_pid;
74 
75 static int show_other_keys(const char *, Key *);
76 static void warn_changed_key(Key *);
77 
78 /*
79  * Connect to the given ssh server using a proxy command.
80  */
81 static int
82 ssh_proxy_connect(const char *host, u_short port, const char *proxy_command)
83 {
84 	char *command_string, *tmp;
85 	int pin[2], pout[2];
86 	pid_t pid;
87 	char *shell, strport[NI_MAXSERV];
88 
89 	if ((shell = getenv("SHELL")) == NULL)
90 		shell = _PATH_BSHELL;
91 
92 	/* Convert the port number into a string. */
93 	snprintf(strport, sizeof strport, "%hu", port);
94 
95 	/*
96 	 * Build the final command string in the buffer by making the
97 	 * appropriate substitutions to the given proxy command.
98 	 *
99 	 * Use "exec" to avoid "sh -c" processes on some platforms
100 	 * (e.g. Solaris)
101 	 */
102 	xasprintf(&tmp, "exec %s", proxy_command);
103 	command_string = percent_expand(tmp, "h", host,
104 	    "p", strport, (char *)NULL);
105 	xfree(tmp);
106 
107 	/* Create pipes for communicating with the proxy. */
108 	if (pipe(pin) < 0 || pipe(pout) < 0)
109 		fatal("Could not create pipes to communicate with the proxy: %.100s",
110 		    strerror(errno));
111 
112 	debug("Executing proxy command: %.500s", command_string);
113 
114 	/* Fork and execute the proxy command. */
115 	if ((pid = fork()) == 0) {
116 		char *argv[10];
117 
118 		/* Child.  Permanently give up superuser privileges. */
119 		permanently_drop_suid(original_real_uid);
120 
121 		/* Redirect stdin and stdout. */
122 		close(pin[1]);
123 		if (pin[0] != 0) {
124 			if (dup2(pin[0], 0) < 0)
125 				perror("dup2 stdin");
126 			close(pin[0]);
127 		}
128 		close(pout[0]);
129 		if (dup2(pout[1], 1) < 0)
130 			perror("dup2 stdout");
131 		/* Cannot be 1 because pin allocated two descriptors. */
132 		close(pout[1]);
133 
134 		/* Stderr is left as it is so that error messages get
135 		   printed on the user's terminal. */
136 		argv[0] = shell;
137 		argv[1] = "-c";
138 		argv[2] = command_string;
139 		argv[3] = NULL;
140 
141 		/* Execute the proxy command.  Note that we gave up any
142 		   extra privileges above. */
143 		execv(argv[0], argv);
144 		perror(argv[0]);
145 		exit(1);
146 	}
147 	/* Parent. */
148 	if (pid < 0)
149 		fatal("fork failed: %.100s", strerror(errno));
150 	else
151 		proxy_command_pid = pid; /* save pid to clean up later */
152 
153 	/* Close child side of the descriptors. */
154 	close(pin[0]);
155 	close(pout[1]);
156 
157 	/* Free the command name. */
158 	xfree(command_string);
159 
160 	/* Set the connection file descriptors. */
161 	packet_set_connection(pout[0], pin[1]);
162 	packet_set_timeout(options.server_alive_interval,
163 	    options.server_alive_count_max);
164 
165 	/* Indicate OK return */
166 	return 0;
167 }
168 
169 /*
170  * Creates a (possibly privileged) socket for use as the ssh connection.
171  */
172 static int
173 ssh_create_socket(int privileged, struct addrinfo *ai)
174 {
175 	int sock, gaierr;
176 	struct addrinfo hints, *res;
177 
178 	/*
179 	 * If we are running as root and want to connect to a privileged
180 	 * port, bind our own socket to a privileged port.
181 	 */
182 	if (privileged) {
183 		int p = IPPORT_RESERVED - 1;
184 		PRIV_START;
185 		sock = rresvport_af(&p, ai->ai_family);
186 		PRIV_END;
187 		if (sock < 0)
188 			error("rresvport: af=%d %.100s", ai->ai_family,
189 			    strerror(errno));
190 		else
191 			debug("Allocated local port %d.", p);
192 		return sock;
193 	}
194 	sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
195 	if (sock < 0)
196 		error("socket: %.100s", strerror(errno));
197 
198 	/* Bind the socket to an alternative local IP address */
199 	if (options.bind_address == NULL)
200 		return sock;
201 
202 	memset(&hints, 0, sizeof(hints));
203 	hints.ai_family = ai->ai_family;
204 	hints.ai_socktype = ai->ai_socktype;
205 	hints.ai_protocol = ai->ai_protocol;
206 	hints.ai_flags = AI_PASSIVE;
207 	gaierr = getaddrinfo(options.bind_address, NULL, &hints, &res);
208 	if (gaierr) {
209 		error("getaddrinfo: %s: %s", options.bind_address,
210 		    ssh_gai_strerror(gaierr));
211 		close(sock);
212 		return -1;
213 	}
214 	if (bind(sock, res->ai_addr, res->ai_addrlen) < 0) {
215 		error("bind: %s: %s", options.bind_address, strerror(errno));
216 		close(sock);
217 		freeaddrinfo(res);
218 		return -1;
219 	}
220 	freeaddrinfo(res);
221 	return sock;
222 }
223 
224 static int
225 timeout_connect(int sockfd, const struct sockaddr *serv_addr,
226     socklen_t addrlen, int *timeoutp)
227 {
228 	fd_set *fdset;
229 	struct timeval tv, t_start;
230 	socklen_t optlen;
231 	int optval, rc, result = -1;
232 
233 	gettimeofday(&t_start, NULL);
234 
235 	if (*timeoutp <= 0) {
236 		result = connect(sockfd, serv_addr, addrlen);
237 		goto done;
238 	}
239 
240 	set_nonblock(sockfd);
241 	rc = connect(sockfd, serv_addr, addrlen);
242 	if (rc == 0) {
243 		unset_nonblock(sockfd);
244 		result = 0;
245 		goto done;
246 	}
247 	if (errno != EINPROGRESS) {
248 		result = -1;
249 		goto done;
250 	}
251 
252 	fdset = (fd_set *)xcalloc(howmany(sockfd + 1, NFDBITS),
253 	    sizeof(fd_mask));
254 	FD_SET(sockfd, fdset);
255 	ms_to_timeval(&tv, *timeoutp);
256 
257 	for (;;) {
258 		rc = select(sockfd + 1, NULL, fdset, NULL, &tv);
259 		if (rc != -1 || errno != EINTR)
260 			break;
261 	}
262 
263 	switch (rc) {
264 	case 0:
265 		/* Timed out */
266 		errno = ETIMEDOUT;
267 		break;
268 	case -1:
269 		/* Select error */
270 		debug("select: %s", strerror(errno));
271 		break;
272 	case 1:
273 		/* Completed or failed */
274 		optval = 0;
275 		optlen = sizeof(optval);
276 		if (getsockopt(sockfd, SOL_SOCKET, SO_ERROR, &optval,
277 		    &optlen) == -1) {
278 			debug("getsockopt: %s", strerror(errno));
279 			break;
280 		}
281 		if (optval != 0) {
282 			errno = optval;
283 			break;
284 		}
285 		result = 0;
286 		unset_nonblock(sockfd);
287 		break;
288 	default:
289 		/* Should not occur */
290 		fatal("Bogus return (%d) from select()", rc);
291 	}
292 
293 	xfree(fdset);
294 
295  done:
296  	if (result == 0 && *timeoutp > 0) {
297 		ms_subtract_diff(&t_start, timeoutp);
298 		if (*timeoutp <= 0) {
299 			errno = ETIMEDOUT;
300 			result = -1;
301 		}
302 	}
303 
304 	return (result);
305 }
306 
307 /*
308  * Opens a TCP/IP connection to the remote server on the given host.
309  * The address of the remote host will be returned in hostaddr.
310  * If port is 0, the default port will be used.  If needpriv is true,
311  * a privileged port will be allocated to make the connection.
312  * This requires super-user privileges if needpriv is true.
313  * Connection_attempts specifies the maximum number of tries (one per
314  * second).  If proxy_command is non-NULL, it specifies the command (with %h
315  * and %p substituted for host and port, respectively) to use to contact
316  * the daemon.
317  */
318 int
319 ssh_connect(const char *host, struct sockaddr_storage * hostaddr,
320     u_short port, int family, int connection_attempts, int *timeout_ms,
321     int want_keepalive, int needpriv, const char *proxy_command)
322 {
323 	int gaierr;
324 	int on = 1;
325 	int sock = -1, attempt;
326 	char ntop[NI_MAXHOST], strport[NI_MAXSERV];
327 	struct addrinfo hints, *ai, *aitop;
328 
329 	debug2("ssh_connect: needpriv %d", needpriv);
330 
331 	/* If a proxy command is given, connect using it. */
332 	if (proxy_command != NULL)
333 		return ssh_proxy_connect(host, port, proxy_command);
334 
335 	/* No proxy command. */
336 
337 	memset(&hints, 0, sizeof(hints));
338 	hints.ai_family = family;
339 	hints.ai_socktype = SOCK_STREAM;
340 	snprintf(strport, sizeof strport, "%u", port);
341 	if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
342 		fatal("%s: Could not resolve hostname %.100s: %s", __progname,
343 		    host, ssh_gai_strerror(gaierr));
344 
345 	for (attempt = 0; attempt < connection_attempts; attempt++) {
346 		if (attempt > 0) {
347 			/* Sleep a moment before retrying. */
348 			sleep(1);
349 			debug("Trying again...");
350 		}
351 		/*
352 		 * Loop through addresses for this host, and try each one in
353 		 * sequence until the connection succeeds.
354 		 */
355 		for (ai = aitop; ai; ai = ai->ai_next) {
356 			if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
357 				continue;
358 			if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
359 			    ntop, sizeof(ntop), strport, sizeof(strport),
360 			    NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
361 				error("ssh_connect: getnameinfo failed");
362 				continue;
363 			}
364 			debug("Connecting to %.200s [%.100s] port %s.",
365 				host, ntop, strport);
366 
367 			/* Create a socket for connecting. */
368 			sock = ssh_create_socket(needpriv, ai);
369 			if (sock < 0)
370 				/* Any error is already output */
371 				continue;
372 
373 			if (timeout_connect(sock, ai->ai_addr, ai->ai_addrlen,
374 			    timeout_ms) >= 0) {
375 				/* Successful connection. */
376 				memcpy(hostaddr, ai->ai_addr, ai->ai_addrlen);
377 				break;
378 			} else {
379 				debug("connect to address %s port %s: %s",
380 				    ntop, strport, strerror(errno));
381 				close(sock);
382 				sock = -1;
383 			}
384 		}
385 		if (sock != -1)
386 			break;	/* Successful connection. */
387 	}
388 
389 	freeaddrinfo(aitop);
390 
391 	/* Return failure if we didn't get a successful connection. */
392 	if (sock == -1) {
393 		error("ssh: connect to host %s port %s: %s",
394 		    host, strport, strerror(errno));
395 		return (-1);
396 	}
397 
398 	debug("Connection established.");
399 
400 	/* Set SO_KEEPALIVE if requested. */
401 	if (want_keepalive &&
402 	    setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE, (void *)&on,
403 	    sizeof(on)) < 0)
404 		error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
405 
406 	/* Set the connection. */
407 	packet_set_connection(sock, sock);
408 	packet_set_timeout(options.server_alive_interval,
409 	    options.server_alive_count_max);
410 
411 	return 0;
412 }
413 
414 /*
415  * Waits for the server identification string, and sends our own
416  * identification string.
417  */
418 void
419 ssh_exchange_identification(int timeout_ms)
420 {
421 	char buf[256], remote_version[256];	/* must be same size! */
422 	int remote_major, remote_minor, mismatch;
423 	int connection_in = packet_get_connection_in();
424 	int connection_out = packet_get_connection_out();
425 	int minor1 = PROTOCOL_MINOR_1;
426 	u_int i, n;
427 	size_t len;
428 	int fdsetsz, remaining, rc;
429 	struct timeval t_start, t_remaining;
430 	fd_set *fdset;
431 
432 	fdsetsz = howmany(connection_in + 1, NFDBITS) * sizeof(fd_mask);
433 	fdset = xcalloc(1, fdsetsz);
434 
435 	/* Read other side's version identification. */
436 	remaining = timeout_ms;
437 	for (n = 0;;) {
438 		for (i = 0; i < sizeof(buf) - 1; i++) {
439 			if (timeout_ms > 0) {
440 				gettimeofday(&t_start, NULL);
441 				ms_to_timeval(&t_remaining, remaining);
442 				FD_SET(connection_in, fdset);
443 				rc = select(connection_in + 1, fdset, NULL,
444 				    fdset, &t_remaining);
445 				ms_subtract_diff(&t_start, &remaining);
446 				if (rc == 0 || remaining <= 0)
447 					fatal("Connection timed out during "
448 					    "banner exchange");
449 				if (rc == -1) {
450 					if (errno == EINTR)
451 						continue;
452 					fatal("ssh_exchange_identification: "
453 					    "select: %s", strerror(errno));
454 				}
455 			}
456 
457 			len = roaming_atomicio(read, connection_in, &buf[i], 1);
458 
459 			if (len != 1 && errno == EPIPE)
460 				fatal("ssh_exchange_identification: "
461 				    "Connection closed by remote host");
462 			else if (len != 1)
463 				fatal("ssh_exchange_identification: "
464 				    "read: %.100s", strerror(errno));
465 			if (buf[i] == '\r') {
466 				buf[i] = '\n';
467 				buf[i + 1] = 0;
468 				continue;		/**XXX wait for \n */
469 			}
470 			if (buf[i] == '\n') {
471 				buf[i + 1] = 0;
472 				break;
473 			}
474 			if (++n > 65536)
475 				fatal("ssh_exchange_identification: "
476 				    "No banner received");
477 		}
478 		buf[sizeof(buf) - 1] = 0;
479 		if (strncmp(buf, "SSH-", 4) == 0)
480 			break;
481 		debug("ssh_exchange_identification: %s", buf);
482 	}
483 	server_version_string = xstrdup(buf);
484 	xfree(fdset);
485 
486 	/*
487 	 * Check that the versions match.  In future this might accept
488 	 * several versions and set appropriate flags to handle them.
489 	 */
490 	if (sscanf(server_version_string, "SSH-%d.%d-%[^\n]\n",
491 	    &remote_major, &remote_minor, remote_version) != 3)
492 		fatal("Bad remote protocol version identification: '%.100s'", buf);
493 	debug("Remote protocol version %d.%d, remote software version %.100s",
494 	    remote_major, remote_minor, remote_version);
495 
496 	compat_datafellows(remote_version);
497 	mismatch = 0;
498 
499 	switch (remote_major) {
500 	case 1:
501 		if (remote_minor == 99 &&
502 		    (options.protocol & SSH_PROTO_2) &&
503 		    !(options.protocol & SSH_PROTO_1_PREFERRED)) {
504 			enable_compat20();
505 			break;
506 		}
507 		if (!(options.protocol & SSH_PROTO_1)) {
508 			mismatch = 1;
509 			break;
510 		}
511 		if (remote_minor < 3) {
512 			fatal("Remote machine has too old SSH software version.");
513 		} else if (remote_minor == 3 || remote_minor == 4) {
514 			/* We speak 1.3, too. */
515 			enable_compat13();
516 			minor1 = 3;
517 			if (options.forward_agent) {
518 				logit("Agent forwarding disabled for protocol 1.3");
519 				options.forward_agent = 0;
520 			}
521 		}
522 		break;
523 	case 2:
524 		if (options.protocol & SSH_PROTO_2) {
525 			enable_compat20();
526 			break;
527 		}
528 		/* FALLTHROUGH */
529 	default:
530 		mismatch = 1;
531 		break;
532 	}
533 	if (mismatch)
534 		fatal("Protocol major versions differ: %d vs. %d",
535 		    (options.protocol & SSH_PROTO_2) ? PROTOCOL_MAJOR_2 : PROTOCOL_MAJOR_1,
536 		    remote_major);
537 	/* Send our own protocol version identification. */
538 	snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s%s",
539 	    compat20 ? PROTOCOL_MAJOR_2 : PROTOCOL_MAJOR_1,
540 	    compat20 ? PROTOCOL_MINOR_2 : minor1,
541 	    SSH_VERSION, compat20 ? "\r\n" : "\n");
542 	if (roaming_atomicio(vwrite, connection_out, buf, strlen(buf))
543 	    != strlen(buf))
544 		fatal("write: %.100s", strerror(errno));
545 	client_version_string = xstrdup(buf);
546 	chop(client_version_string);
547 	chop(server_version_string);
548 	debug("Local version string %.100s", client_version_string);
549 }
550 
551 /* defaults to 'no' */
552 static int
553 confirm(const char *prompt)
554 {
555 	const char *msg, *again = "Please type 'yes' or 'no': ";
556 	char *p;
557 	int ret = -1;
558 
559 	if (options.batch_mode)
560 		return 0;
561 	for (msg = prompt;;msg = again) {
562 		p = read_passphrase(msg, RP_ECHO);
563 		if (p == NULL ||
564 		    (p[0] == '\0') || (p[0] == '\n') ||
565 		    strncasecmp(p, "no", 2) == 0)
566 			ret = 0;
567 		if (p && strncasecmp(p, "yes", 3) == 0)
568 			ret = 1;
569 		if (p)
570 			xfree(p);
571 		if (ret != -1)
572 			return ret;
573 	}
574 }
575 
576 /*
577  * check whether the supplied host key is valid, return -1 if the key
578  * is not valid. the user_hostfile will not be updated if 'readonly' is true.
579  */
580 #define RDRW	0
581 #define RDONLY	1
582 #define ROQUIET	2
583 static int
584 check_host_key(char *hostname, struct sockaddr *hostaddr, u_short port,
585     Key *host_key, int readonly, const char *user_hostfile,
586     const char *system_hostfile)
587 {
588 	Key *file_key;
589 	const char *type = key_type(host_key);
590 	char *ip = NULL, *host = NULL;
591 	char hostline[1000], *hostp, *fp, *ra;
592 	HostStatus host_status;
593 	HostStatus ip_status;
594 	int r, local = 0, host_ip_differ = 0;
595 	int salen;
596 	char ntop[NI_MAXHOST];
597 	char msg[1024];
598 	int len, host_line, ip_line, cancelled_forwarding = 0;
599 	const char *host_file = NULL, *ip_file = NULL;
600 
601 	/*
602 	 * Force accepting of the host key for loopback/localhost. The
603 	 * problem is that if the home directory is NFS-mounted to multiple
604 	 * machines, localhost will refer to a different machine in each of
605 	 * them, and the user will get bogus HOST_CHANGED warnings.  This
606 	 * essentially disables host authentication for localhost; however,
607 	 * this is probably not a real problem.
608 	 */
609 	/**  hostaddr == 0! */
610 	switch (hostaddr->sa_family) {
611 	case AF_INET:
612 		local = (ntohl(((struct sockaddr_in *)hostaddr)->
613 		    sin_addr.s_addr) >> 24) == IN_LOOPBACKNET;
614 		salen = sizeof(struct sockaddr_in);
615 		break;
616 	case AF_INET6:
617 		local = IN6_IS_ADDR_LOOPBACK(
618 		    &(((struct sockaddr_in6 *)hostaddr)->sin6_addr));
619 		salen = sizeof(struct sockaddr_in6);
620 		break;
621 	default:
622 		local = 0;
623 		salen = sizeof(struct sockaddr_storage);
624 		break;
625 	}
626 	if (options.no_host_authentication_for_localhost == 1 && local &&
627 	    options.host_key_alias == NULL) {
628 		debug("Forcing accepting of host key for "
629 		    "loopback/localhost.");
630 		return 0;
631 	}
632 
633 	/*
634 	 * We don't have the remote ip-address for connections
635 	 * using a proxy command
636 	 */
637 	if (options.proxy_command == NULL) {
638 		if (getnameinfo(hostaddr, salen, ntop, sizeof(ntop),
639 		    NULL, 0, NI_NUMERICHOST) != 0)
640 			fatal("check_host_key: getnameinfo failed");
641 		ip = put_host_port(ntop, port);
642 	} else {
643 		ip = xstrdup("<no hostip for proxy command>");
644 	}
645 
646 	/*
647 	 * Turn off check_host_ip if the connection is to localhost, via proxy
648 	 * command or if we don't have a hostname to compare with
649 	 */
650 	if (options.check_host_ip && (local ||
651 	    strcmp(hostname, ip) == 0 || options.proxy_command != NULL))
652 		options.check_host_ip = 0;
653 
654 	/*
655 	 * Allow the user to record the key under a different name or
656 	 * differentiate a non-standard port.  This is useful for ssh
657 	 * tunneling over forwarded connections or if you run multiple
658 	 * sshd's on different ports on the same machine.
659 	 */
660 	if (options.host_key_alias != NULL) {
661 		host = xstrdup(options.host_key_alias);
662 		debug("using hostkeyalias: %s", host);
663 	} else {
664 		host = put_host_port(hostname, port);
665 	}
666 
667 	/*
668 	 * Store the host key from the known host file in here so that we can
669 	 * compare it with the key for the IP address.
670 	 */
671 	file_key = key_new(host_key->type);
672 
673 	/*
674 	 * Check if the host key is present in the user's list of known
675 	 * hosts or in the systemwide list.
676 	 */
677 	host_file = user_hostfile;
678 	host_status = check_host_in_hostfile(host_file, host, host_key,
679 	    file_key, &host_line);
680 	if (host_status == HOST_NEW) {
681 		host_file = system_hostfile;
682 		host_status = check_host_in_hostfile(host_file, host, host_key,
683 		    file_key, &host_line);
684 	}
685 	/*
686 	 * Also perform check for the ip address, skip the check if we are
687 	 * localhost or the hostname was an ip address to begin with
688 	 */
689 	if (options.check_host_ip) {
690 		Key *ip_key = key_new(host_key->type);
691 
692 		ip_file = user_hostfile;
693 		ip_status = check_host_in_hostfile(ip_file, ip, host_key,
694 		    ip_key, &ip_line);
695 		if (ip_status == HOST_NEW) {
696 			ip_file = system_hostfile;
697 			ip_status = check_host_in_hostfile(ip_file, ip,
698 			    host_key, ip_key, &ip_line);
699 		}
700 		if (host_status == HOST_CHANGED &&
701 		    (ip_status != HOST_CHANGED || !key_equal(ip_key, file_key)))
702 			host_ip_differ = 1;
703 
704 		key_free(ip_key);
705 	} else
706 		ip_status = host_status;
707 
708 	key_free(file_key);
709 
710 	switch (host_status) {
711 	case HOST_OK:
712 		/* The host is known and the key matches. */
713 		debug("Host '%.200s' is known and matches the %s host key.",
714 		    host, type);
715 		debug("Found key in %s:%d", host_file, host_line);
716 		if (options.check_host_ip && ip_status == HOST_NEW) {
717 			if (readonly)
718 				logit("%s host key for IP address "
719 				    "'%.128s' not in list of known hosts.",
720 				    type, ip);
721 			else if (!add_host_to_hostfile(user_hostfile, ip,
722 			    host_key, options.hash_known_hosts))
723 				logit("Failed to add the %s host key for IP "
724 				    "address '%.128s' to the list of known "
725 				    "hosts (%.30s).", type, ip, user_hostfile);
726 			else
727 				logit("Warning: Permanently added the %s host "
728 				    "key for IP address '%.128s' to the list "
729 				    "of known hosts.", type, ip);
730 		} else if (options.visual_host_key) {
731 			fp = key_fingerprint(host_key, SSH_FP_MD5, SSH_FP_HEX);
732 			ra = key_fingerprint(host_key, SSH_FP_MD5,
733 			    SSH_FP_RANDOMART);
734 			logit("Host key fingerprint is %s\n%s\n", fp, ra);
735 			xfree(ra);
736 			xfree(fp);
737 		}
738 		break;
739 	case HOST_NEW:
740 		if (options.host_key_alias == NULL && port != 0 &&
741 		    port != SSH_DEFAULT_PORT) {
742 			debug("checking without port identifier");
743 			if (check_host_key(hostname, hostaddr, 0, host_key,
744 			    ROQUIET, user_hostfile, system_hostfile) == 0) {
745 				debug("found matching key w/out port");
746 				break;
747 			}
748 		}
749 		if (readonly)
750 			goto fail;
751 		/* The host is new. */
752 		if (options.strict_host_key_checking == 1) {
753 			/*
754 			 * User has requested strict host key checking.  We
755 			 * will not add the host key automatically.  The only
756 			 * alternative left is to abort.
757 			 */
758 			error("No %s host key is known for %.200s and you "
759 			    "have requested strict checking.", type, host);
760 			goto fail;
761 		} else if (options.strict_host_key_checking == 2) {
762 			char msg1[1024], msg2[1024];
763 
764 			if (show_other_keys(host, host_key))
765 				snprintf(msg1, sizeof(msg1),
766 				    "\nbut keys of different type are already"
767 				    " known for this host.");
768 			else
769 				snprintf(msg1, sizeof(msg1), ".");
770 			/* The default */
771 			fp = key_fingerprint(host_key, SSH_FP_MD5, SSH_FP_HEX);
772 			ra = key_fingerprint(host_key, SSH_FP_MD5,
773 			    SSH_FP_RANDOMART);
774 			msg2[0] = '\0';
775 			if (options.verify_host_key_dns) {
776 				if (matching_host_key_dns)
777 					snprintf(msg2, sizeof(msg2),
778 					    "Matching host key fingerprint"
779 					    " found in DNS.\n");
780 				else
781 					snprintf(msg2, sizeof(msg2),
782 					    "No matching host key fingerprint"
783 					    " found in DNS.\n");
784 			}
785 			snprintf(msg, sizeof(msg),
786 			    "The authenticity of host '%.200s (%s)' can't be "
787 			    "established%s\n"
788 			    "%s key fingerprint is %s.%s%s\n%s"
789 			    "Are you sure you want to continue connecting "
790 			    "(yes/no)? ",
791 			    host, ip, msg1, type, fp,
792 			    options.visual_host_key ? "\n" : "",
793 			    options.visual_host_key ? ra : "",
794 			    msg2);
795 			xfree(ra);
796 			xfree(fp);
797 			if (!confirm(msg))
798 				goto fail;
799 		}
800 		/*
801 		 * If not in strict mode, add the key automatically to the
802 		 * local known_hosts file.
803 		 */
804 		if (options.check_host_ip && ip_status == HOST_NEW) {
805 			snprintf(hostline, sizeof(hostline), "%s,%s",
806 			    host, ip);
807 			hostp = hostline;
808 			if (options.hash_known_hosts) {
809 				/* Add hash of host and IP separately */
810 				r = add_host_to_hostfile(user_hostfile, host,
811 				    host_key, options.hash_known_hosts) &&
812 				    add_host_to_hostfile(user_hostfile, ip,
813 				    host_key, options.hash_known_hosts);
814 			} else {
815 				/* Add unhashed "host,ip" */
816 				r = add_host_to_hostfile(user_hostfile,
817 				    hostline, host_key,
818 				    options.hash_known_hosts);
819 			}
820 		} else {
821 			r = add_host_to_hostfile(user_hostfile, host, host_key,
822 			    options.hash_known_hosts);
823 			hostp = host;
824 		}
825 
826 		if (!r)
827 			logit("Failed to add the host to the list of known "
828 			    "hosts (%.500s).", user_hostfile);
829 		else
830 			logit("Warning: Permanently added '%.200s' (%s) to the "
831 			    "list of known hosts.", hostp, type);
832 		break;
833 	case HOST_CHANGED:
834 		if (readonly == ROQUIET)
835 			goto fail;
836 		if (options.check_host_ip && host_ip_differ) {
837 			char *key_msg;
838 			if (ip_status == HOST_NEW)
839 				key_msg = "is unknown";
840 			else if (ip_status == HOST_OK)
841 				key_msg = "is unchanged";
842 			else
843 				key_msg = "has a different value";
844 			error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
845 			error("@       WARNING: POSSIBLE DNS SPOOFING DETECTED!          @");
846 			error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
847 			error("The %s host key for %s has changed,", type, host);
848 			error("and the key for the corresponding IP address %s", ip);
849 			error("%s. This could either mean that", key_msg);
850 			error("DNS SPOOFING is happening or the IP address for the host");
851 			error("and its host key have changed at the same time.");
852 			if (ip_status != HOST_NEW)
853 				error("Offending key for IP in %s:%d", ip_file, ip_line);
854 		}
855 		/* The host key has changed. */
856 		warn_changed_key(host_key);
857 		error("Add correct host key in %.100s to get rid of this message.",
858 		    user_hostfile);
859 		error("Offending key in %s:%d", host_file, host_line);
860 
861 		/*
862 		 * If strict host key checking is in use, the user will have
863 		 * to edit the key manually and we can only abort.
864 		 */
865 		if (options.strict_host_key_checking) {
866 			error("%s host key for %.200s has changed and you have "
867 			    "requested strict checking.", type, host);
868 			goto fail;
869 		}
870 
871 		/*
872 		 * If strict host key checking has not been requested, allow
873 		 * the connection but without MITM-able authentication or
874 		 * forwarding.
875 		 */
876 		if (options.password_authentication) {
877 			error("Password authentication is disabled to avoid "
878 			    "man-in-the-middle attacks.");
879 			options.password_authentication = 0;
880 			cancelled_forwarding = 1;
881 		}
882 		if (options.kbd_interactive_authentication) {
883 			error("Keyboard-interactive authentication is disabled"
884 			    " to avoid man-in-the-middle attacks.");
885 			options.kbd_interactive_authentication = 0;
886 			options.challenge_response_authentication = 0;
887 			cancelled_forwarding = 1;
888 		}
889 		if (options.challenge_response_authentication) {
890 			error("Challenge/response authentication is disabled"
891 			    " to avoid man-in-the-middle attacks.");
892 			options.challenge_response_authentication = 0;
893 			cancelled_forwarding = 1;
894 		}
895 		if (options.forward_agent) {
896 			error("Agent forwarding is disabled to avoid "
897 			    "man-in-the-middle attacks.");
898 			options.forward_agent = 0;
899 			cancelled_forwarding = 1;
900 		}
901 		if (options.forward_x11) {
902 			error("X11 forwarding is disabled to avoid "
903 			    "man-in-the-middle attacks.");
904 			options.forward_x11 = 0;
905 			cancelled_forwarding = 1;
906 		}
907 		if (options.num_local_forwards > 0 ||
908 		    options.num_remote_forwards > 0) {
909 			error("Port forwarding is disabled to avoid "
910 			    "man-in-the-middle attacks.");
911 			options.num_local_forwards =
912 			    options.num_remote_forwards = 0;
913 			cancelled_forwarding = 1;
914 		}
915 		if (options.tun_open != SSH_TUNMODE_NO) {
916 			error("Tunnel forwarding is disabled to avoid "
917 			    "man-in-the-middle attacks.");
918 			options.tun_open = SSH_TUNMODE_NO;
919 			cancelled_forwarding = 1;
920 		}
921 		if (options.exit_on_forward_failure && cancelled_forwarding)
922 			fatal("Error: forwarding disabled due to host key "
923 			    "check failure");
924 
925 		/*
926 		 * XXX Should permit the user to change to use the new id.
927 		 * This could be done by converting the host key to an
928 		 * identifying sentence, tell that the host identifies itself
929 		 * by that sentence, and ask the user if he/she whishes to
930 		 * accept the authentication.
931 		 */
932 		break;
933 	case HOST_FOUND:
934 		fatal("internal error");
935 		break;
936 	}
937 
938 	if (options.check_host_ip && host_status != HOST_CHANGED &&
939 	    ip_status == HOST_CHANGED) {
940 		snprintf(msg, sizeof(msg),
941 		    "Warning: the %s host key for '%.200s' "
942 		    "differs from the key for the IP address '%.128s'"
943 		    "\nOffending key for IP in %s:%d",
944 		    type, host, ip, ip_file, ip_line);
945 		if (host_status == HOST_OK) {
946 			len = strlen(msg);
947 			snprintf(msg + len, sizeof(msg) - len,
948 			    "\nMatching host key in %s:%d",
949 			    host_file, host_line);
950 		}
951 		if (options.strict_host_key_checking == 1) {
952 			logit("%s", msg);
953 			error("Exiting, you have requested strict checking.");
954 			goto fail;
955 		} else if (options.strict_host_key_checking == 2) {
956 			strlcat(msg, "\nAre you sure you want "
957 			    "to continue connecting (yes/no)? ", sizeof(msg));
958 			if (!confirm(msg))
959 				goto fail;
960 		} else {
961 			logit("%s", msg);
962 		}
963 	}
964 
965 	xfree(ip);
966 	xfree(host);
967 	return 0;
968 
969 fail:
970 	xfree(ip);
971 	xfree(host);
972 	return -1;
973 }
974 
975 /* returns 0 if key verifies or -1 if key does NOT verify */
976 int
977 verify_host_key(char *host, struct sockaddr *hostaddr, Key *host_key)
978 {
979 	struct stat st;
980 	int flags = 0;
981 
982 	if (options.verify_host_key_dns &&
983 	    verify_host_key_dns(host, hostaddr, host_key, &flags) == 0) {
984 
985 		if (flags & DNS_VERIFY_FOUND) {
986 
987 			if (options.verify_host_key_dns == 1 &&
988 			    flags & DNS_VERIFY_MATCH &&
989 			    flags & DNS_VERIFY_SECURE)
990 				return 0;
991 
992 			if (flags & DNS_VERIFY_MATCH) {
993 				matching_host_key_dns = 1;
994 			} else {
995 				warn_changed_key(host_key);
996 				error("Update the SSHFP RR in DNS with the new "
997 				    "host key to get rid of this message.");
998 			}
999 		}
1000 	}
1001 
1002 	/* return ok if the key can be found in an old keyfile */
1003 	if (stat(options.system_hostfile2, &st) == 0 ||
1004 	    stat(options.user_hostfile2, &st) == 0) {
1005 		if (check_host_key(host, hostaddr, options.port, host_key,
1006 		    RDONLY, options.user_hostfile2,
1007 		    options.system_hostfile2) == 0)
1008 			return 0;
1009 	}
1010 	return check_host_key(host, hostaddr, options.port, host_key,
1011 	    RDRW, options.user_hostfile, options.system_hostfile);
1012 }
1013 
1014 /*
1015  * Starts a dialog with the server, and authenticates the current user on the
1016  * server.  This does not need any extra privileges.  The basic connection
1017  * to the server must already have been established before this is called.
1018  * If login fails, this function prints an error and never returns.
1019  * This function does not require super-user privileges.
1020  */
1021 void
1022 ssh_login(Sensitive *sensitive, const char *orighost,
1023     struct sockaddr *hostaddr, struct passwd *pw, int timeout_ms)
1024 {
1025 	char *host, *cp;
1026 	char *server_user, *local_user;
1027 
1028 	local_user = xstrdup(pw->pw_name);
1029 	server_user = options.user ? options.user : local_user;
1030 
1031 	/* Convert the user-supplied hostname into all lowercase. */
1032 	host = xstrdup(orighost);
1033 	for (cp = host; *cp; cp++)
1034 		if (isupper(*cp))
1035 			*cp = (char)tolower(*cp);
1036 
1037 	/* Exchange protocol version identification strings with the server. */
1038 	ssh_exchange_identification(timeout_ms);
1039 
1040 	/* Put the connection into non-blocking mode. */
1041 	packet_set_nonblocking();
1042 
1043 	/* key exchange */
1044 	/* authenticate user */
1045 	if (compat20) {
1046 		ssh_kex2(host, hostaddr);
1047 		ssh_userauth2(local_user, server_user, host, sensitive);
1048 	} else {
1049 		ssh_kex(host, hostaddr);
1050 		ssh_userauth1(local_user, server_user, host, sensitive);
1051 	}
1052 	xfree(local_user);
1053 }
1054 
1055 void
1056 ssh_put_password(char *password)
1057 {
1058 	int size;
1059 	char *padded;
1060 
1061 	if (datafellows & SSH_BUG_PASSWORDPAD) {
1062 		packet_put_cstring(password);
1063 		return;
1064 	}
1065 	size = roundup(strlen(password) + 1, 32);
1066 	padded = xcalloc(1, size);
1067 	strlcpy(padded, password, size);
1068 	packet_put_string(padded, size);
1069 	memset(padded, 0, size);
1070 	xfree(padded);
1071 }
1072 
1073 static int
1074 show_key_from_file(const char *file, const char *host, int keytype)
1075 {
1076 	Key *found;
1077 	char *fp, *ra;
1078 	int line, ret;
1079 
1080 	found = key_new(keytype);
1081 	if ((ret = lookup_key_in_hostfile_by_type(file, host,
1082 	    keytype, found, &line))) {
1083 		fp = key_fingerprint(found, SSH_FP_MD5, SSH_FP_HEX);
1084 		if (options.visual_host_key)
1085 			ra = key_fingerprint(found, SSH_FP_MD5, SSH_FP_RANDOMART);
1086 		logit("WARNING: %s key found for host %s\n"
1087 		    "in %s:%d\n"
1088 		    "%s key fingerprint %s.%s%s\n",
1089 		    key_type(found), host, file, line,
1090 		    key_type(found), fp,
1091 		    options.visual_host_key ? "\n" : "",
1092 		    options.visual_host_key ? ra : "");
1093 		if (options.visual_host_key)
1094 			xfree(ra);
1095 		xfree(fp);
1096 	}
1097 	key_free(found);
1098 	return (ret);
1099 }
1100 
1101 /* print all known host keys for a given host, but skip keys of given type */
1102 static int
1103 show_other_keys(const char *host, Key *key)
1104 {
1105 	int type[] = { KEY_RSA1, KEY_RSA, KEY_DSA, -1};
1106 	int i, found = 0;
1107 
1108 	for (i = 0; type[i] != -1; i++) {
1109 		if (type[i] == key->type)
1110 			continue;
1111 		if (type[i] != KEY_RSA1 &&
1112 		    show_key_from_file(options.user_hostfile2, host, type[i])) {
1113 			found = 1;
1114 			continue;
1115 		}
1116 		if (type[i] != KEY_RSA1 &&
1117 		    show_key_from_file(options.system_hostfile2, host, type[i])) {
1118 			found = 1;
1119 			continue;
1120 		}
1121 		if (show_key_from_file(options.user_hostfile, host, type[i])) {
1122 			found = 1;
1123 			continue;
1124 		}
1125 		if (show_key_from_file(options.system_hostfile, host, type[i])) {
1126 			found = 1;
1127 			continue;
1128 		}
1129 		debug2("no key of type %d for host %s", type[i], host);
1130 	}
1131 	return (found);
1132 }
1133 
1134 static void
1135 warn_changed_key(Key *host_key)
1136 {
1137 	char *fp;
1138 	const char *type = key_type(host_key);
1139 
1140 	fp = key_fingerprint(host_key, SSH_FP_MD5, SSH_FP_HEX);
1141 
1142 	error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1143 	error("@    WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!     @");
1144 	error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1145 	error("IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!");
1146 	error("Someone could be eavesdropping on you right now (man-in-the-middle attack)!");
1147 	error("It is also possible that the %s host key has just been changed.", type);
1148 	error("The fingerprint for the %s key sent by the remote host is\n%s.",
1149 	    type, fp);
1150 	error("Please contact your system administrator.");
1151 
1152 	xfree(fp);
1153 }
1154 
1155 /*
1156  * Execute a local command
1157  */
1158 int
1159 ssh_local_cmd(const char *args)
1160 {
1161 	char *shell;
1162 	pid_t pid;
1163 	int status;
1164 
1165 	if (!options.permit_local_command ||
1166 	    args == NULL || !*args)
1167 		return (1);
1168 
1169 	if ((shell = getenv("SHELL")) == NULL)
1170 		shell = _PATH_BSHELL;
1171 
1172 	pid = fork();
1173 	if (pid == 0) {
1174 		debug3("Executing %s -c \"%s\"", shell, args);
1175 		execl(shell, shell, "-c", args, (char *)NULL);
1176 		error("Couldn't execute %s -c \"%s\": %s",
1177 		    shell, args, strerror(errno));
1178 		_exit(1);
1179 	} else if (pid == -1)
1180 		fatal("fork failed: %.100s", strerror(errno));
1181 	while (waitpid(pid, &status, 0) == -1)
1182 		if (errno != EINTR)
1183 			fatal("Couldn't wait for child: %s", strerror(errno));
1184 
1185 	if (!WIFEXITED(status))
1186 		return (1);
1187 
1188 	return (WEXITSTATUS(status));
1189 }
1190