blob: dc7a704d2a2d9600425cd434ce43fba57a0d5eb9 [file] [log] [blame]
djm@openbsd.orgaea59a02017-09-14 04:32:21 +00001/* $OpenBSD: sshconnect.c,v 1.287 2017/09/14 04:32:21 djm 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>
djm@openbsd.org45404282017-06-24 05:37:44 +000037#ifdef HAVE_POLL_H
38#include <poll.h>
39#endif
Damien Miller9c0c31d2010-10-12 13:30:44 +110040#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100041#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100042#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100043#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100044#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100045#include <unistd.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100046
Damien Millerd4a8b7e1999-10-27 13:42:43 +100047#include "xmalloc.h"
Damien Millerd7834352006-08-05 12:39:39 +100048#include "key.h"
49#include "hostfile.h"
50#include "ssh.h"
Damien Miller1383bd82000-04-06 12:32:37 +100051#include "buffer.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100052#include "packet.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053#include "uidswap.h"
54#include "compat.h"
Damien Miller450a7a12000-03-26 13:04:51 +100055#include "key.h"
Damien Millereba71ba2000-04-29 23:57:08 +100056#include "sshconnect.h"
Damien Miller450a7a12000-03-26 13:04:51 +100057#include "hostfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000058#include "log.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100059#include "misc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000060#include "readconf.h"
61#include "atomicio.h"
Damien Miller37876e92003-05-15 10:19:46 +100062#include "dns.h"
Damien Miller1262b662013-08-21 02:44:24 +100063#include "monitor_fdpass.h"
Damien Miller0a80ca12010-02-27 07:55:05 +110064#include "ssh2.h"
Damien Millerb7576772006-07-10 20:23:39 +100065#include "version.h"
djm@openbsd.org5e39a492014-12-04 02:24:32 +000066#include "authfile.h"
67#include "ssherr.h"
jcs@openbsd.orgf361df42015-11-15 22:26:49 +000068#include "authfd.h"
Damien Miller37876e92003-05-15 10:19:46 +100069
Damien Millereba71ba2000-04-29 23:57:08 +100070char *client_version_string = NULL;
71char *server_version_string = NULL;
markus@openbsd.org54d90ac2017-05-30 08:52:19 +000072struct sshkey *previous_host_key = NULL;
Damien Miller1383bd82000-04-06 12:32:37 +100073
Damien Millerc1af1d52005-11-05 15:08:57 +110074static int matching_host_key_dns = 0;
Damien Miller7392ae62003-06-11 22:05:25 +100075
Damien Millera41ccca2010-10-07 22:07:32 +110076static pid_t proxy_command_pid = 0;
77
Ben Lindstromf9c48842002-06-11 16:37:51 +000078/* import */
Damien Milleraae6c611999-12-06 11:47:28 +110079extern Options options;
Damien Miller34132e52000-01-14 15:45:46 +110080extern char *__progname;
Ben Lindstromf9c48842002-06-11 16:37:51 +000081extern uid_t original_real_uid;
82extern uid_t original_effective_uid;
Damien Milleraae6c611999-12-06 11:47:28 +110083
markus@openbsd.org54d90ac2017-05-30 08:52:19 +000084static int show_other_keys(struct hostkeys *, struct sshkey *);
85static void warn_changed_key(struct sshkey *);
Ben Lindstrom3ed66402002-08-01 01:21:56 +000086
Damien Miller1262b662013-08-21 02:44:24 +100087/* Expand a proxy command */
88static char *
89expand_proxy_command(const char *proxy_command, const char *user,
90 const char *host, int port)
91{
92 char *tmp, *ret, strport[NI_MAXSERV];
93
Damien Miller0faf7472013-10-17 11:47:23 +110094 snprintf(strport, sizeof strport, "%d", port);
Damien Miller1262b662013-08-21 02:44:24 +100095 xasprintf(&tmp, "exec %s", proxy_command);
96 ret = percent_expand(tmp, "h", host, "p", strport,
97 "r", options.user, (char *)NULL);
98 free(tmp);
99 return ret;
100}
101
102/*
103 * Connect to the given ssh server using a proxy command that passes a
104 * a connected fd back to us.
105 */
106static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000107ssh_proxy_fdpass_connect(struct ssh *ssh, const char *host, u_short port,
Damien Miller1262b662013-08-21 02:44:24 +1000108 const char *proxy_command)
109{
110 char *command_string;
111 int sp[2], sock;
112 pid_t pid;
113 char *shell;
114
115 if ((shell = getenv("SHELL")) == NULL)
116 shell = _PATH_BSHELL;
117
118 if (socketpair(AF_UNIX, SOCK_STREAM, 0, sp) < 0)
119 fatal("Could not create socketpair to communicate with "
120 "proxy dialer: %.100s", strerror(errno));
121
122 command_string = expand_proxy_command(proxy_command, options.user,
123 host, port);
124 debug("Executing proxy dialer command: %.500s", command_string);
125
126 /* Fork and execute the proxy command. */
127 if ((pid = fork()) == 0) {
128 char *argv[10];
129
130 /* Child. Permanently give up superuser privileges. */
131 permanently_drop_suid(original_real_uid);
132
133 close(sp[1]);
134 /* Redirect stdin and stdout. */
135 if (sp[0] != 0) {
136 if (dup2(sp[0], 0) < 0)
137 perror("dup2 stdin");
138 }
139 if (sp[0] != 1) {
140 if (dup2(sp[0], 1) < 0)
141 perror("dup2 stdout");
142 }
143 if (sp[0] >= 2)
144 close(sp[0]);
145
146 /*
147 * Stderr is left as it is so that error messages get
148 * printed on the user's terminal.
149 */
150 argv[0] = shell;
151 argv[1] = "-c";
152 argv[2] = command_string;
153 argv[3] = NULL;
154
155 /*
156 * Execute the proxy command.
157 * Note that we gave up any extra privileges above.
158 */
159 execv(argv[0], argv);
160 perror(argv[0]);
161 exit(1);
162 }
163 /* Parent. */
164 if (pid < 0)
165 fatal("fork failed: %.100s", strerror(errno));
166 close(sp[0]);
167 free(command_string);
168
169 if ((sock = mm_receive_fd(sp[1])) == -1)
170 fatal("proxy dialer did not pass back a connection");
markus@openbsd.orgfc77ccd2016-01-14 22:56:56 +0000171 close(sp[1]);
Damien Miller1262b662013-08-21 02:44:24 +1000172
173 while (waitpid(pid, NULL, 0) == -1)
174 if (errno != EINTR)
175 fatal("Couldn't wait for child: %s", strerror(errno));
176
177 /* Set the connection file descriptors. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000178 if (ssh_packet_set_connection(ssh, sock, sock) == NULL)
179 return -1; /* ssh_packet_set_connection logs error */
Damien Miller1262b662013-08-21 02:44:24 +1000180
181 return 0;
182}
183
Damien Miller95def091999-11-25 00:26:21 +1100184/*
185 * Connect to the given ssh server using a proxy command.
186 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000187static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000188ssh_proxy_connect(struct ssh *ssh, const char *host, u_short port,
189 const char *proxy_command)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000190{
Damien Miller1262b662013-08-21 02:44:24 +1000191 char *command_string;
Damien Miller95def091999-11-25 00:26:21 +1100192 int pin[2], pout[2];
Damien Miller166fca82000-04-20 07:42:21 +1000193 pid_t pid;
Damien Miller1262b662013-08-21 02:44:24 +1000194 char *shell;
Damien Miller1d824ab2007-09-17 11:58:04 +1000195
Damien Miller38d9a962010-10-07 22:07:11 +1100196 if ((shell = getenv("SHELL")) == NULL || *shell == '\0')
Damien Miller1d824ab2007-09-17 11:58:04 +1000197 shell = _PATH_BSHELL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000198
Damien Miller95def091999-11-25 00:26:21 +1100199 /* Create pipes for communicating with the proxy. */
200 if (pipe(pin) < 0 || pipe(pout) < 0)
201 fatal("Could not create pipes to communicate with the proxy: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100202 strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000203
Damien Miller1262b662013-08-21 02:44:24 +1000204 command_string = expand_proxy_command(proxy_command, options.user,
205 host, port);
Damien Miller95def091999-11-25 00:26:21 +1100206 debug("Executing proxy command: %.500s", command_string);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000207
Damien Miller95def091999-11-25 00:26:21 +1100208 /* Fork and execute the proxy command. */
209 if ((pid = fork()) == 0) {
210 char *argv[10];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000211
Damien Miller95def091999-11-25 00:26:21 +1100212 /* Child. Permanently give up superuser privileges. */
Damien Miller2e5fe882006-06-13 13:10:00 +1000213 permanently_drop_suid(original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100214
215 /* Redirect stdin and stdout. */
216 close(pin[1]);
217 if (pin[0] != 0) {
218 if (dup2(pin[0], 0) < 0)
219 perror("dup2 stdin");
220 close(pin[0]);
221 }
222 close(pout[0]);
223 if (dup2(pout[1], 1) < 0)
224 perror("dup2 stdout");
225 /* Cannot be 1 because pin allocated two descriptors. */
226 close(pout[1]);
227
228 /* Stderr is left as it is so that error messages get
229 printed on the user's terminal. */
Damien Miller1d824ab2007-09-17 11:58:04 +1000230 argv[0] = shell;
Damien Miller95def091999-11-25 00:26:21 +1100231 argv[1] = "-c";
232 argv[2] = command_string;
233 argv[3] = NULL;
234
235 /* Execute the proxy command. Note that we gave up any
236 extra privileges above. */
Damien Miller6fb6fd52011-01-16 23:17:45 +1100237 signal(SIGPIPE, SIG_DFL);
Kevin Stevesfcd5d602001-01-07 11:45:22 +0000238 execv(argv[0], argv);
239 perror(argv[0]);
Damien Miller95def091999-11-25 00:26:21 +1100240 exit(1);
241 }
242 /* Parent. */
243 if (pid < 0)
244 fatal("fork failed: %.100s", strerror(errno));
Damien Miller8c4e18a2002-09-19 12:05:02 +1000245 else
246 proxy_command_pid = pid; /* save pid to clean up later */
Damien Miller95def091999-11-25 00:26:21 +1100247
248 /* Close child side of the descriptors. */
249 close(pin[0]);
250 close(pout[1]);
251
252 /* Free the command name. */
Darren Tuckera627d422013-06-02 07:31:17 +1000253 free(command_string);
Damien Miller95def091999-11-25 00:26:21 +1100254
255 /* Set the connection file descriptors. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000256 if (ssh_packet_set_connection(ssh, pout[0], pin[1]) == NULL)
257 return -1; /* ssh_packet_set_connection logs error */
Damien Miller95def091999-11-25 00:26:21 +1100258
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000259 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000260}
261
Damien Millera41ccca2010-10-07 22:07:32 +1100262void
263ssh_kill_proxy_command(void)
264{
265 /*
266 * Send SIGHUP to proxy command if used. We don't wait() in
267 * case it hangs and instead rely on init to reap the child
268 */
269 if (proxy_command_pid > 1)
Damien Miller45fcdaa2010-10-07 22:07:58 +1100270 kill(proxy_command_pid, SIGHUP);
Damien Millera41ccca2010-10-07 22:07:32 +1100271}
272
Damien Miller95def091999-11-25 00:26:21 +1100273/*
274 * Creates a (possibly privileged) socket for use as the ssh connection.
275 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000276static int
Damien Miller2372ace2003-05-14 13:42:23 +1000277ssh_create_socket(int privileged, struct addrinfo *ai)
Damien Miller95def091999-11-25 00:26:21 +1100278{
Darren Tuckere6e52f82013-10-10 10:28:07 +1100279 int sock, r, gaierr;
Damien Millerd1a7a9c2014-02-07 09:24:33 +1100280 struct addrinfo hints, *res = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000281
Darren Tucker7bd98e72010-01-10 10:31:12 +1100282 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Darren Tucker6e7fe1c2010-01-08 17:07:22 +1100283 if (sock < 0) {
Darren Tuckere6e52f82013-10-10 10:28:07 +1100284 error("socket: %s", strerror(errno));
Darren Tucker6e7fe1c2010-01-08 17:07:22 +1100285 return -1;
286 }
287 fcntl(sock, F_SETFD, FD_CLOEXEC);
Ben Lindstrome0f88042001-04-30 13:06:24 +0000288
289 /* Bind the socket to an alternative local IP address */
Darren Tuckere6e52f82013-10-10 10:28:07 +1100290 if (options.bind_address == NULL && !privileged)
Ben Lindstrome0f88042001-04-30 13:06:24 +0000291 return sock;
292
Damien Millerd1a7a9c2014-02-07 09:24:33 +1100293 if (options.bind_address) {
294 memset(&hints, 0, sizeof(hints));
295 hints.ai_family = ai->ai_family;
296 hints.ai_socktype = ai->ai_socktype;
297 hints.ai_protocol = ai->ai_protocol;
298 hints.ai_flags = AI_PASSIVE;
299 gaierr = getaddrinfo(options.bind_address, NULL, &hints, &res);
300 if (gaierr) {
301 error("getaddrinfo: %s: %s", options.bind_address,
302 ssh_gai_strerror(gaierr));
303 close(sock);
304 return -1;
305 }
Ben Lindstrome0f88042001-04-30 13:06:24 +0000306 }
Darren Tuckere6e52f82013-10-10 10:28:07 +1100307 /*
308 * If we are running as root and want to connect to a privileged
309 * port, bind our own socket to a privileged port.
310 */
311 if (privileged) {
312 PRIV_START;
Damien Millerd1a7a9c2014-02-07 09:24:33 +1100313 r = bindresvport_sa(sock, res ? res->ai_addr : NULL);
Darren Tuckere6e52f82013-10-10 10:28:07 +1100314 PRIV_END;
315 if (r < 0) {
316 error("bindresvport_sa: af=%d %s", ai->ai_family,
317 strerror(errno));
318 goto fail;
319 }
320 } else {
321 if (bind(sock, res->ai_addr, res->ai_addrlen) < 0) {
322 error("bind: %s: %s", options.bind_address,
323 strerror(errno));
324 fail:
325 close(sock);
326 freeaddrinfo(res);
327 return -1;
328 }
Ben Lindstrome0f88042001-04-30 13:06:24 +0000329 }
Damien Millerd1a7a9c2014-02-07 09:24:33 +1100330 if (res != NULL)
331 freeaddrinfo(res);
Damien Miller95def091999-11-25 00:26:21 +1100332 return sock;
333}
334
djm@openbsd.org45404282017-06-24 05:37:44 +0000335/*
336 * Wait up to *timeoutp milliseconds for fd to be readable. Updates
337 * *timeoutp with time remaining.
338 * Returns 0 if fd ready or -1 on timeout or error (see errno).
339 */
340static int
341waitrfd(int fd, int *timeoutp)
342{
343 struct pollfd pfd;
344 struct timeval t_start;
345 int oerrno, r;
346
347 gettimeofday(&t_start, NULL);
348 pfd.fd = fd;
349 pfd.events = POLLIN;
350 for (; *timeoutp >= 0;) {
351 r = poll(&pfd, 1, *timeoutp);
352 oerrno = errno;
353 ms_subtract_diff(&t_start, timeoutp);
354 errno = oerrno;
355 if (r > 0)
356 return 0;
357 else if (r == -1 && errno != EAGAIN)
358 return -1;
359 else if (r == 0)
360 break;
361 }
362 /* timeout */
363 errno = ETIMEDOUT;
364 return -1;
365}
366
Damien Millerb78d5eb2003-05-16 11:39:04 +1000367static int
368timeout_connect(int sockfd, const struct sockaddr *serv_addr,
Damien Miller67bd0622007-09-17 12:06:57 +1000369 socklen_t addrlen, int *timeoutp)
Damien Millerb78d5eb2003-05-16 11:39:04 +1000370{
djm@openbsd.org45404282017-06-24 05:37:44 +0000371 int optval = 0;
372 socklen_t optlen = sizeof(optval);
Damien Millerb78d5eb2003-05-16 11:39:04 +1000373
djm@openbsd.org45404282017-06-24 05:37:44 +0000374 /* No timeout: just do a blocking connect() */
375 if (*timeoutp <= 0)
376 return connect(sockfd, serv_addr, addrlen);
Damien Millerb78d5eb2003-05-16 11:39:04 +1000377
Damien Millerf6723f02004-01-27 21:21:27 +1100378 set_nonblock(sockfd);
djm@openbsd.org45404282017-06-24 05:37:44 +0000379 if (connect(sockfd, serv_addr, addrlen) == 0) {
380 /* Succeeded already? */
Damien Millerf6723f02004-01-27 21:21:27 +1100381 unset_nonblock(sockfd);
djm@openbsd.org45404282017-06-24 05:37:44 +0000382 return 0;
383 } else if (errno != EINPROGRESS)
384 return -1;
385
386 if (waitrfd(sockfd, timeoutp) == -1)
387 return -1;
388
389 /* Completed or failed */
390 if (getsockopt(sockfd, SOL_SOCKET, SO_ERROR, &optval, &optlen) == -1) {
391 debug("getsockopt: %s", strerror(errno));
392 return -1;
Damien Millerf6723f02004-01-27 21:21:27 +1100393 }
djm@openbsd.org45404282017-06-24 05:37:44 +0000394 if (optval != 0) {
395 errno = optval;
396 return -1;
Damien Miller67bd0622007-09-17 12:06:57 +1000397 }
djm@openbsd.org45404282017-06-24 05:37:44 +0000398 unset_nonblock(sockfd);
399 return 0;
Damien Millerb78d5eb2003-05-16 11:39:04 +1000400}
401
Damien Miller95def091999-11-25 00:26:21 +1100402/*
Damien Miller34132e52000-01-14 15:45:46 +1100403 * Opens a TCP/IP connection to the remote server on the given host.
404 * The address of the remote host will be returned in hostaddr.
Ben Lindstromf9c48842002-06-11 16:37:51 +0000405 * If port is 0, the default port will be used. If needpriv is true,
Damien Miller95def091999-11-25 00:26:21 +1100406 * a privileged port will be allocated to make the connection.
Ben Lindstromf9c48842002-06-11 16:37:51 +0000407 * This requires super-user privileges if needpriv is true.
Damien Miller95def091999-11-25 00:26:21 +1100408 * Connection_attempts specifies the maximum number of tries (one per
409 * second). If proxy_command is non-NULL, it specifies the command (with %h
410 * and %p substituted for host and port, respectively) to use to contact
411 * the daemon.
412 */
Damien Miller0faf7472013-10-17 11:47:23 +1100413static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000414ssh_connect_direct(struct ssh *ssh, const char *host, struct addrinfo *aitop,
Damien Miller0faf7472013-10-17 11:47:23 +1100415 struct sockaddr_storage *hostaddr, u_short port, int family,
416 int connection_attempts, int *timeout_ms, int want_keepalive, int needpriv)
Damien Miller95def091999-11-25 00:26:21 +1100417{
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000418 int on = 1;
419 int sock = -1, attempt;
420 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller0faf7472013-10-17 11:47:23 +1100421 struct addrinfo *ai;
Damien Miller95def091999-11-25 00:26:21 +1100422
djm@openbsd.org46152af2015-09-04 04:55:24 +0000423 debug2("%s: needpriv %d", __func__, needpriv);
djm@openbsd.org88b6fcd2015-11-19 08:23:27 +0000424 memset(ntop, 0, sizeof(ntop));
425 memset(strport, 0, sizeof(strport));
Damien Miller95def091999-11-25 00:26:21 +1100426
Damien Miller56e5e6a2006-04-23 12:08:59 +1000427 for (attempt = 0; attempt < connection_attempts; attempt++) {
Damien Millerf4bcd102006-10-24 03:02:23 +1000428 if (attempt > 0) {
429 /* Sleep a moment before retrying. */
430 sleep(1);
Damien Miller95def091999-11-25 00:26:21 +1100431 debug("Trying again...");
Damien Millerf4bcd102006-10-24 03:02:23 +1000432 }
Damien Miller56e5e6a2006-04-23 12:08:59 +1000433 /*
434 * Loop through addresses for this host, and try each one in
435 * sequence until the connection succeeds.
436 */
Damien Miller34132e52000-01-14 15:45:46 +1100437 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller0faf7472013-10-17 11:47:23 +1100438 if (ai->ai_family != AF_INET &&
439 ai->ai_family != AF_INET6)
Damien Miller34132e52000-01-14 15:45:46 +1100440 continue;
441 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
442 ntop, sizeof(ntop), strport, sizeof(strport),
443 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
djm@openbsd.org46152af2015-09-04 04:55:24 +0000444 error("%s: getnameinfo failed", __func__);
Damien Miller34132e52000-01-14 15:45:46 +1100445 continue;
446 }
447 debug("Connecting to %.200s [%.100s] port %s.",
448 host, ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +1100449
Damien Miller34132e52000-01-14 15:45:46 +1100450 /* Create a socket for connecting. */
Damien Miller2372ace2003-05-14 13:42:23 +1000451 sock = ssh_create_socket(needpriv, ai);
Damien Miller34132e52000-01-14 15:45:46 +1100452 if (sock < 0)
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000453 /* Any error is already output */
Damien Miller34132e52000-01-14 15:45:46 +1100454 continue;
Damien Miller95def091999-11-25 00:26:21 +1100455
Damien Millerb78d5eb2003-05-16 11:39:04 +1000456 if (timeout_connect(sock, ai->ai_addr, ai->ai_addrlen,
Damien Miller67bd0622007-09-17 12:06:57 +1000457 timeout_ms) >= 0) {
Damien Miller34132e52000-01-14 15:45:46 +1100458 /* Successful connection. */
Ben Lindstroma3700052001-04-05 23:26:32 +0000459 memcpy(hostaddr, ai->ai_addr, ai->ai_addrlen);
Damien Miller95def091999-11-25 00:26:21 +1100460 break;
Damien Miller34132e52000-01-14 15:45:46 +1100461 } else {
Ben Lindstrom728aa7e2002-07-15 17:48:11 +0000462 debug("connect to address %s port %s: %s",
463 ntop, strport, strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100464 close(sock);
Damien Miller56e5e6a2006-04-23 12:08:59 +1000465 sock = -1;
Damien Miller95def091999-11-25 00:26:21 +1100466 }
Damien Miller95def091999-11-25 00:26:21 +1100467 }
Damien Miller56e5e6a2006-04-23 12:08:59 +1000468 if (sock != -1)
Damien Miller34132e52000-01-14 15:45:46 +1100469 break; /* Successful connection. */
Damien Miller95def091999-11-25 00:26:21 +1100470 }
Damien Miller34132e52000-01-14 15:45:46 +1100471
Damien Miller95def091999-11-25 00:26:21 +1100472 /* Return failure if we didn't get a successful connection. */
Damien Miller56e5e6a2006-04-23 12:08:59 +1000473 if (sock == -1) {
Darren Tuckerb2161e32005-01-20 11:00:46 +1100474 error("ssh: connect to host %s port %s: %s",
Ben Lindstroma6cd75c2002-07-11 04:00:19 +0000475 host, strport, strerror(errno));
Darren Tuckerb2161e32005-01-20 11:00:46 +1100476 return (-1);
Ben Lindstroma6cd75c2002-07-11 04:00:19 +0000477 }
Damien Miller95def091999-11-25 00:26:21 +1100478
479 debug("Connection established.");
480
Damien Miller12c150e2003-12-17 16:31:10 +1100481 /* Set SO_KEEPALIVE if requested. */
Damien Miller67bd0622007-09-17 12:06:57 +1000482 if (want_keepalive &&
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000483 setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE, (void *)&on,
484 sizeof(on)) < 0)
485 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100486
487 /* Set the connection. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000488 if (ssh_packet_set_connection(ssh, sock, sock) == NULL)
489 return -1; /* ssh_packet_set_connection logs error */
Damien Miller95def091999-11-25 00:26:21 +1100490
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000491 return 0;
Damien Miller95def091999-11-25 00:26:21 +1100492}
493
Damien Miller0faf7472013-10-17 11:47:23 +1100494int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000495ssh_connect(struct ssh *ssh, const char *host, struct addrinfo *addrs,
Damien Miller0faf7472013-10-17 11:47:23 +1100496 struct sockaddr_storage *hostaddr, u_short port, int family,
497 int connection_attempts, int *timeout_ms, int want_keepalive, int needpriv)
498{
499 if (options.proxy_command == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000500 return ssh_connect_direct(ssh, host, addrs, hostaddr, port,
501 family, connection_attempts, timeout_ms, want_keepalive,
502 needpriv);
Damien Miller0faf7472013-10-17 11:47:23 +1100503 } else if (strcmp(options.proxy_command, "-") == 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000504 if ((ssh_packet_set_connection(ssh,
505 STDIN_FILENO, STDOUT_FILENO)) == NULL)
506 return -1; /* ssh_packet_set_connection logs error */
507 return 0;
Damien Miller0faf7472013-10-17 11:47:23 +1100508 } else if (options.proxy_use_fdpass) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000509 return ssh_proxy_fdpass_connect(ssh, host, port,
Damien Miller0faf7472013-10-17 11:47:23 +1100510 options.proxy_command);
511 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000512 return ssh_proxy_connect(ssh, host, port, options.proxy_command);
Damien Miller0faf7472013-10-17 11:47:23 +1100513}
514
Darren Tucker00c15182012-09-06 21:21:56 +1000515static void
516send_client_banner(int connection_out, int minor1)
517{
Darren Tucker00c15182012-09-06 21:21:56 +1000518 /* Send our own protocol version identification. */
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000519 xasprintf(&client_version_string, "SSH-%d.%d-%.100s\r\n",
520 PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2, SSH_VERSION);
markus@openbsd.orga3068632016-01-14 16:17:39 +0000521 if (atomicio(vwrite, connection_out, client_version_string,
Darren Tucker00c15182012-09-06 21:21:56 +1000522 strlen(client_version_string)) != strlen(client_version_string))
523 fatal("write: %.100s", strerror(errno));
524 chop(client_version_string);
525 debug("Local version string %.100s", client_version_string);
526}
527
Damien Milleraae6c611999-12-06 11:47:28 +1100528/*
Damien Miller95def091999-11-25 00:26:21 +1100529 * Waits for the server identification string, and sends our own
530 * identification string.
531 */
Darren Tucker1cc55d72009-06-21 18:17:19 +1000532void
Damien Miller67bd0622007-09-17 12:06:57 +1000533ssh_exchange_identification(int timeout_ms)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000534{
Damien Miller95def091999-11-25 00:26:21 +1100535 char buf[256], remote_version[256]; /* must be same size! */
Damien Millereccb9de2005-06-17 12:59:34 +1000536 int remote_major, remote_minor, mismatch;
Damien Miller95def091999-11-25 00:26:21 +1100537 int connection_in = packet_get_connection_in();
538 int connection_out = packet_get_connection_out();
Damien Miller1e88ea62006-07-10 20:15:56 +1000539 u_int i, n;
Damien Miller67bd0622007-09-17 12:06:57 +1000540 size_t len;
djm@openbsd.org45404282017-06-24 05:37:44 +0000541 int rc;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000542
djm@openbsd.org99f95ba2017-04-30 23:11:45 +0000543 send_client_banner(connection_out, 0);
Darren Tucker00c15182012-09-06 21:21:56 +1000544
Damien Millerb253cc42005-05-26 12:23:44 +1000545 /* Read other side's version identification. */
Damien Miller1e88ea62006-07-10 20:15:56 +1000546 for (n = 0;;) {
Damien Millerf6d9e222000-06-18 14:50:44 +1000547 for (i = 0; i < sizeof(buf) - 1; i++) {
Damien Miller67bd0622007-09-17 12:06:57 +1000548 if (timeout_ms > 0) {
djm@openbsd.org45404282017-06-24 05:37:44 +0000549 rc = waitrfd(connection_in, &timeout_ms);
550 if (rc == -1 && errno == ETIMEDOUT) {
Damien Miller67bd0622007-09-17 12:06:57 +1000551 fatal("Connection timed out during "
552 "banner exchange");
djm@openbsd.org45404282017-06-24 05:37:44 +0000553 } else if (rc == -1) {
554 fatal("%s: %s",
555 __func__, strerror(errno));
Damien Miller67bd0622007-09-17 12:06:57 +1000556 }
557 }
558
markus@openbsd.orga3068632016-01-14 16:17:39 +0000559 len = atomicio(read, connection_in, &buf[i], 1);
Damien Miller46d38de2005-07-17 17:02:09 +1000560 if (len != 1 && errno == EPIPE)
Damien Miller67bd0622007-09-17 12:06:57 +1000561 fatal("ssh_exchange_identification: "
562 "Connection closed by remote host");
Damien Millerb253cc42005-05-26 12:23:44 +1000563 else if (len != 1)
Damien Miller67bd0622007-09-17 12:06:57 +1000564 fatal("ssh_exchange_identification: "
565 "read: %.100s", strerror(errno));
Damien Millerf6d9e222000-06-18 14:50:44 +1000566 if (buf[i] == '\r') {
567 buf[i] = '\n';
568 buf[i + 1] = 0;
569 continue; /**XXX wait for \n */
570 }
571 if (buf[i] == '\n') {
572 buf[i + 1] = 0;
573 break;
574 }
Damien Miller1e88ea62006-07-10 20:15:56 +1000575 if (++n > 65536)
Damien Miller67bd0622007-09-17 12:06:57 +1000576 fatal("ssh_exchange_identification: "
577 "No banner received");
Damien Miller95def091999-11-25 00:26:21 +1100578 }
Damien Millerf6d9e222000-06-18 14:50:44 +1000579 buf[sizeof(buf) - 1] = 0;
580 if (strncmp(buf, "SSH-", 4) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100581 break;
Damien Millerf6d9e222000-06-18 14:50:44 +1000582 debug("ssh_exchange_identification: %s", buf);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000583 }
Damien Miller1383bd82000-04-06 12:32:37 +1000584 server_version_string = xstrdup(buf);
Damien Miller95def091999-11-25 00:26:21 +1100585
Damien Miller5428f641999-11-25 11:54:57 +1100586 /*
587 * Check that the versions match. In future this might accept
588 * several versions and set appropriate flags to handle them.
589 */
Damien Miller1383bd82000-04-06 12:32:37 +1000590 if (sscanf(server_version_string, "SSH-%d.%d-%[^\n]\n",
591 &remote_major, &remote_minor, remote_version) != 3)
Damien Miller95def091999-11-25 00:26:21 +1100592 fatal("Bad remote protocol version identification: '%.100s'", buf);
593 debug("Remote protocol version %d.%d, remote software version %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100594 remote_major, remote_minor, remote_version);
Damien Miller95def091999-11-25 00:26:21 +1100595
markus@openbsd.org48b3b2b2015-01-19 20:20:20 +0000596 active_state->compat = compat_datafellows(remote_version);
Damien Miller78928792000-04-12 20:17:38 +1000597 mismatch = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000598
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000599 switch (remote_major) {
Damien Miller78928792000-04-12 20:17:38 +1000600 case 2:
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000601 break;
602 case 1:
603 if (remote_minor != 99)
604 mismatch = 1;
djm@openbsd.org99f95ba2017-04-30 23:11:45 +0000605 break;
Damien Miller4af51302000-04-16 11:18:38 +1000606 default:
Damien Miller78928792000-04-12 20:17:38 +1000607 mismatch = 1;
608 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000609 }
Damien Miller78928792000-04-12 20:17:38 +1000610 if (mismatch)
Damien Miller95def091999-11-25 00:26:21 +1100611 fatal("Protocol major versions differ: %d vs. %d",
djm@openbsd.org99f95ba2017-04-30 23:11:45 +0000612 PROTOCOL_MAJOR_2, remote_major);
Damien Miller58cd63b2014-01-10 10:59:24 +1100613 if ((datafellows & SSH_BUG_DERIVEKEY) != 0)
614 fatal("Server version \"%.100s\" uses unsafe key agreement; "
615 "refusing connection", remote_version);
Damien Miller324541e2013-12-31 12:25:40 +1100616 if ((datafellows & SSH_BUG_RSASIGMD5) != 0)
617 logit("Server version \"%.100s\" uses unsafe RSA signature "
618 "scheme; disabling use of RSA keys", remote_version);
Damien Miller1383bd82000-04-06 12:32:37 +1000619 chop(server_version_string);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000620}
621
Ben Lindstromb6c06d92001-02-10 23:21:09 +0000622/* defaults to 'no' */
Ben Lindstrombba81212001-06-25 05:01:22 +0000623static int
Damien Millere3980042001-10-10 15:02:03 +1000624confirm(const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000625{
Damien Miller49d795c2002-01-22 23:34:12 +1100626 const char *msg, *again = "Please type 'yes' or 'no': ";
627 char *p;
628 int ret = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000629
Ben Lindstromb6c06d92001-02-10 23:21:09 +0000630 if (options.batch_mode)
631 return 0;
Damien Miller49d795c2002-01-22 23:34:12 +1100632 for (msg = prompt;;msg = again) {
633 p = read_passphrase(msg, RP_ECHO);
634 if (p == NULL ||
635 (p[0] == '\0') || (p[0] == '\n') ||
636 strncasecmp(p, "no", 2) == 0)
637 ret = 0;
Ben Lindstrom04f9af72002-07-04 00:03:56 +0000638 if (p && strncasecmp(p, "yes", 3) == 0)
Damien Miller49d795c2002-01-22 23:34:12 +1100639 ret = 1;
Darren Tuckera627d422013-06-02 07:31:17 +1000640 free(p);
Damien Miller49d795c2002-01-22 23:34:12 +1100641 if (ret != -1)
642 return ret;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000643 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000644}
645
Damien Miller0a80ca12010-02-27 07:55:05 +1100646static int
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000647check_host_cert(const char *host, const struct sshkey *host_key)
Damien Miller0a80ca12010-02-27 07:55:05 +1100648{
649 const char *reason;
650
651 if (key_cert_check_authority(host_key, 1, 0, host, &reason) != 0) {
652 error("%s", reason);
653 return 0;
654 }
Damien Miller86687062014-07-02 15:28:02 +1000655 if (buffer_len(host_key->cert->critical) != 0) {
Damien Miller4e270b02010-04-16 15:56:21 +1000656 error("Certificate for %s contains unsupported "
657 "critical options(s)", host);
Damien Miller0a80ca12010-02-27 07:55:05 +1100658 return 0;
659 }
660 return 1;
661}
662
Damien Millerd925dcd2010-12-01 12:21:51 +1100663static int
664sockaddr_is_local(struct sockaddr *hostaddr)
665{
666 switch (hostaddr->sa_family) {
667 case AF_INET:
668 return (ntohl(((struct sockaddr_in *)hostaddr)->
669 sin_addr.s_addr) >> 24) == IN_LOOPBACKNET;
670 case AF_INET6:
671 return IN6_IS_ADDR_LOOPBACK(
672 &(((struct sockaddr_in6 *)hostaddr)->sin6_addr));
673 default:
674 return 0;
675 }
676}
677
678/*
679 * Prepare the hostname and ip address strings that are used to lookup
680 * host keys in known_hosts files. These may have a port number appended.
681 */
682void
683get_hostfile_hostname_ipaddr(char *hostname, struct sockaddr *hostaddr,
684 u_short port, char **hostfile_hostname, char **hostfile_ipaddr)
685{
686 char ntop[NI_MAXHOST];
687 socklen_t addrlen;
688
689 switch (hostaddr == NULL ? -1 : hostaddr->sa_family) {
690 case -1:
691 addrlen = 0;
692 break;
693 case AF_INET:
694 addrlen = sizeof(struct sockaddr_in);
695 break;
696 case AF_INET6:
697 addrlen = sizeof(struct sockaddr_in6);
698 break;
699 default:
700 addrlen = sizeof(struct sockaddr);
701 break;
702 }
703
704 /*
705 * We don't have the remote ip-address for connections
706 * using a proxy command
707 */
708 if (hostfile_ipaddr != NULL) {
709 if (options.proxy_command == NULL) {
710 if (getnameinfo(hostaddr, addrlen,
711 ntop, sizeof(ntop), NULL, 0, NI_NUMERICHOST) != 0)
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000712 fatal("%s: getnameinfo failed", __func__);
Damien Millerd925dcd2010-12-01 12:21:51 +1100713 *hostfile_ipaddr = put_host_port(ntop, port);
714 } else {
715 *hostfile_ipaddr = xstrdup("<no hostip for proxy "
716 "command>");
717 }
718 }
719
720 /*
721 * Allow the user to record the key under a different name or
722 * differentiate a non-standard port. This is useful for ssh
723 * tunneling over forwarded connections or if you run multiple
724 * sshd's on different ports on the same machine.
725 */
726 if (hostfile_hostname != NULL) {
727 if (options.host_key_alias != NULL) {
728 *hostfile_hostname = xstrdup(options.host_key_alias);
729 debug("using hostkeyalias: %s", *hostfile_hostname);
730 } else {
731 *hostfile_hostname = put_host_port(hostname, port);
732 }
733 }
734}
735
Damien Miller95def091999-11-25 00:26:21 +1100736/*
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000737 * check whether the supplied host key is valid, return -1 if the key
Damien Miller295ee632011-05-29 21:42:31 +1000738 * is not valid. user_hostfile[0] will not be updated if 'readonly' is true.
Damien Miller95def091999-11-25 00:26:21 +1100739 */
Damien Millerda828392006-08-05 11:35:45 +1000740#define RDRW 0
741#define RDONLY 1
742#define ROQUIET 2
Ben Lindstrombba81212001-06-25 05:01:22 +0000743static int
Damien Millerda828392006-08-05 11:35:45 +1000744check_host_key(char *hostname, struct sockaddr *hostaddr, u_short port,
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000745 struct sshkey *host_key, int readonly,
Damien Miller295ee632011-05-29 21:42:31 +1000746 char **user_hostfiles, u_int num_user_hostfiles,
747 char **system_hostfiles, u_int num_system_hostfiles)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000748{
Damien Miller95def091999-11-25 00:26:21 +1100749 HostStatus host_status;
750 HostStatus ip_status;
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000751 struct sshkey *raw_key = NULL;
Damien Miller295ee632011-05-29 21:42:31 +1000752 char *ip = NULL, *host = NULL;
753 char hostline[1000], *hostp, *fp, *ra;
Damien Miller49d795c2002-01-22 23:34:12 +1100754 char msg[1024];
Damien Miller295ee632011-05-29 21:42:31 +1000755 const char *type;
Damien Millerd925dcd2010-12-01 12:21:51 +1100756 const struct hostkey_entry *host_found, *ip_found;
Damien Miller295ee632011-05-29 21:42:31 +1000757 int len, cancelled_forwarding = 0;
758 int local = sockaddr_is_local(hostaddr);
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +0000759 int r, want_cert = sshkey_is_cert(host_key), host_ip_differ = 0;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000760 int hostkey_trusted = 0; /* Known or explicitly accepted by user */
Damien Miller295ee632011-05-29 21:42:31 +1000761 struct hostkeys *host_hostkeys, *ip_hostkeys;
762 u_int i;
Damien Miller34132e52000-01-14 15:45:46 +1100763
764 /*
765 * Force accepting of the host key for loopback/localhost. The
766 * problem is that if the home directory is NFS-mounted to multiple
767 * machines, localhost will refer to a different machine in each of
768 * them, and the user will get bogus HOST_CHANGED warnings. This
769 * essentially disables host authentication for localhost; however,
770 * this is probably not a real problem.
771 */
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +0000772 if (options.no_host_authentication_for_localhost == 1 && local &&
773 options.host_key_alias == NULL) {
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000774 debug("Forcing accepting of host key for "
775 "loopback/localhost.");
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000776 return 0;
Damien Miller34132e52000-01-14 15:45:46 +1100777 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000778
Damien Milleraae6c611999-12-06 11:47:28 +1100779 /*
Damien Millerd925dcd2010-12-01 12:21:51 +1100780 * Prepare the hostname and address strings used for hostkey lookup.
781 * In some cases, these will have a port number appended.
Damien Milleraae6c611999-12-06 11:47:28 +1100782 */
Damien Millerd925dcd2010-12-01 12:21:51 +1100783 get_hostfile_hostname_ipaddr(hostname, hostaddr, port, &host, &ip);
Darren Tucker78913e02008-06-13 04:47:34 +1000784
785 /*
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000786 * Turn off check_host_ip if the connection is to localhost, via proxy
787 * command or if we don't have a hostname to compare with
788 */
Darren Tuckerda345532006-07-10 23:04:19 +1000789 if (options.check_host_ip && (local ||
790 strcmp(hostname, ip) == 0 || options.proxy_command != NULL))
Damien Milleraae6c611999-12-06 11:47:28 +1100791 options.check_host_ip = 0;
792
Damien Millerd925dcd2010-12-01 12:21:51 +1100793 host_hostkeys = init_hostkeys();
Damien Miller295ee632011-05-29 21:42:31 +1000794 for (i = 0; i < num_user_hostfiles; i++)
795 load_hostkeys(host_hostkeys, host, user_hostfiles[i]);
796 for (i = 0; i < num_system_hostfiles; i++)
797 load_hostkeys(host_hostkeys, host, system_hostfiles[i]);
Damien Millerd925dcd2010-12-01 12:21:51 +1100798
799 ip_hostkeys = NULL;
800 if (!want_cert && options.check_host_ip) {
801 ip_hostkeys = init_hostkeys();
Damien Miller295ee632011-05-29 21:42:31 +1000802 for (i = 0; i < num_user_hostfiles; i++)
803 load_hostkeys(ip_hostkeys, ip, user_hostfiles[i]);
804 for (i = 0; i < num_system_hostfiles; i++)
805 load_hostkeys(ip_hostkeys, ip, system_hostfiles[i]);
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000806 }
807
Damien Miller0a80ca12010-02-27 07:55:05 +1100808 retry:
Damien Millerd925dcd2010-12-01 12:21:51 +1100809 /* Reload these as they may have changed on cert->key downgrade */
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +0000810 want_cert = sshkey_is_cert(host_key);
811 type = sshkey_type(host_key);
Damien Miller0a80ca12010-02-27 07:55:05 +1100812
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000813 /*
Damien Miller788f2122005-11-05 15:14:59 +1100814 * Check if the host key is present in the user's list of known
Damien Miller5428f641999-11-25 11:54:57 +1100815 * hosts or in the systemwide list.
816 */
Damien Millerd925dcd2010-12-01 12:21:51 +1100817 host_status = check_key_in_hostkeys(host_hostkeys, host_key,
818 &host_found);
819
Damien Miller5428f641999-11-25 11:54:57 +1100820 /*
Damien Miller5428f641999-11-25 11:54:57 +1100821 * Also perform check for the ip address, skip the check if we are
Damien Miller0a80ca12010-02-27 07:55:05 +1100822 * localhost, looking for a certificate, or the hostname was an ip
823 * address to begin with.
Damien Miller5428f641999-11-25 11:54:57 +1100824 */
Damien Millerd925dcd2010-12-01 12:21:51 +1100825 if (!want_cert && ip_hostkeys != NULL) {
826 ip_status = check_key_in_hostkeys(ip_hostkeys, host_key,
827 &ip_found);
Damien Miller95def091999-11-25 00:26:21 +1100828 if (host_status == HOST_CHANGED &&
Damien Millerd925dcd2010-12-01 12:21:51 +1100829 (ip_status != HOST_CHANGED ||
830 (ip_found != NULL &&
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +0000831 !sshkey_equal(ip_found->key, host_found->key))))
Damien Miller95def091999-11-25 00:26:21 +1100832 host_ip_differ = 1;
Damien Miller95def091999-11-25 00:26:21 +1100833 } else
834 ip_status = host_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000835
Damien Miller95def091999-11-25 00:26:21 +1100836 switch (host_status) {
837 case HOST_OK:
838 /* The host is known and the key matches. */
Damien Miller0a80ca12010-02-27 07:55:05 +1100839 debug("Host '%.200s' is known and matches the %s host %s.",
840 host, type, want_cert ? "certificate" : "key");
Damien Millerd925dcd2010-12-01 12:21:51 +1100841 debug("Found %s in %s:%lu", want_cert ? "CA key" : "key",
842 host_found->file, host_found->line);
djm@openbsd.org6f8ca3b2017-06-24 05:35:05 +0000843 if (want_cert &&
844 !check_host_cert(options.host_key_alias == NULL ?
845 hostname : options.host_key_alias, host_key))
Damien Miller0a80ca12010-02-27 07:55:05 +1100846 goto fail;
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000847 if (options.check_host_ip && ip_status == HOST_NEW) {
Damien Miller0a80ca12010-02-27 07:55:05 +1100848 if (readonly || want_cert)
Damien Miller996acd22003-04-09 20:59:48 +1000849 logit("%s host key for IP address "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000850 "'%.128s' not in list of known hosts.",
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000851 type, ip);
Damien Miller295ee632011-05-29 21:42:31 +1000852 else if (!add_host_to_hostfile(user_hostfiles[0], ip,
Damien Millere1776152005-03-01 21:47:37 +1100853 host_key, options.hash_known_hosts))
Damien Miller996acd22003-04-09 20:59:48 +1000854 logit("Failed to add the %s host key for IP "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000855 "address '%.128s' to the list of known "
dtucker@openbsd.org496aeb22015-05-28 05:41:29 +0000856 "hosts (%.500s).", type, ip,
Damien Miller295ee632011-05-29 21:42:31 +1000857 user_hostfiles[0]);
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000858 else
Damien Miller996acd22003-04-09 20:59:48 +1000859 logit("Warning: Permanently added the %s host "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000860 "key for IP address '%.128s' to the list "
861 "of known hosts.", type, ip);
Damien Miller10288242008-06-30 00:04:03 +1000862 } else if (options.visual_host_key) {
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000863 fp = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000864 options.fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000865 ra = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000866 options.fingerprint_hash, SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000867 if (fp == NULL || ra == NULL)
868 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.orgac3451d2015-09-04 03:57:38 +0000869 logit("Host key fingerprint is %s\n%s", fp, ra);
Darren Tuckera627d422013-06-02 07:31:17 +1000870 free(ra);
871 free(fp);
Damien Miller95def091999-11-25 00:26:21 +1100872 }
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000873 hostkey_trusted = 1;
Damien Miller95def091999-11-25 00:26:21 +1100874 break;
875 case HOST_NEW:
Damien Millerda828392006-08-05 11:35:45 +1000876 if (options.host_key_alias == NULL && port != 0 &&
877 port != SSH_DEFAULT_PORT) {
878 debug("checking without port identifier");
Damien Millerece92c82008-11-03 19:25:03 +1100879 if (check_host_key(hostname, hostaddr, 0, host_key,
Damien Miller295ee632011-05-29 21:42:31 +1000880 ROQUIET, user_hostfiles, num_user_hostfiles,
881 system_hostfiles, num_system_hostfiles) == 0) {
Damien Millerda828392006-08-05 11:35:45 +1000882 debug("found matching key w/out port");
883 break;
884 }
885 }
Damien Miller0a80ca12010-02-27 07:55:05 +1100886 if (readonly || want_cert)
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000887 goto fail;
Damien Miller95def091999-11-25 00:26:21 +1100888 /* The host is new. */
djm@openbsd.org22376d22017-09-03 23:33:13 +0000889 if (options.strict_host_key_checking ==
890 SSH_STRICT_HOSTKEY_YES) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000891 /*
892 * User has requested strict host key checking. We
893 * will not add the host key automatically. The only
894 * alternative left is to abort.
895 */
896 error("No %s host key is known for %.200s and you "
897 "have requested strict checking.", type, host);
898 goto fail;
djm@openbsd.org22376d22017-09-03 23:33:13 +0000899 } else if (options.strict_host_key_checking ==
900 SSH_STRICT_HOSTKEY_ASK) {
Damien Miller7392ae62003-06-11 22:05:25 +1000901 char msg1[1024], msg2[1024];
902
Damien Millerd925dcd2010-12-01 12:21:51 +1100903 if (show_other_keys(host_hostkeys, host_key))
Damien Miller7392ae62003-06-11 22:05:25 +1000904 snprintf(msg1, sizeof(msg1),
Damien Miller0dc1bef2005-07-17 17:22:45 +1000905 "\nbut keys of different type are already"
906 " known for this host.");
Damien Miller7392ae62003-06-11 22:05:25 +1000907 else
908 snprintf(msg1, sizeof(msg1), ".");
Damien Miller95def091999-11-25 00:26:21 +1100909 /* The default */
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000910 fp = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000911 options.fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000912 ra = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000913 options.fingerprint_hash, SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000914 if (fp == NULL || ra == NULL)
915 fatal("%s: sshkey_fingerprint fail", __func__);
Damien Miller7392ae62003-06-11 22:05:25 +1000916 msg2[0] = '\0';
Damien Miller7392ae62003-06-11 22:05:25 +1000917 if (options.verify_host_key_dns) {
Damien Miller150b5572003-11-17 21:19:29 +1100918 if (matching_host_key_dns)
Damien Miller7392ae62003-06-11 22:05:25 +1000919 snprintf(msg2, sizeof(msg2),
920 "Matching host key fingerprint"
921 " found in DNS.\n");
922 else
923 snprintf(msg2, sizeof(msg2),
924 "No matching host key fingerprint"
925 " found in DNS.\n");
926 }
Damien Miller49d795c2002-01-22 23:34:12 +1100927 snprintf(msg, sizeof(msg),
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000928 "The authenticity of host '%.200s (%s)' can't be "
Ben Lindstrom3ed66402002-08-01 01:21:56 +0000929 "established%s\n"
Damien Miller10288242008-06-30 00:04:03 +1000930 "%s key fingerprint is %s.%s%s\n%s"
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000931 "Are you sure you want to continue connecting "
Ben Lindstrom3ed66402002-08-01 01:21:56 +0000932 "(yes/no)? ",
Damien Miller10288242008-06-30 00:04:03 +1000933 host, ip, msg1, type, fp,
934 options.visual_host_key ? "\n" : "",
935 options.visual_host_key ? ra : "",
936 msg2);
Darren Tuckera627d422013-06-02 07:31:17 +1000937 free(ra);
938 free(fp);
Damien Miller49d795c2002-01-22 23:34:12 +1100939 if (!confirm(msg))
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000940 goto fail;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000941 hostkey_trusted = 1; /* user explicitly confirmed */
Damien Miller95def091999-11-25 00:26:21 +1100942 }
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000943 /*
djm@openbsd.org22376d22017-09-03 23:33:13 +0000944 * If in "new" or "off" strict mode, add the key automatically
945 * to the local known_hosts file.
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000946 */
Damien Miller1227d4c2005-03-02 12:06:51 +1100947 if (options.check_host_ip && ip_status == HOST_NEW) {
Damien Millerd925dcd2010-12-01 12:21:51 +1100948 snprintf(hostline, sizeof(hostline), "%s,%s", host, ip);
Damien Miller1227d4c2005-03-02 12:06:51 +1100949 hostp = hostline;
950 if (options.hash_known_hosts) {
951 /* Add hash of host and IP separately */
Damien Miller295ee632011-05-29 21:42:31 +1000952 r = add_host_to_hostfile(user_hostfiles[0],
953 host, host_key, options.hash_known_hosts) &&
954 add_host_to_hostfile(user_hostfiles[0], ip,
Damien Miller1227d4c2005-03-02 12:06:51 +1100955 host_key, options.hash_known_hosts);
956 } else {
957 /* Add unhashed "host,ip" */
Damien Miller295ee632011-05-29 21:42:31 +1000958 r = add_host_to_hostfile(user_hostfiles[0],
Damien Miller1227d4c2005-03-02 12:06:51 +1100959 hostline, host_key,
960 options.hash_known_hosts);
961 }
962 } else {
Damien Miller295ee632011-05-29 21:42:31 +1000963 r = add_host_to_hostfile(user_hostfiles[0], host,
964 host_key, options.hash_known_hosts);
Damien Miller1227d4c2005-03-02 12:06:51 +1100965 hostp = host;
966 }
967
968 if (!r)
Damien Miller996acd22003-04-09 20:59:48 +1000969 logit("Failed to add the host to the list of known "
Damien Miller295ee632011-05-29 21:42:31 +1000970 "hosts (%.500s).", user_hostfiles[0]);
Damien Miller95def091999-11-25 00:26:21 +1100971 else
Damien Miller996acd22003-04-09 20:59:48 +1000972 logit("Warning: Permanently added '%.200s' (%s) to the "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000973 "list of known hosts.", hostp, type);
Damien Miller95def091999-11-25 00:26:21 +1100974 break;
Damien Miller1aed65e2010-03-04 21:53:35 +1100975 case HOST_REVOKED:
976 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
977 error("@ WARNING: REVOKED HOST KEY DETECTED! @");
978 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
979 error("The %s host key for %s is marked as revoked.", type, host);
980 error("This could mean that a stolen key is being used to");
981 error("impersonate this host.");
982
983 /*
984 * If strict host key checking is in use, the user will have
985 * to edit the key manually and we can only abort.
986 */
djm@openbsd.org22376d22017-09-03 23:33:13 +0000987 if (options.strict_host_key_checking !=
988 SSH_STRICT_HOSTKEY_OFF) {
Damien Miller1aed65e2010-03-04 21:53:35 +1100989 error("%s host key for %.200s was revoked and you have "
990 "requested strict checking.", type, host);
991 goto fail;
992 }
993 goto continue_unsafe;
994
Damien Miller95def091999-11-25 00:26:21 +1100995 case HOST_CHANGED:
Damien Miller0a80ca12010-02-27 07:55:05 +1100996 if (want_cert) {
997 /*
998 * This is only a debug() since it is valid to have
999 * CAs with wildcard DNS matches that don't match
1000 * all hosts that one might visit.
1001 */
1002 debug("Host certificate authority does not "
Damien Millerd925dcd2010-12-01 12:21:51 +11001003 "match %s in %s:%lu", CA_MARKER,
1004 host_found->file, host_found->line);
Damien Miller0a80ca12010-02-27 07:55:05 +11001005 goto fail;
1006 }
Damien Millerda828392006-08-05 11:35:45 +10001007 if (readonly == ROQUIET)
1008 goto fail;
Damien Miller95def091999-11-25 00:26:21 +11001009 if (options.check_host_ip && host_ip_differ) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001010 char *key_msg;
Damien Miller95def091999-11-25 00:26:21 +11001011 if (ip_status == HOST_NEW)
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001012 key_msg = "is unknown";
Damien Miller95def091999-11-25 00:26:21 +11001013 else if (ip_status == HOST_OK)
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001014 key_msg = "is unchanged";
Damien Miller95def091999-11-25 00:26:21 +11001015 else
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001016 key_msg = "has a different value";
Damien Miller95def091999-11-25 00:26:21 +11001017 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1018 error("@ WARNING: POSSIBLE DNS SPOOFING DETECTED! @");
1019 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
Damien Millere247cc42000-05-07 12:03:14 +10001020 error("The %s host key for %s has changed,", type, host);
Darren Tuckerff4454d2008-06-13 10:21:51 +10001021 error("and the key for the corresponding IP address %s", ip);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001022 error("%s. This could either mean that", key_msg);
Damien Miller95def091999-11-25 00:26:21 +11001023 error("DNS SPOOFING is happening or the IP address for the host");
Ben Lindstrom46c16222000-12-22 01:43:59 +00001024 error("and its host key have changed at the same time.");
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +00001025 if (ip_status != HOST_NEW)
Damien Millerd925dcd2010-12-01 12:21:51 +11001026 error("Offending key for IP in %s:%lu",
1027 ip_found->file, ip_found->line);
Damien Miller95def091999-11-25 00:26:21 +11001028 }
1029 /* The host key has changed. */
Damien Miller5a388972003-11-17 21:10:47 +11001030 warn_changed_key(host_key);
Damien Miller95def091999-11-25 00:26:21 +11001031 error("Add correct host key in %.100s to get rid of this message.",
Damien Miller295ee632011-05-29 21:42:31 +10001032 user_hostfiles[0]);
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +00001033 error("Offending %s key in %s:%lu",
1034 sshkey_type(host_found->key),
Damien Millerd925dcd2010-12-01 12:21:51 +11001035 host_found->file, host_found->line);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001036
Damien Miller5428f641999-11-25 11:54:57 +11001037 /*
1038 * If strict host key checking is in use, the user will have
1039 * to edit the key manually and we can only abort.
1040 */
djm@openbsd.org22376d22017-09-03 23:33:13 +00001041 if (options.strict_host_key_checking !=
1042 SSH_STRICT_HOSTKEY_OFF) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001043 error("%s host key for %.200s has changed and you have "
1044 "requested strict checking.", type, host);
1045 goto fail;
1046 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001047
Damien Miller1aed65e2010-03-04 21:53:35 +11001048 continue_unsafe:
Damien Miller5428f641999-11-25 11:54:57 +11001049 /*
1050 * If strict host key checking has not been requested, allow
Damien Miller941ac452003-06-04 20:31:53 +10001051 * the connection but without MITM-able authentication or
Damien Miller437edb92006-08-05 09:11:13 +10001052 * forwarding.
Damien Miller5428f641999-11-25 11:54:57 +11001053 */
Damien Miller95def091999-11-25 00:26:21 +11001054 if (options.password_authentication) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001055 error("Password authentication is disabled to avoid "
1056 "man-in-the-middle attacks.");
Damien Miller95def091999-11-25 00:26:21 +11001057 options.password_authentication = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001058 cancelled_forwarding = 1;
Damien Miller95def091999-11-25 00:26:21 +11001059 }
Damien Miller941ac452003-06-04 20:31:53 +10001060 if (options.kbd_interactive_authentication) {
1061 error("Keyboard-interactive authentication is disabled"
1062 " to avoid man-in-the-middle attacks.");
1063 options.kbd_interactive_authentication = 0;
1064 options.challenge_response_authentication = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001065 cancelled_forwarding = 1;
Damien Miller941ac452003-06-04 20:31:53 +10001066 }
1067 if (options.challenge_response_authentication) {
1068 error("Challenge/response authentication is disabled"
1069 " to avoid man-in-the-middle attacks.");
1070 options.challenge_response_authentication = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001071 cancelled_forwarding = 1;
Damien Miller941ac452003-06-04 20:31:53 +10001072 }
Damien Miller95def091999-11-25 00:26:21 +11001073 if (options.forward_agent) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001074 error("Agent forwarding is disabled to avoid "
1075 "man-in-the-middle attacks.");
Damien Miller95def091999-11-25 00:26:21 +11001076 options.forward_agent = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001077 cancelled_forwarding = 1;
Damien Miller95def091999-11-25 00:26:21 +11001078 }
Ben Lindstromc72745a2000-12-02 19:03:54 +00001079 if (options.forward_x11) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001080 error("X11 forwarding is disabled to avoid "
1081 "man-in-the-middle attacks.");
Ben Lindstromc72745a2000-12-02 19:03:54 +00001082 options.forward_x11 = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001083 cancelled_forwarding = 1;
Ben Lindstromc72745a2000-12-02 19:03:54 +00001084 }
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001085 if (options.num_local_forwards > 0 ||
1086 options.num_remote_forwards > 0) {
1087 error("Port forwarding is disabled to avoid "
1088 "man-in-the-middle attacks.");
1089 options.num_local_forwards =
Damien Miller9f0f5c62001-12-21 14:45:46 +11001090 options.num_remote_forwards = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001091 cancelled_forwarding = 1;
Ben Lindstromc72745a2000-12-02 19:03:54 +00001092 }
Damien Miller437edb92006-08-05 09:11:13 +10001093 if (options.tun_open != SSH_TUNMODE_NO) {
1094 error("Tunnel forwarding is disabled to avoid "
1095 "man-in-the-middle attacks.");
1096 options.tun_open = SSH_TUNMODE_NO;
Darren Tucker068e01f2008-07-02 22:33:55 +10001097 cancelled_forwarding = 1;
Damien Miller437edb92006-08-05 09:11:13 +10001098 }
Darren Tucker068e01f2008-07-02 22:33:55 +10001099 if (options.exit_on_forward_failure && cancelled_forwarding)
1100 fatal("Error: forwarding disabled due to host key "
1101 "check failure");
1102
Damien Miller5428f641999-11-25 11:54:57 +11001103 /*
1104 * XXX Should permit the user to change to use the new id.
1105 * This could be done by converting the host key to an
1106 * identifying sentence, tell that the host identifies itself
Darren Tuckere2b36742010-01-13 22:42:34 +11001107 * by that sentence, and ask the user if he/she wishes to
Damien Miller5428f641999-11-25 11:54:57 +11001108 * accept the authentication.
1109 */
Damien Miller95def091999-11-25 00:26:21 +11001110 break;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001111 case HOST_FOUND:
1112 fatal("internal error");
1113 break;
Damien Miller95def091999-11-25 00:26:21 +11001114 }
Ben Lindstromc72745a2000-12-02 19:03:54 +00001115
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +00001116 if (options.check_host_ip && host_status != HOST_CHANGED &&
1117 ip_status == HOST_CHANGED) {
Damien Miller49d795c2002-01-22 23:34:12 +11001118 snprintf(msg, sizeof(msg),
1119 "Warning: the %s host key for '%.200s' "
1120 "differs from the key for the IP address '%.128s'"
Damien Millerd925dcd2010-12-01 12:21:51 +11001121 "\nOffending key for IP in %s:%lu",
1122 type, host, ip, ip_found->file, ip_found->line);
Damien Miller49d795c2002-01-22 23:34:12 +11001123 if (host_status == HOST_OK) {
1124 len = strlen(msg);
1125 snprintf(msg + len, sizeof(msg) - len,
Damien Millerd925dcd2010-12-01 12:21:51 +11001126 "\nMatching host key in %s:%lu",
1127 host_found->file, host_found->line);
Damien Miller49d795c2002-01-22 23:34:12 +11001128 }
djm@openbsd.org22376d22017-09-03 23:33:13 +00001129 if (options.strict_host_key_checking ==
1130 SSH_STRICT_HOSTKEY_ASK) {
Damien Miller49d795c2002-01-22 23:34:12 +11001131 strlcat(msg, "\nAre you sure you want "
1132 "to continue connecting (yes/no)? ", sizeof(msg));
1133 if (!confirm(msg))
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001134 goto fail;
djm@openbsd.org22376d22017-09-03 23:33:13 +00001135 } else if (options.strict_host_key_checking !=
1136 SSH_STRICT_HOSTKEY_OFF) {
1137 logit("%s", msg);
1138 error("Exiting, you have requested strict checking.");
1139 goto fail;
Damien Miller49d795c2002-01-22 23:34:12 +11001140 } else {
Damien Millerab2db412003-06-02 19:09:13 +10001141 logit("%s", msg);
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +00001142 }
1143 }
1144
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00001145 if (!hostkey_trusted && options.update_hostkeys) {
1146 debug("%s: hostkey not known or explicitly trusted: "
1147 "disabling UpdateHostkeys", __func__);
1148 options.update_hostkeys = 0;
1149 }
1150
Darren Tuckera627d422013-06-02 07:31:17 +10001151 free(ip);
1152 free(host);
Damien Millerd925dcd2010-12-01 12:21:51 +11001153 if (host_hostkeys != NULL)
1154 free_hostkeys(host_hostkeys);
1155 if (ip_hostkeys != NULL)
1156 free_hostkeys(ip_hostkeys);
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001157 return 0;
1158
1159fail:
Damien Miller1aed65e2010-03-04 21:53:35 +11001160 if (want_cert && host_status != HOST_REVOKED) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001161 /*
1162 * No matching certificate. Downgrade cert to raw key and
1163 * search normally.
1164 */
1165 debug("No matching CA found. Retry with plain key");
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +00001166 if ((r = sshkey_from_private(host_key, &raw_key)) != 0)
1167 fatal("%s: sshkey_from_private: %s",
1168 __func__, ssh_err(r));
1169 if ((r = sshkey_drop_cert(raw_key)) != 0)
1170 fatal("Couldn't drop certificate: %s", ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001171 host_key = raw_key;
1172 goto retry;
1173 }
1174 if (raw_key != NULL)
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +00001175 sshkey_free(raw_key);
Darren Tuckera627d422013-06-02 07:31:17 +10001176 free(ip);
1177 free(host);
Damien Millerd925dcd2010-12-01 12:21:51 +11001178 if (host_hostkeys != NULL)
1179 free_hostkeys(host_hostkeys);
1180 if (ip_hostkeys != NULL)
1181 free_hostkeys(ip_hostkeys);
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001182 return -1;
1183}
1184
Damien Miller37876e92003-05-15 10:19:46 +10001185/* returns 0 if key verifies or -1 if key does NOT verify */
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001186int
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001187verify_host_key(char *host, struct sockaddr *hostaddr, struct sshkey *host_key)
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001188{
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001189 u_int i;
Damien Miller6b37fbb2014-07-04 08:59:24 +10001190 int r = -1, flags = 0;
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001191 char valid[64], *fp = NULL, *cafp = NULL;
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001192 struct sshkey *plain = NULL;
Damien Millerd925dcd2010-12-01 12:21:51 +11001193
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001194 if ((fp = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001195 options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL) {
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001196 error("%s: fingerprint host key: %s", __func__, ssh_err(r));
1197 r = -1;
1198 goto out;
1199 }
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001200
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001201 if (sshkey_is_cert(host_key)) {
1202 if ((cafp = sshkey_fingerprint(host_key->cert->signature_key,
1203 options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL) {
1204 error("%s: fingerprint CA key: %s",
1205 __func__, ssh_err(r));
1206 r = -1;
1207 goto out;
1208 }
1209 sshkey_format_cert_validity(host_key->cert,
1210 valid, sizeof(valid));
1211 debug("Server host certificate: %s %s, serial %llu "
1212 "ID \"%s\" CA %s %s valid %s",
1213 sshkey_ssh_name(host_key), fp,
djm@openbsd.org8ca915f2015-11-20 01:45:29 +00001214 (unsigned long long)host_key->cert->serial,
1215 host_key->cert->key_id,
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001216 sshkey_ssh_name(host_key->cert->signature_key), cafp,
1217 valid);
1218 for (i = 0; i < host_key->cert->nprincipals; i++) {
1219 debug2("Server host certificate hostname: %s",
1220 host_key->cert->principals[i]);
1221 }
1222 } else {
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001223 debug("Server host key: %s %s", sshkey_ssh_name(host_key), fp);
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001224 }
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001225
1226 if (sshkey_equal(previous_host_key, host_key)) {
1227 debug2("%s: server host key %s %s matches cached key",
1228 __func__, sshkey_type(host_key), fp);
1229 r = 0;
1230 goto out;
1231 }
1232
1233 /* Check in RevokedHostKeys file if specified */
1234 if (options.revoked_host_keys != NULL) {
1235 r = sshkey_check_revoked(host_key, options.revoked_host_keys);
1236 switch (r) {
1237 case 0:
1238 break; /* not revoked */
1239 case SSH_ERR_KEY_REVOKED:
1240 error("Host key %s %s revoked by file %s",
1241 sshkey_type(host_key), fp,
1242 options.revoked_host_keys);
1243 r = -1;
1244 goto out;
1245 default:
1246 error("Error checking host key %s %s in "
1247 "revoked keys file %s: %s", sshkey_type(host_key),
1248 fp, options.revoked_host_keys, ssh_err(r));
1249 r = -1;
1250 goto out;
1251 }
Damien Miller6b37fbb2014-07-04 08:59:24 +10001252 }
1253
Damien Miller7d6a9fb2014-04-20 13:23:43 +10001254 if (options.verify_host_key_dns) {
1255 /*
1256 * XXX certs are not yet supported for DNS, so downgrade
1257 * them and try the plain key.
1258 */
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001259 if ((r = sshkey_from_private(host_key, &plain)) != 0)
1260 goto out;
1261 if (sshkey_is_cert(plain))
1262 sshkey_drop_cert(plain);
Damien Miller7d6a9fb2014-04-20 13:23:43 +10001263 if (verify_host_key_dns(host, hostaddr, plain, &flags) == 0) {
1264 if (flags & DNS_VERIFY_FOUND) {
1265 if (options.verify_host_key_dns == 1 &&
1266 flags & DNS_VERIFY_MATCH &&
1267 flags & DNS_VERIFY_SECURE) {
Damien Miller6b37fbb2014-07-04 08:59:24 +10001268 r = 0;
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001269 goto out;
Damien Miller7d6a9fb2014-04-20 13:23:43 +10001270 }
1271 if (flags & DNS_VERIFY_MATCH) {
1272 matching_host_key_dns = 1;
1273 } else {
djm@openbsd.orgaea59a02017-09-14 04:32:21 +00001274 warn_changed_key(plain);
1275 error("Update the SSHFP RR in DNS "
1276 "with the new host key to get rid "
1277 "of this message.");
Damien Miller7d6a9fb2014-04-20 13:23:43 +10001278 }
Damien Miller150b5572003-11-17 21:19:29 +11001279 }
Damien Miller37876e92003-05-15 10:19:46 +10001280 }
1281 }
Damien Miller6b37fbb2014-07-04 08:59:24 +10001282 r = check_host_key(host, hostaddr, options.port, host_key, RDRW,
Damien Miller295ee632011-05-29 21:42:31 +10001283 options.user_hostfiles, options.num_user_hostfiles,
1284 options.system_hostfiles, options.num_system_hostfiles);
Damien Miller6b37fbb2014-07-04 08:59:24 +10001285
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001286out:
1287 sshkey_free(plain);
1288 free(fp);
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001289 free(cafp);
Damien Miller6b37fbb2014-07-04 08:59:24 +10001290 if (r == 0 && host_key != NULL) {
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +00001291 sshkey_free(previous_host_key);
1292 r = sshkey_from_private(host_key, &previous_host_key);
Damien Miller6b37fbb2014-07-04 08:59:24 +10001293 }
1294
1295 return r;
Damien Millera34a28b1999-12-14 10:47:15 +11001296}
Damien Miller037a0dc1999-12-07 15:38:31 +11001297
Damien Miller396691a2000-01-20 22:44:08 +11001298/*
1299 * Starts a dialog with the server, and authenticates the current user on the
1300 * server. This does not need any extra privileges. The basic connection
1301 * to the server must already have been established before this is called.
1302 * If login fails, this function prints an error and never returns.
1303 * This function does not require super-user privileges.
1304 */
1305void
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001306ssh_login(Sensitive *sensitive, const char *orighost,
Damien Millerd925dcd2010-12-01 12:21:51 +11001307 struct sockaddr *hostaddr, u_short port, struct passwd *pw, int timeout_ms)
Damien Miller396691a2000-01-20 22:44:08 +11001308{
Damien Miller0faf7472013-10-17 11:47:23 +11001309 char *host;
Damien Millereba71ba2000-04-29 23:57:08 +10001310 char *server_user, *local_user;
1311
Damien Millereba71ba2000-04-29 23:57:08 +10001312 local_user = xstrdup(pw->pw_name);
1313 server_user = options.user ? options.user : local_user;
Damien Miller396691a2000-01-20 22:44:08 +11001314
1315 /* Convert the user-supplied hostname into all lowercase. */
1316 host = xstrdup(orighost);
Damien Miller0faf7472013-10-17 11:47:23 +11001317 lowercase(host);
Damien Miller396691a2000-01-20 22:44:08 +11001318
1319 /* Exchange protocol version identification strings with the server. */
Damien Miller67bd0622007-09-17 12:06:57 +10001320 ssh_exchange_identification(timeout_ms);
Damien Miller396691a2000-01-20 22:44:08 +11001321
1322 /* Put the connection into non-blocking mode. */
1323 packet_set_nonblocking();
1324
Damien Miller396691a2000-01-20 22:44:08 +11001325 /* key exchange */
Damien Miller396691a2000-01-20 22:44:08 +11001326 /* authenticate user */
dtucker@openbsd.orgbb2289e2015-04-14 04:17:03 +00001327 debug("Authenticating to %s:%d as '%s'", host, port, server_user);
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001328 ssh_kex2(host, hostaddr, port);
1329 ssh_userauth2(local_user, server_user, host, sensitive);
Darren Tuckera627d422013-06-02 07:31:17 +10001330 free(local_user);
Damien Miller396691a2000-01-20 22:44:08 +11001331}
Damien Miller79438cc2001-02-16 12:34:57 +11001332
1333void
1334ssh_put_password(char *password)
1335{
1336 int size;
1337 char *padded;
1338
Ben Lindstromd20d0f32001-03-10 17:22:20 +00001339 if (datafellows & SSH_BUG_PASSWORDPAD) {
Ben Lindstrom664408d2001-06-09 01:42:01 +00001340 packet_put_cstring(password);
Ben Lindstromd20d0f32001-03-10 17:22:20 +00001341 return;
1342 }
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +00001343 size = ROUNDUP(strlen(password) + 1, 32);
Damien Miller07d86be2006-03-26 14:19:21 +11001344 padded = xcalloc(1, size);
Damien Miller79438cc2001-02-16 12:34:57 +11001345 strlcpy(padded, password, size);
1346 packet_put_string(padded, size);
Damien Millera5103f42014-02-04 11:20:14 +11001347 explicit_bzero(padded, size);
Darren Tuckera627d422013-06-02 07:31:17 +10001348 free(padded);
Damien Miller79438cc2001-02-16 12:34:57 +11001349}
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001350
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001351/* print all known host keys for a given host, but skip keys of given type */
1352static int
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001353show_other_keys(struct hostkeys *hostkeys, struct sshkey *key)
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001354{
Damien Miller106bf1c2013-12-29 17:54:03 +11001355 int type[] = {
Damien Miller106bf1c2013-12-29 17:54:03 +11001356 KEY_RSA,
1357 KEY_DSA,
1358 KEY_ECDSA,
1359 KEY_ED25519,
1360 -1
1361 };
Damien Millerd925dcd2010-12-01 12:21:51 +11001362 int i, ret = 0;
1363 char *fp, *ra;
1364 const struct hostkey_entry *found;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001365
1366 for (i = 0; type[i] != -1; i++) {
1367 if (type[i] == key->type)
1368 continue;
Damien Millerd925dcd2010-12-01 12:21:51 +11001369 if (!lookup_key_in_hostkeys_by_type(hostkeys, type[i], &found))
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001370 continue;
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001371 fp = sshkey_fingerprint(found->key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001372 options.fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001373 ra = sshkey_fingerprint(found->key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001374 options.fingerprint_hash, SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001375 if (fp == NULL || ra == NULL)
1376 fatal("%s: sshkey_fingerprint fail", __func__);
Damien Millerd925dcd2010-12-01 12:21:51 +11001377 logit("WARNING: %s key found for host %s\n"
1378 "in %s:%lu\n"
1379 "%s key fingerprint %s.",
1380 key_type(found->key),
1381 found->host, found->file, found->line,
1382 key_type(found->key), fp);
1383 if (options.visual_host_key)
1384 logit("%s", ra);
Darren Tuckera627d422013-06-02 07:31:17 +10001385 free(ra);
1386 free(fp);
Damien Millerd925dcd2010-12-01 12:21:51 +11001387 ret = 1;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001388 }
Damien Millerd925dcd2010-12-01 12:21:51 +11001389 return ret;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001390}
Damien Miller5a388972003-11-17 21:10:47 +11001391
1392static void
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001393warn_changed_key(struct sshkey *host_key)
Damien Miller5a388972003-11-17 21:10:47 +11001394{
1395 char *fp;
Damien Miller5a388972003-11-17 21:10:47 +11001396
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001397 fp = sshkey_fingerprint(host_key, options.fingerprint_hash,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001398 SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001399 if (fp == NULL)
1400 fatal("%s: sshkey_fingerprint fail", __func__);
Damien Miller5a388972003-11-17 21:10:47 +11001401
1402 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1403 error("@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @");
1404 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1405 error("IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!");
1406 error("Someone could be eavesdropping on you right now (man-in-the-middle attack)!");
Damien Miller05c89972011-01-06 22:42:04 +11001407 error("It is also possible that a host key has just been changed.");
Damien Miller5a388972003-11-17 21:10:47 +11001408 error("The fingerprint for the %s key sent by the remote host is\n%s.",
djm@openbsd.orgaea59a02017-09-14 04:32:21 +00001409 key_type(host_key), fp);
Damien Miller5a388972003-11-17 21:10:47 +11001410 error("Please contact your system administrator.");
1411
Darren Tuckera627d422013-06-02 07:31:17 +10001412 free(fp);
Damien Miller5a388972003-11-17 21:10:47 +11001413}
Damien Millerd27b9472005-12-13 19:29:02 +11001414
1415/*
1416 * Execute a local command
1417 */
1418int
1419ssh_local_cmd(const char *args)
1420{
1421 char *shell;
1422 pid_t pid;
1423 int status;
Damien Millered3a8eb2011-01-07 10:02:52 +11001424 void (*osighand)(int);
Damien Millerd27b9472005-12-13 19:29:02 +11001425
1426 if (!options.permit_local_command ||
1427 args == NULL || !*args)
1428 return (1);
1429
Damien Miller38d9a962010-10-07 22:07:11 +11001430 if ((shell = getenv("SHELL")) == NULL || *shell == '\0')
Damien Millerd27b9472005-12-13 19:29:02 +11001431 shell = _PATH_BSHELL;
1432
Damien Millered3a8eb2011-01-07 10:02:52 +11001433 osighand = signal(SIGCHLD, SIG_DFL);
Damien Millerd27b9472005-12-13 19:29:02 +11001434 pid = fork();
1435 if (pid == 0) {
Damien Miller6fb6fd52011-01-16 23:17:45 +11001436 signal(SIGPIPE, SIG_DFL);
Damien Millerd27b9472005-12-13 19:29:02 +11001437 debug3("Executing %s -c \"%s\"", shell, args);
1438 execl(shell, shell, "-c", args, (char *)NULL);
1439 error("Couldn't execute %s -c \"%s\": %s",
1440 shell, args, strerror(errno));
1441 _exit(1);
1442 } else if (pid == -1)
1443 fatal("fork failed: %.100s", strerror(errno));
1444 while (waitpid(pid, &status, 0) == -1)
1445 if (errno != EINTR)
1446 fatal("Couldn't wait for child: %s", strerror(errno));
Damien Millered3a8eb2011-01-07 10:02:52 +11001447 signal(SIGCHLD, osighand);
Damien Millerd27b9472005-12-13 19:29:02 +11001448
1449 if (!WIFEXITED(status))
1450 return (1);
1451
1452 return (WEXITSTATUS(status));
1453}
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001454
1455void
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001456maybe_add_key_to_agent(char *authfile, struct sshkey *private, char *comment,
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001457 char *passphrase)
1458{
1459 int auth_sock = -1, r;
1460
1461 if (options.add_keys_to_agent == 0)
1462 return;
1463
1464 if ((r = ssh_get_authentication_socket(&auth_sock)) != 0) {
1465 debug3("no authentication agent, not adding key");
1466 return;
1467 }
1468
1469 if (options.add_keys_to_agent == 2 &&
1470 !ask_permission("Add key %s (%s) to agent?", authfile, comment)) {
1471 debug3("user denied adding this key");
dtucker@openbsd.org566b3a42017-03-10 03:22:40 +00001472 close(auth_sock);
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001473 return;
1474 }
1475
1476 if ((r = ssh_add_identity_constrained(auth_sock, private, comment, 0,
1477 (options.add_keys_to_agent == 3))) == 0)
1478 debug("identity added to agent: %s", authfile);
1479 else
1480 debug("could not add identity to agent: %s (%d)", authfile, r);
dtucker@openbsd.org566b3a42017-03-10 03:22:40 +00001481 close(auth_sock);
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001482}