blob: 2245a8af647257b5194c7c9d46b10afc95ae3c08 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * Code to connect to a remote host, and to perform the client side of the
6 * login (authentication) dialog.
Damien Millere4340be2000-09-16 13:29:08 +11007 *
8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110013 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100014
15#include "includes.h"
Damien Miller788f2122005-11-05 15:14:59 +110016RCSID("$OpenBSD: sshconnect.c,v 1.170 2005/10/30 08:52:18 djm Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100017
Damien Miller1383bd82000-04-06 12:32:37 +100018#include <openssl/bn.h>
Damien Millereba71ba2000-04-29 23:57:08 +100019
Ben Lindstrom226cfa02001-01-22 05:34:40 +000020#include "ssh.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100021#include "xmalloc.h"
22#include "rsa.h"
Damien Miller1383bd82000-04-06 12:32:37 +100023#include "buffer.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100024#include "packet.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100025#include "uidswap.h"
26#include "compat.h"
Damien Miller450a7a12000-03-26 13:04:51 +100027#include "key.h"
Damien Millereba71ba2000-04-29 23:57:08 +100028#include "sshconnect.h"
Damien Miller450a7a12000-03-26 13:04:51 +100029#include "hostfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000030#include "log.h"
31#include "readconf.h"
32#include "atomicio.h"
33#include "misc.h"
Damien Miller37876e92003-05-15 10:19:46 +100034#include "dns.h"
Damien Miller37876e92003-05-15 10:19:46 +100035
Damien Millereba71ba2000-04-29 23:57:08 +100036char *client_version_string = NULL;
37char *server_version_string = NULL;
Damien Miller1383bd82000-04-06 12:32:37 +100038
Damien Millerc1af1d52005-11-05 15:08:57 +110039static int matching_host_key_dns = 0;
Damien Miller7392ae62003-06-11 22:05:25 +100040
Ben Lindstromf9c48842002-06-11 16:37:51 +000041/* import */
Damien Milleraae6c611999-12-06 11:47:28 +110042extern Options options;
Damien Miller34132e52000-01-14 15:45:46 +110043extern char *__progname;
Ben Lindstromf9c48842002-06-11 16:37:51 +000044extern uid_t original_real_uid;
45extern uid_t original_effective_uid;
Damien Miller8c4e18a2002-09-19 12:05:02 +100046extern pid_t proxy_command_pid;
Damien Milleraae6c611999-12-06 11:47:28 +110047
Tim Ricee991e3c2001-08-07 15:29:07 -070048#ifndef INET6_ADDRSTRLEN /* for non IPv6 machines */
49#define INET6_ADDRSTRLEN 46
50#endif
51
Ben Lindstrom3ed66402002-08-01 01:21:56 +000052static int show_other_keys(const char *, Key *);
Damien Miller5a388972003-11-17 21:10:47 +110053static void warn_changed_key(Key *);
Ben Lindstrom3ed66402002-08-01 01:21:56 +000054
Damien Miller95def091999-11-25 00:26:21 +110055/*
56 * Connect to the given ssh server using a proxy command.
57 */
Ben Lindstrombba81212001-06-25 05:01:22 +000058static int
Ben Lindstromf9c48842002-06-11 16:37:51 +000059ssh_proxy_connect(const char *host, u_short port, const char *proxy_command)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060{
Damien Miller6476cad2005-06-16 13:18:34 +100061 char *command_string, *tmp;
Damien Miller95def091999-11-25 00:26:21 +110062 int pin[2], pout[2];
Damien Miller166fca82000-04-20 07:42:21 +100063 pid_t pid;
Damien Miller34132e52000-01-14 15:45:46 +110064 char strport[NI_MAXSERV];
Damien Miller6476cad2005-06-16 13:18:34 +100065 size_t len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100066
Damien Miller95def091999-11-25 00:26:21 +110067 /* Convert the port number into a string. */
Damien Miller34132e52000-01-14 15:45:46 +110068 snprintf(strport, sizeof strport, "%hu", port);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100069
Damien Miller8c4e18a2002-09-19 12:05:02 +100070 /*
71 * Build the final command string in the buffer by making the
72 * appropriate substitutions to the given proxy command.
73 *
Damien Millera8e06ce2003-11-21 23:48:55 +110074 * Use "exec" to avoid "sh -c" processes on some platforms
Damien Miller8c4e18a2002-09-19 12:05:02 +100075 * (e.g. Solaris)
76 */
Damien Miller6476cad2005-06-16 13:18:34 +100077 len = strlen(proxy_command) + 6;
78 tmp = xmalloc(len);
79 strlcpy(tmp, "exec ", len);
80 strlcat(tmp, proxy_command, len);
81 command_string = percent_expand(tmp, "h", host,
82 "p", strport, (char *)NULL);
83 xfree(tmp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100084
Damien Miller95def091999-11-25 00:26:21 +110085 /* Create pipes for communicating with the proxy. */
86 if (pipe(pin) < 0 || pipe(pout) < 0)
87 fatal("Could not create pipes to communicate with the proxy: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +110088 strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +100089
Damien Miller95def091999-11-25 00:26:21 +110090 debug("Executing proxy command: %.500s", command_string);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100091
Damien Miller95def091999-11-25 00:26:21 +110092 /* Fork and execute the proxy command. */
93 if ((pid = fork()) == 0) {
94 char *argv[10];
Damien Millerd4a8b7e1999-10-27 13:42:43 +100095
Damien Miller95def091999-11-25 00:26:21 +110096 /* Child. Permanently give up superuser privileges. */
Ben Lindstromf9c48842002-06-11 16:37:51 +000097 seteuid(original_real_uid);
98 setuid(original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +110099
100 /* Redirect stdin and stdout. */
101 close(pin[1]);
102 if (pin[0] != 0) {
103 if (dup2(pin[0], 0) < 0)
104 perror("dup2 stdin");
105 close(pin[0]);
106 }
107 close(pout[0]);
108 if (dup2(pout[1], 1) < 0)
109 perror("dup2 stdout");
110 /* Cannot be 1 because pin allocated two descriptors. */
111 close(pout[1]);
112
113 /* Stderr is left as it is so that error messages get
114 printed on the user's terminal. */
Damien Miller7b413d22000-07-01 13:24:21 +1000115 argv[0] = _PATH_BSHELL;
Damien Miller95def091999-11-25 00:26:21 +1100116 argv[1] = "-c";
117 argv[2] = command_string;
118 argv[3] = NULL;
119
120 /* Execute the proxy command. Note that we gave up any
121 extra privileges above. */
Kevin Stevesfcd5d602001-01-07 11:45:22 +0000122 execv(argv[0], argv);
123 perror(argv[0]);
Damien Miller95def091999-11-25 00:26:21 +1100124 exit(1);
125 }
126 /* Parent. */
127 if (pid < 0)
128 fatal("fork failed: %.100s", strerror(errno));
Damien Miller8c4e18a2002-09-19 12:05:02 +1000129 else
130 proxy_command_pid = pid; /* save pid to clean up later */
Damien Miller95def091999-11-25 00:26:21 +1100131
132 /* Close child side of the descriptors. */
133 close(pin[0]);
134 close(pout[1]);
135
136 /* Free the command name. */
Damien Miller6476cad2005-06-16 13:18:34 +1000137 xfree(command_string);
Damien Miller95def091999-11-25 00:26:21 +1100138
139 /* Set the connection file descriptors. */
140 packet_set_connection(pout[0], pin[1]);
141
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000142 /* Indicate OK return */
143 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000144}
145
Damien Miller95def091999-11-25 00:26:21 +1100146/*
147 * Creates a (possibly privileged) socket for use as the ssh connection.
148 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000149static int
Damien Miller2372ace2003-05-14 13:42:23 +1000150ssh_create_socket(int privileged, struct addrinfo *ai)
Damien Miller95def091999-11-25 00:26:21 +1100151{
Ben Lindstrome0f88042001-04-30 13:06:24 +0000152 int sock, gaierr;
153 struct addrinfo hints, *res;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000154
Damien Miller5428f641999-11-25 11:54:57 +1100155 /*
156 * If we are running as root and want to connect to a privileged
157 * port, bind our own socket to a privileged port.
158 */
Damien Miller95def091999-11-25 00:26:21 +1100159 if (privileged) {
160 int p = IPPORT_RESERVED - 1;
Ben Lindstromf9c48842002-06-11 16:37:51 +0000161 PRIV_START;
Damien Miller2372ace2003-05-14 13:42:23 +1000162 sock = rresvport_af(&p, ai->ai_family);
Ben Lindstromf9c48842002-06-11 16:37:51 +0000163 PRIV_END;
Damien Miller95def091999-11-25 00:26:21 +1100164 if (sock < 0)
Damien Miller2372ace2003-05-14 13:42:23 +1000165 error("rresvport: af=%d %.100s", ai->ai_family,
166 strerror(errno));
Damien Miller98c7ad62000-03-09 21:27:49 +1100167 else
168 debug("Allocated local port %d.", p);
Ben Lindstrome0f88042001-04-30 13:06:24 +0000169 return sock;
Damien Miller95def091999-11-25 00:26:21 +1100170 }
Damien Miller2372ace2003-05-14 13:42:23 +1000171 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Ben Lindstrome0f88042001-04-30 13:06:24 +0000172 if (sock < 0)
173 error("socket: %.100s", strerror(errno));
Ben Lindstrome0f88042001-04-30 13:06:24 +0000174
175 /* Bind the socket to an alternative local IP address */
176 if (options.bind_address == NULL)
177 return sock;
178
179 memset(&hints, 0, sizeof(hints));
Damien Miller2372ace2003-05-14 13:42:23 +1000180 hints.ai_family = ai->ai_family;
181 hints.ai_socktype = ai->ai_socktype;
182 hints.ai_protocol = ai->ai_protocol;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000183 hints.ai_flags = AI_PASSIVE;
184 gaierr = getaddrinfo(options.bind_address, "0", &hints, &res);
185 if (gaierr) {
186 error("getaddrinfo: %s: %s", options.bind_address,
187 gai_strerror(gaierr));
188 close(sock);
189 return -1;
190 }
191 if (bind(sock, res->ai_addr, res->ai_addrlen) < 0) {
192 error("bind: %s: %s", options.bind_address, strerror(errno));
193 close(sock);
194 freeaddrinfo(res);
195 return -1;
196 }
197 freeaddrinfo(res);
Damien Miller95def091999-11-25 00:26:21 +1100198 return sock;
199}
200
Damien Millerb78d5eb2003-05-16 11:39:04 +1000201static int
202timeout_connect(int sockfd, const struct sockaddr *serv_addr,
203 socklen_t addrlen, int timeout)
204{
205 fd_set *fdset;
206 struct timeval tv;
207 socklen_t optlen;
Damien Miller08293fa2003-05-23 18:44:41 +1000208 int fdsetsz, optval, rc, result = -1;
Damien Millerb78d5eb2003-05-16 11:39:04 +1000209
210 if (timeout <= 0)
211 return (connect(sockfd, serv_addr, addrlen));
212
Damien Millerf6723f02004-01-27 21:21:27 +1100213 set_nonblock(sockfd);
Damien Millerb78d5eb2003-05-16 11:39:04 +1000214 rc = connect(sockfd, serv_addr, addrlen);
Damien Millerf6723f02004-01-27 21:21:27 +1100215 if (rc == 0) {
216 unset_nonblock(sockfd);
Damien Millerb78d5eb2003-05-16 11:39:04 +1000217 return (0);
Damien Millerf6723f02004-01-27 21:21:27 +1100218 }
Damien Millerb78d5eb2003-05-16 11:39:04 +1000219 if (errno != EINPROGRESS)
220 return (-1);
221
222 fdsetsz = howmany(sockfd + 1, NFDBITS) * sizeof(fd_mask);
223 fdset = (fd_set *)xmalloc(fdsetsz);
224
Darren Tuckeredeb1f72003-07-03 13:48:04 +1000225 memset(fdset, 0, fdsetsz);
Damien Millerb78d5eb2003-05-16 11:39:04 +1000226 FD_SET(sockfd, fdset);
227 tv.tv_sec = timeout;
228 tv.tv_usec = 0;
229
Darren Tucker47eede72005-03-14 23:08:12 +1100230 for (;;) {
Damien Millerb78d5eb2003-05-16 11:39:04 +1000231 rc = select(sockfd + 1, NULL, fdset, NULL, &tv);
232 if (rc != -1 || errno != EINTR)
233 break;
234 }
235
Darren Tucker47eede72005-03-14 23:08:12 +1100236 switch (rc) {
Damien Millerb78d5eb2003-05-16 11:39:04 +1000237 case 0:
238 /* Timed out */
239 errno = ETIMEDOUT;
Damien Miller08293fa2003-05-23 18:44:41 +1000240 break;
Damien Millerb78d5eb2003-05-16 11:39:04 +1000241 case -1:
242 /* Select error */
Damien Millera8e06ce2003-11-21 23:48:55 +1100243 debug("select: %s", strerror(errno));
Damien Miller08293fa2003-05-23 18:44:41 +1000244 break;
Damien Millerb78d5eb2003-05-16 11:39:04 +1000245 case 1:
246 /* Completed or failed */
247 optval = 0;
248 optlen = sizeof(optval);
Damien Millera8e06ce2003-11-21 23:48:55 +1100249 if (getsockopt(sockfd, SOL_SOCKET, SO_ERROR, &optval,
Darren Tuckerbd5361b2003-09-22 20:59:16 +1000250 &optlen) == -1) {
Damien Millera8e06ce2003-11-21 23:48:55 +1100251 debug("getsockopt: %s", strerror(errno));
Damien Miller08293fa2003-05-23 18:44:41 +1000252 break;
Darren Tuckerbd5361b2003-09-22 20:59:16 +1000253 }
Damien Millerb78d5eb2003-05-16 11:39:04 +1000254 if (optval != 0) {
255 errno = optval;
Damien Miller08293fa2003-05-23 18:44:41 +1000256 break;
Damien Millerb78d5eb2003-05-16 11:39:04 +1000257 }
Damien Miller08293fa2003-05-23 18:44:41 +1000258 result = 0;
Damien Millerf6723f02004-01-27 21:21:27 +1100259 unset_nonblock(sockfd);
Damien Millerb78d5eb2003-05-16 11:39:04 +1000260 break;
261 default:
262 /* Should not occur */
263 fatal("Bogus return (%d) from select()", rc);
264 }
265
Damien Miller08293fa2003-05-23 18:44:41 +1000266 xfree(fdset);
267 return (result);
Damien Millerb78d5eb2003-05-16 11:39:04 +1000268}
269
Damien Miller95def091999-11-25 00:26:21 +1100270/*
Damien Miller34132e52000-01-14 15:45:46 +1100271 * Opens a TCP/IP connection to the remote server on the given host.
272 * The address of the remote host will be returned in hostaddr.
Ben Lindstromf9c48842002-06-11 16:37:51 +0000273 * If port is 0, the default port will be used. If needpriv is true,
Damien Miller95def091999-11-25 00:26:21 +1100274 * a privileged port will be allocated to make the connection.
Ben Lindstromf9c48842002-06-11 16:37:51 +0000275 * This requires super-user privileges if needpriv is true.
Damien Miller95def091999-11-25 00:26:21 +1100276 * Connection_attempts specifies the maximum number of tries (one per
277 * second). If proxy_command is non-NULL, it specifies the command (with %h
278 * and %p substituted for host and port, respectively) to use to contact
279 * the daemon.
280 */
281int
Damien Miller34132e52000-01-14 15:45:46 +1100282ssh_connect(const char *host, struct sockaddr_storage * hostaddr,
Damien Miller139d4cd2001-10-10 15:07:44 +1000283 u_short port, int family, int connection_attempts,
Ben Lindstromf9c48842002-06-11 16:37:51 +0000284 int needpriv, const char *proxy_command)
Damien Miller95def091999-11-25 00:26:21 +1100285{
Damien Miller34132e52000-01-14 15:45:46 +1100286 int gaierr;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000287 int on = 1;
288 int sock = -1, attempt;
289 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
290 struct addrinfo hints, *ai, *aitop;
Damien Miller95def091999-11-25 00:26:21 +1100291
Ben Lindstrom064496f2002-12-23 02:04:22 +0000292 debug2("ssh_connect: needpriv %d", needpriv);
Damien Miller95def091999-11-25 00:26:21 +1100293
Damien Miller95def091999-11-25 00:26:21 +1100294 /* If a proxy command is given, connect using it. */
295 if (proxy_command != NULL)
Ben Lindstromf9c48842002-06-11 16:37:51 +0000296 return ssh_proxy_connect(host, port, proxy_command);
Damien Miller95def091999-11-25 00:26:21 +1100297
298 /* No proxy command. */
299
Damien Miller34132e52000-01-14 15:45:46 +1100300 memset(&hints, 0, sizeof(hints));
Damien Miller139d4cd2001-10-10 15:07:44 +1000301 hints.ai_family = family;
Damien Miller34132e52000-01-14 15:45:46 +1100302 hints.ai_socktype = SOCK_STREAM;
Ben Lindstrom5c385522002-06-23 21:23:20 +0000303 snprintf(strport, sizeof strport, "%u", port);
Damien Miller34132e52000-01-14 15:45:46 +1100304 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
305 fatal("%s: %.100s: %s", __progname, host,
306 gai_strerror(gaierr));
Damien Miller95def091999-11-25 00:26:21 +1100307
Damien Millera34a28b1999-12-14 10:47:15 +1100308 /*
309 * Try to connect several times. On some machines, the first time
310 * will sometimes fail. In general socket code appears to behave
311 * quite magically on many machines.
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000312 */
313 for (attempt = 0; ;) {
Damien Miller95def091999-11-25 00:26:21 +1100314 if (attempt > 0)
315 debug("Trying again...");
316
Damien Miller34132e52000-01-14 15:45:46 +1100317 /* Loop through addresses for this host, and try each one in
Damien Miller4af51302000-04-16 11:18:38 +1000318 sequence until the connection succeeds. */
Damien Miller34132e52000-01-14 15:45:46 +1100319 for (ai = aitop; ai; ai = ai->ai_next) {
320 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
321 continue;
322 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
323 ntop, sizeof(ntop), strport, sizeof(strport),
324 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
325 error("ssh_connect: getnameinfo failed");
326 continue;
327 }
328 debug("Connecting to %.200s [%.100s] port %s.",
329 host, ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +1100330
Damien Miller34132e52000-01-14 15:45:46 +1100331 /* Create a socket for connecting. */
Damien Miller2372ace2003-05-14 13:42:23 +1000332 sock = ssh_create_socket(needpriv, ai);
Damien Miller34132e52000-01-14 15:45:46 +1100333 if (sock < 0)
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000334 /* Any error is already output */
Damien Miller34132e52000-01-14 15:45:46 +1100335 continue;
Damien Miller95def091999-11-25 00:26:21 +1100336
Damien Millerb78d5eb2003-05-16 11:39:04 +1000337 if (timeout_connect(sock, ai->ai_addr, ai->ai_addrlen,
338 options.connection_timeout) >= 0) {
Damien Miller34132e52000-01-14 15:45:46 +1100339 /* Successful connection. */
Ben Lindstroma3700052001-04-05 23:26:32 +0000340 memcpy(hostaddr, ai->ai_addr, ai->ai_addrlen);
Damien Miller95def091999-11-25 00:26:21 +1100341 break;
Damien Miller34132e52000-01-14 15:45:46 +1100342 } else {
Ben Lindstrom728aa7e2002-07-15 17:48:11 +0000343 debug("connect to address %s port %s: %s",
344 ntop, strport, strerror(errno));
Damien Miller5428f641999-11-25 11:54:57 +1100345 /*
346 * Close the failed socket; there appear to
347 * be some problems when reusing a socket for
348 * which connect() has already returned an
349 * error.
350 */
Damien Miller95def091999-11-25 00:26:21 +1100351 close(sock);
352 }
Damien Miller95def091999-11-25 00:26:21 +1100353 }
Damien Miller34132e52000-01-14 15:45:46 +1100354 if (ai)
355 break; /* Successful connection. */
Damien Miller95def091999-11-25 00:26:21 +1100356
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000357 attempt++;
358 if (attempt >= connection_attempts)
359 break;
Damien Miller95def091999-11-25 00:26:21 +1100360 /* Sleep a moment before retrying. */
361 sleep(1);
362 }
Damien Miller34132e52000-01-14 15:45:46 +1100363
364 freeaddrinfo(aitop);
365
Damien Miller95def091999-11-25 00:26:21 +1100366 /* Return failure if we didn't get a successful connection. */
Ben Lindstroma6cd75c2002-07-11 04:00:19 +0000367 if (attempt >= connection_attempts) {
Darren Tuckerb2161e32005-01-20 11:00:46 +1100368 error("ssh: connect to host %s port %s: %s",
Ben Lindstroma6cd75c2002-07-11 04:00:19 +0000369 host, strport, strerror(errno));
Darren Tuckerb2161e32005-01-20 11:00:46 +1100370 return (-1);
Ben Lindstroma6cd75c2002-07-11 04:00:19 +0000371 }
Damien Miller95def091999-11-25 00:26:21 +1100372
373 debug("Connection established.");
374
Damien Miller12c150e2003-12-17 16:31:10 +1100375 /* Set SO_KEEPALIVE if requested. */
376 if (options.tcp_keep_alive &&
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000377 setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE, (void *)&on,
378 sizeof(on)) < 0)
379 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100380
381 /* Set the connection. */
382 packet_set_connection(sock, sock);
383
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000384 return 0;
Damien Miller95def091999-11-25 00:26:21 +1100385}
386
Damien Milleraae6c611999-12-06 11:47:28 +1100387/*
Damien Miller95def091999-11-25 00:26:21 +1100388 * Waits for the server identification string, and sends our own
389 * identification string.
390 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000391static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000392ssh_exchange_identification(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000393{
Damien Miller95def091999-11-25 00:26:21 +1100394 char buf[256], remote_version[256]; /* must be same size! */
Damien Millereccb9de2005-06-17 12:59:34 +1000395 int remote_major, remote_minor, mismatch;
Damien Miller95def091999-11-25 00:26:21 +1100396 int connection_in = packet_get_connection_in();
397 int connection_out = packet_get_connection_out();
Kevin Stevesef4eea92001-02-05 12:42:17 +0000398 int minor1 = PROTOCOL_MINOR_1;
Damien Millereccb9de2005-06-17 12:59:34 +1000399 u_int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000400
Damien Millerb253cc42005-05-26 12:23:44 +1000401 /* Read other side's version identification. */
Damien Millerf6d9e222000-06-18 14:50:44 +1000402 for (;;) {
403 for (i = 0; i < sizeof(buf) - 1; i++) {
Damien Millerb253cc42005-05-26 12:23:44 +1000404 size_t len = atomicio(read, connection_in, &buf[i], 1);
405
Damien Miller46d38de2005-07-17 17:02:09 +1000406 if (len != 1 && errno == EPIPE)
Damien Millerf6d9e222000-06-18 14:50:44 +1000407 fatal("ssh_exchange_identification: Connection closed by remote host");
Damien Millerb253cc42005-05-26 12:23:44 +1000408 else if (len != 1)
409 fatal("ssh_exchange_identification: read: %.100s", strerror(errno));
Damien Millerf6d9e222000-06-18 14:50:44 +1000410 if (buf[i] == '\r') {
411 buf[i] = '\n';
412 buf[i + 1] = 0;
413 continue; /**XXX wait for \n */
414 }
415 if (buf[i] == '\n') {
416 buf[i + 1] = 0;
417 break;
418 }
Damien Miller95def091999-11-25 00:26:21 +1100419 }
Damien Millerf6d9e222000-06-18 14:50:44 +1000420 buf[sizeof(buf) - 1] = 0;
421 if (strncmp(buf, "SSH-", 4) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100422 break;
Damien Millerf6d9e222000-06-18 14:50:44 +1000423 debug("ssh_exchange_identification: %s", buf);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000424 }
Damien Miller1383bd82000-04-06 12:32:37 +1000425 server_version_string = xstrdup(buf);
Damien Miller95def091999-11-25 00:26:21 +1100426
Damien Miller5428f641999-11-25 11:54:57 +1100427 /*
428 * Check that the versions match. In future this might accept
429 * several versions and set appropriate flags to handle them.
430 */
Damien Miller1383bd82000-04-06 12:32:37 +1000431 if (sscanf(server_version_string, "SSH-%d.%d-%[^\n]\n",
432 &remote_major, &remote_minor, remote_version) != 3)
Damien Miller95def091999-11-25 00:26:21 +1100433 fatal("Bad remote protocol version identification: '%.100s'", buf);
434 debug("Remote protocol version %d.%d, remote software version %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100435 remote_major, remote_minor, remote_version);
Damien Miller95def091999-11-25 00:26:21 +1100436
Damien Miller1383bd82000-04-06 12:32:37 +1000437 compat_datafellows(remote_version);
Damien Miller78928792000-04-12 20:17:38 +1000438 mismatch = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000439
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000440 switch (remote_major) {
Damien Miller78928792000-04-12 20:17:38 +1000441 case 1:
442 if (remote_minor == 99 &&
443 (options.protocol & SSH_PROTO_2) &&
444 !(options.protocol & SSH_PROTO_1_PREFERRED)) {
445 enable_compat20();
446 break;
Damien Miller95def091999-11-25 00:26:21 +1100447 }
Damien Miller78928792000-04-12 20:17:38 +1000448 if (!(options.protocol & SSH_PROTO_1)) {
449 mismatch = 1;
450 break;
451 }
452 if (remote_minor < 3) {
453 fatal("Remote machine has too old SSH software version.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100454 } else if (remote_minor == 3 || remote_minor == 4) {
Damien Miller78928792000-04-12 20:17:38 +1000455 /* We speak 1.3, too. */
456 enable_compat13();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100457 minor1 = 3;
Damien Miller78928792000-04-12 20:17:38 +1000458 if (options.forward_agent) {
Damien Miller996acd22003-04-09 20:59:48 +1000459 logit("Agent forwarding disabled for protocol 1.3");
Damien Miller78928792000-04-12 20:17:38 +1000460 options.forward_agent = 0;
461 }
462 }
463 break;
464 case 2:
465 if (options.protocol & SSH_PROTO_2) {
466 enable_compat20();
467 break;
468 }
469 /* FALLTHROUGH */
Damien Miller4af51302000-04-16 11:18:38 +1000470 default:
Damien Miller78928792000-04-12 20:17:38 +1000471 mismatch = 1;
472 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000473 }
Damien Miller78928792000-04-12 20:17:38 +1000474 if (mismatch)
Damien Miller95def091999-11-25 00:26:21 +1100475 fatal("Protocol major versions differ: %d vs. %d",
Damien Miller78928792000-04-12 20:17:38 +1000476 (options.protocol & SSH_PROTO_2) ? PROTOCOL_MAJOR_2 : PROTOCOL_MAJOR_1,
477 remote_major);
Damien Miller95def091999-11-25 00:26:21 +1100478 /* Send our own protocol version identification. */
479 snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n",
Damien Miller78928792000-04-12 20:17:38 +1000480 compat20 ? PROTOCOL_MAJOR_2 : PROTOCOL_MAJOR_1,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100481 compat20 ? PROTOCOL_MINOR_2 : minor1,
Damien Miller1383bd82000-04-06 12:32:37 +1000482 SSH_VERSION);
Darren Tucker9f63f222003-07-03 13:46:56 +1000483 if (atomicio(vwrite, connection_out, buf, strlen(buf)) != strlen(buf))
Damien Miller95def091999-11-25 00:26:21 +1100484 fatal("write: %.100s", strerror(errno));
Damien Miller1383bd82000-04-06 12:32:37 +1000485 client_version_string = xstrdup(buf);
486 chop(client_version_string);
487 chop(server_version_string);
488 debug("Local version string %.100s", client_version_string);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000489}
490
Ben Lindstromb6c06d92001-02-10 23:21:09 +0000491/* defaults to 'no' */
Ben Lindstrombba81212001-06-25 05:01:22 +0000492static int
Damien Millere3980042001-10-10 15:02:03 +1000493confirm(const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000494{
Damien Miller49d795c2002-01-22 23:34:12 +1100495 const char *msg, *again = "Please type 'yes' or 'no': ";
496 char *p;
497 int ret = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000498
Ben Lindstromb6c06d92001-02-10 23:21:09 +0000499 if (options.batch_mode)
500 return 0;
Damien Miller49d795c2002-01-22 23:34:12 +1100501 for (msg = prompt;;msg = again) {
502 p = read_passphrase(msg, RP_ECHO);
503 if (p == NULL ||
504 (p[0] == '\0') || (p[0] == '\n') ||
505 strncasecmp(p, "no", 2) == 0)
506 ret = 0;
Ben Lindstrom04f9af72002-07-04 00:03:56 +0000507 if (p && strncasecmp(p, "yes", 3) == 0)
Damien Miller49d795c2002-01-22 23:34:12 +1100508 ret = 1;
509 if (p)
510 xfree(p);
511 if (ret != -1)
512 return ret;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000513 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000514}
515
Damien Miller95def091999-11-25 00:26:21 +1100516/*
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000517 * check whether the supplied host key is valid, return -1 if the key
518 * is not valid. the user_hostfile will not be updated if 'readonly' is true.
Damien Miller95def091999-11-25 00:26:21 +1100519 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000520static int
Damien Millereba71ba2000-04-29 23:57:08 +1000521check_host_key(char *host, struct sockaddr *hostaddr, Key *host_key,
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000522 int readonly, const char *user_hostfile, const char *system_hostfile)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000523{
Damien Miller450a7a12000-03-26 13:04:51 +1000524 Key *file_key;
Damien Millerf58b58c2003-11-17 21:18:23 +1100525 const char *type = key_type(host_key);
Damien Millera34a28b1999-12-14 10:47:15 +1100526 char *ip = NULL;
Ben Lindstromcfccef92001-03-13 04:57:58 +0000527 char hostline[1000], *hostp, *fp;
Damien Miller95def091999-11-25 00:26:21 +1100528 HostStatus host_status;
529 HostStatus ip_status;
Damien Miller1227d4c2005-03-02 12:06:51 +1100530 int r, local = 0, host_ip_differ = 0;
Damien Millereaf99942000-01-19 13:45:07 +1100531 int salen;
Damien Miller34132e52000-01-14 15:45:46 +1100532 char ntop[NI_MAXHOST];
Damien Miller49d795c2002-01-22 23:34:12 +1100533 char msg[1024];
Damien Miller7392ae62003-06-11 22:05:25 +1000534 int len, host_line, ip_line;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000535 const char *host_file = NULL, *ip_file = NULL;
Damien Miller34132e52000-01-14 15:45:46 +1100536
537 /*
538 * Force accepting of the host key for loopback/localhost. The
539 * problem is that if the home directory is NFS-mounted to multiple
540 * machines, localhost will refer to a different machine in each of
541 * them, and the user will get bogus HOST_CHANGED warnings. This
542 * essentially disables host authentication for localhost; however,
543 * this is probably not a real problem.
544 */
Damien Millereba71ba2000-04-29 23:57:08 +1000545 /** hostaddr == 0! */
Damien Miller34132e52000-01-14 15:45:46 +1100546 switch (hostaddr->sa_family) {
547 case AF_INET:
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000548 local = (ntohl(((struct sockaddr_in *)hostaddr)->
Damien Miller0dc1bef2005-07-17 17:22:45 +1000549 sin_addr.s_addr) >> 24) == IN_LOOPBACKNET;
Damien Millereaf99942000-01-19 13:45:07 +1100550 salen = sizeof(struct sockaddr_in);
Damien Miller34132e52000-01-14 15:45:46 +1100551 break;
552 case AF_INET6:
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000553 local = IN6_IS_ADDR_LOOPBACK(
554 &(((struct sockaddr_in6 *)hostaddr)->sin6_addr));
Damien Millereaf99942000-01-19 13:45:07 +1100555 salen = sizeof(struct sockaddr_in6);
Damien Miller34132e52000-01-14 15:45:46 +1100556 break;
557 default:
558 local = 0;
Damien Millereaf99942000-01-19 13:45:07 +1100559 salen = sizeof(struct sockaddr_storage);
Damien Miller34132e52000-01-14 15:45:46 +1100560 break;
561 }
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +0000562 if (options.no_host_authentication_for_localhost == 1 && local &&
563 options.host_key_alias == NULL) {
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000564 debug("Forcing accepting of host key for "
565 "loopback/localhost.");
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000566 return 0;
Damien Miller34132e52000-01-14 15:45:46 +1100567 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000568
Damien Milleraae6c611999-12-06 11:47:28 +1100569 /*
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000570 * We don't have the remote ip-address for connections
571 * using a proxy command
Damien Milleraae6c611999-12-06 11:47:28 +1100572 */
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000573 if (options.proxy_command == NULL) {
574 if (getnameinfo(hostaddr, salen, ntop, sizeof(ntop),
575 NULL, 0, NI_NUMERICHOST) != 0)
576 fatal("check_host_key: getnameinfo failed");
577 ip = xstrdup(ntop);
578 } else {
579 ip = xstrdup("<no hostip for proxy command>");
580 }
581 /*
582 * Turn off check_host_ip if the connection is to localhost, via proxy
583 * command or if we don't have a hostname to compare with
584 */
585 if (options.check_host_ip &&
586 (local || strcmp(host, ip) == 0 || options.proxy_command != NULL))
Damien Milleraae6c611999-12-06 11:47:28 +1100587 options.check_host_ip = 0;
588
Damien Millera34a28b1999-12-14 10:47:15 +1100589 /*
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000590 * Allow the user to record the key under a different name. This is
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000591 * useful for ssh tunneling over forwarded connections or if you run
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000592 * multiple sshd's on different ports on the same machine.
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000593 */
594 if (options.host_key_alias != NULL) {
595 host = options.host_key_alias;
596 debug("using hostkeyalias: %s", host);
597 }
598
599 /*
Damien Millera34a28b1999-12-14 10:47:15 +1100600 * Store the host key from the known host file in here so that we can
601 * compare it with the key for the IP address.
602 */
Damien Miller450a7a12000-03-26 13:04:51 +1000603 file_key = key_new(host_key->type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000604
Damien Miller5428f641999-11-25 11:54:57 +1100605 /*
Damien Miller788f2122005-11-05 15:14:59 +1100606 * Check if the host key is present in the user's list of known
Damien Miller5428f641999-11-25 11:54:57 +1100607 * hosts or in the systemwide list.
608 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000609 host_file = user_hostfile;
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000610 host_status = check_host_in_hostfile(host_file, host, host_key,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100611 file_key, &host_line);
Ben Lindstrom46c16222000-12-22 01:43:59 +0000612 if (host_status == HOST_NEW) {
613 host_file = system_hostfile;
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000614 host_status = check_host_in_hostfile(host_file, host, host_key,
615 file_key, &host_line);
Ben Lindstrom46c16222000-12-22 01:43:59 +0000616 }
Damien Miller5428f641999-11-25 11:54:57 +1100617 /*
Damien Miller5428f641999-11-25 11:54:57 +1100618 * Also perform check for the ip address, skip the check if we are
619 * localhost or the hostname was an ip address to begin with
620 */
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000621 if (options.check_host_ip) {
Damien Miller450a7a12000-03-26 13:04:51 +1000622 Key *ip_key = key_new(host_key->type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000623
Ben Lindstrom46c16222000-12-22 01:43:59 +0000624 ip_file = user_hostfile;
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000625 ip_status = check_host_in_hostfile(ip_file, ip, host_key,
626 ip_key, &ip_line);
Ben Lindstrom46c16222000-12-22 01:43:59 +0000627 if (ip_status == HOST_NEW) {
628 ip_file = system_hostfile;
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000629 ip_status = check_host_in_hostfile(ip_file, ip,
630 host_key, ip_key, &ip_line);
Ben Lindstrom46c16222000-12-22 01:43:59 +0000631 }
Damien Miller95def091999-11-25 00:26:21 +1100632 if (host_status == HOST_CHANGED &&
Damien Miller450a7a12000-03-26 13:04:51 +1000633 (ip_status != HOST_CHANGED || !key_equal(ip_key, file_key)))
Damien Miller95def091999-11-25 00:26:21 +1100634 host_ip_differ = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000635
Damien Miller450a7a12000-03-26 13:04:51 +1000636 key_free(ip_key);
Damien Miller95def091999-11-25 00:26:21 +1100637 } else
638 ip_status = host_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000639
Damien Miller450a7a12000-03-26 13:04:51 +1000640 key_free(file_key);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000641
Damien Miller95def091999-11-25 00:26:21 +1100642 switch (host_status) {
643 case HOST_OK:
644 /* The host is known and the key matches. */
Damien Millere247cc42000-05-07 12:03:14 +1000645 debug("Host '%.200s' is known and matches the %s host key.",
646 host, type);
Ben Lindstrom46c16222000-12-22 01:43:59 +0000647 debug("Found key in %s:%d", host_file, host_line);
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000648 if (options.check_host_ip && ip_status == HOST_NEW) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000649 if (readonly)
Damien Miller996acd22003-04-09 20:59:48 +1000650 logit("%s host key for IP address "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000651 "'%.128s' not in list of known hosts.",
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000652 type, ip);
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000653 else if (!add_host_to_hostfile(user_hostfile, ip,
Damien Millere1776152005-03-01 21:47:37 +1100654 host_key, options.hash_known_hosts))
Damien Miller996acd22003-04-09 20:59:48 +1000655 logit("Failed to add the %s host key for IP "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000656 "address '%.128s' to the list of known "
657 "hosts (%.30s).", type, ip, user_hostfile);
658 else
Damien Miller996acd22003-04-09 20:59:48 +1000659 logit("Warning: Permanently added the %s host "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000660 "key for IP address '%.128s' to the list "
661 "of known hosts.", type, ip);
Damien Miller95def091999-11-25 00:26:21 +1100662 }
663 break;
664 case HOST_NEW:
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000665 if (readonly)
666 goto fail;
Damien Miller95def091999-11-25 00:26:21 +1100667 /* The host is new. */
668 if (options.strict_host_key_checking == 1) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000669 /*
670 * User has requested strict host key checking. We
671 * will not add the host key automatically. The only
672 * alternative left is to abort.
673 */
674 error("No %s host key is known for %.200s and you "
675 "have requested strict checking.", type, host);
676 goto fail;
Damien Miller95def091999-11-25 00:26:21 +1100677 } else if (options.strict_host_key_checking == 2) {
Damien Miller7392ae62003-06-11 22:05:25 +1000678 char msg1[1024], msg2[1024];
679
680 if (show_other_keys(host, host_key))
681 snprintf(msg1, sizeof(msg1),
Damien Miller0dc1bef2005-07-17 17:22:45 +1000682 "\nbut keys of different type are already"
683 " known for this host.");
Damien Miller7392ae62003-06-11 22:05:25 +1000684 else
685 snprintf(msg1, sizeof(msg1), ".");
Damien Miller95def091999-11-25 00:26:21 +1100686 /* The default */
Ben Lindstromcfccef92001-03-13 04:57:58 +0000687 fp = key_fingerprint(host_key, SSH_FP_MD5, SSH_FP_HEX);
Damien Miller7392ae62003-06-11 22:05:25 +1000688 msg2[0] = '\0';
Damien Miller7392ae62003-06-11 22:05:25 +1000689 if (options.verify_host_key_dns) {
Damien Miller150b5572003-11-17 21:19:29 +1100690 if (matching_host_key_dns)
Damien Miller7392ae62003-06-11 22:05:25 +1000691 snprintf(msg2, sizeof(msg2),
692 "Matching host key fingerprint"
693 " found in DNS.\n");
694 else
695 snprintf(msg2, sizeof(msg2),
696 "No matching host key fingerprint"
697 " found in DNS.\n");
698 }
Damien Miller49d795c2002-01-22 23:34:12 +1100699 snprintf(msg, sizeof(msg),
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000700 "The authenticity of host '%.200s (%s)' can't be "
Ben Lindstrom3ed66402002-08-01 01:21:56 +0000701 "established%s\n"
Damien Miller7392ae62003-06-11 22:05:25 +1000702 "%s key fingerprint is %s.\n%s"
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000703 "Are you sure you want to continue connecting "
Ben Lindstrom3ed66402002-08-01 01:21:56 +0000704 "(yes/no)? ",
Damien Miller7392ae62003-06-11 22:05:25 +1000705 host, ip, msg1, type, fp, msg2);
Ben Lindstromcfccef92001-03-13 04:57:58 +0000706 xfree(fp);
Damien Miller49d795c2002-01-22 23:34:12 +1100707 if (!confirm(msg))
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000708 goto fail;
Damien Miller95def091999-11-25 00:26:21 +1100709 }
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000710 /*
711 * If not in strict mode, add the key automatically to the
712 * local known_hosts file.
713 */
Damien Miller1227d4c2005-03-02 12:06:51 +1100714 if (options.check_host_ip && ip_status == HOST_NEW) {
715 snprintf(hostline, sizeof(hostline), "%s,%s",
716 host, ip);
717 hostp = hostline;
718 if (options.hash_known_hosts) {
719 /* Add hash of host and IP separately */
720 r = add_host_to_hostfile(user_hostfile, host,
721 host_key, options.hash_known_hosts) &&
722 add_host_to_hostfile(user_hostfile, ip,
723 host_key, options.hash_known_hosts);
724 } else {
725 /* Add unhashed "host,ip" */
726 r = add_host_to_hostfile(user_hostfile,
727 hostline, host_key,
728 options.hash_known_hosts);
729 }
730 } else {
731 r = add_host_to_hostfile(user_hostfile, host, host_key,
732 options.hash_known_hosts);
733 hostp = host;
734 }
735
736 if (!r)
Damien Miller996acd22003-04-09 20:59:48 +1000737 logit("Failed to add the host to the list of known "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000738 "hosts (%.500s).", user_hostfile);
Damien Miller95def091999-11-25 00:26:21 +1100739 else
Damien Miller996acd22003-04-09 20:59:48 +1000740 logit("Warning: Permanently added '%.200s' (%s) to the "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000741 "list of known hosts.", hostp, type);
Damien Miller95def091999-11-25 00:26:21 +1100742 break;
743 case HOST_CHANGED:
744 if (options.check_host_ip && host_ip_differ) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000745 char *key_msg;
Damien Miller95def091999-11-25 00:26:21 +1100746 if (ip_status == HOST_NEW)
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000747 key_msg = "is unknown";
Damien Miller95def091999-11-25 00:26:21 +1100748 else if (ip_status == HOST_OK)
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000749 key_msg = "is unchanged";
Damien Miller95def091999-11-25 00:26:21 +1100750 else
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000751 key_msg = "has a different value";
Damien Miller95def091999-11-25 00:26:21 +1100752 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
753 error("@ WARNING: POSSIBLE DNS SPOOFING DETECTED! @");
754 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
Damien Millere247cc42000-05-07 12:03:14 +1000755 error("The %s host key for %s has changed,", type, host);
Damien Miller95def091999-11-25 00:26:21 +1100756 error("and the key for the according IP address %s", ip);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000757 error("%s. This could either mean that", key_msg);
Damien Miller95def091999-11-25 00:26:21 +1100758 error("DNS SPOOFING is happening or the IP address for the host");
Ben Lindstrom46c16222000-12-22 01:43:59 +0000759 error("and its host key have changed at the same time.");
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000760 if (ip_status != HOST_NEW)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000761 error("Offending key for IP in %s:%d", ip_file, ip_line);
Damien Miller95def091999-11-25 00:26:21 +1100762 }
763 /* The host key has changed. */
Damien Miller5a388972003-11-17 21:10:47 +1100764 warn_changed_key(host_key);
Damien Miller95def091999-11-25 00:26:21 +1100765 error("Add correct host key in %.100s to get rid of this message.",
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000766 user_hostfile);
Ben Lindstrom46c16222000-12-22 01:43:59 +0000767 error("Offending key in %s:%d", host_file, host_line);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000768
Damien Miller5428f641999-11-25 11:54:57 +1100769 /*
770 * If strict host key checking is in use, the user will have
771 * to edit the key manually and we can only abort.
772 */
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000773 if (options.strict_host_key_checking) {
774 error("%s host key for %.200s has changed and you have "
775 "requested strict checking.", type, host);
776 goto fail;
777 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000778
Damien Miller5428f641999-11-25 11:54:57 +1100779 /*
780 * If strict host key checking has not been requested, allow
Damien Miller941ac452003-06-04 20:31:53 +1000781 * the connection but without MITM-able authentication or
Damien Miller5428f641999-11-25 11:54:57 +1100782 * agent forwarding.
783 */
Damien Miller95def091999-11-25 00:26:21 +1100784 if (options.password_authentication) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000785 error("Password authentication is disabled to avoid "
786 "man-in-the-middle attacks.");
Damien Miller95def091999-11-25 00:26:21 +1100787 options.password_authentication = 0;
788 }
Damien Miller941ac452003-06-04 20:31:53 +1000789 if (options.kbd_interactive_authentication) {
790 error("Keyboard-interactive authentication is disabled"
791 " to avoid man-in-the-middle attacks.");
792 options.kbd_interactive_authentication = 0;
793 options.challenge_response_authentication = 0;
794 }
795 if (options.challenge_response_authentication) {
796 error("Challenge/response authentication is disabled"
797 " to avoid man-in-the-middle attacks.");
798 options.challenge_response_authentication = 0;
799 }
Damien Miller95def091999-11-25 00:26:21 +1100800 if (options.forward_agent) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000801 error("Agent forwarding is disabled to avoid "
802 "man-in-the-middle attacks.");
Damien Miller95def091999-11-25 00:26:21 +1100803 options.forward_agent = 0;
804 }
Ben Lindstromc72745a2000-12-02 19:03:54 +0000805 if (options.forward_x11) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000806 error("X11 forwarding is disabled to avoid "
807 "man-in-the-middle attacks.");
Ben Lindstromc72745a2000-12-02 19:03:54 +0000808 options.forward_x11 = 0;
809 }
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000810 if (options.num_local_forwards > 0 ||
811 options.num_remote_forwards > 0) {
812 error("Port forwarding is disabled to avoid "
813 "man-in-the-middle attacks.");
814 options.num_local_forwards =
Damien Miller9f0f5c62001-12-21 14:45:46 +1100815 options.num_remote_forwards = 0;
Ben Lindstromc72745a2000-12-02 19:03:54 +0000816 }
Damien Miller5428f641999-11-25 11:54:57 +1100817 /*
818 * XXX Should permit the user to change to use the new id.
819 * This could be done by converting the host key to an
820 * identifying sentence, tell that the host identifies itself
821 * by that sentence, and ask the user if he/she whishes to
822 * accept the authentication.
823 */
Damien Miller95def091999-11-25 00:26:21 +1100824 break;
Ben Lindstrom3ed66402002-08-01 01:21:56 +0000825 case HOST_FOUND:
826 fatal("internal error");
827 break;
Damien Miller95def091999-11-25 00:26:21 +1100828 }
Ben Lindstromc72745a2000-12-02 19:03:54 +0000829
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000830 if (options.check_host_ip && host_status != HOST_CHANGED &&
831 ip_status == HOST_CHANGED) {
Damien Miller49d795c2002-01-22 23:34:12 +1100832 snprintf(msg, sizeof(msg),
833 "Warning: the %s host key for '%.200s' "
834 "differs from the key for the IP address '%.128s'"
835 "\nOffending key for IP in %s:%d",
836 type, host, ip, ip_file, ip_line);
837 if (host_status == HOST_OK) {
838 len = strlen(msg);
839 snprintf(msg + len, sizeof(msg) - len,
840 "\nMatching host key in %s:%d",
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000841 host_file, host_line);
Damien Miller49d795c2002-01-22 23:34:12 +1100842 }
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000843 if (options.strict_host_key_checking == 1) {
Damien Millerab2db412003-06-02 19:09:13 +1000844 logit("%s", msg);
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000845 error("Exiting, you have requested strict checking.");
846 goto fail;
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000847 } else if (options.strict_host_key_checking == 2) {
Damien Miller49d795c2002-01-22 23:34:12 +1100848 strlcat(msg, "\nAre you sure you want "
849 "to continue connecting (yes/no)? ", sizeof(msg));
850 if (!confirm(msg))
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000851 goto fail;
Damien Miller49d795c2002-01-22 23:34:12 +1100852 } else {
Damien Millerab2db412003-06-02 19:09:13 +1000853 logit("%s", msg);
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000854 }
855 }
856
Ben Lindstromc72745a2000-12-02 19:03:54 +0000857 xfree(ip);
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000858 return 0;
859
860fail:
861 xfree(ip);
862 return -1;
863}
864
Damien Miller37876e92003-05-15 10:19:46 +1000865/* returns 0 if key verifies or -1 if key does NOT verify */
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000866int
867verify_host_key(char *host, struct sockaddr *hostaddr, Key *host_key)
868{
869 struct stat st;
Damien Miller150b5572003-11-17 21:19:29 +1100870 int flags = 0;
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000871
Damien Miller150b5572003-11-17 21:19:29 +1100872 if (options.verify_host_key_dns &&
873 verify_host_key_dns(host, hostaddr, host_key, &flags) == 0) {
874
875 if (flags & DNS_VERIFY_FOUND) {
876
877 if (options.verify_host_key_dns == 1 &&
878 flags & DNS_VERIFY_MATCH &&
879 flags & DNS_VERIFY_SECURE)
880 return 0;
881
882 if (flags & DNS_VERIFY_MATCH) {
883 matching_host_key_dns = 1;
884 } else {
885 warn_changed_key(host_key);
886 error("Update the SSHFP RR in DNS with the new "
887 "host key to get rid of this message.");
888 }
Damien Miller37876e92003-05-15 10:19:46 +1000889 }
890 }
Damien Miller37876e92003-05-15 10:19:46 +1000891
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000892 /* return ok if the key can be found in an old keyfile */
893 if (stat(options.system_hostfile2, &st) == 0 ||
894 stat(options.user_hostfile2, &st) == 0) {
895 if (check_host_key(host, hostaddr, host_key, /*readonly*/ 1,
896 options.user_hostfile2, options.system_hostfile2) == 0)
897 return 0;
898 }
899 return check_host_key(host, hostaddr, host_key, /*readonly*/ 0,
900 options.user_hostfile, options.system_hostfile);
Damien Millera34a28b1999-12-14 10:47:15 +1100901}
Damien Miller037a0dc1999-12-07 15:38:31 +1100902
Damien Miller396691a2000-01-20 22:44:08 +1100903/*
904 * Starts a dialog with the server, and authenticates the current user on the
905 * server. This does not need any extra privileges. The basic connection
906 * to the server must already have been established before this is called.
907 * If login fails, this function prints an error and never returns.
908 * This function does not require super-user privileges.
909 */
910void
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000911ssh_login(Sensitive *sensitive, const char *orighost,
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000912 struct sockaddr *hostaddr, struct passwd *pw)
Damien Miller396691a2000-01-20 22:44:08 +1100913{
914 char *host, *cp;
Damien Millereba71ba2000-04-29 23:57:08 +1000915 char *server_user, *local_user;
916
Damien Millereba71ba2000-04-29 23:57:08 +1000917 local_user = xstrdup(pw->pw_name);
918 server_user = options.user ? options.user : local_user;
Damien Miller396691a2000-01-20 22:44:08 +1100919
920 /* Convert the user-supplied hostname into all lowercase. */
921 host = xstrdup(orighost);
922 for (cp = host; *cp; cp++)
923 if (isupper(*cp))
924 *cp = tolower(*cp);
925
926 /* Exchange protocol version identification strings with the server. */
927 ssh_exchange_identification();
928
929 /* Put the connection into non-blocking mode. */
930 packet_set_nonblocking();
931
Damien Miller396691a2000-01-20 22:44:08 +1100932 /* key exchange */
Damien Miller396691a2000-01-20 22:44:08 +1100933 /* authenticate user */
Damien Miller1383bd82000-04-06 12:32:37 +1000934 if (compat20) {
935 ssh_kex2(host, hostaddr);
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000936 ssh_userauth2(local_user, server_user, host, sensitive);
Damien Miller1383bd82000-04-06 12:32:37 +1000937 } else {
Damien Miller1383bd82000-04-06 12:32:37 +1000938 ssh_kex(host, hostaddr);
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000939 ssh_userauth1(local_user, server_user, host, sensitive);
Damien Miller1383bd82000-04-06 12:32:37 +1000940 }
Damien Miller396691a2000-01-20 22:44:08 +1100941}
Damien Miller79438cc2001-02-16 12:34:57 +1100942
943void
944ssh_put_password(char *password)
945{
946 int size;
947 char *padded;
948
Ben Lindstromd20d0f32001-03-10 17:22:20 +0000949 if (datafellows & SSH_BUG_PASSWORDPAD) {
Ben Lindstrom664408d2001-06-09 01:42:01 +0000950 packet_put_cstring(password);
Ben Lindstromd20d0f32001-03-10 17:22:20 +0000951 return;
952 }
Damien Miller79438cc2001-02-16 12:34:57 +1100953 size = roundup(strlen(password) + 1, 32);
954 padded = xmalloc(size);
955 memset(padded, 0, size);
956 strlcpy(padded, password, size);
957 packet_put_string(padded, size);
958 memset(padded, 0, size);
959 xfree(padded);
960}
Ben Lindstrom3ed66402002-08-01 01:21:56 +0000961
962static int
963show_key_from_file(const char *file, const char *host, int keytype)
964{
965 Key *found;
966 char *fp;
967 int line, ret;
968
969 found = key_new(keytype);
970 if ((ret = lookup_key_in_hostfile_by_type(file, host,
971 keytype, found, &line))) {
972 fp = key_fingerprint(found, SSH_FP_MD5, SSH_FP_HEX);
Damien Miller996acd22003-04-09 20:59:48 +1000973 logit("WARNING: %s key found for host %s\n"
Ben Lindstrom4b99be82002-08-01 01:26:29 +0000974 "in %s:%d\n"
Ben Lindstrom3ed66402002-08-01 01:21:56 +0000975 "%s key fingerprint %s.",
976 key_type(found), host, file, line,
977 key_type(found), fp);
978 xfree(fp);
979 }
980 key_free(found);
981 return (ret);
982}
983
984/* print all known host keys for a given host, but skip keys of given type */
985static int
986show_other_keys(const char *host, Key *key)
987{
988 int type[] = { KEY_RSA1, KEY_RSA, KEY_DSA, -1};
989 int i, found = 0;
990
991 for (i = 0; type[i] != -1; i++) {
992 if (type[i] == key->type)
993 continue;
994 if (type[i] != KEY_RSA1 &&
995 show_key_from_file(options.user_hostfile2, host, type[i])) {
996 found = 1;
997 continue;
998 }
999 if (type[i] != KEY_RSA1 &&
1000 show_key_from_file(options.system_hostfile2, host, type[i])) {
1001 found = 1;
1002 continue;
1003 }
1004 if (show_key_from_file(options.user_hostfile, host, type[i])) {
1005 found = 1;
1006 continue;
1007 }
1008 if (show_key_from_file(options.system_hostfile, host, type[i])) {
1009 found = 1;
1010 continue;
1011 }
1012 debug2("no key of type %d for host %s", type[i], host);
1013 }
1014 return (found);
1015}
Damien Miller5a388972003-11-17 21:10:47 +11001016
1017static void
1018warn_changed_key(Key *host_key)
1019{
1020 char *fp;
Damien Miller8f746ec2003-11-17 21:11:15 +11001021 const char *type = key_type(host_key);
Damien Miller5a388972003-11-17 21:10:47 +11001022
1023 fp = key_fingerprint(host_key, SSH_FP_MD5, SSH_FP_HEX);
1024
1025 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1026 error("@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @");
1027 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1028 error("IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!");
1029 error("Someone could be eavesdropping on you right now (man-in-the-middle attack)!");
1030 error("It is also possible that the %s host key has just been changed.", type);
1031 error("The fingerprint for the %s key sent by the remote host is\n%s.",
1032 type, fp);
1033 error("Please contact your system administrator.");
1034
1035 xfree(fp);
Damien Miller5a388972003-11-17 21:10:47 +11001036}