blob: ac09eae67f0258c12fa96be1f0af6848589a9f4c [file] [log] [blame]
Damien Miller7acefbb2014-07-18 14:11:24 +10001/* $OpenBSD: sshconnect.c,v 1.251 2014/07/15 15:54:14 millert Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * Code to connect to a remote host, and to perform the client side of the
7 * login (authentication) dialog.
Damien Millere4340be2000-09-16 13:29:08 +11008 *
9 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110014 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100015
16#include "includes.h"
Damien Miller9cf6d072006-03-15 11:29:24 +110017
18#include <sys/types.h>
19#include <sys/wait.h>
Damien Millerf17883e2006-03-15 11:45:54 +110020#include <sys/stat.h>
Damien Miller8ec8c3e2006-07-10 20:35:38 +100021#include <sys/socket.h>
Damien Miller9aec9192006-08-05 10:57:45 +100022#ifdef HAVE_SYS_TIME_H
23# include <sys/time.h>
24#endif
Damien Miller8ec8c3e2006-07-10 20:35:38 +100025
26#include <netinet/in.h>
Darren Tucker46aa3e02006-09-02 15:32:40 +100027#include <arpa/inet.h>
Damien Miller03e20032006-03-15 11:16:59 +110028
Damien Millerc7b06362006-03-15 11:53:45 +110029#include <ctype.h>
Darren Tucker39972492006-07-12 22:22:46 +100030#include <errno.h>
Darren Tucker6e7fe1c2010-01-08 17:07:22 +110031#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100032#include <netdb.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110033#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110034#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110035#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100036#include <pwd.h>
Damien Miller9c0c31d2010-10-12 13:30:44 +110037#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100038#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100039#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100040#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100041#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100042#include <unistd.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100043
Damien Millerd4a8b7e1999-10-27 13:42:43 +100044#include "xmalloc.h"
Damien Millerd7834352006-08-05 12:39:39 +100045#include "key.h"
46#include "hostfile.h"
47#include "ssh.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100048#include "rsa.h"
Damien Miller1383bd82000-04-06 12:32:37 +100049#include "buffer.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100050#include "packet.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100051#include "uidswap.h"
52#include "compat.h"
Damien Miller450a7a12000-03-26 13:04:51 +100053#include "key.h"
Damien Millereba71ba2000-04-29 23:57:08 +100054#include "sshconnect.h"
Damien Miller450a7a12000-03-26 13:04:51 +100055#include "hostfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000056#include "log.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100057#include "misc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000058#include "readconf.h"
59#include "atomicio.h"
Damien Miller37876e92003-05-15 10:19:46 +100060#include "dns.h"
Darren Tuckerc5564e12009-06-21 18:53:53 +100061#include "roaming.h"
Damien Miller1262b662013-08-21 02:44:24 +100062#include "monitor_fdpass.h"
Damien Miller0a80ca12010-02-27 07:55:05 +110063#include "ssh2.h"
Damien Millerb7576772006-07-10 20:23:39 +100064#include "version.h"
Damien Miller37876e92003-05-15 10:19:46 +100065
Damien Millereba71ba2000-04-29 23:57:08 +100066char *client_version_string = NULL;
67char *server_version_string = NULL;
Damien Miller6b37fbb2014-07-04 08:59:24 +100068Key *previous_host_key = NULL;
Damien Miller1383bd82000-04-06 12:32:37 +100069
Damien Millerc1af1d52005-11-05 15:08:57 +110070static int matching_host_key_dns = 0;
Damien Miller7392ae62003-06-11 22:05:25 +100071
Damien Millera41ccca2010-10-07 22:07:32 +110072static pid_t proxy_command_pid = 0;
73
Ben Lindstromf9c48842002-06-11 16:37:51 +000074/* import */
Damien Milleraae6c611999-12-06 11:47:28 +110075extern Options options;
Damien Miller34132e52000-01-14 15:45:46 +110076extern char *__progname;
Ben Lindstromf9c48842002-06-11 16:37:51 +000077extern uid_t original_real_uid;
78extern uid_t original_effective_uid;
Damien Milleraae6c611999-12-06 11:47:28 +110079
Damien Millerd925dcd2010-12-01 12:21:51 +110080static int show_other_keys(struct hostkeys *, Key *);
Damien Miller5a388972003-11-17 21:10:47 +110081static void warn_changed_key(Key *);
Ben Lindstrom3ed66402002-08-01 01:21:56 +000082
Damien Miller1262b662013-08-21 02:44:24 +100083/* Expand a proxy command */
84static char *
85expand_proxy_command(const char *proxy_command, const char *user,
86 const char *host, int port)
87{
88 char *tmp, *ret, strport[NI_MAXSERV];
89
Damien Miller0faf7472013-10-17 11:47:23 +110090 snprintf(strport, sizeof strport, "%d", port);
Damien Miller1262b662013-08-21 02:44:24 +100091 xasprintf(&tmp, "exec %s", proxy_command);
92 ret = percent_expand(tmp, "h", host, "p", strport,
93 "r", options.user, (char *)NULL);
94 free(tmp);
95 return ret;
96}
97
98/*
99 * Connect to the given ssh server using a proxy command that passes a
100 * a connected fd back to us.
101 */
102static int
103ssh_proxy_fdpass_connect(const char *host, u_short port,
104 const char *proxy_command)
105{
106 char *command_string;
107 int sp[2], sock;
108 pid_t pid;
109 char *shell;
110
111 if ((shell = getenv("SHELL")) == NULL)
112 shell = _PATH_BSHELL;
113
114 if (socketpair(AF_UNIX, SOCK_STREAM, 0, sp) < 0)
115 fatal("Could not create socketpair to communicate with "
116 "proxy dialer: %.100s", strerror(errno));
117
118 command_string = expand_proxy_command(proxy_command, options.user,
119 host, port);
120 debug("Executing proxy dialer command: %.500s", command_string);
121
122 /* Fork and execute the proxy command. */
123 if ((pid = fork()) == 0) {
124 char *argv[10];
125
126 /* Child. Permanently give up superuser privileges. */
127 permanently_drop_suid(original_real_uid);
128
129 close(sp[1]);
130 /* Redirect stdin and stdout. */
131 if (sp[0] != 0) {
132 if (dup2(sp[0], 0) < 0)
133 perror("dup2 stdin");
134 }
135 if (sp[0] != 1) {
136 if (dup2(sp[0], 1) < 0)
137 perror("dup2 stdout");
138 }
139 if (sp[0] >= 2)
140 close(sp[0]);
141
142 /*
143 * Stderr is left as it is so that error messages get
144 * printed on the user's terminal.
145 */
146 argv[0] = shell;
147 argv[1] = "-c";
148 argv[2] = command_string;
149 argv[3] = NULL;
150
151 /*
152 * Execute the proxy command.
153 * Note that we gave up any extra privileges above.
154 */
155 execv(argv[0], argv);
156 perror(argv[0]);
157 exit(1);
158 }
159 /* Parent. */
160 if (pid < 0)
161 fatal("fork failed: %.100s", strerror(errno));
162 close(sp[0]);
163 free(command_string);
164
165 if ((sock = mm_receive_fd(sp[1])) == -1)
166 fatal("proxy dialer did not pass back a connection");
167
168 while (waitpid(pid, NULL, 0) == -1)
169 if (errno != EINTR)
170 fatal("Couldn't wait for child: %s", strerror(errno));
171
172 /* Set the connection file descriptors. */
173 packet_set_connection(sock, sock);
Damien Miller1262b662013-08-21 02:44:24 +1000174
175 return 0;
176}
177
Damien Miller95def091999-11-25 00:26:21 +1100178/*
179 * Connect to the given ssh server using a proxy command.
180 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000181static int
Ben Lindstromf9c48842002-06-11 16:37:51 +0000182ssh_proxy_connect(const char *host, u_short port, const char *proxy_command)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000183{
Damien Miller1262b662013-08-21 02:44:24 +1000184 char *command_string;
Damien Miller95def091999-11-25 00:26:21 +1100185 int pin[2], pout[2];
Damien Miller166fca82000-04-20 07:42:21 +1000186 pid_t pid;
Damien Miller1262b662013-08-21 02:44:24 +1000187 char *shell;
Damien Miller1d824ab2007-09-17 11:58:04 +1000188
Damien Miller38d9a962010-10-07 22:07:11 +1100189 if ((shell = getenv("SHELL")) == NULL || *shell == '\0')
Damien Miller1d824ab2007-09-17 11:58:04 +1000190 shell = _PATH_BSHELL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000191
Damien Miller95def091999-11-25 00:26:21 +1100192 /* Create pipes for communicating with the proxy. */
193 if (pipe(pin) < 0 || pipe(pout) < 0)
194 fatal("Could not create pipes to communicate with the proxy: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100195 strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000196
Damien Miller1262b662013-08-21 02:44:24 +1000197 command_string = expand_proxy_command(proxy_command, options.user,
198 host, port);
Damien Miller95def091999-11-25 00:26:21 +1100199 debug("Executing proxy command: %.500s", command_string);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000200
Damien Miller95def091999-11-25 00:26:21 +1100201 /* Fork and execute the proxy command. */
202 if ((pid = fork()) == 0) {
203 char *argv[10];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000204
Damien Miller95def091999-11-25 00:26:21 +1100205 /* Child. Permanently give up superuser privileges. */
Damien Miller2e5fe882006-06-13 13:10:00 +1000206 permanently_drop_suid(original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100207
208 /* Redirect stdin and stdout. */
209 close(pin[1]);
210 if (pin[0] != 0) {
211 if (dup2(pin[0], 0) < 0)
212 perror("dup2 stdin");
213 close(pin[0]);
214 }
215 close(pout[0]);
216 if (dup2(pout[1], 1) < 0)
217 perror("dup2 stdout");
218 /* Cannot be 1 because pin allocated two descriptors. */
219 close(pout[1]);
220
221 /* Stderr is left as it is so that error messages get
222 printed on the user's terminal. */
Damien Miller1d824ab2007-09-17 11:58:04 +1000223 argv[0] = shell;
Damien Miller95def091999-11-25 00:26:21 +1100224 argv[1] = "-c";
225 argv[2] = command_string;
226 argv[3] = NULL;
227
228 /* Execute the proxy command. Note that we gave up any
229 extra privileges above. */
Damien Miller6fb6fd52011-01-16 23:17:45 +1100230 signal(SIGPIPE, SIG_DFL);
Kevin Stevesfcd5d602001-01-07 11:45:22 +0000231 execv(argv[0], argv);
232 perror(argv[0]);
Damien Miller95def091999-11-25 00:26:21 +1100233 exit(1);
234 }
235 /* Parent. */
236 if (pid < 0)
237 fatal("fork failed: %.100s", strerror(errno));
Damien Miller8c4e18a2002-09-19 12:05:02 +1000238 else
239 proxy_command_pid = pid; /* save pid to clean up later */
Damien Miller95def091999-11-25 00:26:21 +1100240
241 /* Close child side of the descriptors. */
242 close(pin[0]);
243 close(pout[1]);
244
245 /* Free the command name. */
Darren Tuckera627d422013-06-02 07:31:17 +1000246 free(command_string);
Damien Miller95def091999-11-25 00:26:21 +1100247
248 /* Set the connection file descriptors. */
249 packet_set_connection(pout[0], pin[1]);
250
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000251 /* Indicate OK return */
252 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000253}
254
Damien Millera41ccca2010-10-07 22:07:32 +1100255void
256ssh_kill_proxy_command(void)
257{
258 /*
259 * Send SIGHUP to proxy command if used. We don't wait() in
260 * case it hangs and instead rely on init to reap the child
261 */
262 if (proxy_command_pid > 1)
Damien Miller45fcdaa2010-10-07 22:07:58 +1100263 kill(proxy_command_pid, SIGHUP);
Damien Millera41ccca2010-10-07 22:07:32 +1100264}
265
Damien Miller95def091999-11-25 00:26:21 +1100266/*
267 * Creates a (possibly privileged) socket for use as the ssh connection.
268 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000269static int
Damien Miller2372ace2003-05-14 13:42:23 +1000270ssh_create_socket(int privileged, struct addrinfo *ai)
Damien Miller95def091999-11-25 00:26:21 +1100271{
Darren Tuckere6e52f82013-10-10 10:28:07 +1100272 int sock, r, gaierr;
Damien Millerd1a7a9c2014-02-07 09:24:33 +1100273 struct addrinfo hints, *res = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000274
Darren Tucker7bd98e72010-01-10 10:31:12 +1100275 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Darren Tucker6e7fe1c2010-01-08 17:07:22 +1100276 if (sock < 0) {
Darren Tuckere6e52f82013-10-10 10:28:07 +1100277 error("socket: %s", strerror(errno));
Darren Tucker6e7fe1c2010-01-08 17:07:22 +1100278 return -1;
279 }
280 fcntl(sock, F_SETFD, FD_CLOEXEC);
Ben Lindstrome0f88042001-04-30 13:06:24 +0000281
282 /* Bind the socket to an alternative local IP address */
Darren Tuckere6e52f82013-10-10 10:28:07 +1100283 if (options.bind_address == NULL && !privileged)
Ben Lindstrome0f88042001-04-30 13:06:24 +0000284 return sock;
285
Damien Millerd1a7a9c2014-02-07 09:24:33 +1100286 if (options.bind_address) {
287 memset(&hints, 0, sizeof(hints));
288 hints.ai_family = ai->ai_family;
289 hints.ai_socktype = ai->ai_socktype;
290 hints.ai_protocol = ai->ai_protocol;
291 hints.ai_flags = AI_PASSIVE;
292 gaierr = getaddrinfo(options.bind_address, NULL, &hints, &res);
293 if (gaierr) {
294 error("getaddrinfo: %s: %s", options.bind_address,
295 ssh_gai_strerror(gaierr));
296 close(sock);
297 return -1;
298 }
Ben Lindstrome0f88042001-04-30 13:06:24 +0000299 }
Darren Tuckere6e52f82013-10-10 10:28:07 +1100300 /*
301 * If we are running as root and want to connect to a privileged
302 * port, bind our own socket to a privileged port.
303 */
304 if (privileged) {
305 PRIV_START;
Damien Millerd1a7a9c2014-02-07 09:24:33 +1100306 r = bindresvport_sa(sock, res ? res->ai_addr : NULL);
Darren Tuckere6e52f82013-10-10 10:28:07 +1100307 PRIV_END;
308 if (r < 0) {
309 error("bindresvport_sa: af=%d %s", ai->ai_family,
310 strerror(errno));
311 goto fail;
312 }
313 } else {
314 if (bind(sock, res->ai_addr, res->ai_addrlen) < 0) {
315 error("bind: %s: %s", options.bind_address,
316 strerror(errno));
317 fail:
318 close(sock);
319 freeaddrinfo(res);
320 return -1;
321 }
Ben Lindstrome0f88042001-04-30 13:06:24 +0000322 }
Damien Millerd1a7a9c2014-02-07 09:24:33 +1100323 if (res != NULL)
324 freeaddrinfo(res);
Damien Miller95def091999-11-25 00:26:21 +1100325 return sock;
326}
327
Damien Millerb78d5eb2003-05-16 11:39:04 +1000328static int
329timeout_connect(int sockfd, const struct sockaddr *serv_addr,
Damien Miller67bd0622007-09-17 12:06:57 +1000330 socklen_t addrlen, int *timeoutp)
Damien Millerb78d5eb2003-05-16 11:39:04 +1000331{
332 fd_set *fdset;
Damien Miller67bd0622007-09-17 12:06:57 +1000333 struct timeval tv, t_start;
Damien Millerb78d5eb2003-05-16 11:39:04 +1000334 socklen_t optlen;
Damien Miller07d86be2006-03-26 14:19:21 +1100335 int optval, rc, result = -1;
Damien Millerb78d5eb2003-05-16 11:39:04 +1000336
Damien Miller67bd0622007-09-17 12:06:57 +1000337 gettimeofday(&t_start, NULL);
338
339 if (*timeoutp <= 0) {
340 result = connect(sockfd, serv_addr, addrlen);
341 goto done;
342 }
Damien Millerb78d5eb2003-05-16 11:39:04 +1000343
Damien Millerf6723f02004-01-27 21:21:27 +1100344 set_nonblock(sockfd);
Damien Millerb78d5eb2003-05-16 11:39:04 +1000345 rc = connect(sockfd, serv_addr, addrlen);
Damien Millerf6723f02004-01-27 21:21:27 +1100346 if (rc == 0) {
347 unset_nonblock(sockfd);
Damien Miller67bd0622007-09-17 12:06:57 +1000348 result = 0;
349 goto done;
Damien Millerf6723f02004-01-27 21:21:27 +1100350 }
Damien Miller67bd0622007-09-17 12:06:57 +1000351 if (errno != EINPROGRESS) {
352 result = -1;
353 goto done;
354 }
Damien Millerb78d5eb2003-05-16 11:39:04 +1000355
Damien Miller07d86be2006-03-26 14:19:21 +1100356 fdset = (fd_set *)xcalloc(howmany(sockfd + 1, NFDBITS),
357 sizeof(fd_mask));
Damien Millerb78d5eb2003-05-16 11:39:04 +1000358 FD_SET(sockfd, fdset);
Damien Miller67bd0622007-09-17 12:06:57 +1000359 ms_to_timeval(&tv, *timeoutp);
Damien Millerb78d5eb2003-05-16 11:39:04 +1000360
Darren Tucker47eede72005-03-14 23:08:12 +1100361 for (;;) {
Damien Millerb78d5eb2003-05-16 11:39:04 +1000362 rc = select(sockfd + 1, NULL, fdset, NULL, &tv);
363 if (rc != -1 || errno != EINTR)
364 break;
365 }
366
Darren Tucker47eede72005-03-14 23:08:12 +1100367 switch (rc) {
Damien Millerb78d5eb2003-05-16 11:39:04 +1000368 case 0:
369 /* Timed out */
370 errno = ETIMEDOUT;
Damien Miller08293fa2003-05-23 18:44:41 +1000371 break;
Damien Millerb78d5eb2003-05-16 11:39:04 +1000372 case -1:
373 /* Select error */
Damien Millera8e06ce2003-11-21 23:48:55 +1100374 debug("select: %s", strerror(errno));
Damien Miller08293fa2003-05-23 18:44:41 +1000375 break;
Damien Millerb78d5eb2003-05-16 11:39:04 +1000376 case 1:
377 /* Completed or failed */
378 optval = 0;
379 optlen = sizeof(optval);
Damien Millera8e06ce2003-11-21 23:48:55 +1100380 if (getsockopt(sockfd, SOL_SOCKET, SO_ERROR, &optval,
Darren Tuckerbd5361b2003-09-22 20:59:16 +1000381 &optlen) == -1) {
Damien Millera8e06ce2003-11-21 23:48:55 +1100382 debug("getsockopt: %s", strerror(errno));
Damien Miller08293fa2003-05-23 18:44:41 +1000383 break;
Darren Tuckerbd5361b2003-09-22 20:59:16 +1000384 }
Damien Millerb78d5eb2003-05-16 11:39:04 +1000385 if (optval != 0) {
386 errno = optval;
Damien Miller08293fa2003-05-23 18:44:41 +1000387 break;
Damien Millerb78d5eb2003-05-16 11:39:04 +1000388 }
Damien Miller08293fa2003-05-23 18:44:41 +1000389 result = 0;
Damien Millerf6723f02004-01-27 21:21:27 +1100390 unset_nonblock(sockfd);
Damien Millerb78d5eb2003-05-16 11:39:04 +1000391 break;
392 default:
393 /* Should not occur */
394 fatal("Bogus return (%d) from select()", rc);
395 }
396
Darren Tuckera627d422013-06-02 07:31:17 +1000397 free(fdset);
Damien Miller67bd0622007-09-17 12:06:57 +1000398
399 done:
400 if (result == 0 && *timeoutp > 0) {
401 ms_subtract_diff(&t_start, timeoutp);
402 if (*timeoutp <= 0) {
403 errno = ETIMEDOUT;
404 result = -1;
405 }
406 }
407
Damien Miller08293fa2003-05-23 18:44:41 +1000408 return (result);
Damien Millerb78d5eb2003-05-16 11:39:04 +1000409}
410
Damien Miller95def091999-11-25 00:26:21 +1100411/*
Damien Miller34132e52000-01-14 15:45:46 +1100412 * Opens a TCP/IP connection to the remote server on the given host.
413 * The address of the remote host will be returned in hostaddr.
Ben Lindstromf9c48842002-06-11 16:37:51 +0000414 * If port is 0, the default port will be used. If needpriv is true,
Damien Miller95def091999-11-25 00:26:21 +1100415 * a privileged port will be allocated to make the connection.
Ben Lindstromf9c48842002-06-11 16:37:51 +0000416 * This requires super-user privileges if needpriv is true.
Damien Miller95def091999-11-25 00:26:21 +1100417 * Connection_attempts specifies the maximum number of tries (one per
418 * second). If proxy_command is non-NULL, it specifies the command (with %h
419 * and %p substituted for host and port, respectively) to use to contact
420 * the daemon.
421 */
Damien Miller0faf7472013-10-17 11:47:23 +1100422static int
423ssh_connect_direct(const char *host, struct addrinfo *aitop,
424 struct sockaddr_storage *hostaddr, u_short port, int family,
425 int connection_attempts, int *timeout_ms, int want_keepalive, int needpriv)
Damien Miller95def091999-11-25 00:26:21 +1100426{
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000427 int on = 1;
428 int sock = -1, attempt;
429 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller0faf7472013-10-17 11:47:23 +1100430 struct addrinfo *ai;
Damien Miller95def091999-11-25 00:26:21 +1100431
Ben Lindstrom064496f2002-12-23 02:04:22 +0000432 debug2("ssh_connect: needpriv %d", needpriv);
Damien Miller95def091999-11-25 00:26:21 +1100433
Damien Miller56e5e6a2006-04-23 12:08:59 +1000434 for (attempt = 0; attempt < connection_attempts; attempt++) {
Damien Millerf4bcd102006-10-24 03:02:23 +1000435 if (attempt > 0) {
436 /* Sleep a moment before retrying. */
437 sleep(1);
Damien Miller95def091999-11-25 00:26:21 +1100438 debug("Trying again...");
Damien Millerf4bcd102006-10-24 03:02:23 +1000439 }
Damien Miller56e5e6a2006-04-23 12:08:59 +1000440 /*
441 * Loop through addresses for this host, and try each one in
442 * sequence until the connection succeeds.
443 */
Damien Miller34132e52000-01-14 15:45:46 +1100444 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller0faf7472013-10-17 11:47:23 +1100445 if (ai->ai_family != AF_INET &&
446 ai->ai_family != AF_INET6)
Damien Miller34132e52000-01-14 15:45:46 +1100447 continue;
448 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
449 ntop, sizeof(ntop), strport, sizeof(strport),
450 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
451 error("ssh_connect: getnameinfo failed");
452 continue;
453 }
454 debug("Connecting to %.200s [%.100s] port %s.",
455 host, ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +1100456
Damien Miller34132e52000-01-14 15:45:46 +1100457 /* Create a socket for connecting. */
Damien Miller2372ace2003-05-14 13:42:23 +1000458 sock = ssh_create_socket(needpriv, ai);
Damien Miller34132e52000-01-14 15:45:46 +1100459 if (sock < 0)
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000460 /* Any error is already output */
Damien Miller34132e52000-01-14 15:45:46 +1100461 continue;
Damien Miller95def091999-11-25 00:26:21 +1100462
Damien Millerb78d5eb2003-05-16 11:39:04 +1000463 if (timeout_connect(sock, ai->ai_addr, ai->ai_addrlen,
Damien Miller67bd0622007-09-17 12:06:57 +1000464 timeout_ms) >= 0) {
Damien Miller34132e52000-01-14 15:45:46 +1100465 /* Successful connection. */
Ben Lindstroma3700052001-04-05 23:26:32 +0000466 memcpy(hostaddr, ai->ai_addr, ai->ai_addrlen);
Damien Miller95def091999-11-25 00:26:21 +1100467 break;
Damien Miller34132e52000-01-14 15:45:46 +1100468 } else {
Ben Lindstrom728aa7e2002-07-15 17:48:11 +0000469 debug("connect to address %s port %s: %s",
470 ntop, strport, strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100471 close(sock);
Damien Miller56e5e6a2006-04-23 12:08:59 +1000472 sock = -1;
Damien Miller95def091999-11-25 00:26:21 +1100473 }
Damien Miller95def091999-11-25 00:26:21 +1100474 }
Damien Miller56e5e6a2006-04-23 12:08:59 +1000475 if (sock != -1)
Damien Miller34132e52000-01-14 15:45:46 +1100476 break; /* Successful connection. */
Damien Miller95def091999-11-25 00:26:21 +1100477 }
Damien Miller34132e52000-01-14 15:45:46 +1100478
Damien Miller95def091999-11-25 00:26:21 +1100479 /* Return failure if we didn't get a successful connection. */
Damien Miller56e5e6a2006-04-23 12:08:59 +1000480 if (sock == -1) {
Darren Tuckerb2161e32005-01-20 11:00:46 +1100481 error("ssh: connect to host %s port %s: %s",
Ben Lindstroma6cd75c2002-07-11 04:00:19 +0000482 host, strport, strerror(errno));
Darren Tuckerb2161e32005-01-20 11:00:46 +1100483 return (-1);
Ben Lindstroma6cd75c2002-07-11 04:00:19 +0000484 }
Damien Miller95def091999-11-25 00:26:21 +1100485
486 debug("Connection established.");
487
Damien Miller12c150e2003-12-17 16:31:10 +1100488 /* Set SO_KEEPALIVE if requested. */
Damien Miller67bd0622007-09-17 12:06:57 +1000489 if (want_keepalive &&
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000490 setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE, (void *)&on,
491 sizeof(on)) < 0)
492 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100493
494 /* Set the connection. */
495 packet_set_connection(sock, sock);
496
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000497 return 0;
Damien Miller95def091999-11-25 00:26:21 +1100498}
499
Damien Miller0faf7472013-10-17 11:47:23 +1100500int
501ssh_connect(const char *host, struct addrinfo *addrs,
502 struct sockaddr_storage *hostaddr, u_short port, int family,
503 int connection_attempts, int *timeout_ms, int want_keepalive, int needpriv)
504{
505 if (options.proxy_command == NULL) {
506 return ssh_connect_direct(host, addrs, hostaddr, port, family,
507 connection_attempts, timeout_ms, want_keepalive, needpriv);
508 } else if (strcmp(options.proxy_command, "-") == 0) {
509 packet_set_connection(STDIN_FILENO, STDOUT_FILENO);
510 return 0; /* Always succeeds */
511 } else if (options.proxy_use_fdpass) {
512 return ssh_proxy_fdpass_connect(host, port,
513 options.proxy_command);
514 }
515 return ssh_proxy_connect(host, port, options.proxy_command);
516}
517
Darren Tucker00c15182012-09-06 21:21:56 +1000518static void
519send_client_banner(int connection_out, int minor1)
520{
Darren Tucker00c15182012-09-06 21:21:56 +1000521 /* Send our own protocol version identification. */
522 if (compat20) {
523 xasprintf(&client_version_string, "SSH-%d.%d-%.100s\r\n",
524 PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2, SSH_VERSION);
525 } else {
526 xasprintf(&client_version_string, "SSH-%d.%d-%.100s\n",
527 PROTOCOL_MAJOR_1, minor1, SSH_VERSION);
528 }
529 if (roaming_atomicio(vwrite, connection_out, client_version_string,
530 strlen(client_version_string)) != strlen(client_version_string))
531 fatal("write: %.100s", strerror(errno));
532 chop(client_version_string);
533 debug("Local version string %.100s", client_version_string);
534}
535
Damien Milleraae6c611999-12-06 11:47:28 +1100536/*
Damien Miller95def091999-11-25 00:26:21 +1100537 * Waits for the server identification string, and sends our own
538 * identification string.
539 */
Darren Tucker1cc55d72009-06-21 18:17:19 +1000540void
Damien Miller67bd0622007-09-17 12:06:57 +1000541ssh_exchange_identification(int timeout_ms)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000542{
Damien Miller95def091999-11-25 00:26:21 +1100543 char buf[256], remote_version[256]; /* must be same size! */
Damien Millereccb9de2005-06-17 12:59:34 +1000544 int remote_major, remote_minor, mismatch;
Damien Miller95def091999-11-25 00:26:21 +1100545 int connection_in = packet_get_connection_in();
546 int connection_out = packet_get_connection_out();
Darren Tucker00c15182012-09-06 21:21:56 +1000547 int minor1 = PROTOCOL_MINOR_1, client_banner_sent = 0;
Damien Miller1e88ea62006-07-10 20:15:56 +1000548 u_int i, n;
Damien Miller67bd0622007-09-17 12:06:57 +1000549 size_t len;
550 int fdsetsz, remaining, rc;
551 struct timeval t_start, t_remaining;
552 fd_set *fdset;
553
554 fdsetsz = howmany(connection_in + 1, NFDBITS) * sizeof(fd_mask);
555 fdset = xcalloc(1, fdsetsz);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000556
Darren Tucker00c15182012-09-06 21:21:56 +1000557 /*
558 * If we are SSH2-only then we can send the banner immediately and
559 * save a round-trip.
560 */
561 if (options.protocol == SSH_PROTO_2) {
562 enable_compat20();
563 send_client_banner(connection_out, 0);
564 client_banner_sent = 1;
565 }
566
Damien Millerb253cc42005-05-26 12:23:44 +1000567 /* Read other side's version identification. */
Damien Miller67bd0622007-09-17 12:06:57 +1000568 remaining = timeout_ms;
Damien Miller1e88ea62006-07-10 20:15:56 +1000569 for (n = 0;;) {
Damien Millerf6d9e222000-06-18 14:50:44 +1000570 for (i = 0; i < sizeof(buf) - 1; i++) {
Damien Miller67bd0622007-09-17 12:06:57 +1000571 if (timeout_ms > 0) {
572 gettimeofday(&t_start, NULL);
573 ms_to_timeval(&t_remaining, remaining);
574 FD_SET(connection_in, fdset);
575 rc = select(connection_in + 1, fdset, NULL,
576 fdset, &t_remaining);
577 ms_subtract_diff(&t_start, &remaining);
578 if (rc == 0 || remaining <= 0)
579 fatal("Connection timed out during "
580 "banner exchange");
581 if (rc == -1) {
582 if (errno == EINTR)
583 continue;
584 fatal("ssh_exchange_identification: "
585 "select: %s", strerror(errno));
586 }
587 }
588
Darren Tuckerc5564e12009-06-21 18:53:53 +1000589 len = roaming_atomicio(read, connection_in, &buf[i], 1);
Damien Millerb253cc42005-05-26 12:23:44 +1000590
Damien Miller46d38de2005-07-17 17:02:09 +1000591 if (len != 1 && errno == EPIPE)
Damien Miller67bd0622007-09-17 12:06:57 +1000592 fatal("ssh_exchange_identification: "
593 "Connection closed by remote host");
Damien Millerb253cc42005-05-26 12:23:44 +1000594 else if (len != 1)
Damien Miller67bd0622007-09-17 12:06:57 +1000595 fatal("ssh_exchange_identification: "
596 "read: %.100s", strerror(errno));
Damien Millerf6d9e222000-06-18 14:50:44 +1000597 if (buf[i] == '\r') {
598 buf[i] = '\n';
599 buf[i + 1] = 0;
600 continue; /**XXX wait for \n */
601 }
602 if (buf[i] == '\n') {
603 buf[i + 1] = 0;
604 break;
605 }
Damien Miller1e88ea62006-07-10 20:15:56 +1000606 if (++n > 65536)
Damien Miller67bd0622007-09-17 12:06:57 +1000607 fatal("ssh_exchange_identification: "
608 "No banner received");
Damien Miller95def091999-11-25 00:26:21 +1100609 }
Damien Millerf6d9e222000-06-18 14:50:44 +1000610 buf[sizeof(buf) - 1] = 0;
611 if (strncmp(buf, "SSH-", 4) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100612 break;
Damien Millerf6d9e222000-06-18 14:50:44 +1000613 debug("ssh_exchange_identification: %s", buf);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000614 }
Damien Miller1383bd82000-04-06 12:32:37 +1000615 server_version_string = xstrdup(buf);
Darren Tuckera627d422013-06-02 07:31:17 +1000616 free(fdset);
Damien Miller95def091999-11-25 00:26:21 +1100617
Damien Miller5428f641999-11-25 11:54:57 +1100618 /*
619 * Check that the versions match. In future this might accept
620 * several versions and set appropriate flags to handle them.
621 */
Damien Miller1383bd82000-04-06 12:32:37 +1000622 if (sscanf(server_version_string, "SSH-%d.%d-%[^\n]\n",
623 &remote_major, &remote_minor, remote_version) != 3)
Damien Miller95def091999-11-25 00:26:21 +1100624 fatal("Bad remote protocol version identification: '%.100s'", buf);
625 debug("Remote protocol version %d.%d, remote software version %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100626 remote_major, remote_minor, remote_version);
Damien Miller95def091999-11-25 00:26:21 +1100627
Damien Miller1383bd82000-04-06 12:32:37 +1000628 compat_datafellows(remote_version);
Damien Miller78928792000-04-12 20:17:38 +1000629 mismatch = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000630
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000631 switch (remote_major) {
Damien Miller78928792000-04-12 20:17:38 +1000632 case 1:
633 if (remote_minor == 99 &&
634 (options.protocol & SSH_PROTO_2) &&
635 !(options.protocol & SSH_PROTO_1_PREFERRED)) {
636 enable_compat20();
637 break;
Damien Miller95def091999-11-25 00:26:21 +1100638 }
Damien Miller78928792000-04-12 20:17:38 +1000639 if (!(options.protocol & SSH_PROTO_1)) {
640 mismatch = 1;
641 break;
642 }
643 if (remote_minor < 3) {
644 fatal("Remote machine has too old SSH software version.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100645 } else if (remote_minor == 3 || remote_minor == 4) {
Damien Miller78928792000-04-12 20:17:38 +1000646 /* We speak 1.3, too. */
647 enable_compat13();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100648 minor1 = 3;
Damien Miller78928792000-04-12 20:17:38 +1000649 if (options.forward_agent) {
Damien Miller996acd22003-04-09 20:59:48 +1000650 logit("Agent forwarding disabled for protocol 1.3");
Damien Miller78928792000-04-12 20:17:38 +1000651 options.forward_agent = 0;
652 }
653 }
654 break;
655 case 2:
656 if (options.protocol & SSH_PROTO_2) {
657 enable_compat20();
658 break;
659 }
660 /* FALLTHROUGH */
Damien Miller4af51302000-04-16 11:18:38 +1000661 default:
Damien Miller78928792000-04-12 20:17:38 +1000662 mismatch = 1;
663 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000664 }
Damien Miller78928792000-04-12 20:17:38 +1000665 if (mismatch)
Damien Miller95def091999-11-25 00:26:21 +1100666 fatal("Protocol major versions differ: %d vs. %d",
Damien Miller78928792000-04-12 20:17:38 +1000667 (options.protocol & SSH_PROTO_2) ? PROTOCOL_MAJOR_2 : PROTOCOL_MAJOR_1,
668 remote_major);
Damien Miller58cd63b2014-01-10 10:59:24 +1100669 if ((datafellows & SSH_BUG_DERIVEKEY) != 0)
670 fatal("Server version \"%.100s\" uses unsafe key agreement; "
671 "refusing connection", remote_version);
Damien Miller324541e2013-12-31 12:25:40 +1100672 if ((datafellows & SSH_BUG_RSASIGMD5) != 0)
673 logit("Server version \"%.100s\" uses unsafe RSA signature "
674 "scheme; disabling use of RSA keys", remote_version);
Darren Tucker00c15182012-09-06 21:21:56 +1000675 if (!client_banner_sent)
676 send_client_banner(connection_out, minor1);
Damien Miller1383bd82000-04-06 12:32:37 +1000677 chop(server_version_string);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000678}
679
Ben Lindstromb6c06d92001-02-10 23:21:09 +0000680/* defaults to 'no' */
Ben Lindstrombba81212001-06-25 05:01:22 +0000681static int
Damien Millere3980042001-10-10 15:02:03 +1000682confirm(const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000683{
Damien Miller49d795c2002-01-22 23:34:12 +1100684 const char *msg, *again = "Please type 'yes' or 'no': ";
685 char *p;
686 int ret = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000687
Ben Lindstromb6c06d92001-02-10 23:21:09 +0000688 if (options.batch_mode)
689 return 0;
Damien Miller49d795c2002-01-22 23:34:12 +1100690 for (msg = prompt;;msg = again) {
691 p = read_passphrase(msg, RP_ECHO);
692 if (p == NULL ||
693 (p[0] == '\0') || (p[0] == '\n') ||
694 strncasecmp(p, "no", 2) == 0)
695 ret = 0;
Ben Lindstrom04f9af72002-07-04 00:03:56 +0000696 if (p && strncasecmp(p, "yes", 3) == 0)
Damien Miller49d795c2002-01-22 23:34:12 +1100697 ret = 1;
Darren Tuckera627d422013-06-02 07:31:17 +1000698 free(p);
Damien Miller49d795c2002-01-22 23:34:12 +1100699 if (ret != -1)
700 return ret;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000701 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000702}
703
Damien Miller0a80ca12010-02-27 07:55:05 +1100704static int
705check_host_cert(const char *host, const Key *host_key)
706{
707 const char *reason;
708
709 if (key_cert_check_authority(host_key, 1, 0, host, &reason) != 0) {
710 error("%s", reason);
711 return 0;
712 }
Damien Miller86687062014-07-02 15:28:02 +1000713 if (buffer_len(host_key->cert->critical) != 0) {
Damien Miller4e270b02010-04-16 15:56:21 +1000714 error("Certificate for %s contains unsupported "
715 "critical options(s)", host);
Damien Miller0a80ca12010-02-27 07:55:05 +1100716 return 0;
717 }
718 return 1;
719}
720
Damien Millerd925dcd2010-12-01 12:21:51 +1100721static int
722sockaddr_is_local(struct sockaddr *hostaddr)
723{
724 switch (hostaddr->sa_family) {
725 case AF_INET:
726 return (ntohl(((struct sockaddr_in *)hostaddr)->
727 sin_addr.s_addr) >> 24) == IN_LOOPBACKNET;
728 case AF_INET6:
729 return IN6_IS_ADDR_LOOPBACK(
730 &(((struct sockaddr_in6 *)hostaddr)->sin6_addr));
731 default:
732 return 0;
733 }
734}
735
736/*
737 * Prepare the hostname and ip address strings that are used to lookup
738 * host keys in known_hosts files. These may have a port number appended.
739 */
740void
741get_hostfile_hostname_ipaddr(char *hostname, struct sockaddr *hostaddr,
742 u_short port, char **hostfile_hostname, char **hostfile_ipaddr)
743{
744 char ntop[NI_MAXHOST];
745 socklen_t addrlen;
746
747 switch (hostaddr == NULL ? -1 : hostaddr->sa_family) {
748 case -1:
749 addrlen = 0;
750 break;
751 case AF_INET:
752 addrlen = sizeof(struct sockaddr_in);
753 break;
754 case AF_INET6:
755 addrlen = sizeof(struct sockaddr_in6);
756 break;
757 default:
758 addrlen = sizeof(struct sockaddr);
759 break;
760 }
761
762 /*
763 * We don't have the remote ip-address for connections
764 * using a proxy command
765 */
766 if (hostfile_ipaddr != NULL) {
767 if (options.proxy_command == NULL) {
768 if (getnameinfo(hostaddr, addrlen,
769 ntop, sizeof(ntop), NULL, 0, NI_NUMERICHOST) != 0)
770 fatal("check_host_key: getnameinfo failed");
771 *hostfile_ipaddr = put_host_port(ntop, port);
772 } else {
773 *hostfile_ipaddr = xstrdup("<no hostip for proxy "
774 "command>");
775 }
776 }
777
778 /*
779 * Allow the user to record the key under a different name or
780 * differentiate a non-standard port. This is useful for ssh
781 * tunneling over forwarded connections or if you run multiple
782 * sshd's on different ports on the same machine.
783 */
784 if (hostfile_hostname != NULL) {
785 if (options.host_key_alias != NULL) {
786 *hostfile_hostname = xstrdup(options.host_key_alias);
787 debug("using hostkeyalias: %s", *hostfile_hostname);
788 } else {
789 *hostfile_hostname = put_host_port(hostname, port);
790 }
791 }
792}
793
Damien Miller95def091999-11-25 00:26:21 +1100794/*
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000795 * check whether the supplied host key is valid, return -1 if the key
Damien Miller295ee632011-05-29 21:42:31 +1000796 * is not valid. user_hostfile[0] will not be updated if 'readonly' is true.
Damien Miller95def091999-11-25 00:26:21 +1100797 */
Damien Millerda828392006-08-05 11:35:45 +1000798#define RDRW 0
799#define RDONLY 1
800#define ROQUIET 2
Ben Lindstrombba81212001-06-25 05:01:22 +0000801static int
Damien Millerda828392006-08-05 11:35:45 +1000802check_host_key(char *hostname, struct sockaddr *hostaddr, u_short port,
Damien Miller295ee632011-05-29 21:42:31 +1000803 Key *host_key, int readonly,
804 char **user_hostfiles, u_int num_user_hostfiles,
805 char **system_hostfiles, u_int num_system_hostfiles)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000806{
Damien Miller95def091999-11-25 00:26:21 +1100807 HostStatus host_status;
808 HostStatus ip_status;
Damien Miller295ee632011-05-29 21:42:31 +1000809 Key *raw_key = NULL;
810 char *ip = NULL, *host = NULL;
811 char hostline[1000], *hostp, *fp, *ra;
Damien Miller49d795c2002-01-22 23:34:12 +1100812 char msg[1024];
Damien Miller295ee632011-05-29 21:42:31 +1000813 const char *type;
Damien Millerd925dcd2010-12-01 12:21:51 +1100814 const struct hostkey_entry *host_found, *ip_found;
Damien Miller295ee632011-05-29 21:42:31 +1000815 int len, cancelled_forwarding = 0;
816 int local = sockaddr_is_local(hostaddr);
817 int r, want_cert = key_is_cert(host_key), host_ip_differ = 0;
818 struct hostkeys *host_hostkeys, *ip_hostkeys;
819 u_int i;
Damien Miller34132e52000-01-14 15:45:46 +1100820
821 /*
822 * Force accepting of the host key for loopback/localhost. The
823 * problem is that if the home directory is NFS-mounted to multiple
824 * machines, localhost will refer to a different machine in each of
825 * them, and the user will get bogus HOST_CHANGED warnings. This
826 * essentially disables host authentication for localhost; however,
827 * this is probably not a real problem.
828 */
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +0000829 if (options.no_host_authentication_for_localhost == 1 && local &&
830 options.host_key_alias == NULL) {
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000831 debug("Forcing accepting of host key for "
832 "loopback/localhost.");
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000833 return 0;
Damien Miller34132e52000-01-14 15:45:46 +1100834 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000835
Damien Milleraae6c611999-12-06 11:47:28 +1100836 /*
Damien Millerd925dcd2010-12-01 12:21:51 +1100837 * Prepare the hostname and address strings used for hostkey lookup.
838 * In some cases, these will have a port number appended.
Damien Milleraae6c611999-12-06 11:47:28 +1100839 */
Damien Millerd925dcd2010-12-01 12:21:51 +1100840 get_hostfile_hostname_ipaddr(hostname, hostaddr, port, &host, &ip);
Darren Tucker78913e02008-06-13 04:47:34 +1000841
842 /*
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000843 * Turn off check_host_ip if the connection is to localhost, via proxy
844 * command or if we don't have a hostname to compare with
845 */
Darren Tuckerda345532006-07-10 23:04:19 +1000846 if (options.check_host_ip && (local ||
847 strcmp(hostname, ip) == 0 || options.proxy_command != NULL))
Damien Milleraae6c611999-12-06 11:47:28 +1100848 options.check_host_ip = 0;
849
Damien Millerd925dcd2010-12-01 12:21:51 +1100850 host_hostkeys = init_hostkeys();
Damien Miller295ee632011-05-29 21:42:31 +1000851 for (i = 0; i < num_user_hostfiles; i++)
852 load_hostkeys(host_hostkeys, host, user_hostfiles[i]);
853 for (i = 0; i < num_system_hostfiles; i++)
854 load_hostkeys(host_hostkeys, host, system_hostfiles[i]);
Damien Millerd925dcd2010-12-01 12:21:51 +1100855
856 ip_hostkeys = NULL;
857 if (!want_cert && options.check_host_ip) {
858 ip_hostkeys = init_hostkeys();
Damien Miller295ee632011-05-29 21:42:31 +1000859 for (i = 0; i < num_user_hostfiles; i++)
860 load_hostkeys(ip_hostkeys, ip, user_hostfiles[i]);
861 for (i = 0; i < num_system_hostfiles; i++)
862 load_hostkeys(ip_hostkeys, ip, system_hostfiles[i]);
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000863 }
864
Damien Miller0a80ca12010-02-27 07:55:05 +1100865 retry:
Damien Millerd925dcd2010-12-01 12:21:51 +1100866 /* Reload these as they may have changed on cert->key downgrade */
Damien Miller0a80ca12010-02-27 07:55:05 +1100867 want_cert = key_is_cert(host_key);
868 type = key_type(host_key);
869
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000870 /*
Damien Miller788f2122005-11-05 15:14:59 +1100871 * Check if the host key is present in the user's list of known
Damien Miller5428f641999-11-25 11:54:57 +1100872 * hosts or in the systemwide list.
873 */
Damien Millerd925dcd2010-12-01 12:21:51 +1100874 host_status = check_key_in_hostkeys(host_hostkeys, host_key,
875 &host_found);
876
Damien Miller5428f641999-11-25 11:54:57 +1100877 /*
Damien Miller5428f641999-11-25 11:54:57 +1100878 * Also perform check for the ip address, skip the check if we are
Damien Miller0a80ca12010-02-27 07:55:05 +1100879 * localhost, looking for a certificate, or the hostname was an ip
880 * address to begin with.
Damien Miller5428f641999-11-25 11:54:57 +1100881 */
Damien Millerd925dcd2010-12-01 12:21:51 +1100882 if (!want_cert && ip_hostkeys != NULL) {
883 ip_status = check_key_in_hostkeys(ip_hostkeys, host_key,
884 &ip_found);
Damien Miller95def091999-11-25 00:26:21 +1100885 if (host_status == HOST_CHANGED &&
Damien Millerd925dcd2010-12-01 12:21:51 +1100886 (ip_status != HOST_CHANGED ||
887 (ip_found != NULL &&
888 !key_equal(ip_found->key, host_found->key))))
Damien Miller95def091999-11-25 00:26:21 +1100889 host_ip_differ = 1;
Damien Miller95def091999-11-25 00:26:21 +1100890 } else
891 ip_status = host_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000892
Damien Miller95def091999-11-25 00:26:21 +1100893 switch (host_status) {
894 case HOST_OK:
895 /* The host is known and the key matches. */
Damien Miller0a80ca12010-02-27 07:55:05 +1100896 debug("Host '%.200s' is known and matches the %s host %s.",
897 host, type, want_cert ? "certificate" : "key");
Damien Millerd925dcd2010-12-01 12:21:51 +1100898 debug("Found %s in %s:%lu", want_cert ? "CA key" : "key",
899 host_found->file, host_found->line);
Damien Miller0a80ca12010-02-27 07:55:05 +1100900 if (want_cert && !check_host_cert(hostname, host_key))
901 goto fail;
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000902 if (options.check_host_ip && ip_status == HOST_NEW) {
Damien Miller0a80ca12010-02-27 07:55:05 +1100903 if (readonly || want_cert)
Damien Miller996acd22003-04-09 20:59:48 +1000904 logit("%s host key for IP address "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000905 "'%.128s' not in list of known hosts.",
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000906 type, ip);
Damien Miller295ee632011-05-29 21:42:31 +1000907 else if (!add_host_to_hostfile(user_hostfiles[0], ip,
Damien Millere1776152005-03-01 21:47:37 +1100908 host_key, options.hash_known_hosts))
Damien Miller996acd22003-04-09 20:59:48 +1000909 logit("Failed to add the %s host key for IP "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000910 "address '%.128s' to the list of known "
Damien Miller295ee632011-05-29 21:42:31 +1000911 "hosts (%.30s).", type, ip,
912 user_hostfiles[0]);
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000913 else
Damien Miller996acd22003-04-09 20:59:48 +1000914 logit("Warning: Permanently added the %s host "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000915 "key for IP address '%.128s' to the list "
916 "of known hosts.", type, ip);
Damien Miller10288242008-06-30 00:04:03 +1000917 } else if (options.visual_host_key) {
Darren Tucker9c16ac92008-06-13 04:40:35 +1000918 fp = key_fingerprint(host_key, SSH_FP_MD5, SSH_FP_HEX);
919 ra = key_fingerprint(host_key, SSH_FP_MD5,
920 SSH_FP_RANDOMART);
921 logit("Host key fingerprint is %s\n%s\n", fp, ra);
Darren Tuckera627d422013-06-02 07:31:17 +1000922 free(ra);
923 free(fp);
Damien Miller95def091999-11-25 00:26:21 +1100924 }
925 break;
926 case HOST_NEW:
Damien Millerda828392006-08-05 11:35:45 +1000927 if (options.host_key_alias == NULL && port != 0 &&
928 port != SSH_DEFAULT_PORT) {
929 debug("checking without port identifier");
Damien Millerece92c82008-11-03 19:25:03 +1100930 if (check_host_key(hostname, hostaddr, 0, host_key,
Damien Miller295ee632011-05-29 21:42:31 +1000931 ROQUIET, user_hostfiles, num_user_hostfiles,
932 system_hostfiles, num_system_hostfiles) == 0) {
Damien Millerda828392006-08-05 11:35:45 +1000933 debug("found matching key w/out port");
934 break;
935 }
936 }
Damien Miller0a80ca12010-02-27 07:55:05 +1100937 if (readonly || want_cert)
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000938 goto fail;
Damien Miller95def091999-11-25 00:26:21 +1100939 /* The host is new. */
940 if (options.strict_host_key_checking == 1) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000941 /*
942 * User has requested strict host key checking. We
943 * will not add the host key automatically. The only
944 * alternative left is to abort.
945 */
946 error("No %s host key is known for %.200s and you "
947 "have requested strict checking.", type, host);
948 goto fail;
Damien Miller95def091999-11-25 00:26:21 +1100949 } else if (options.strict_host_key_checking == 2) {
Damien Miller7392ae62003-06-11 22:05:25 +1000950 char msg1[1024], msg2[1024];
951
Damien Millerd925dcd2010-12-01 12:21:51 +1100952 if (show_other_keys(host_hostkeys, host_key))
Damien Miller7392ae62003-06-11 22:05:25 +1000953 snprintf(msg1, sizeof(msg1),
Damien Miller0dc1bef2005-07-17 17:22:45 +1000954 "\nbut keys of different type are already"
955 " known for this host.");
Damien Miller7392ae62003-06-11 22:05:25 +1000956 else
957 snprintf(msg1, sizeof(msg1), ".");
Damien Miller95def091999-11-25 00:26:21 +1100958 /* The default */
Ben Lindstromcfccef92001-03-13 04:57:58 +0000959 fp = key_fingerprint(host_key, SSH_FP_MD5, SSH_FP_HEX);
Darren Tucker9c16ac92008-06-13 04:40:35 +1000960 ra = key_fingerprint(host_key, SSH_FP_MD5,
961 SSH_FP_RANDOMART);
Damien Miller7392ae62003-06-11 22:05:25 +1000962 msg2[0] = '\0';
Damien Miller7392ae62003-06-11 22:05:25 +1000963 if (options.verify_host_key_dns) {
Damien Miller150b5572003-11-17 21:19:29 +1100964 if (matching_host_key_dns)
Damien Miller7392ae62003-06-11 22:05:25 +1000965 snprintf(msg2, sizeof(msg2),
966 "Matching host key fingerprint"
967 " found in DNS.\n");
968 else
969 snprintf(msg2, sizeof(msg2),
970 "No matching host key fingerprint"
971 " found in DNS.\n");
972 }
Damien Miller49d795c2002-01-22 23:34:12 +1100973 snprintf(msg, sizeof(msg),
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000974 "The authenticity of host '%.200s (%s)' can't be "
Ben Lindstrom3ed66402002-08-01 01:21:56 +0000975 "established%s\n"
Damien Miller10288242008-06-30 00:04:03 +1000976 "%s key fingerprint is %s.%s%s\n%s"
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000977 "Are you sure you want to continue connecting "
Ben Lindstrom3ed66402002-08-01 01:21:56 +0000978 "(yes/no)? ",
Damien Miller10288242008-06-30 00:04:03 +1000979 host, ip, msg1, type, fp,
980 options.visual_host_key ? "\n" : "",
981 options.visual_host_key ? ra : "",
982 msg2);
Darren Tuckera627d422013-06-02 07:31:17 +1000983 free(ra);
984 free(fp);
Damien Miller49d795c2002-01-22 23:34:12 +1100985 if (!confirm(msg))
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000986 goto fail;
Damien Miller95def091999-11-25 00:26:21 +1100987 }
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000988 /*
989 * If not in strict mode, add the key automatically to the
990 * local known_hosts file.
991 */
Damien Miller1227d4c2005-03-02 12:06:51 +1100992 if (options.check_host_ip && ip_status == HOST_NEW) {
Damien Millerd925dcd2010-12-01 12:21:51 +1100993 snprintf(hostline, sizeof(hostline), "%s,%s", host, ip);
Damien Miller1227d4c2005-03-02 12:06:51 +1100994 hostp = hostline;
995 if (options.hash_known_hosts) {
996 /* Add hash of host and IP separately */
Damien Miller295ee632011-05-29 21:42:31 +1000997 r = add_host_to_hostfile(user_hostfiles[0],
998 host, host_key, options.hash_known_hosts) &&
999 add_host_to_hostfile(user_hostfiles[0], ip,
Damien Miller1227d4c2005-03-02 12:06:51 +11001000 host_key, options.hash_known_hosts);
1001 } else {
1002 /* Add unhashed "host,ip" */
Damien Miller295ee632011-05-29 21:42:31 +10001003 r = add_host_to_hostfile(user_hostfiles[0],
Damien Miller1227d4c2005-03-02 12:06:51 +11001004 hostline, host_key,
1005 options.hash_known_hosts);
1006 }
1007 } else {
Damien Miller295ee632011-05-29 21:42:31 +10001008 r = add_host_to_hostfile(user_hostfiles[0], host,
1009 host_key, options.hash_known_hosts);
Damien Miller1227d4c2005-03-02 12:06:51 +11001010 hostp = host;
1011 }
1012
1013 if (!r)
Damien Miller996acd22003-04-09 20:59:48 +10001014 logit("Failed to add the host to the list of known "
Damien Miller295ee632011-05-29 21:42:31 +10001015 "hosts (%.500s).", user_hostfiles[0]);
Damien Miller95def091999-11-25 00:26:21 +11001016 else
Damien Miller996acd22003-04-09 20:59:48 +10001017 logit("Warning: Permanently added '%.200s' (%s) to the "
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001018 "list of known hosts.", hostp, type);
Damien Miller95def091999-11-25 00:26:21 +11001019 break;
Damien Miller1aed65e2010-03-04 21:53:35 +11001020 case HOST_REVOKED:
1021 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1022 error("@ WARNING: REVOKED HOST KEY DETECTED! @");
1023 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1024 error("The %s host key for %s is marked as revoked.", type, host);
1025 error("This could mean that a stolen key is being used to");
1026 error("impersonate this host.");
1027
1028 /*
1029 * If strict host key checking is in use, the user will have
1030 * to edit the key manually and we can only abort.
1031 */
1032 if (options.strict_host_key_checking) {
1033 error("%s host key for %.200s was revoked and you have "
1034 "requested strict checking.", type, host);
1035 goto fail;
1036 }
1037 goto continue_unsafe;
1038
Damien Miller95def091999-11-25 00:26:21 +11001039 case HOST_CHANGED:
Damien Miller0a80ca12010-02-27 07:55:05 +11001040 if (want_cert) {
1041 /*
1042 * This is only a debug() since it is valid to have
1043 * CAs with wildcard DNS matches that don't match
1044 * all hosts that one might visit.
1045 */
1046 debug("Host certificate authority does not "
Damien Millerd925dcd2010-12-01 12:21:51 +11001047 "match %s in %s:%lu", CA_MARKER,
1048 host_found->file, host_found->line);
Damien Miller0a80ca12010-02-27 07:55:05 +11001049 goto fail;
1050 }
Damien Millerda828392006-08-05 11:35:45 +10001051 if (readonly == ROQUIET)
1052 goto fail;
Damien Miller95def091999-11-25 00:26:21 +11001053 if (options.check_host_ip && host_ip_differ) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001054 char *key_msg;
Damien Miller95def091999-11-25 00:26:21 +11001055 if (ip_status == HOST_NEW)
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001056 key_msg = "is unknown";
Damien Miller95def091999-11-25 00:26:21 +11001057 else if (ip_status == HOST_OK)
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001058 key_msg = "is unchanged";
Damien Miller95def091999-11-25 00:26:21 +11001059 else
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001060 key_msg = "has a different value";
Damien Miller95def091999-11-25 00:26:21 +11001061 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1062 error("@ WARNING: POSSIBLE DNS SPOOFING DETECTED! @");
1063 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
Damien Millere247cc42000-05-07 12:03:14 +10001064 error("The %s host key for %s has changed,", type, host);
Darren Tuckerff4454d2008-06-13 10:21:51 +10001065 error("and the key for the corresponding IP address %s", ip);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001066 error("%s. This could either mean that", key_msg);
Damien Miller95def091999-11-25 00:26:21 +11001067 error("DNS SPOOFING is happening or the IP address for the host");
Ben Lindstrom46c16222000-12-22 01:43:59 +00001068 error("and its host key have changed at the same time.");
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +00001069 if (ip_status != HOST_NEW)
Damien Millerd925dcd2010-12-01 12:21:51 +11001070 error("Offending key for IP in %s:%lu",
1071 ip_found->file, ip_found->line);
Damien Miller95def091999-11-25 00:26:21 +11001072 }
1073 /* The host key has changed. */
Damien Miller5a388972003-11-17 21:10:47 +11001074 warn_changed_key(host_key);
Damien Miller95def091999-11-25 00:26:21 +11001075 error("Add correct host key in %.100s to get rid of this message.",
Damien Miller295ee632011-05-29 21:42:31 +10001076 user_hostfiles[0]);
Damien Millerd925dcd2010-12-01 12:21:51 +11001077 error("Offending %s key in %s:%lu", key_type(host_found->key),
1078 host_found->file, host_found->line);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001079
Damien Miller5428f641999-11-25 11:54:57 +11001080 /*
1081 * If strict host key checking is in use, the user will have
1082 * to edit the key manually and we can only abort.
1083 */
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001084 if (options.strict_host_key_checking) {
1085 error("%s host key for %.200s has changed and you have "
1086 "requested strict checking.", type, host);
1087 goto fail;
1088 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001089
Damien Miller1aed65e2010-03-04 21:53:35 +11001090 continue_unsafe:
Damien Miller5428f641999-11-25 11:54:57 +11001091 /*
1092 * If strict host key checking has not been requested, allow
Damien Miller941ac452003-06-04 20:31:53 +10001093 * the connection but without MITM-able authentication or
Damien Miller437edb92006-08-05 09:11:13 +10001094 * forwarding.
Damien Miller5428f641999-11-25 11:54:57 +11001095 */
Damien Miller95def091999-11-25 00:26:21 +11001096 if (options.password_authentication) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001097 error("Password authentication is disabled to avoid "
1098 "man-in-the-middle attacks.");
Damien Miller95def091999-11-25 00:26:21 +11001099 options.password_authentication = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001100 cancelled_forwarding = 1;
Damien Miller95def091999-11-25 00:26:21 +11001101 }
Damien Miller941ac452003-06-04 20:31:53 +10001102 if (options.kbd_interactive_authentication) {
1103 error("Keyboard-interactive authentication is disabled"
1104 " to avoid man-in-the-middle attacks.");
1105 options.kbd_interactive_authentication = 0;
1106 options.challenge_response_authentication = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001107 cancelled_forwarding = 1;
Damien Miller941ac452003-06-04 20:31:53 +10001108 }
1109 if (options.challenge_response_authentication) {
1110 error("Challenge/response authentication is disabled"
1111 " to avoid man-in-the-middle attacks.");
1112 options.challenge_response_authentication = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001113 cancelled_forwarding = 1;
Damien Miller941ac452003-06-04 20:31:53 +10001114 }
Damien Miller95def091999-11-25 00:26:21 +11001115 if (options.forward_agent) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001116 error("Agent forwarding is disabled to avoid "
1117 "man-in-the-middle attacks.");
Damien Miller95def091999-11-25 00:26:21 +11001118 options.forward_agent = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001119 cancelled_forwarding = 1;
Damien Miller95def091999-11-25 00:26:21 +11001120 }
Ben Lindstromc72745a2000-12-02 19:03:54 +00001121 if (options.forward_x11) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001122 error("X11 forwarding is disabled to avoid "
1123 "man-in-the-middle attacks.");
Ben Lindstromc72745a2000-12-02 19:03:54 +00001124 options.forward_x11 = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001125 cancelled_forwarding = 1;
Ben Lindstromc72745a2000-12-02 19:03:54 +00001126 }
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001127 if (options.num_local_forwards > 0 ||
1128 options.num_remote_forwards > 0) {
1129 error("Port forwarding is disabled to avoid "
1130 "man-in-the-middle attacks.");
1131 options.num_local_forwards =
Damien Miller9f0f5c62001-12-21 14:45:46 +11001132 options.num_remote_forwards = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001133 cancelled_forwarding = 1;
Ben Lindstromc72745a2000-12-02 19:03:54 +00001134 }
Damien Miller437edb92006-08-05 09:11:13 +10001135 if (options.tun_open != SSH_TUNMODE_NO) {
1136 error("Tunnel forwarding is disabled to avoid "
1137 "man-in-the-middle attacks.");
1138 options.tun_open = SSH_TUNMODE_NO;
Darren Tucker068e01f2008-07-02 22:33:55 +10001139 cancelled_forwarding = 1;
Damien Miller437edb92006-08-05 09:11:13 +10001140 }
Darren Tucker068e01f2008-07-02 22:33:55 +10001141 if (options.exit_on_forward_failure && cancelled_forwarding)
1142 fatal("Error: forwarding disabled due to host key "
1143 "check failure");
1144
Damien Miller5428f641999-11-25 11:54:57 +11001145 /*
1146 * XXX Should permit the user to change to use the new id.
1147 * This could be done by converting the host key to an
1148 * identifying sentence, tell that the host identifies itself
Darren Tuckere2b36742010-01-13 22:42:34 +11001149 * by that sentence, and ask the user if he/she wishes to
Damien Miller5428f641999-11-25 11:54:57 +11001150 * accept the authentication.
1151 */
Damien Miller95def091999-11-25 00:26:21 +11001152 break;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001153 case HOST_FOUND:
1154 fatal("internal error");
1155 break;
Damien Miller95def091999-11-25 00:26:21 +11001156 }
Ben Lindstromc72745a2000-12-02 19:03:54 +00001157
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +00001158 if (options.check_host_ip && host_status != HOST_CHANGED &&
1159 ip_status == HOST_CHANGED) {
Damien Miller49d795c2002-01-22 23:34:12 +11001160 snprintf(msg, sizeof(msg),
1161 "Warning: the %s host key for '%.200s' "
1162 "differs from the key for the IP address '%.128s'"
Damien Millerd925dcd2010-12-01 12:21:51 +11001163 "\nOffending key for IP in %s:%lu",
1164 type, host, ip, ip_found->file, ip_found->line);
Damien Miller49d795c2002-01-22 23:34:12 +11001165 if (host_status == HOST_OK) {
1166 len = strlen(msg);
1167 snprintf(msg + len, sizeof(msg) - len,
Damien Millerd925dcd2010-12-01 12:21:51 +11001168 "\nMatching host key in %s:%lu",
1169 host_found->file, host_found->line);
Damien Miller49d795c2002-01-22 23:34:12 +11001170 }
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +00001171 if (options.strict_host_key_checking == 1) {
Damien Millerab2db412003-06-02 19:09:13 +10001172 logit("%s", msg);
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001173 error("Exiting, you have requested strict checking.");
1174 goto fail;
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +00001175 } else if (options.strict_host_key_checking == 2) {
Damien Miller49d795c2002-01-22 23:34:12 +11001176 strlcat(msg, "\nAre you sure you want "
1177 "to continue connecting (yes/no)? ", sizeof(msg));
1178 if (!confirm(msg))
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001179 goto fail;
Damien Miller49d795c2002-01-22 23:34:12 +11001180 } else {
Damien Millerab2db412003-06-02 19:09:13 +10001181 logit("%s", msg);
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +00001182 }
1183 }
1184
Darren Tuckera627d422013-06-02 07:31:17 +10001185 free(ip);
1186 free(host);
Damien Millerd925dcd2010-12-01 12:21:51 +11001187 if (host_hostkeys != NULL)
1188 free_hostkeys(host_hostkeys);
1189 if (ip_hostkeys != NULL)
1190 free_hostkeys(ip_hostkeys);
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001191 return 0;
1192
1193fail:
Damien Miller1aed65e2010-03-04 21:53:35 +11001194 if (want_cert && host_status != HOST_REVOKED) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001195 /*
1196 * No matching certificate. Downgrade cert to raw key and
1197 * search normally.
1198 */
1199 debug("No matching CA found. Retry with plain key");
1200 raw_key = key_from_private(host_key);
1201 if (key_drop_cert(raw_key) != 0)
1202 fatal("Couldn't drop certificate");
1203 host_key = raw_key;
1204 goto retry;
1205 }
1206 if (raw_key != NULL)
1207 key_free(raw_key);
Darren Tuckera627d422013-06-02 07:31:17 +10001208 free(ip);
1209 free(host);
Damien Millerd925dcd2010-12-01 12:21:51 +11001210 if (host_hostkeys != NULL)
1211 free_hostkeys(host_hostkeys);
1212 if (ip_hostkeys != NULL)
1213 free_hostkeys(ip_hostkeys);
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001214 return -1;
1215}
1216
Damien Miller37876e92003-05-15 10:19:46 +10001217/* returns 0 if key verifies or -1 if key does NOT verify */
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001218int
1219verify_host_key(char *host, struct sockaddr *hostaddr, Key *host_key)
1220{
Damien Miller6b37fbb2014-07-04 08:59:24 +10001221 int r = -1, flags = 0;
Damien Millerd925dcd2010-12-01 12:21:51 +11001222 char *fp;
Damien Miller7d6a9fb2014-04-20 13:23:43 +10001223 Key *plain = NULL;
Damien Millerd925dcd2010-12-01 12:21:51 +11001224
1225 fp = key_fingerprint(host_key, SSH_FP_MD5, SSH_FP_HEX);
1226 debug("Server host key: %s %s", key_type(host_key), fp);
Darren Tuckera627d422013-06-02 07:31:17 +10001227 free(fp);
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001228
Damien Miller6b37fbb2014-07-04 08:59:24 +10001229 if (key_equal(previous_host_key, host_key)) {
1230 debug("%s: server host key matches cached key", __func__);
1231 return 0;
1232 }
1233
Damien Miller7d6a9fb2014-04-20 13:23:43 +10001234 if (options.verify_host_key_dns) {
1235 /*
1236 * XXX certs are not yet supported for DNS, so downgrade
1237 * them and try the plain key.
1238 */
1239 plain = key_from_private(host_key);
1240 if (key_is_cert(plain))
1241 key_drop_cert(plain);
1242 if (verify_host_key_dns(host, hostaddr, plain, &flags) == 0) {
1243 if (flags & DNS_VERIFY_FOUND) {
1244 if (options.verify_host_key_dns == 1 &&
1245 flags & DNS_VERIFY_MATCH &&
1246 flags & DNS_VERIFY_SECURE) {
1247 key_free(plain);
Damien Miller6b37fbb2014-07-04 08:59:24 +10001248 r = 0;
1249 goto done;
Damien Miller7d6a9fb2014-04-20 13:23:43 +10001250 }
1251 if (flags & DNS_VERIFY_MATCH) {
1252 matching_host_key_dns = 1;
1253 } else {
1254 warn_changed_key(plain);
1255 error("Update the SSHFP RR in DNS "
1256 "with the new host key to get rid "
1257 "of this message.");
1258 }
Damien Miller150b5572003-11-17 21:19:29 +11001259 }
Damien Miller37876e92003-05-15 10:19:46 +10001260 }
Damien Miller7d6a9fb2014-04-20 13:23:43 +10001261 key_free(plain);
Damien Miller37876e92003-05-15 10:19:46 +10001262 }
Damien Miller37876e92003-05-15 10:19:46 +10001263
Damien Miller6b37fbb2014-07-04 08:59:24 +10001264 r = check_host_key(host, hostaddr, options.port, host_key, RDRW,
Damien Miller295ee632011-05-29 21:42:31 +10001265 options.user_hostfiles, options.num_user_hostfiles,
1266 options.system_hostfiles, options.num_system_hostfiles);
Damien Miller6b37fbb2014-07-04 08:59:24 +10001267
1268done:
1269 if (r == 0 && host_key != NULL) {
1270 key_free(previous_host_key);
1271 previous_host_key = key_from_private(host_key);
1272 }
1273
1274 return r;
Damien Millera34a28b1999-12-14 10:47:15 +11001275}
Damien Miller037a0dc1999-12-07 15:38:31 +11001276
Damien Miller396691a2000-01-20 22:44:08 +11001277/*
1278 * Starts a dialog with the server, and authenticates the current user on the
1279 * server. This does not need any extra privileges. The basic connection
1280 * to the server must already have been established before this is called.
1281 * If login fails, this function prints an error and never returns.
1282 * This function does not require super-user privileges.
1283 */
1284void
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001285ssh_login(Sensitive *sensitive, const char *orighost,
Damien Millerd925dcd2010-12-01 12:21:51 +11001286 struct sockaddr *hostaddr, u_short port, struct passwd *pw, int timeout_ms)
Damien Miller396691a2000-01-20 22:44:08 +11001287{
Damien Miller0faf7472013-10-17 11:47:23 +11001288 char *host;
Damien Millereba71ba2000-04-29 23:57:08 +10001289 char *server_user, *local_user;
1290
Damien Millereba71ba2000-04-29 23:57:08 +10001291 local_user = xstrdup(pw->pw_name);
1292 server_user = options.user ? options.user : local_user;
Damien Miller396691a2000-01-20 22:44:08 +11001293
1294 /* Convert the user-supplied hostname into all lowercase. */
1295 host = xstrdup(orighost);
Damien Miller0faf7472013-10-17 11:47:23 +11001296 lowercase(host);
Damien Miller396691a2000-01-20 22:44:08 +11001297
1298 /* Exchange protocol version identification strings with the server. */
Damien Miller67bd0622007-09-17 12:06:57 +10001299 ssh_exchange_identification(timeout_ms);
Damien Miller396691a2000-01-20 22:44:08 +11001300
1301 /* Put the connection into non-blocking mode. */
1302 packet_set_nonblocking();
1303
Damien Miller396691a2000-01-20 22:44:08 +11001304 /* key exchange */
Damien Miller396691a2000-01-20 22:44:08 +11001305 /* authenticate user */
Damien Miller1383bd82000-04-06 12:32:37 +10001306 if (compat20) {
Damien Millerd925dcd2010-12-01 12:21:51 +11001307 ssh_kex2(host, hostaddr, port);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001308 ssh_userauth2(local_user, server_user, host, sensitive);
Damien Miller1383bd82000-04-06 12:32:37 +10001309 } else {
Damien Miller1f0311c2014-05-15 14:24:09 +10001310#ifdef WITH_SSH1
Damien Miller1383bd82000-04-06 12:32:37 +10001311 ssh_kex(host, hostaddr);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001312 ssh_userauth1(local_user, server_user, host, sensitive);
Damien Miller1f0311c2014-05-15 14:24:09 +10001313#else
1314 fatal("ssh1 is not unsupported");
1315#endif
Damien Miller1383bd82000-04-06 12:32:37 +10001316 }
Darren Tuckera627d422013-06-02 07:31:17 +10001317 free(local_user);
Damien Miller396691a2000-01-20 22:44:08 +11001318}
Damien Miller79438cc2001-02-16 12:34:57 +11001319
1320void
1321ssh_put_password(char *password)
1322{
1323 int size;
1324 char *padded;
1325
Ben Lindstromd20d0f32001-03-10 17:22:20 +00001326 if (datafellows & SSH_BUG_PASSWORDPAD) {
Ben Lindstrom664408d2001-06-09 01:42:01 +00001327 packet_put_cstring(password);
Ben Lindstromd20d0f32001-03-10 17:22:20 +00001328 return;
1329 }
Damien Miller79438cc2001-02-16 12:34:57 +11001330 size = roundup(strlen(password) + 1, 32);
Damien Miller07d86be2006-03-26 14:19:21 +11001331 padded = xcalloc(1, size);
Damien Miller79438cc2001-02-16 12:34:57 +11001332 strlcpy(padded, password, size);
1333 packet_put_string(padded, size);
Damien Millera5103f42014-02-04 11:20:14 +11001334 explicit_bzero(padded, size);
Darren Tuckera627d422013-06-02 07:31:17 +10001335 free(padded);
Damien Miller79438cc2001-02-16 12:34:57 +11001336}
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001337
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001338/* print all known host keys for a given host, but skip keys of given type */
1339static int
Damien Millerd925dcd2010-12-01 12:21:51 +11001340show_other_keys(struct hostkeys *hostkeys, Key *key)
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001341{
Damien Miller106bf1c2013-12-29 17:54:03 +11001342 int type[] = {
1343 KEY_RSA1,
1344 KEY_RSA,
1345 KEY_DSA,
1346 KEY_ECDSA,
1347 KEY_ED25519,
1348 -1
1349 };
Damien Millerd925dcd2010-12-01 12:21:51 +11001350 int i, ret = 0;
1351 char *fp, *ra;
1352 const struct hostkey_entry *found;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001353
1354 for (i = 0; type[i] != -1; i++) {
1355 if (type[i] == key->type)
1356 continue;
Damien Millerd925dcd2010-12-01 12:21:51 +11001357 if (!lookup_key_in_hostkeys_by_type(hostkeys, type[i], &found))
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001358 continue;
Damien Millerd925dcd2010-12-01 12:21:51 +11001359 fp = key_fingerprint(found->key, SSH_FP_MD5, SSH_FP_HEX);
1360 ra = key_fingerprint(found->key, SSH_FP_MD5, SSH_FP_RANDOMART);
1361 logit("WARNING: %s key found for host %s\n"
1362 "in %s:%lu\n"
1363 "%s key fingerprint %s.",
1364 key_type(found->key),
1365 found->host, found->file, found->line,
1366 key_type(found->key), fp);
1367 if (options.visual_host_key)
1368 logit("%s", ra);
Darren Tuckera627d422013-06-02 07:31:17 +10001369 free(ra);
1370 free(fp);
Damien Millerd925dcd2010-12-01 12:21:51 +11001371 ret = 1;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001372 }
Damien Millerd925dcd2010-12-01 12:21:51 +11001373 return ret;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001374}
Damien Miller5a388972003-11-17 21:10:47 +11001375
1376static void
1377warn_changed_key(Key *host_key)
1378{
1379 char *fp;
Damien Miller5a388972003-11-17 21:10:47 +11001380
1381 fp = key_fingerprint(host_key, SSH_FP_MD5, SSH_FP_HEX);
1382
1383 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1384 error("@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @");
1385 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1386 error("IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!");
1387 error("Someone could be eavesdropping on you right now (man-in-the-middle attack)!");
Damien Miller05c89972011-01-06 22:42:04 +11001388 error("It is also possible that a host key has just been changed.");
Damien Miller5a388972003-11-17 21:10:47 +11001389 error("The fingerprint for the %s key sent by the remote host is\n%s.",
Damien Miller05c89972011-01-06 22:42:04 +11001390 key_type(host_key), fp);
Damien Miller5a388972003-11-17 21:10:47 +11001391 error("Please contact your system administrator.");
1392
Darren Tuckera627d422013-06-02 07:31:17 +10001393 free(fp);
Damien Miller5a388972003-11-17 21:10:47 +11001394}
Damien Millerd27b9472005-12-13 19:29:02 +11001395
1396/*
1397 * Execute a local command
1398 */
1399int
1400ssh_local_cmd(const char *args)
1401{
1402 char *shell;
1403 pid_t pid;
1404 int status;
Damien Millered3a8eb2011-01-07 10:02:52 +11001405 void (*osighand)(int);
Damien Millerd27b9472005-12-13 19:29:02 +11001406
1407 if (!options.permit_local_command ||
1408 args == NULL || !*args)
1409 return (1);
1410
Damien Miller38d9a962010-10-07 22:07:11 +11001411 if ((shell = getenv("SHELL")) == NULL || *shell == '\0')
Damien Millerd27b9472005-12-13 19:29:02 +11001412 shell = _PATH_BSHELL;
1413
Damien Millered3a8eb2011-01-07 10:02:52 +11001414 osighand = signal(SIGCHLD, SIG_DFL);
Damien Millerd27b9472005-12-13 19:29:02 +11001415 pid = fork();
1416 if (pid == 0) {
Damien Miller6fb6fd52011-01-16 23:17:45 +11001417 signal(SIGPIPE, SIG_DFL);
Damien Millerd27b9472005-12-13 19:29:02 +11001418 debug3("Executing %s -c \"%s\"", shell, args);
1419 execl(shell, shell, "-c", args, (char *)NULL);
1420 error("Couldn't execute %s -c \"%s\": %s",
1421 shell, args, strerror(errno));
1422 _exit(1);
1423 } else if (pid == -1)
1424 fatal("fork failed: %.100s", strerror(errno));
1425 while (waitpid(pid, &status, 0) == -1)
1426 if (errno != EINTR)
1427 fatal("Couldn't wait for child: %s", strerror(errno));
Damien Millered3a8eb2011-01-07 10:02:52 +11001428 signal(SIGCHLD, osighand);
Damien Millerd27b9472005-12-13 19:29:02 +11001429
1430 if (!WIFEXITED(status))
1431 return (1);
1432
1433 return (WEXITSTATUS(status));
1434}