blob: e37bb085661e0f74c960bbe31227cdbca59290ef [file] [log] [blame]
dtucker@openbsd.orgf1f047f2018-02-07 22:52:45 +00001/* $OpenBSD: sshconnect.c,v 1.293 2018/02/07 22:52:45 dtucker 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
dtucker@openbsd.org@openbsd.org5db6fbf2017-11-25 06:46:22 +0000347 monotime_tv(&t_start);
djm@openbsd.org45404282017-06-24 05:37:44 +0000348 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;
djm@openbsd.org7c779912018-01-23 05:17:04 +0000419 int oerrno, sock = -1, attempt;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000420 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 &&
djm@openbsd.org7c779912018-01-23 05:17:04 +0000439 ai->ai_family != AF_INET6) {
440 errno = EAFNOSUPPORT;
Damien Miller34132e52000-01-14 15:45:46 +1100441 continue;
djm@openbsd.org7c779912018-01-23 05:17:04 +0000442 }
Damien Miller34132e52000-01-14 15:45:46 +1100443 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
444 ntop, sizeof(ntop), strport, sizeof(strport),
445 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
djm@openbsd.org7c779912018-01-23 05:17:04 +0000446 oerrno = errno;
djm@openbsd.org46152af2015-09-04 04:55:24 +0000447 error("%s: getnameinfo failed", __func__);
djm@openbsd.org7c779912018-01-23 05:17:04 +0000448 errno = oerrno;
Damien Miller34132e52000-01-14 15:45:46 +1100449 continue;
450 }
451 debug("Connecting to %.200s [%.100s] port %s.",
452 host, ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +1100453
Damien Miller34132e52000-01-14 15:45:46 +1100454 /* Create a socket for connecting. */
Damien Miller2372ace2003-05-14 13:42:23 +1000455 sock = ssh_create_socket(needpriv, ai);
stsp@openbsd.orga60c5dc2018-01-23 18:33:49 +0000456 if (sock < 0) {
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000457 /* Any error is already output */
djm@openbsd.org7c779912018-01-23 05:17:04 +0000458 errno = 0;
Damien Miller34132e52000-01-14 15:45:46 +1100459 continue;
stsp@openbsd.orga60c5dc2018-01-23 18:33:49 +0000460 }
Damien Miller95def091999-11-25 00:26:21 +1100461
Damien Millerb78d5eb2003-05-16 11:39:04 +1000462 if (timeout_connect(sock, ai->ai_addr, ai->ai_addrlen,
Damien Miller67bd0622007-09-17 12:06:57 +1000463 timeout_ms) >= 0) {
Damien Miller34132e52000-01-14 15:45:46 +1100464 /* Successful connection. */
Ben Lindstroma3700052001-04-05 23:26:32 +0000465 memcpy(hostaddr, ai->ai_addr, ai->ai_addrlen);
Damien Miller95def091999-11-25 00:26:21 +1100466 break;
Damien Miller34132e52000-01-14 15:45:46 +1100467 } else {
djm@openbsd.org7c779912018-01-23 05:17:04 +0000468 oerrno = errno;
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;
djm@openbsd.org7c779912018-01-23 05:17:04 +0000473 errno = oerrno;
Damien Miller95def091999-11-25 00:26:21 +1100474 }
Damien Miller95def091999-11-25 00:26:21 +1100475 }
Damien Miller56e5e6a2006-04-23 12:08:59 +1000476 if (sock != -1)
Damien Miller34132e52000-01-14 15:45:46 +1100477 break; /* Successful connection. */
Damien Miller95def091999-11-25 00:26:21 +1100478 }
Damien Miller34132e52000-01-14 15:45:46 +1100479
Damien Miller95def091999-11-25 00:26:21 +1100480 /* Return failure if we didn't get a successful connection. */
Damien Miller56e5e6a2006-04-23 12:08:59 +1000481 if (sock == -1) {
Darren Tuckerb2161e32005-01-20 11:00:46 +1100482 error("ssh: connect to host %s port %s: %s",
djm@openbsd.org7c779912018-01-23 05:17:04 +0000483 host, strport, errno == 0 ? "failure" : strerror(errno));
484 return -1;
Ben Lindstroma6cd75c2002-07-11 04:00:19 +0000485 }
Damien Miller95def091999-11-25 00:26:21 +1100486
487 debug("Connection established.");
488
Damien Miller12c150e2003-12-17 16:31:10 +1100489 /* Set SO_KEEPALIVE if requested. */
Damien Miller67bd0622007-09-17 12:06:57 +1000490 if (want_keepalive &&
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000491 setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE, (void *)&on,
492 sizeof(on)) < 0)
493 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100494
495 /* Set the connection. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000496 if (ssh_packet_set_connection(ssh, sock, sock) == NULL)
497 return -1; /* ssh_packet_set_connection logs error */
Damien Miller95def091999-11-25 00:26:21 +1100498
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000499 return 0;
Damien Miller95def091999-11-25 00:26:21 +1100500}
501
Damien Miller0faf7472013-10-17 11:47:23 +1100502int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000503ssh_connect(struct ssh *ssh, const char *host, struct addrinfo *addrs,
Damien Miller0faf7472013-10-17 11:47:23 +1100504 struct sockaddr_storage *hostaddr, u_short port, int family,
505 int connection_attempts, int *timeout_ms, int want_keepalive, int needpriv)
506{
507 if (options.proxy_command == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000508 return ssh_connect_direct(ssh, host, addrs, hostaddr, port,
509 family, connection_attempts, timeout_ms, want_keepalive,
510 needpriv);
Damien Miller0faf7472013-10-17 11:47:23 +1100511 } else if (strcmp(options.proxy_command, "-") == 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000512 if ((ssh_packet_set_connection(ssh,
513 STDIN_FILENO, STDOUT_FILENO)) == NULL)
514 return -1; /* ssh_packet_set_connection logs error */
515 return 0;
Damien Miller0faf7472013-10-17 11:47:23 +1100516 } else if (options.proxy_use_fdpass) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000517 return ssh_proxy_fdpass_connect(ssh, host, port,
Damien Miller0faf7472013-10-17 11:47:23 +1100518 options.proxy_command);
519 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000520 return ssh_proxy_connect(ssh, host, port, options.proxy_command);
Damien Miller0faf7472013-10-17 11:47:23 +1100521}
522
Darren Tucker00c15182012-09-06 21:21:56 +1000523static void
524send_client_banner(int connection_out, int minor1)
525{
Darren Tucker00c15182012-09-06 21:21:56 +1000526 /* Send our own protocol version identification. */
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000527 xasprintf(&client_version_string, "SSH-%d.%d-%.100s\r\n",
528 PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2, SSH_VERSION);
markus@openbsd.orga3068632016-01-14 16:17:39 +0000529 if (atomicio(vwrite, connection_out, client_version_string,
Darren Tucker00c15182012-09-06 21:21:56 +1000530 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();
Damien Miller1e88ea62006-07-10 20:15:56 +1000547 u_int i, n;
Damien Miller67bd0622007-09-17 12:06:57 +1000548 size_t len;
djm@openbsd.org45404282017-06-24 05:37:44 +0000549 int rc;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000550
djm@openbsd.org99f95ba2017-04-30 23:11:45 +0000551 send_client_banner(connection_out, 0);
Darren Tucker00c15182012-09-06 21:21:56 +1000552
Damien Millerb253cc42005-05-26 12:23:44 +1000553 /* Read other side's version identification. */
Damien Miller1e88ea62006-07-10 20:15:56 +1000554 for (n = 0;;) {
Damien Millerf6d9e222000-06-18 14:50:44 +1000555 for (i = 0; i < sizeof(buf) - 1; i++) {
Damien Miller67bd0622007-09-17 12:06:57 +1000556 if (timeout_ms > 0) {
djm@openbsd.org45404282017-06-24 05:37:44 +0000557 rc = waitrfd(connection_in, &timeout_ms);
558 if (rc == -1 && errno == ETIMEDOUT) {
Damien Miller67bd0622007-09-17 12:06:57 +1000559 fatal("Connection timed out during "
560 "banner exchange");
djm@openbsd.org45404282017-06-24 05:37:44 +0000561 } else if (rc == -1) {
562 fatal("%s: %s",
563 __func__, strerror(errno));
Damien Miller67bd0622007-09-17 12:06:57 +1000564 }
565 }
566
markus@openbsd.orga3068632016-01-14 16:17:39 +0000567 len = atomicio(read, connection_in, &buf[i], 1);
Damien Miller46d38de2005-07-17 17:02:09 +1000568 if (len != 1 && errno == EPIPE)
Damien Miller67bd0622007-09-17 12:06:57 +1000569 fatal("ssh_exchange_identification: "
570 "Connection closed by remote host");
Damien Millerb253cc42005-05-26 12:23:44 +1000571 else if (len != 1)
Damien Miller67bd0622007-09-17 12:06:57 +1000572 fatal("ssh_exchange_identification: "
573 "read: %.100s", strerror(errno));
Damien Millerf6d9e222000-06-18 14:50:44 +1000574 if (buf[i] == '\r') {
575 buf[i] = '\n';
576 buf[i + 1] = 0;
577 continue; /**XXX wait for \n */
578 }
579 if (buf[i] == '\n') {
580 buf[i + 1] = 0;
581 break;
582 }
Damien Miller1e88ea62006-07-10 20:15:56 +1000583 if (++n > 65536)
Damien Miller67bd0622007-09-17 12:06:57 +1000584 fatal("ssh_exchange_identification: "
585 "No banner received");
Damien Miller95def091999-11-25 00:26:21 +1100586 }
Damien Millerf6d9e222000-06-18 14:50:44 +1000587 buf[sizeof(buf) - 1] = 0;
588 if (strncmp(buf, "SSH-", 4) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100589 break;
Damien Millerf6d9e222000-06-18 14:50:44 +1000590 debug("ssh_exchange_identification: %s", buf);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000591 }
Damien Miller1383bd82000-04-06 12:32:37 +1000592 server_version_string = xstrdup(buf);
Damien Miller95def091999-11-25 00:26:21 +1100593
Damien Miller5428f641999-11-25 11:54:57 +1100594 /*
595 * Check that the versions match. In future this might accept
596 * several versions and set appropriate flags to handle them.
597 */
Damien Miller1383bd82000-04-06 12:32:37 +1000598 if (sscanf(server_version_string, "SSH-%d.%d-%[^\n]\n",
599 &remote_major, &remote_minor, remote_version) != 3)
Damien Miller95def091999-11-25 00:26:21 +1100600 fatal("Bad remote protocol version identification: '%.100s'", buf);
601 debug("Remote protocol version %d.%d, remote software version %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100602 remote_major, remote_minor, remote_version);
Damien Miller95def091999-11-25 00:26:21 +1100603
markus@openbsd.org48b3b2b2015-01-19 20:20:20 +0000604 active_state->compat = compat_datafellows(remote_version);
Damien Miller78928792000-04-12 20:17:38 +1000605 mismatch = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000606
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000607 switch (remote_major) {
Damien Miller78928792000-04-12 20:17:38 +1000608 case 2:
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000609 break;
610 case 1:
611 if (remote_minor != 99)
612 mismatch = 1;
djm@openbsd.org99f95ba2017-04-30 23:11:45 +0000613 break;
Damien Miller4af51302000-04-16 11:18:38 +1000614 default:
Damien Miller78928792000-04-12 20:17:38 +1000615 mismatch = 1;
616 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000617 }
Damien Miller78928792000-04-12 20:17:38 +1000618 if (mismatch)
Damien Miller95def091999-11-25 00:26:21 +1100619 fatal("Protocol major versions differ: %d vs. %d",
djm@openbsd.org99f95ba2017-04-30 23:11:45 +0000620 PROTOCOL_MAJOR_2, remote_major);
Damien Miller324541e2013-12-31 12:25:40 +1100621 if ((datafellows & SSH_BUG_RSASIGMD5) != 0)
622 logit("Server version \"%.100s\" uses unsafe RSA signature "
623 "scheme; disabling use of RSA keys", remote_version);
Damien Miller1383bd82000-04-06 12:32:37 +1000624 chop(server_version_string);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000625}
626
Ben Lindstromb6c06d92001-02-10 23:21:09 +0000627/* defaults to 'no' */
Ben Lindstrombba81212001-06-25 05:01:22 +0000628static int
Damien Millere3980042001-10-10 15:02:03 +1000629confirm(const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000630{
Damien Miller49d795c2002-01-22 23:34:12 +1100631 const char *msg, *again = "Please type 'yes' or 'no': ";
632 char *p;
633 int ret = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000634
Ben Lindstromb6c06d92001-02-10 23:21:09 +0000635 if (options.batch_mode)
636 return 0;
Damien Miller49d795c2002-01-22 23:34:12 +1100637 for (msg = prompt;;msg = again) {
638 p = read_passphrase(msg, RP_ECHO);
djm@openbsd.orge0ce54c2017-12-06 05:06:21 +0000639 if (p == NULL)
640 return 0;
641 p[strcspn(p, "\n")] = '\0';
642 if (p[0] == '\0' || strcasecmp(p, "no") == 0)
Damien Miller49d795c2002-01-22 23:34:12 +1100643 ret = 0;
djm@openbsd.orge0ce54c2017-12-06 05:06:21 +0000644 else if (strcasecmp(p, "yes") == 0)
Damien Miller49d795c2002-01-22 23:34:12 +1100645 ret = 1;
Darren Tuckera627d422013-06-02 07:31:17 +1000646 free(p);
Damien Miller49d795c2002-01-22 23:34:12 +1100647 if (ret != -1)
648 return ret;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000649 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000650}
651
Damien Miller0a80ca12010-02-27 07:55:05 +1100652static int
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000653check_host_cert(const char *host, const struct sshkey *host_key)
Damien Miller0a80ca12010-02-27 07:55:05 +1100654{
655 const char *reason;
656
657 if (key_cert_check_authority(host_key, 1, 0, host, &reason) != 0) {
658 error("%s", reason);
659 return 0;
660 }
Damien Miller86687062014-07-02 15:28:02 +1000661 if (buffer_len(host_key->cert->critical) != 0) {
Damien Miller4e270b02010-04-16 15:56:21 +1000662 error("Certificate for %s contains unsupported "
663 "critical options(s)", host);
Damien Miller0a80ca12010-02-27 07:55:05 +1100664 return 0;
665 }
666 return 1;
667}
668
Damien Millerd925dcd2010-12-01 12:21:51 +1100669static int
670sockaddr_is_local(struct sockaddr *hostaddr)
671{
672 switch (hostaddr->sa_family) {
673 case AF_INET:
674 return (ntohl(((struct sockaddr_in *)hostaddr)->
675 sin_addr.s_addr) >> 24) == IN_LOOPBACKNET;
676 case AF_INET6:
677 return IN6_IS_ADDR_LOOPBACK(
678 &(((struct sockaddr_in6 *)hostaddr)->sin6_addr));
679 default:
680 return 0;
681 }
682}
683
684/*
685 * Prepare the hostname and ip address strings that are used to lookup
686 * host keys in known_hosts files. These may have a port number appended.
687 */
688void
689get_hostfile_hostname_ipaddr(char *hostname, struct sockaddr *hostaddr,
690 u_short port, char **hostfile_hostname, char **hostfile_ipaddr)
691{
692 char ntop[NI_MAXHOST];
693 socklen_t addrlen;
694
695 switch (hostaddr == NULL ? -1 : hostaddr->sa_family) {
696 case -1:
697 addrlen = 0;
698 break;
699 case AF_INET:
700 addrlen = sizeof(struct sockaddr_in);
701 break;
702 case AF_INET6:
703 addrlen = sizeof(struct sockaddr_in6);
704 break;
705 default:
706 addrlen = sizeof(struct sockaddr);
707 break;
708 }
709
710 /*
711 * We don't have the remote ip-address for connections
712 * using a proxy command
713 */
714 if (hostfile_ipaddr != NULL) {
715 if (options.proxy_command == NULL) {
716 if (getnameinfo(hostaddr, addrlen,
717 ntop, sizeof(ntop), NULL, 0, NI_NUMERICHOST) != 0)
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000718 fatal("%s: getnameinfo failed", __func__);
Damien Millerd925dcd2010-12-01 12:21:51 +1100719 *hostfile_ipaddr = put_host_port(ntop, port);
720 } else {
721 *hostfile_ipaddr = xstrdup("<no hostip for proxy "
722 "command>");
723 }
724 }
725
726 /*
727 * Allow the user to record the key under a different name or
728 * differentiate a non-standard port. This is useful for ssh
729 * tunneling over forwarded connections or if you run multiple
730 * sshd's on different ports on the same machine.
731 */
732 if (hostfile_hostname != NULL) {
733 if (options.host_key_alias != NULL) {
734 *hostfile_hostname = xstrdup(options.host_key_alias);
735 debug("using hostkeyalias: %s", *hostfile_hostname);
736 } else {
737 *hostfile_hostname = put_host_port(hostname, port);
738 }
739 }
740}
741
Damien Miller95def091999-11-25 00:26:21 +1100742/*
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000743 * check whether the supplied host key is valid, return -1 if the key
Damien Miller295ee632011-05-29 21:42:31 +1000744 * is not valid. user_hostfile[0] will not be updated if 'readonly' is true.
Damien Miller95def091999-11-25 00:26:21 +1100745 */
Damien Millerda828392006-08-05 11:35:45 +1000746#define RDRW 0
747#define RDONLY 1
748#define ROQUIET 2
Ben Lindstrombba81212001-06-25 05:01:22 +0000749static int
Damien Millerda828392006-08-05 11:35:45 +1000750check_host_key(char *hostname, struct sockaddr *hostaddr, u_short port,
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000751 struct sshkey *host_key, int readonly,
Damien Miller295ee632011-05-29 21:42:31 +1000752 char **user_hostfiles, u_int num_user_hostfiles,
753 char **system_hostfiles, u_int num_system_hostfiles)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000754{
Damien Miller95def091999-11-25 00:26:21 +1100755 HostStatus host_status;
756 HostStatus ip_status;
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000757 struct sshkey *raw_key = NULL;
Damien Miller295ee632011-05-29 21:42:31 +1000758 char *ip = NULL, *host = NULL;
759 char hostline[1000], *hostp, *fp, *ra;
Damien Miller49d795c2002-01-22 23:34:12 +1100760 char msg[1024];
Damien Miller295ee632011-05-29 21:42:31 +1000761 const char *type;
Damien Millerd925dcd2010-12-01 12:21:51 +1100762 const struct hostkey_entry *host_found, *ip_found;
Damien Miller295ee632011-05-29 21:42:31 +1000763 int len, cancelled_forwarding = 0;
764 int local = sockaddr_is_local(hostaddr);
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +0000765 int r, want_cert = sshkey_is_cert(host_key), host_ip_differ = 0;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000766 int hostkey_trusted = 0; /* Known or explicitly accepted by user */
Damien Miller295ee632011-05-29 21:42:31 +1000767 struct hostkeys *host_hostkeys, *ip_hostkeys;
768 u_int i;
Damien Miller34132e52000-01-14 15:45:46 +1100769
770 /*
771 * Force accepting of the host key for loopback/localhost. The
772 * problem is that if the home directory is NFS-mounted to multiple
773 * machines, localhost will refer to a different machine in each of
774 * them, and the user will get bogus HOST_CHANGED warnings. This
775 * essentially disables host authentication for localhost; however,
776 * this is probably not a real problem.
777 */
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +0000778 if (options.no_host_authentication_for_localhost == 1 && local &&
779 options.host_key_alias == NULL) {
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000780 debug("Forcing accepting of host key for "
781 "loopback/localhost.");
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000782 return 0;
Damien Miller34132e52000-01-14 15:45:46 +1100783 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000784
Damien Milleraae6c611999-12-06 11:47:28 +1100785 /*
Damien Millerd925dcd2010-12-01 12:21:51 +1100786 * Prepare the hostname and address strings used for hostkey lookup.
787 * In some cases, these will have a port number appended.
Damien Milleraae6c611999-12-06 11:47:28 +1100788 */
Damien Millerd925dcd2010-12-01 12:21:51 +1100789 get_hostfile_hostname_ipaddr(hostname, hostaddr, port, &host, &ip);
Darren Tucker78913e02008-06-13 04:47:34 +1000790
791 /*
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000792 * Turn off check_host_ip if the connection is to localhost, via proxy
793 * command or if we don't have a hostname to compare with
794 */
Darren Tuckerda345532006-07-10 23:04:19 +1000795 if (options.check_host_ip && (local ||
796 strcmp(hostname, ip) == 0 || options.proxy_command != NULL))
Damien Milleraae6c611999-12-06 11:47:28 +1100797 options.check_host_ip = 0;
798
Damien Millerd925dcd2010-12-01 12:21:51 +1100799 host_hostkeys = init_hostkeys();
Damien Miller295ee632011-05-29 21:42:31 +1000800 for (i = 0; i < num_user_hostfiles; i++)
801 load_hostkeys(host_hostkeys, host, user_hostfiles[i]);
802 for (i = 0; i < num_system_hostfiles; i++)
803 load_hostkeys(host_hostkeys, host, system_hostfiles[i]);
Damien Millerd925dcd2010-12-01 12:21:51 +1100804
805 ip_hostkeys = NULL;
806 if (!want_cert && options.check_host_ip) {
807 ip_hostkeys = init_hostkeys();
Damien Miller295ee632011-05-29 21:42:31 +1000808 for (i = 0; i < num_user_hostfiles; i++)
809 load_hostkeys(ip_hostkeys, ip, user_hostfiles[i]);
810 for (i = 0; i < num_system_hostfiles; i++)
811 load_hostkeys(ip_hostkeys, ip, system_hostfiles[i]);
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000812 }
813
Damien Miller0a80ca12010-02-27 07:55:05 +1100814 retry:
Damien Millerd925dcd2010-12-01 12:21:51 +1100815 /* Reload these as they may have changed on cert->key downgrade */
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +0000816 want_cert = sshkey_is_cert(host_key);
817 type = sshkey_type(host_key);
Damien Miller0a80ca12010-02-27 07:55:05 +1100818
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000819 /*
Damien Miller788f2122005-11-05 15:14:59 +1100820 * Check if the host key is present in the user's list of known
Damien Miller5428f641999-11-25 11:54:57 +1100821 * hosts or in the systemwide list.
822 */
Damien Millerd925dcd2010-12-01 12:21:51 +1100823 host_status = check_key_in_hostkeys(host_hostkeys, host_key,
824 &host_found);
825
Damien Miller5428f641999-11-25 11:54:57 +1100826 /*
Damien Miller5428f641999-11-25 11:54:57 +1100827 * Also perform check for the ip address, skip the check if we are
Damien Miller0a80ca12010-02-27 07:55:05 +1100828 * localhost, looking for a certificate, or the hostname was an ip
829 * address to begin with.
Damien Miller5428f641999-11-25 11:54:57 +1100830 */
Damien Millerd925dcd2010-12-01 12:21:51 +1100831 if (!want_cert && ip_hostkeys != NULL) {
832 ip_status = check_key_in_hostkeys(ip_hostkeys, host_key,
833 &ip_found);
Damien Miller95def091999-11-25 00:26:21 +1100834 if (host_status == HOST_CHANGED &&
Damien Millerd925dcd2010-12-01 12:21:51 +1100835 (ip_status != HOST_CHANGED ||
836 (ip_found != NULL &&
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +0000837 !sshkey_equal(ip_found->key, host_found->key))))
Damien Miller95def091999-11-25 00:26:21 +1100838 host_ip_differ = 1;
Damien Miller95def091999-11-25 00:26:21 +1100839 } else
840 ip_status = host_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000841
Damien Miller95def091999-11-25 00:26:21 +1100842 switch (host_status) {
843 case HOST_OK:
844 /* The host is known and the key matches. */
Damien Miller0a80ca12010-02-27 07:55:05 +1100845 debug("Host '%.200s' is known and matches the %s host %s.",
846 host, type, want_cert ? "certificate" : "key");
Damien Millerd925dcd2010-12-01 12:21:51 +1100847 debug("Found %s in %s:%lu", want_cert ? "CA key" : "key",
848 host_found->file, host_found->line);
djm@openbsd.org6f8ca3b2017-06-24 05:35:05 +0000849 if (want_cert &&
850 !check_host_cert(options.host_key_alias == NULL ?
851 hostname : options.host_key_alias, host_key))
Damien Miller0a80ca12010-02-27 07:55:05 +1100852 goto fail;
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000853 if (options.check_host_ip && ip_status == HOST_NEW) {
Damien Miller0a80ca12010-02-27 07:55:05 +1100854 if (readonly || want_cert)
Damien Miller996acd22003-04-09 20:59:48 +1000855 logit("%s host key for IP address "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000856 "'%.128s' not in list of known hosts.",
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000857 type, ip);
Damien Miller295ee632011-05-29 21:42:31 +1000858 else if (!add_host_to_hostfile(user_hostfiles[0], ip,
Damien Millere1776152005-03-01 21:47:37 +1100859 host_key, options.hash_known_hosts))
Damien Miller996acd22003-04-09 20:59:48 +1000860 logit("Failed to add the %s host key for IP "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000861 "address '%.128s' to the list of known "
dtucker@openbsd.org496aeb22015-05-28 05:41:29 +0000862 "hosts (%.500s).", type, ip,
Damien Miller295ee632011-05-29 21:42:31 +1000863 user_hostfiles[0]);
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000864 else
Damien Miller996acd22003-04-09 20:59:48 +1000865 logit("Warning: Permanently added the %s host "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000866 "key for IP address '%.128s' to the list "
867 "of known hosts.", type, ip);
Damien Miller10288242008-06-30 00:04:03 +1000868 } else if (options.visual_host_key) {
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000869 fp = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000870 options.fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000871 ra = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000872 options.fingerprint_hash, SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000873 if (fp == NULL || ra == NULL)
874 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.orgac3451d2015-09-04 03:57:38 +0000875 logit("Host key fingerprint is %s\n%s", fp, ra);
Darren Tuckera627d422013-06-02 07:31:17 +1000876 free(ra);
877 free(fp);
Damien Miller95def091999-11-25 00:26:21 +1100878 }
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000879 hostkey_trusted = 1;
Damien Miller95def091999-11-25 00:26:21 +1100880 break;
881 case HOST_NEW:
Damien Millerda828392006-08-05 11:35:45 +1000882 if (options.host_key_alias == NULL && port != 0 &&
883 port != SSH_DEFAULT_PORT) {
884 debug("checking without port identifier");
Damien Millerece92c82008-11-03 19:25:03 +1100885 if (check_host_key(hostname, hostaddr, 0, host_key,
Damien Miller295ee632011-05-29 21:42:31 +1000886 ROQUIET, user_hostfiles, num_user_hostfiles,
887 system_hostfiles, num_system_hostfiles) == 0) {
Damien Millerda828392006-08-05 11:35:45 +1000888 debug("found matching key w/out port");
889 break;
890 }
891 }
Damien Miller0a80ca12010-02-27 07:55:05 +1100892 if (readonly || want_cert)
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000893 goto fail;
Damien Miller95def091999-11-25 00:26:21 +1100894 /* The host is new. */
djm@openbsd.org22376d22017-09-03 23:33:13 +0000895 if (options.strict_host_key_checking ==
896 SSH_STRICT_HOSTKEY_YES) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000897 /*
898 * User has requested strict host key checking. We
899 * will not add the host key automatically. The only
900 * alternative left is to abort.
901 */
902 error("No %s host key is known for %.200s and you "
903 "have requested strict checking.", type, host);
904 goto fail;
djm@openbsd.org22376d22017-09-03 23:33:13 +0000905 } else if (options.strict_host_key_checking ==
906 SSH_STRICT_HOSTKEY_ASK) {
Damien Miller7392ae62003-06-11 22:05:25 +1000907 char msg1[1024], msg2[1024];
908
Damien Millerd925dcd2010-12-01 12:21:51 +1100909 if (show_other_keys(host_hostkeys, host_key))
Damien Miller7392ae62003-06-11 22:05:25 +1000910 snprintf(msg1, sizeof(msg1),
Damien Miller0dc1bef2005-07-17 17:22:45 +1000911 "\nbut keys of different type are already"
912 " known for this host.");
Damien Miller7392ae62003-06-11 22:05:25 +1000913 else
914 snprintf(msg1, sizeof(msg1), ".");
Damien Miller95def091999-11-25 00:26:21 +1100915 /* The default */
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000916 fp = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000917 options.fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000918 ra = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000919 options.fingerprint_hash, SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000920 if (fp == NULL || ra == NULL)
921 fatal("%s: sshkey_fingerprint fail", __func__);
Damien Miller7392ae62003-06-11 22:05:25 +1000922 msg2[0] = '\0';
Damien Miller7392ae62003-06-11 22:05:25 +1000923 if (options.verify_host_key_dns) {
Damien Miller150b5572003-11-17 21:19:29 +1100924 if (matching_host_key_dns)
Damien Miller7392ae62003-06-11 22:05:25 +1000925 snprintf(msg2, sizeof(msg2),
926 "Matching host key fingerprint"
927 " found in DNS.\n");
928 else
929 snprintf(msg2, sizeof(msg2),
930 "No matching host key fingerprint"
931 " found in DNS.\n");
932 }
Damien Miller49d795c2002-01-22 23:34:12 +1100933 snprintf(msg, sizeof(msg),
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000934 "The authenticity of host '%.200s (%s)' can't be "
Ben Lindstrom3ed66402002-08-01 01:21:56 +0000935 "established%s\n"
Damien Miller10288242008-06-30 00:04:03 +1000936 "%s key fingerprint is %s.%s%s\n%s"
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000937 "Are you sure you want to continue connecting "
Ben Lindstrom3ed66402002-08-01 01:21:56 +0000938 "(yes/no)? ",
Damien Miller10288242008-06-30 00:04:03 +1000939 host, ip, msg1, type, fp,
940 options.visual_host_key ? "\n" : "",
941 options.visual_host_key ? ra : "",
942 msg2);
Darren Tuckera627d422013-06-02 07:31:17 +1000943 free(ra);
944 free(fp);
Damien Miller49d795c2002-01-22 23:34:12 +1100945 if (!confirm(msg))
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000946 goto fail;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000947 hostkey_trusted = 1; /* user explicitly confirmed */
Damien Miller95def091999-11-25 00:26:21 +1100948 }
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000949 /*
djm@openbsd.org22376d22017-09-03 23:33:13 +0000950 * If in "new" or "off" strict mode, add the key automatically
951 * to the local known_hosts file.
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000952 */
Damien Miller1227d4c2005-03-02 12:06:51 +1100953 if (options.check_host_ip && ip_status == HOST_NEW) {
Damien Millerd925dcd2010-12-01 12:21:51 +1100954 snprintf(hostline, sizeof(hostline), "%s,%s", host, ip);
Damien Miller1227d4c2005-03-02 12:06:51 +1100955 hostp = hostline;
956 if (options.hash_known_hosts) {
957 /* Add hash of host and IP separately */
Damien Miller295ee632011-05-29 21:42:31 +1000958 r = add_host_to_hostfile(user_hostfiles[0],
959 host, host_key, options.hash_known_hosts) &&
960 add_host_to_hostfile(user_hostfiles[0], ip,
Damien Miller1227d4c2005-03-02 12:06:51 +1100961 host_key, options.hash_known_hosts);
962 } else {
963 /* Add unhashed "host,ip" */
Damien Miller295ee632011-05-29 21:42:31 +1000964 r = add_host_to_hostfile(user_hostfiles[0],
Damien Miller1227d4c2005-03-02 12:06:51 +1100965 hostline, host_key,
966 options.hash_known_hosts);
967 }
968 } else {
Damien Miller295ee632011-05-29 21:42:31 +1000969 r = add_host_to_hostfile(user_hostfiles[0], host,
970 host_key, options.hash_known_hosts);
Damien Miller1227d4c2005-03-02 12:06:51 +1100971 hostp = host;
972 }
973
974 if (!r)
Damien Miller996acd22003-04-09 20:59:48 +1000975 logit("Failed to add the host to the list of known "
Damien Miller295ee632011-05-29 21:42:31 +1000976 "hosts (%.500s).", user_hostfiles[0]);
Damien Miller95def091999-11-25 00:26:21 +1100977 else
Damien Miller996acd22003-04-09 20:59:48 +1000978 logit("Warning: Permanently added '%.200s' (%s) to the "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000979 "list of known hosts.", hostp, type);
Damien Miller95def091999-11-25 00:26:21 +1100980 break;
Damien Miller1aed65e2010-03-04 21:53:35 +1100981 case HOST_REVOKED:
982 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
983 error("@ WARNING: REVOKED HOST KEY DETECTED! @");
984 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
985 error("The %s host key for %s is marked as revoked.", type, host);
986 error("This could mean that a stolen key is being used to");
987 error("impersonate this host.");
988
989 /*
990 * If strict host key checking is in use, the user will have
991 * to edit the key manually and we can only abort.
992 */
djm@openbsd.org22376d22017-09-03 23:33:13 +0000993 if (options.strict_host_key_checking !=
994 SSH_STRICT_HOSTKEY_OFF) {
Damien Miller1aed65e2010-03-04 21:53:35 +1100995 error("%s host key for %.200s was revoked and you have "
996 "requested strict checking.", type, host);
997 goto fail;
998 }
999 goto continue_unsafe;
1000
Damien Miller95def091999-11-25 00:26:21 +11001001 case HOST_CHANGED:
Damien Miller0a80ca12010-02-27 07:55:05 +11001002 if (want_cert) {
1003 /*
1004 * This is only a debug() since it is valid to have
1005 * CAs with wildcard DNS matches that don't match
1006 * all hosts that one might visit.
1007 */
1008 debug("Host certificate authority does not "
Damien Millerd925dcd2010-12-01 12:21:51 +11001009 "match %s in %s:%lu", CA_MARKER,
1010 host_found->file, host_found->line);
Damien Miller0a80ca12010-02-27 07:55:05 +11001011 goto fail;
1012 }
Damien Millerda828392006-08-05 11:35:45 +10001013 if (readonly == ROQUIET)
1014 goto fail;
Damien Miller95def091999-11-25 00:26:21 +11001015 if (options.check_host_ip && host_ip_differ) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001016 char *key_msg;
Damien Miller95def091999-11-25 00:26:21 +11001017 if (ip_status == HOST_NEW)
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001018 key_msg = "is unknown";
Damien Miller95def091999-11-25 00:26:21 +11001019 else if (ip_status == HOST_OK)
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001020 key_msg = "is unchanged";
Damien Miller95def091999-11-25 00:26:21 +11001021 else
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001022 key_msg = "has a different value";
Damien Miller95def091999-11-25 00:26:21 +11001023 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1024 error("@ WARNING: POSSIBLE DNS SPOOFING DETECTED! @");
1025 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
Damien Millere247cc42000-05-07 12:03:14 +10001026 error("The %s host key for %s has changed,", type, host);
Darren Tuckerff4454d2008-06-13 10:21:51 +10001027 error("and the key for the corresponding IP address %s", ip);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001028 error("%s. This could either mean that", key_msg);
Damien Miller95def091999-11-25 00:26:21 +11001029 error("DNS SPOOFING is happening or the IP address for the host");
Ben Lindstrom46c16222000-12-22 01:43:59 +00001030 error("and its host key have changed at the same time.");
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +00001031 if (ip_status != HOST_NEW)
Damien Millerd925dcd2010-12-01 12:21:51 +11001032 error("Offending key for IP in %s:%lu",
1033 ip_found->file, ip_found->line);
Damien Miller95def091999-11-25 00:26:21 +11001034 }
1035 /* The host key has changed. */
Damien Miller5a388972003-11-17 21:10:47 +11001036 warn_changed_key(host_key);
Damien Miller95def091999-11-25 00:26:21 +11001037 error("Add correct host key in %.100s to get rid of this message.",
Damien Miller295ee632011-05-29 21:42:31 +10001038 user_hostfiles[0]);
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +00001039 error("Offending %s key in %s:%lu",
1040 sshkey_type(host_found->key),
Damien Millerd925dcd2010-12-01 12:21:51 +11001041 host_found->file, host_found->line);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001042
Damien Miller5428f641999-11-25 11:54:57 +11001043 /*
1044 * If strict host key checking is in use, the user will have
1045 * to edit the key manually and we can only abort.
1046 */
djm@openbsd.org22376d22017-09-03 23:33:13 +00001047 if (options.strict_host_key_checking !=
1048 SSH_STRICT_HOSTKEY_OFF) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001049 error("%s host key for %.200s has changed and you have "
1050 "requested strict checking.", type, host);
1051 goto fail;
1052 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001053
Damien Miller1aed65e2010-03-04 21:53:35 +11001054 continue_unsafe:
Damien Miller5428f641999-11-25 11:54:57 +11001055 /*
1056 * If strict host key checking has not been requested, allow
Damien Miller941ac452003-06-04 20:31:53 +10001057 * the connection but without MITM-able authentication or
Damien Miller437edb92006-08-05 09:11:13 +10001058 * forwarding.
Damien Miller5428f641999-11-25 11:54:57 +11001059 */
Damien Miller95def091999-11-25 00:26:21 +11001060 if (options.password_authentication) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001061 error("Password authentication is disabled to avoid "
1062 "man-in-the-middle attacks.");
Damien Miller95def091999-11-25 00:26:21 +11001063 options.password_authentication = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001064 cancelled_forwarding = 1;
Damien Miller95def091999-11-25 00:26:21 +11001065 }
Damien Miller941ac452003-06-04 20:31:53 +10001066 if (options.kbd_interactive_authentication) {
1067 error("Keyboard-interactive authentication is disabled"
1068 " to avoid man-in-the-middle attacks.");
1069 options.kbd_interactive_authentication = 0;
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 }
1073 if (options.challenge_response_authentication) {
1074 error("Challenge/response authentication is disabled"
1075 " to avoid man-in-the-middle attacks.");
1076 options.challenge_response_authentication = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001077 cancelled_forwarding = 1;
Damien Miller941ac452003-06-04 20:31:53 +10001078 }
Damien Miller95def091999-11-25 00:26:21 +11001079 if (options.forward_agent) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001080 error("Agent forwarding is disabled to avoid "
1081 "man-in-the-middle attacks.");
Damien Miller95def091999-11-25 00:26:21 +11001082 options.forward_agent = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001083 cancelled_forwarding = 1;
Damien Miller95def091999-11-25 00:26:21 +11001084 }
Ben Lindstromc72745a2000-12-02 19:03:54 +00001085 if (options.forward_x11) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001086 error("X11 forwarding is disabled to avoid "
1087 "man-in-the-middle attacks.");
Ben Lindstromc72745a2000-12-02 19:03:54 +00001088 options.forward_x11 = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001089 cancelled_forwarding = 1;
Ben Lindstromc72745a2000-12-02 19:03:54 +00001090 }
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001091 if (options.num_local_forwards > 0 ||
1092 options.num_remote_forwards > 0) {
1093 error("Port forwarding is disabled to avoid "
1094 "man-in-the-middle attacks.");
1095 options.num_local_forwards =
Damien Miller9f0f5c62001-12-21 14:45:46 +11001096 options.num_remote_forwards = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001097 cancelled_forwarding = 1;
Ben Lindstromc72745a2000-12-02 19:03:54 +00001098 }
Damien Miller437edb92006-08-05 09:11:13 +10001099 if (options.tun_open != SSH_TUNMODE_NO) {
1100 error("Tunnel forwarding is disabled to avoid "
1101 "man-in-the-middle attacks.");
1102 options.tun_open = SSH_TUNMODE_NO;
Darren Tucker068e01f2008-07-02 22:33:55 +10001103 cancelled_forwarding = 1;
Damien Miller437edb92006-08-05 09:11:13 +10001104 }
Darren Tucker068e01f2008-07-02 22:33:55 +10001105 if (options.exit_on_forward_failure && cancelled_forwarding)
1106 fatal("Error: forwarding disabled due to host key "
1107 "check failure");
1108
Damien Miller5428f641999-11-25 11:54:57 +11001109 /*
1110 * XXX Should permit the user to change to use the new id.
1111 * This could be done by converting the host key to an
1112 * identifying sentence, tell that the host identifies itself
Darren Tuckere2b36742010-01-13 22:42:34 +11001113 * by that sentence, and ask the user if he/she wishes to
Damien Miller5428f641999-11-25 11:54:57 +11001114 * accept the authentication.
1115 */
Damien Miller95def091999-11-25 00:26:21 +11001116 break;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001117 case HOST_FOUND:
1118 fatal("internal error");
1119 break;
Damien Miller95def091999-11-25 00:26:21 +11001120 }
Ben Lindstromc72745a2000-12-02 19:03:54 +00001121
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +00001122 if (options.check_host_ip && host_status != HOST_CHANGED &&
1123 ip_status == HOST_CHANGED) {
Damien Miller49d795c2002-01-22 23:34:12 +11001124 snprintf(msg, sizeof(msg),
1125 "Warning: the %s host key for '%.200s' "
1126 "differs from the key for the IP address '%.128s'"
Damien Millerd925dcd2010-12-01 12:21:51 +11001127 "\nOffending key for IP in %s:%lu",
1128 type, host, ip, ip_found->file, ip_found->line);
Damien Miller49d795c2002-01-22 23:34:12 +11001129 if (host_status == HOST_OK) {
1130 len = strlen(msg);
1131 snprintf(msg + len, sizeof(msg) - len,
Damien Millerd925dcd2010-12-01 12:21:51 +11001132 "\nMatching host key in %s:%lu",
1133 host_found->file, host_found->line);
Damien Miller49d795c2002-01-22 23:34:12 +11001134 }
djm@openbsd.org22376d22017-09-03 23:33:13 +00001135 if (options.strict_host_key_checking ==
1136 SSH_STRICT_HOSTKEY_ASK) {
Damien Miller49d795c2002-01-22 23:34:12 +11001137 strlcat(msg, "\nAre you sure you want "
1138 "to continue connecting (yes/no)? ", sizeof(msg));
1139 if (!confirm(msg))
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001140 goto fail;
djm@openbsd.org22376d22017-09-03 23:33:13 +00001141 } else if (options.strict_host_key_checking !=
1142 SSH_STRICT_HOSTKEY_OFF) {
1143 logit("%s", msg);
1144 error("Exiting, you have requested strict checking.");
1145 goto fail;
Damien Miller49d795c2002-01-22 23:34:12 +11001146 } else {
Damien Millerab2db412003-06-02 19:09:13 +10001147 logit("%s", msg);
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +00001148 }
1149 }
1150
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00001151 if (!hostkey_trusted && options.update_hostkeys) {
1152 debug("%s: hostkey not known or explicitly trusted: "
1153 "disabling UpdateHostkeys", __func__);
1154 options.update_hostkeys = 0;
1155 }
1156
Darren Tuckera627d422013-06-02 07:31:17 +10001157 free(ip);
1158 free(host);
Damien Millerd925dcd2010-12-01 12:21:51 +11001159 if (host_hostkeys != NULL)
1160 free_hostkeys(host_hostkeys);
1161 if (ip_hostkeys != NULL)
1162 free_hostkeys(ip_hostkeys);
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001163 return 0;
1164
1165fail:
Damien Miller1aed65e2010-03-04 21:53:35 +11001166 if (want_cert && host_status != HOST_REVOKED) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001167 /*
1168 * No matching certificate. Downgrade cert to raw key and
1169 * search normally.
1170 */
1171 debug("No matching CA found. Retry with plain key");
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +00001172 if ((r = sshkey_from_private(host_key, &raw_key)) != 0)
1173 fatal("%s: sshkey_from_private: %s",
1174 __func__, ssh_err(r));
1175 if ((r = sshkey_drop_cert(raw_key)) != 0)
1176 fatal("Couldn't drop certificate: %s", ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001177 host_key = raw_key;
1178 goto retry;
1179 }
dtucker@openbsd.orgf1f047f2018-02-07 22:52:45 +00001180 sshkey_free(raw_key);
Darren Tuckera627d422013-06-02 07:31:17 +10001181 free(ip);
1182 free(host);
Damien Millerd925dcd2010-12-01 12:21:51 +11001183 if (host_hostkeys != NULL)
1184 free_hostkeys(host_hostkeys);
1185 if (ip_hostkeys != NULL)
1186 free_hostkeys(ip_hostkeys);
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001187 return -1;
1188}
1189
Damien Miller37876e92003-05-15 10:19:46 +10001190/* returns 0 if key verifies or -1 if key does NOT verify */
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001191int
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001192verify_host_key(char *host, struct sockaddr *hostaddr, struct sshkey *host_key)
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001193{
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001194 u_int i;
Damien Miller6b37fbb2014-07-04 08:59:24 +10001195 int r = -1, flags = 0;
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001196 char valid[64], *fp = NULL, *cafp = NULL;
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001197 struct sshkey *plain = NULL;
Damien Millerd925dcd2010-12-01 12:21:51 +11001198
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001199 if ((fp = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001200 options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL) {
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001201 error("%s: fingerprint host key: %s", __func__, ssh_err(r));
1202 r = -1;
1203 goto out;
1204 }
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001205
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001206 if (sshkey_is_cert(host_key)) {
1207 if ((cafp = sshkey_fingerprint(host_key->cert->signature_key,
1208 options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL) {
1209 error("%s: fingerprint CA key: %s",
1210 __func__, ssh_err(r));
1211 r = -1;
1212 goto out;
1213 }
1214 sshkey_format_cert_validity(host_key->cert,
1215 valid, sizeof(valid));
1216 debug("Server host certificate: %s %s, serial %llu "
1217 "ID \"%s\" CA %s %s valid %s",
1218 sshkey_ssh_name(host_key), fp,
djm@openbsd.org8ca915f2015-11-20 01:45:29 +00001219 (unsigned long long)host_key->cert->serial,
1220 host_key->cert->key_id,
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001221 sshkey_ssh_name(host_key->cert->signature_key), cafp,
1222 valid);
1223 for (i = 0; i < host_key->cert->nprincipals; i++) {
1224 debug2("Server host certificate hostname: %s",
1225 host_key->cert->principals[i]);
1226 }
1227 } else {
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001228 debug("Server host key: %s %s", sshkey_ssh_name(host_key), fp);
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001229 }
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001230
1231 if (sshkey_equal(previous_host_key, host_key)) {
1232 debug2("%s: server host key %s %s matches cached key",
1233 __func__, sshkey_type(host_key), fp);
1234 r = 0;
1235 goto out;
1236 }
1237
1238 /* Check in RevokedHostKeys file if specified */
1239 if (options.revoked_host_keys != NULL) {
1240 r = sshkey_check_revoked(host_key, options.revoked_host_keys);
1241 switch (r) {
1242 case 0:
1243 break; /* not revoked */
1244 case SSH_ERR_KEY_REVOKED:
1245 error("Host key %s %s revoked by file %s",
1246 sshkey_type(host_key), fp,
1247 options.revoked_host_keys);
1248 r = -1;
1249 goto out;
1250 default:
1251 error("Error checking host key %s %s in "
1252 "revoked keys file %s: %s", sshkey_type(host_key),
1253 fp, options.revoked_host_keys, ssh_err(r));
1254 r = -1;
1255 goto out;
1256 }
Damien Miller6b37fbb2014-07-04 08:59:24 +10001257 }
1258
Damien Miller7d6a9fb2014-04-20 13:23:43 +10001259 if (options.verify_host_key_dns) {
1260 /*
1261 * XXX certs are not yet supported for DNS, so downgrade
1262 * them and try the plain key.
1263 */
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001264 if ((r = sshkey_from_private(host_key, &plain)) != 0)
1265 goto out;
1266 if (sshkey_is_cert(plain))
1267 sshkey_drop_cert(plain);
Damien Miller7d6a9fb2014-04-20 13:23:43 +10001268 if (verify_host_key_dns(host, hostaddr, plain, &flags) == 0) {
1269 if (flags & DNS_VERIFY_FOUND) {
1270 if (options.verify_host_key_dns == 1 &&
1271 flags & DNS_VERIFY_MATCH &&
1272 flags & DNS_VERIFY_SECURE) {
Damien Miller6b37fbb2014-07-04 08:59:24 +10001273 r = 0;
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001274 goto out;
Damien Miller7d6a9fb2014-04-20 13:23:43 +10001275 }
1276 if (flags & DNS_VERIFY_MATCH) {
1277 matching_host_key_dns = 1;
1278 } else {
djm@openbsd.orgaea59a02017-09-14 04:32:21 +00001279 warn_changed_key(plain);
1280 error("Update the SSHFP RR in DNS "
1281 "with the new host key to get rid "
1282 "of this message.");
Damien Miller7d6a9fb2014-04-20 13:23:43 +10001283 }
Damien Miller150b5572003-11-17 21:19:29 +11001284 }
Damien Miller37876e92003-05-15 10:19:46 +10001285 }
1286 }
Damien Miller6b37fbb2014-07-04 08:59:24 +10001287 r = check_host_key(host, hostaddr, options.port, host_key, RDRW,
Damien Miller295ee632011-05-29 21:42:31 +10001288 options.user_hostfiles, options.num_user_hostfiles,
1289 options.system_hostfiles, options.num_system_hostfiles);
Damien Miller6b37fbb2014-07-04 08:59:24 +10001290
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001291out:
1292 sshkey_free(plain);
1293 free(fp);
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001294 free(cafp);
Damien Miller6b37fbb2014-07-04 08:59:24 +10001295 if (r == 0 && host_key != NULL) {
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +00001296 sshkey_free(previous_host_key);
1297 r = sshkey_from_private(host_key, &previous_host_key);
Damien Miller6b37fbb2014-07-04 08:59:24 +10001298 }
1299
1300 return r;
Damien Millera34a28b1999-12-14 10:47:15 +11001301}
Damien Miller037a0dc1999-12-07 15:38:31 +11001302
Damien Miller396691a2000-01-20 22:44:08 +11001303/*
1304 * Starts a dialog with the server, and authenticates the current user on the
1305 * server. This does not need any extra privileges. The basic connection
1306 * to the server must already have been established before this is called.
1307 * If login fails, this function prints an error and never returns.
1308 * This function does not require super-user privileges.
1309 */
1310void
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001311ssh_login(Sensitive *sensitive, const char *orighost,
Damien Millerd925dcd2010-12-01 12:21:51 +11001312 struct sockaddr *hostaddr, u_short port, struct passwd *pw, int timeout_ms)
Damien Miller396691a2000-01-20 22:44:08 +11001313{
Damien Miller0faf7472013-10-17 11:47:23 +11001314 char *host;
Damien Millereba71ba2000-04-29 23:57:08 +10001315 char *server_user, *local_user;
1316
Damien Millereba71ba2000-04-29 23:57:08 +10001317 local_user = xstrdup(pw->pw_name);
1318 server_user = options.user ? options.user : local_user;
Damien Miller396691a2000-01-20 22:44:08 +11001319
1320 /* Convert the user-supplied hostname into all lowercase. */
1321 host = xstrdup(orighost);
Damien Miller0faf7472013-10-17 11:47:23 +11001322 lowercase(host);
Damien Miller396691a2000-01-20 22:44:08 +11001323
1324 /* Exchange protocol version identification strings with the server. */
Damien Miller67bd0622007-09-17 12:06:57 +10001325 ssh_exchange_identification(timeout_ms);
Damien Miller396691a2000-01-20 22:44:08 +11001326
1327 /* Put the connection into non-blocking mode. */
1328 packet_set_nonblocking();
1329
Damien Miller396691a2000-01-20 22:44:08 +11001330 /* key exchange */
Damien Miller396691a2000-01-20 22:44:08 +11001331 /* authenticate user */
dtucker@openbsd.orgbb2289e2015-04-14 04:17:03 +00001332 debug("Authenticating to %s:%d as '%s'", host, port, server_user);
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001333 ssh_kex2(host, hostaddr, port);
1334 ssh_userauth2(local_user, server_user, host, sensitive);
Darren Tuckera627d422013-06-02 07:31:17 +10001335 free(local_user);
Damien Miller396691a2000-01-20 22:44:08 +11001336}
Damien Miller79438cc2001-02-16 12:34:57 +11001337
1338void
1339ssh_put_password(char *password)
1340{
1341 int size;
1342 char *padded;
1343
Ben Lindstromd20d0f32001-03-10 17:22:20 +00001344 if (datafellows & SSH_BUG_PASSWORDPAD) {
Ben Lindstrom664408d2001-06-09 01:42:01 +00001345 packet_put_cstring(password);
Ben Lindstromd20d0f32001-03-10 17:22:20 +00001346 return;
1347 }
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +00001348 size = ROUNDUP(strlen(password) + 1, 32);
Damien Miller07d86be2006-03-26 14:19:21 +11001349 padded = xcalloc(1, size);
Damien Miller79438cc2001-02-16 12:34:57 +11001350 strlcpy(padded, password, size);
1351 packet_put_string(padded, size);
Damien Millera5103f42014-02-04 11:20:14 +11001352 explicit_bzero(padded, size);
Darren Tuckera627d422013-06-02 07:31:17 +10001353 free(padded);
Damien Miller79438cc2001-02-16 12:34:57 +11001354}
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001355
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001356/* print all known host keys for a given host, but skip keys of given type */
1357static int
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001358show_other_keys(struct hostkeys *hostkeys, struct sshkey *key)
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001359{
Damien Miller106bf1c2013-12-29 17:54:03 +11001360 int type[] = {
Damien Miller106bf1c2013-12-29 17:54:03 +11001361 KEY_RSA,
1362 KEY_DSA,
1363 KEY_ECDSA,
1364 KEY_ED25519,
1365 -1
1366 };
Damien Millerd925dcd2010-12-01 12:21:51 +11001367 int i, ret = 0;
1368 char *fp, *ra;
1369 const struct hostkey_entry *found;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001370
1371 for (i = 0; type[i] != -1; i++) {
1372 if (type[i] == key->type)
1373 continue;
Damien Millerd925dcd2010-12-01 12:21:51 +11001374 if (!lookup_key_in_hostkeys_by_type(hostkeys, type[i], &found))
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001375 continue;
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001376 fp = sshkey_fingerprint(found->key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001377 options.fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001378 ra = sshkey_fingerprint(found->key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001379 options.fingerprint_hash, SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001380 if (fp == NULL || ra == NULL)
1381 fatal("%s: sshkey_fingerprint fail", __func__);
Damien Millerd925dcd2010-12-01 12:21:51 +11001382 logit("WARNING: %s key found for host %s\n"
1383 "in %s:%lu\n"
1384 "%s key fingerprint %s.",
1385 key_type(found->key),
1386 found->host, found->file, found->line,
1387 key_type(found->key), fp);
1388 if (options.visual_host_key)
1389 logit("%s", ra);
Darren Tuckera627d422013-06-02 07:31:17 +10001390 free(ra);
1391 free(fp);
Damien Millerd925dcd2010-12-01 12:21:51 +11001392 ret = 1;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001393 }
Damien Millerd925dcd2010-12-01 12:21:51 +11001394 return ret;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001395}
Damien Miller5a388972003-11-17 21:10:47 +11001396
1397static void
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001398warn_changed_key(struct sshkey *host_key)
Damien Miller5a388972003-11-17 21:10:47 +11001399{
1400 char *fp;
Damien Miller5a388972003-11-17 21:10:47 +11001401
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001402 fp = sshkey_fingerprint(host_key, options.fingerprint_hash,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001403 SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001404 if (fp == NULL)
1405 fatal("%s: sshkey_fingerprint fail", __func__);
Damien Miller5a388972003-11-17 21:10:47 +11001406
1407 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1408 error("@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @");
1409 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1410 error("IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!");
1411 error("Someone could be eavesdropping on you right now (man-in-the-middle attack)!");
Damien Miller05c89972011-01-06 22:42:04 +11001412 error("It is also possible that a host key has just been changed.");
Damien Miller5a388972003-11-17 21:10:47 +11001413 error("The fingerprint for the %s key sent by the remote host is\n%s.",
djm@openbsd.orgaea59a02017-09-14 04:32:21 +00001414 key_type(host_key), fp);
Damien Miller5a388972003-11-17 21:10:47 +11001415 error("Please contact your system administrator.");
1416
Darren Tuckera627d422013-06-02 07:31:17 +10001417 free(fp);
Damien Miller5a388972003-11-17 21:10:47 +11001418}
Damien Millerd27b9472005-12-13 19:29:02 +11001419
1420/*
1421 * Execute a local command
1422 */
1423int
1424ssh_local_cmd(const char *args)
1425{
1426 char *shell;
1427 pid_t pid;
1428 int status;
Damien Millered3a8eb2011-01-07 10:02:52 +11001429 void (*osighand)(int);
Damien Millerd27b9472005-12-13 19:29:02 +11001430
1431 if (!options.permit_local_command ||
1432 args == NULL || !*args)
1433 return (1);
1434
Damien Miller38d9a962010-10-07 22:07:11 +11001435 if ((shell = getenv("SHELL")) == NULL || *shell == '\0')
Damien Millerd27b9472005-12-13 19:29:02 +11001436 shell = _PATH_BSHELL;
1437
Damien Millered3a8eb2011-01-07 10:02:52 +11001438 osighand = signal(SIGCHLD, SIG_DFL);
Damien Millerd27b9472005-12-13 19:29:02 +11001439 pid = fork();
1440 if (pid == 0) {
Damien Miller6fb6fd52011-01-16 23:17:45 +11001441 signal(SIGPIPE, SIG_DFL);
Damien Millerd27b9472005-12-13 19:29:02 +11001442 debug3("Executing %s -c \"%s\"", shell, args);
1443 execl(shell, shell, "-c", args, (char *)NULL);
1444 error("Couldn't execute %s -c \"%s\": %s",
1445 shell, args, strerror(errno));
1446 _exit(1);
1447 } else if (pid == -1)
1448 fatal("fork failed: %.100s", strerror(errno));
1449 while (waitpid(pid, &status, 0) == -1)
1450 if (errno != EINTR)
1451 fatal("Couldn't wait for child: %s", strerror(errno));
Damien Millered3a8eb2011-01-07 10:02:52 +11001452 signal(SIGCHLD, osighand);
Damien Millerd27b9472005-12-13 19:29:02 +11001453
1454 if (!WIFEXITED(status))
1455 return (1);
1456
1457 return (WEXITSTATUS(status));
1458}
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001459
1460void
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001461maybe_add_key_to_agent(char *authfile, struct sshkey *private, char *comment,
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001462 char *passphrase)
1463{
1464 int auth_sock = -1, r;
1465
1466 if (options.add_keys_to_agent == 0)
1467 return;
1468
1469 if ((r = ssh_get_authentication_socket(&auth_sock)) != 0) {
1470 debug3("no authentication agent, not adding key");
1471 return;
1472 }
1473
1474 if (options.add_keys_to_agent == 2 &&
1475 !ask_permission("Add key %s (%s) to agent?", authfile, comment)) {
1476 debug3("user denied adding this key");
dtucker@openbsd.org566b3a42017-03-10 03:22:40 +00001477 close(auth_sock);
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001478 return;
1479 }
1480
1481 if ((r = ssh_add_identity_constrained(auth_sock, private, comment, 0,
1482 (options.add_keys_to_agent == 3))) == 0)
1483 debug("identity added to agent: %s", authfile);
1484 else
1485 debug("could not add identity to agent: %s (%d)", authfile, r);
dtucker@openbsd.org566b3a42017-03-10 03:22:40 +00001486 close(auth_sock);
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001487}