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