blob: aaae5fc9f03bc8756e0f1f7ebf14a01a0a20dfd3 [file] [log] [blame]
djm@openbsd.org83fa3a02017-07-01 13:50:45 +00001/* $OpenBSD: sshconnect.c,v 1.283 2017/07/01 13:50:45 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
107ssh_proxy_fdpass_connect(const char *host, u_short port,
108 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. */
178 packet_set_connection(sock, sock);
Damien Miller1262b662013-08-21 02:44:24 +1000179
180 return 0;
181}
182
Damien Miller95def091999-11-25 00:26:21 +1100183/*
184 * Connect to the given ssh server using a proxy command.
185 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000186static int
Ben Lindstromf9c48842002-06-11 16:37:51 +0000187ssh_proxy_connect(const char *host, u_short port, const char *proxy_command)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000188{
Damien Miller1262b662013-08-21 02:44:24 +1000189 char *command_string;
Damien Miller95def091999-11-25 00:26:21 +1100190 int pin[2], pout[2];
Damien Miller166fca82000-04-20 07:42:21 +1000191 pid_t pid;
Damien Miller1262b662013-08-21 02:44:24 +1000192 char *shell;
Damien Miller1d824ab2007-09-17 11:58:04 +1000193
Damien Miller38d9a962010-10-07 22:07:11 +1100194 if ((shell = getenv("SHELL")) == NULL || *shell == '\0')
Damien Miller1d824ab2007-09-17 11:58:04 +1000195 shell = _PATH_BSHELL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000196
Damien Miller95def091999-11-25 00:26:21 +1100197 /* Create pipes for communicating with the proxy. */
198 if (pipe(pin) < 0 || pipe(pout) < 0)
199 fatal("Could not create pipes to communicate with the proxy: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100200 strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000201
Damien Miller1262b662013-08-21 02:44:24 +1000202 command_string = expand_proxy_command(proxy_command, options.user,
203 host, port);
Damien Miller95def091999-11-25 00:26:21 +1100204 debug("Executing proxy command: %.500s", command_string);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000205
Damien Miller95def091999-11-25 00:26:21 +1100206 /* Fork and execute the proxy command. */
207 if ((pid = fork()) == 0) {
208 char *argv[10];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000209
Damien Miller95def091999-11-25 00:26:21 +1100210 /* Child. Permanently give up superuser privileges. */
Damien Miller2e5fe882006-06-13 13:10:00 +1000211 permanently_drop_suid(original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100212
213 /* Redirect stdin and stdout. */
214 close(pin[1]);
215 if (pin[0] != 0) {
216 if (dup2(pin[0], 0) < 0)
217 perror("dup2 stdin");
218 close(pin[0]);
219 }
220 close(pout[0]);
221 if (dup2(pout[1], 1) < 0)
222 perror("dup2 stdout");
223 /* Cannot be 1 because pin allocated two descriptors. */
224 close(pout[1]);
225
226 /* Stderr is left as it is so that error messages get
227 printed on the user's terminal. */
Damien Miller1d824ab2007-09-17 11:58:04 +1000228 argv[0] = shell;
Damien Miller95def091999-11-25 00:26:21 +1100229 argv[1] = "-c";
230 argv[2] = command_string;
231 argv[3] = NULL;
232
233 /* Execute the proxy command. Note that we gave up any
234 extra privileges above. */
Damien Miller6fb6fd52011-01-16 23:17:45 +1100235 signal(SIGPIPE, SIG_DFL);
Kevin Stevesfcd5d602001-01-07 11:45:22 +0000236 execv(argv[0], argv);
237 perror(argv[0]);
Damien Miller95def091999-11-25 00:26:21 +1100238 exit(1);
239 }
240 /* Parent. */
241 if (pid < 0)
242 fatal("fork failed: %.100s", strerror(errno));
Damien Miller8c4e18a2002-09-19 12:05:02 +1000243 else
244 proxy_command_pid = pid; /* save pid to clean up later */
Damien Miller95def091999-11-25 00:26:21 +1100245
246 /* Close child side of the descriptors. */
247 close(pin[0]);
248 close(pout[1]);
249
250 /* Free the command name. */
Darren Tuckera627d422013-06-02 07:31:17 +1000251 free(command_string);
Damien Miller95def091999-11-25 00:26:21 +1100252
253 /* Set the connection file descriptors. */
254 packet_set_connection(pout[0], pin[1]);
255
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000256 /* Indicate OK return */
257 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000258}
259
Damien Millera41ccca2010-10-07 22:07:32 +1100260void
261ssh_kill_proxy_command(void)
262{
263 /*
264 * Send SIGHUP to proxy command if used. We don't wait() in
265 * case it hangs and instead rely on init to reap the child
266 */
267 if (proxy_command_pid > 1)
Damien Miller45fcdaa2010-10-07 22:07:58 +1100268 kill(proxy_command_pid, SIGHUP);
Damien Millera41ccca2010-10-07 22:07:32 +1100269}
270
Damien Miller95def091999-11-25 00:26:21 +1100271/*
272 * Creates a (possibly privileged) socket for use as the ssh connection.
273 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000274static int
Damien Miller2372ace2003-05-14 13:42:23 +1000275ssh_create_socket(int privileged, struct addrinfo *ai)
Damien Miller95def091999-11-25 00:26:21 +1100276{
Darren Tuckere6e52f82013-10-10 10:28:07 +1100277 int sock, r, gaierr;
Damien Millerd1a7a9c2014-02-07 09:24:33 +1100278 struct addrinfo hints, *res = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000279
Darren Tucker7bd98e72010-01-10 10:31:12 +1100280 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Darren Tucker6e7fe1c2010-01-08 17:07:22 +1100281 if (sock < 0) {
Darren Tuckere6e52f82013-10-10 10:28:07 +1100282 error("socket: %s", strerror(errno));
Darren Tucker6e7fe1c2010-01-08 17:07:22 +1100283 return -1;
284 }
285 fcntl(sock, F_SETFD, FD_CLOEXEC);
Ben Lindstrome0f88042001-04-30 13:06:24 +0000286
287 /* Bind the socket to an alternative local IP address */
Darren Tuckere6e52f82013-10-10 10:28:07 +1100288 if (options.bind_address == NULL && !privileged)
Ben Lindstrome0f88042001-04-30 13:06:24 +0000289 return sock;
290
Damien Millerd1a7a9c2014-02-07 09:24:33 +1100291 if (options.bind_address) {
292 memset(&hints, 0, sizeof(hints));
293 hints.ai_family = ai->ai_family;
294 hints.ai_socktype = ai->ai_socktype;
295 hints.ai_protocol = ai->ai_protocol;
296 hints.ai_flags = AI_PASSIVE;
297 gaierr = getaddrinfo(options.bind_address, NULL, &hints, &res);
298 if (gaierr) {
299 error("getaddrinfo: %s: %s", options.bind_address,
300 ssh_gai_strerror(gaierr));
301 close(sock);
302 return -1;
303 }
Ben Lindstrome0f88042001-04-30 13:06:24 +0000304 }
Darren Tuckere6e52f82013-10-10 10:28:07 +1100305 /*
306 * If we are running as root and want to connect to a privileged
307 * port, bind our own socket to a privileged port.
308 */
309 if (privileged) {
310 PRIV_START;
Damien Millerd1a7a9c2014-02-07 09:24:33 +1100311 r = bindresvport_sa(sock, res ? res->ai_addr : NULL);
Darren Tuckere6e52f82013-10-10 10:28:07 +1100312 PRIV_END;
313 if (r < 0) {
314 error("bindresvport_sa: af=%d %s", ai->ai_family,
315 strerror(errno));
316 goto fail;
317 }
318 } else {
319 if (bind(sock, res->ai_addr, res->ai_addrlen) < 0) {
320 error("bind: %s: %s", options.bind_address,
321 strerror(errno));
322 fail:
323 close(sock);
324 freeaddrinfo(res);
325 return -1;
326 }
Ben Lindstrome0f88042001-04-30 13:06:24 +0000327 }
Damien Millerd1a7a9c2014-02-07 09:24:33 +1100328 if (res != NULL)
329 freeaddrinfo(res);
Damien Miller95def091999-11-25 00:26:21 +1100330 return sock;
331}
332
djm@openbsd.org45404282017-06-24 05:37:44 +0000333/*
334 * Wait up to *timeoutp milliseconds for fd to be readable. Updates
335 * *timeoutp with time remaining.
336 * Returns 0 if fd ready or -1 on timeout or error (see errno).
337 */
338static int
339waitrfd(int fd, int *timeoutp)
340{
341 struct pollfd pfd;
342 struct timeval t_start;
343 int oerrno, r;
344
345 gettimeofday(&t_start, NULL);
346 pfd.fd = fd;
347 pfd.events = POLLIN;
348 for (; *timeoutp >= 0;) {
349 r = poll(&pfd, 1, *timeoutp);
350 oerrno = errno;
351 ms_subtract_diff(&t_start, timeoutp);
352 errno = oerrno;
353 if (r > 0)
354 return 0;
355 else if (r == -1 && errno != EAGAIN)
356 return -1;
357 else if (r == 0)
358 break;
359 }
360 /* timeout */
361 errno = ETIMEDOUT;
362 return -1;
363}
364
Damien Millerb78d5eb2003-05-16 11:39:04 +1000365static int
366timeout_connect(int sockfd, const struct sockaddr *serv_addr,
Damien Miller67bd0622007-09-17 12:06:57 +1000367 socklen_t addrlen, int *timeoutp)
Damien Millerb78d5eb2003-05-16 11:39:04 +1000368{
djm@openbsd.org45404282017-06-24 05:37:44 +0000369 int optval = 0;
370 socklen_t optlen = sizeof(optval);
Damien Millerb78d5eb2003-05-16 11:39:04 +1000371
djm@openbsd.org45404282017-06-24 05:37:44 +0000372 /* No timeout: just do a blocking connect() */
373 if (*timeoutp <= 0)
374 return connect(sockfd, serv_addr, addrlen);
Damien Millerb78d5eb2003-05-16 11:39:04 +1000375
Damien Millerf6723f02004-01-27 21:21:27 +1100376 set_nonblock(sockfd);
djm@openbsd.org45404282017-06-24 05:37:44 +0000377 if (connect(sockfd, serv_addr, addrlen) == 0) {
378 /* Succeeded already? */
Damien Millerf6723f02004-01-27 21:21:27 +1100379 unset_nonblock(sockfd);
djm@openbsd.org45404282017-06-24 05:37:44 +0000380 return 0;
381 } else if (errno != EINPROGRESS)
382 return -1;
383
384 if (waitrfd(sockfd, timeoutp) == -1)
385 return -1;
386
387 /* Completed or failed */
388 if (getsockopt(sockfd, SOL_SOCKET, SO_ERROR, &optval, &optlen) == -1) {
389 debug("getsockopt: %s", strerror(errno));
390 return -1;
Damien Millerf6723f02004-01-27 21:21:27 +1100391 }
djm@openbsd.org45404282017-06-24 05:37:44 +0000392 if (optval != 0) {
393 errno = optval;
394 return -1;
Damien Miller67bd0622007-09-17 12:06:57 +1000395 }
djm@openbsd.org45404282017-06-24 05:37:44 +0000396 unset_nonblock(sockfd);
397 return 0;
Damien Millerb78d5eb2003-05-16 11:39:04 +1000398}
399
Damien Miller95def091999-11-25 00:26:21 +1100400/*
Damien Miller34132e52000-01-14 15:45:46 +1100401 * Opens a TCP/IP connection to the remote server on the given host.
402 * The address of the remote host will be returned in hostaddr.
Ben Lindstromf9c48842002-06-11 16:37:51 +0000403 * If port is 0, the default port will be used. If needpriv is true,
Damien Miller95def091999-11-25 00:26:21 +1100404 * a privileged port will be allocated to make the connection.
Ben Lindstromf9c48842002-06-11 16:37:51 +0000405 * This requires super-user privileges if needpriv is true.
Damien Miller95def091999-11-25 00:26:21 +1100406 * Connection_attempts specifies the maximum number of tries (one per
407 * second). If proxy_command is non-NULL, it specifies the command (with %h
408 * and %p substituted for host and port, respectively) to use to contact
409 * the daemon.
410 */
Damien Miller0faf7472013-10-17 11:47:23 +1100411static int
412ssh_connect_direct(const char *host, struct addrinfo *aitop,
413 struct sockaddr_storage *hostaddr, u_short port, int family,
414 int connection_attempts, int *timeout_ms, int want_keepalive, int needpriv)
Damien Miller95def091999-11-25 00:26:21 +1100415{
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000416 int on = 1;
417 int sock = -1, attempt;
418 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller0faf7472013-10-17 11:47:23 +1100419 struct addrinfo *ai;
Damien Miller95def091999-11-25 00:26:21 +1100420
djm@openbsd.org46152af2015-09-04 04:55:24 +0000421 debug2("%s: needpriv %d", __func__, needpriv);
djm@openbsd.org88b6fcd2015-11-19 08:23:27 +0000422 memset(ntop, 0, sizeof(ntop));
423 memset(strport, 0, sizeof(strport));
Damien Miller95def091999-11-25 00:26:21 +1100424
Damien Miller56e5e6a2006-04-23 12:08:59 +1000425 for (attempt = 0; attempt < connection_attempts; attempt++) {
Damien Millerf4bcd102006-10-24 03:02:23 +1000426 if (attempt > 0) {
427 /* Sleep a moment before retrying. */
428 sleep(1);
Damien Miller95def091999-11-25 00:26:21 +1100429 debug("Trying again...");
Damien Millerf4bcd102006-10-24 03:02:23 +1000430 }
Damien Miller56e5e6a2006-04-23 12:08:59 +1000431 /*
432 * Loop through addresses for this host, and try each one in
433 * sequence until the connection succeeds.
434 */
Damien Miller34132e52000-01-14 15:45:46 +1100435 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller0faf7472013-10-17 11:47:23 +1100436 if (ai->ai_family != AF_INET &&
437 ai->ai_family != AF_INET6)
Damien Miller34132e52000-01-14 15:45:46 +1100438 continue;
439 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
440 ntop, sizeof(ntop), strport, sizeof(strport),
441 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
djm@openbsd.org46152af2015-09-04 04:55:24 +0000442 error("%s: getnameinfo failed", __func__);
Damien Miller34132e52000-01-14 15:45:46 +1100443 continue;
444 }
445 debug("Connecting to %.200s [%.100s] port %s.",
446 host, ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +1100447
Damien Miller34132e52000-01-14 15:45:46 +1100448 /* Create a socket for connecting. */
Damien Miller2372ace2003-05-14 13:42:23 +1000449 sock = ssh_create_socket(needpriv, ai);
Damien Miller34132e52000-01-14 15:45:46 +1100450 if (sock < 0)
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000451 /* Any error is already output */
Damien Miller34132e52000-01-14 15:45:46 +1100452 continue;
Damien Miller95def091999-11-25 00:26:21 +1100453
Damien Millerb78d5eb2003-05-16 11:39:04 +1000454 if (timeout_connect(sock, ai->ai_addr, ai->ai_addrlen,
Damien Miller67bd0622007-09-17 12:06:57 +1000455 timeout_ms) >= 0) {
Damien Miller34132e52000-01-14 15:45:46 +1100456 /* Successful connection. */
Ben Lindstroma3700052001-04-05 23:26:32 +0000457 memcpy(hostaddr, ai->ai_addr, ai->ai_addrlen);
Damien Miller95def091999-11-25 00:26:21 +1100458 break;
Damien Miller34132e52000-01-14 15:45:46 +1100459 } else {
Ben Lindstrom728aa7e2002-07-15 17:48:11 +0000460 debug("connect to address %s port %s: %s",
461 ntop, strport, strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100462 close(sock);
Damien Miller56e5e6a2006-04-23 12:08:59 +1000463 sock = -1;
Damien Miller95def091999-11-25 00:26:21 +1100464 }
Damien Miller95def091999-11-25 00:26:21 +1100465 }
Damien Miller56e5e6a2006-04-23 12:08:59 +1000466 if (sock != -1)
Damien Miller34132e52000-01-14 15:45:46 +1100467 break; /* Successful connection. */
Damien Miller95def091999-11-25 00:26:21 +1100468 }
Damien Miller34132e52000-01-14 15:45:46 +1100469
Damien Miller95def091999-11-25 00:26:21 +1100470 /* Return failure if we didn't get a successful connection. */
Damien Miller56e5e6a2006-04-23 12:08:59 +1000471 if (sock == -1) {
Darren Tuckerb2161e32005-01-20 11:00:46 +1100472 error("ssh: connect to host %s port %s: %s",
Ben Lindstroma6cd75c2002-07-11 04:00:19 +0000473 host, strport, strerror(errno));
Darren Tuckerb2161e32005-01-20 11:00:46 +1100474 return (-1);
Ben Lindstroma6cd75c2002-07-11 04:00:19 +0000475 }
Damien Miller95def091999-11-25 00:26:21 +1100476
477 debug("Connection established.");
478
Damien Miller12c150e2003-12-17 16:31:10 +1100479 /* Set SO_KEEPALIVE if requested. */
Damien Miller67bd0622007-09-17 12:06:57 +1000480 if (want_keepalive &&
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000481 setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE, (void *)&on,
482 sizeof(on)) < 0)
483 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100484
485 /* Set the connection. */
486 packet_set_connection(sock, sock);
487
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000488 return 0;
Damien Miller95def091999-11-25 00:26:21 +1100489}
490
Damien Miller0faf7472013-10-17 11:47:23 +1100491int
492ssh_connect(const char *host, struct addrinfo *addrs,
493 struct sockaddr_storage *hostaddr, u_short port, int family,
494 int connection_attempts, int *timeout_ms, int want_keepalive, int needpriv)
495{
496 if (options.proxy_command == NULL) {
497 return ssh_connect_direct(host, addrs, hostaddr, port, family,
498 connection_attempts, timeout_ms, want_keepalive, needpriv);
499 } else if (strcmp(options.proxy_command, "-") == 0) {
500 packet_set_connection(STDIN_FILENO, STDOUT_FILENO);
501 return 0; /* Always succeeds */
502 } else if (options.proxy_use_fdpass) {
503 return ssh_proxy_fdpass_connect(host, port,
504 options.proxy_command);
505 }
506 return ssh_proxy_connect(host, port, options.proxy_command);
507}
508
Darren Tucker00c15182012-09-06 21:21:56 +1000509static void
510send_client_banner(int connection_out, int minor1)
511{
Darren Tucker00c15182012-09-06 21:21:56 +1000512 /* Send our own protocol version identification. */
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000513 xasprintf(&client_version_string, "SSH-%d.%d-%.100s\r\n",
514 PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2, SSH_VERSION);
markus@openbsd.orga3068632016-01-14 16:17:39 +0000515 if (atomicio(vwrite, connection_out, client_version_string,
Darren Tucker00c15182012-09-06 21:21:56 +1000516 strlen(client_version_string)) != strlen(client_version_string))
517 fatal("write: %.100s", strerror(errno));
518 chop(client_version_string);
519 debug("Local version string %.100s", client_version_string);
520}
521
Damien Milleraae6c611999-12-06 11:47:28 +1100522/*
Damien Miller95def091999-11-25 00:26:21 +1100523 * Waits for the server identification string, and sends our own
524 * identification string.
525 */
Darren Tucker1cc55d72009-06-21 18:17:19 +1000526void
Damien Miller67bd0622007-09-17 12:06:57 +1000527ssh_exchange_identification(int timeout_ms)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000528{
Damien Miller95def091999-11-25 00:26:21 +1100529 char buf[256], remote_version[256]; /* must be same size! */
Damien Millereccb9de2005-06-17 12:59:34 +1000530 int remote_major, remote_minor, mismatch;
Damien Miller95def091999-11-25 00:26:21 +1100531 int connection_in = packet_get_connection_in();
532 int connection_out = packet_get_connection_out();
Damien Miller1e88ea62006-07-10 20:15:56 +1000533 u_int i, n;
Damien Miller67bd0622007-09-17 12:06:57 +1000534 size_t len;
djm@openbsd.org45404282017-06-24 05:37:44 +0000535 int rc;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000536
djm@openbsd.org99f95ba2017-04-30 23:11:45 +0000537 send_client_banner(connection_out, 0);
Darren Tucker00c15182012-09-06 21:21:56 +1000538
Damien Millerb253cc42005-05-26 12:23:44 +1000539 /* Read other side's version identification. */
Damien Miller1e88ea62006-07-10 20:15:56 +1000540 for (n = 0;;) {
Damien Millerf6d9e222000-06-18 14:50:44 +1000541 for (i = 0; i < sizeof(buf) - 1; i++) {
Damien Miller67bd0622007-09-17 12:06:57 +1000542 if (timeout_ms > 0) {
djm@openbsd.org45404282017-06-24 05:37:44 +0000543 rc = waitrfd(connection_in, &timeout_ms);
544 if (rc == -1 && errno == ETIMEDOUT) {
Damien Miller67bd0622007-09-17 12:06:57 +1000545 fatal("Connection timed out during "
546 "banner exchange");
djm@openbsd.org45404282017-06-24 05:37:44 +0000547 } else if (rc == -1) {
548 fatal("%s: %s",
549 __func__, strerror(errno));
Damien Miller67bd0622007-09-17 12:06:57 +1000550 }
551 }
552
markus@openbsd.orga3068632016-01-14 16:17:39 +0000553 len = atomicio(read, connection_in, &buf[i], 1);
Damien Miller46d38de2005-07-17 17:02:09 +1000554 if (len != 1 && errno == EPIPE)
Damien Miller67bd0622007-09-17 12:06:57 +1000555 fatal("ssh_exchange_identification: "
556 "Connection closed by remote host");
Damien Millerb253cc42005-05-26 12:23:44 +1000557 else if (len != 1)
Damien Miller67bd0622007-09-17 12:06:57 +1000558 fatal("ssh_exchange_identification: "
559 "read: %.100s", strerror(errno));
Damien Millerf6d9e222000-06-18 14:50:44 +1000560 if (buf[i] == '\r') {
561 buf[i] = '\n';
562 buf[i + 1] = 0;
563 continue; /**XXX wait for \n */
564 }
565 if (buf[i] == '\n') {
566 buf[i + 1] = 0;
567 break;
568 }
Damien Miller1e88ea62006-07-10 20:15:56 +1000569 if (++n > 65536)
Damien Miller67bd0622007-09-17 12:06:57 +1000570 fatal("ssh_exchange_identification: "
571 "No banner received");
Damien Miller95def091999-11-25 00:26:21 +1100572 }
Damien Millerf6d9e222000-06-18 14:50:44 +1000573 buf[sizeof(buf) - 1] = 0;
574 if (strncmp(buf, "SSH-", 4) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100575 break;
Damien Millerf6d9e222000-06-18 14:50:44 +1000576 debug("ssh_exchange_identification: %s", buf);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000577 }
Damien Miller1383bd82000-04-06 12:32:37 +1000578 server_version_string = xstrdup(buf);
Damien Miller95def091999-11-25 00:26:21 +1100579
Damien Miller5428f641999-11-25 11:54:57 +1100580 /*
581 * Check that the versions match. In future this might accept
582 * several versions and set appropriate flags to handle them.
583 */
Damien Miller1383bd82000-04-06 12:32:37 +1000584 if (sscanf(server_version_string, "SSH-%d.%d-%[^\n]\n",
585 &remote_major, &remote_minor, remote_version) != 3)
Damien Miller95def091999-11-25 00:26:21 +1100586 fatal("Bad remote protocol version identification: '%.100s'", buf);
587 debug("Remote protocol version %d.%d, remote software version %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100588 remote_major, remote_minor, remote_version);
Damien Miller95def091999-11-25 00:26:21 +1100589
markus@openbsd.org48b3b2b2015-01-19 20:20:20 +0000590 active_state->compat = compat_datafellows(remote_version);
Damien Miller78928792000-04-12 20:17:38 +1000591 mismatch = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000592
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000593 switch (remote_major) {
Damien Miller78928792000-04-12 20:17:38 +1000594 case 2:
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000595 break;
596 case 1:
597 if (remote_minor != 99)
598 mismatch = 1;
djm@openbsd.org99f95ba2017-04-30 23:11:45 +0000599 break;
Damien Miller4af51302000-04-16 11:18:38 +1000600 default:
Damien Miller78928792000-04-12 20:17:38 +1000601 mismatch = 1;
602 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000603 }
Damien Miller78928792000-04-12 20:17:38 +1000604 if (mismatch)
Damien Miller95def091999-11-25 00:26:21 +1100605 fatal("Protocol major versions differ: %d vs. %d",
djm@openbsd.org99f95ba2017-04-30 23:11:45 +0000606 PROTOCOL_MAJOR_2, remote_major);
Damien Miller58cd63b2014-01-10 10:59:24 +1100607 if ((datafellows & SSH_BUG_DERIVEKEY) != 0)
608 fatal("Server version \"%.100s\" uses unsafe key agreement; "
609 "refusing connection", remote_version);
Damien Miller324541e2013-12-31 12:25:40 +1100610 if ((datafellows & SSH_BUG_RSASIGMD5) != 0)
611 logit("Server version \"%.100s\" uses unsafe RSA signature "
612 "scheme; disabling use of RSA keys", remote_version);
Damien Miller1383bd82000-04-06 12:32:37 +1000613 chop(server_version_string);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000614}
615
Ben Lindstromb6c06d92001-02-10 23:21:09 +0000616/* defaults to 'no' */
Ben Lindstrombba81212001-06-25 05:01:22 +0000617static int
Damien Millere3980042001-10-10 15:02:03 +1000618confirm(const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000619{
Damien Miller49d795c2002-01-22 23:34:12 +1100620 const char *msg, *again = "Please type 'yes' or 'no': ";
621 char *p;
622 int ret = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000623
Ben Lindstromb6c06d92001-02-10 23:21:09 +0000624 if (options.batch_mode)
625 return 0;
Damien Miller49d795c2002-01-22 23:34:12 +1100626 for (msg = prompt;;msg = again) {
627 p = read_passphrase(msg, RP_ECHO);
628 if (p == NULL ||
629 (p[0] == '\0') || (p[0] == '\n') ||
630 strncasecmp(p, "no", 2) == 0)
631 ret = 0;
Ben Lindstrom04f9af72002-07-04 00:03:56 +0000632 if (p && strncasecmp(p, "yes", 3) == 0)
Damien Miller49d795c2002-01-22 23:34:12 +1100633 ret = 1;
Darren Tuckera627d422013-06-02 07:31:17 +1000634 free(p);
Damien Miller49d795c2002-01-22 23:34:12 +1100635 if (ret != -1)
636 return ret;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000637 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000638}
639
Damien Miller0a80ca12010-02-27 07:55:05 +1100640static int
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000641check_host_cert(const char *host, const struct sshkey *host_key)
Damien Miller0a80ca12010-02-27 07:55:05 +1100642{
643 const char *reason;
644
645 if (key_cert_check_authority(host_key, 1, 0, host, &reason) != 0) {
646 error("%s", reason);
647 return 0;
648 }
Damien Miller86687062014-07-02 15:28:02 +1000649 if (buffer_len(host_key->cert->critical) != 0) {
Damien Miller4e270b02010-04-16 15:56:21 +1000650 error("Certificate for %s contains unsupported "
651 "critical options(s)", host);
Damien Miller0a80ca12010-02-27 07:55:05 +1100652 return 0;
653 }
654 return 1;
655}
656
Damien Millerd925dcd2010-12-01 12:21:51 +1100657static int
658sockaddr_is_local(struct sockaddr *hostaddr)
659{
660 switch (hostaddr->sa_family) {
661 case AF_INET:
662 return (ntohl(((struct sockaddr_in *)hostaddr)->
663 sin_addr.s_addr) >> 24) == IN_LOOPBACKNET;
664 case AF_INET6:
665 return IN6_IS_ADDR_LOOPBACK(
666 &(((struct sockaddr_in6 *)hostaddr)->sin6_addr));
667 default:
668 return 0;
669 }
670}
671
672/*
673 * Prepare the hostname and ip address strings that are used to lookup
674 * host keys in known_hosts files. These may have a port number appended.
675 */
676void
677get_hostfile_hostname_ipaddr(char *hostname, struct sockaddr *hostaddr,
678 u_short port, char **hostfile_hostname, char **hostfile_ipaddr)
679{
680 char ntop[NI_MAXHOST];
681 socklen_t addrlen;
682
683 switch (hostaddr == NULL ? -1 : hostaddr->sa_family) {
684 case -1:
685 addrlen = 0;
686 break;
687 case AF_INET:
688 addrlen = sizeof(struct sockaddr_in);
689 break;
690 case AF_INET6:
691 addrlen = sizeof(struct sockaddr_in6);
692 break;
693 default:
694 addrlen = sizeof(struct sockaddr);
695 break;
696 }
697
698 /*
699 * We don't have the remote ip-address for connections
700 * using a proxy command
701 */
702 if (hostfile_ipaddr != NULL) {
703 if (options.proxy_command == NULL) {
704 if (getnameinfo(hostaddr, addrlen,
705 ntop, sizeof(ntop), NULL, 0, NI_NUMERICHOST) != 0)
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000706 fatal("%s: getnameinfo failed", __func__);
Damien Millerd925dcd2010-12-01 12:21:51 +1100707 *hostfile_ipaddr = put_host_port(ntop, port);
708 } else {
709 *hostfile_ipaddr = xstrdup("<no hostip for proxy "
710 "command>");
711 }
712 }
713
714 /*
715 * Allow the user to record the key under a different name or
716 * differentiate a non-standard port. This is useful for ssh
717 * tunneling over forwarded connections or if you run multiple
718 * sshd's on different ports on the same machine.
719 */
720 if (hostfile_hostname != NULL) {
721 if (options.host_key_alias != NULL) {
722 *hostfile_hostname = xstrdup(options.host_key_alias);
723 debug("using hostkeyalias: %s", *hostfile_hostname);
724 } else {
725 *hostfile_hostname = put_host_port(hostname, port);
726 }
727 }
728}
729
Damien Miller95def091999-11-25 00:26:21 +1100730/*
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000731 * check whether the supplied host key is valid, return -1 if the key
Damien Miller295ee632011-05-29 21:42:31 +1000732 * is not valid. user_hostfile[0] will not be updated if 'readonly' is true.
Damien Miller95def091999-11-25 00:26:21 +1100733 */
Damien Millerda828392006-08-05 11:35:45 +1000734#define RDRW 0
735#define RDONLY 1
736#define ROQUIET 2
Ben Lindstrombba81212001-06-25 05:01:22 +0000737static int
Damien Millerda828392006-08-05 11:35:45 +1000738check_host_key(char *hostname, struct sockaddr *hostaddr, u_short port,
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000739 struct sshkey *host_key, int readonly,
Damien Miller295ee632011-05-29 21:42:31 +1000740 char **user_hostfiles, u_int num_user_hostfiles,
741 char **system_hostfiles, u_int num_system_hostfiles)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000742{
Damien Miller95def091999-11-25 00:26:21 +1100743 HostStatus host_status;
744 HostStatus ip_status;
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000745 struct sshkey *raw_key = NULL;
Damien Miller295ee632011-05-29 21:42:31 +1000746 char *ip = NULL, *host = NULL;
747 char hostline[1000], *hostp, *fp, *ra;
Damien Miller49d795c2002-01-22 23:34:12 +1100748 char msg[1024];
Damien Miller295ee632011-05-29 21:42:31 +1000749 const char *type;
Damien Millerd925dcd2010-12-01 12:21:51 +1100750 const struct hostkey_entry *host_found, *ip_found;
Damien Miller295ee632011-05-29 21:42:31 +1000751 int len, cancelled_forwarding = 0;
752 int local = sockaddr_is_local(hostaddr);
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +0000753 int r, want_cert = sshkey_is_cert(host_key), host_ip_differ = 0;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000754 int hostkey_trusted = 0; /* Known or explicitly accepted by user */
Damien Miller295ee632011-05-29 21:42:31 +1000755 struct hostkeys *host_hostkeys, *ip_hostkeys;
756 u_int i;
Damien Miller34132e52000-01-14 15:45:46 +1100757
758 /*
759 * Force accepting of the host key for loopback/localhost. The
760 * problem is that if the home directory is NFS-mounted to multiple
761 * machines, localhost will refer to a different machine in each of
762 * them, and the user will get bogus HOST_CHANGED warnings. This
763 * essentially disables host authentication for localhost; however,
764 * this is probably not a real problem.
765 */
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +0000766 if (options.no_host_authentication_for_localhost == 1 && local &&
767 options.host_key_alias == NULL) {
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000768 debug("Forcing accepting of host key for "
769 "loopback/localhost.");
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000770 return 0;
Damien Miller34132e52000-01-14 15:45:46 +1100771 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000772
Damien Milleraae6c611999-12-06 11:47:28 +1100773 /*
Damien Millerd925dcd2010-12-01 12:21:51 +1100774 * Prepare the hostname and address strings used for hostkey lookup.
775 * In some cases, these will have a port number appended.
Damien Milleraae6c611999-12-06 11:47:28 +1100776 */
Damien Millerd925dcd2010-12-01 12:21:51 +1100777 get_hostfile_hostname_ipaddr(hostname, hostaddr, port, &host, &ip);
Darren Tucker78913e02008-06-13 04:47:34 +1000778
779 /*
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000780 * Turn off check_host_ip if the connection is to localhost, via proxy
781 * command or if we don't have a hostname to compare with
782 */
Darren Tuckerda345532006-07-10 23:04:19 +1000783 if (options.check_host_ip && (local ||
784 strcmp(hostname, ip) == 0 || options.proxy_command != NULL))
Damien Milleraae6c611999-12-06 11:47:28 +1100785 options.check_host_ip = 0;
786
Damien Millerd925dcd2010-12-01 12:21:51 +1100787 host_hostkeys = init_hostkeys();
Damien Miller295ee632011-05-29 21:42:31 +1000788 for (i = 0; i < num_user_hostfiles; i++)
789 load_hostkeys(host_hostkeys, host, user_hostfiles[i]);
790 for (i = 0; i < num_system_hostfiles; i++)
791 load_hostkeys(host_hostkeys, host, system_hostfiles[i]);
Damien Millerd925dcd2010-12-01 12:21:51 +1100792
793 ip_hostkeys = NULL;
794 if (!want_cert && options.check_host_ip) {
795 ip_hostkeys = init_hostkeys();
Damien Miller295ee632011-05-29 21:42:31 +1000796 for (i = 0; i < num_user_hostfiles; i++)
797 load_hostkeys(ip_hostkeys, ip, user_hostfiles[i]);
798 for (i = 0; i < num_system_hostfiles; i++)
799 load_hostkeys(ip_hostkeys, ip, system_hostfiles[i]);
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000800 }
801
Damien Miller0a80ca12010-02-27 07:55:05 +1100802 retry:
Damien Millerd925dcd2010-12-01 12:21:51 +1100803 /* Reload these as they may have changed on cert->key downgrade */
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +0000804 want_cert = sshkey_is_cert(host_key);
805 type = sshkey_type(host_key);
Damien Miller0a80ca12010-02-27 07:55:05 +1100806
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000807 /*
Damien Miller788f2122005-11-05 15:14:59 +1100808 * Check if the host key is present in the user's list of known
Damien Miller5428f641999-11-25 11:54:57 +1100809 * hosts or in the systemwide list.
810 */
Damien Millerd925dcd2010-12-01 12:21:51 +1100811 host_status = check_key_in_hostkeys(host_hostkeys, host_key,
812 &host_found);
813
Damien Miller5428f641999-11-25 11:54:57 +1100814 /*
Damien Miller5428f641999-11-25 11:54:57 +1100815 * Also perform check for the ip address, skip the check if we are
Damien Miller0a80ca12010-02-27 07:55:05 +1100816 * localhost, looking for a certificate, or the hostname was an ip
817 * address to begin with.
Damien Miller5428f641999-11-25 11:54:57 +1100818 */
Damien Millerd925dcd2010-12-01 12:21:51 +1100819 if (!want_cert && ip_hostkeys != NULL) {
820 ip_status = check_key_in_hostkeys(ip_hostkeys, host_key,
821 &ip_found);
Damien Miller95def091999-11-25 00:26:21 +1100822 if (host_status == HOST_CHANGED &&
Damien Millerd925dcd2010-12-01 12:21:51 +1100823 (ip_status != HOST_CHANGED ||
824 (ip_found != NULL &&
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +0000825 !sshkey_equal(ip_found->key, host_found->key))))
Damien Miller95def091999-11-25 00:26:21 +1100826 host_ip_differ = 1;
Damien Miller95def091999-11-25 00:26:21 +1100827 } else
828 ip_status = host_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000829
Damien Miller95def091999-11-25 00:26:21 +1100830 switch (host_status) {
831 case HOST_OK:
832 /* The host is known and the key matches. */
Damien Miller0a80ca12010-02-27 07:55:05 +1100833 debug("Host '%.200s' is known and matches the %s host %s.",
834 host, type, want_cert ? "certificate" : "key");
Damien Millerd925dcd2010-12-01 12:21:51 +1100835 debug("Found %s in %s:%lu", want_cert ? "CA key" : "key",
836 host_found->file, host_found->line);
djm@openbsd.org6f8ca3b2017-06-24 05:35:05 +0000837 if (want_cert &&
838 !check_host_cert(options.host_key_alias == NULL ?
839 hostname : options.host_key_alias, host_key))
Damien Miller0a80ca12010-02-27 07:55:05 +1100840 goto fail;
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000841 if (options.check_host_ip && ip_status == HOST_NEW) {
Damien Miller0a80ca12010-02-27 07:55:05 +1100842 if (readonly || want_cert)
Damien Miller996acd22003-04-09 20:59:48 +1000843 logit("%s host key for IP address "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000844 "'%.128s' not in list of known hosts.",
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000845 type, ip);
Damien Miller295ee632011-05-29 21:42:31 +1000846 else if (!add_host_to_hostfile(user_hostfiles[0], ip,
Damien Millere1776152005-03-01 21:47:37 +1100847 host_key, options.hash_known_hosts))
Damien Miller996acd22003-04-09 20:59:48 +1000848 logit("Failed to add the %s host key for IP "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000849 "address '%.128s' to the list of known "
dtucker@openbsd.org496aeb22015-05-28 05:41:29 +0000850 "hosts (%.500s).", type, ip,
Damien Miller295ee632011-05-29 21:42:31 +1000851 user_hostfiles[0]);
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000852 else
Damien Miller996acd22003-04-09 20:59:48 +1000853 logit("Warning: Permanently added the %s host "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000854 "key for IP address '%.128s' to the list "
855 "of known hosts.", type, ip);
Damien Miller10288242008-06-30 00:04:03 +1000856 } else if (options.visual_host_key) {
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000857 fp = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000858 options.fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000859 ra = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000860 options.fingerprint_hash, SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000861 if (fp == NULL || ra == NULL)
862 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.orgac3451d2015-09-04 03:57:38 +0000863 logit("Host key fingerprint is %s\n%s", fp, ra);
Darren Tuckera627d422013-06-02 07:31:17 +1000864 free(ra);
865 free(fp);
Damien Miller95def091999-11-25 00:26:21 +1100866 }
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000867 hostkey_trusted = 1;
Damien Miller95def091999-11-25 00:26:21 +1100868 break;
869 case HOST_NEW:
Damien Millerda828392006-08-05 11:35:45 +1000870 if (options.host_key_alias == NULL && port != 0 &&
871 port != SSH_DEFAULT_PORT) {
872 debug("checking without port identifier");
Damien Millerece92c82008-11-03 19:25:03 +1100873 if (check_host_key(hostname, hostaddr, 0, host_key,
Damien Miller295ee632011-05-29 21:42:31 +1000874 ROQUIET, user_hostfiles, num_user_hostfiles,
875 system_hostfiles, num_system_hostfiles) == 0) {
Damien Millerda828392006-08-05 11:35:45 +1000876 debug("found matching key w/out port");
877 break;
878 }
879 }
Damien Miller0a80ca12010-02-27 07:55:05 +1100880 if (readonly || want_cert)
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000881 goto fail;
Damien Miller95def091999-11-25 00:26:21 +1100882 /* The host is new. */
883 if (options.strict_host_key_checking == 1) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000884 /*
885 * User has requested strict host key checking. We
886 * will not add the host key automatically. The only
887 * alternative left is to abort.
888 */
889 error("No %s host key is known for %.200s and you "
890 "have requested strict checking.", type, host);
891 goto fail;
Damien Miller95def091999-11-25 00:26:21 +1100892 } else if (options.strict_host_key_checking == 2) {
Damien Miller7392ae62003-06-11 22:05:25 +1000893 char msg1[1024], msg2[1024];
894
Damien Millerd925dcd2010-12-01 12:21:51 +1100895 if (show_other_keys(host_hostkeys, host_key))
Damien Miller7392ae62003-06-11 22:05:25 +1000896 snprintf(msg1, sizeof(msg1),
Damien Miller0dc1bef2005-07-17 17:22:45 +1000897 "\nbut keys of different type are already"
898 " known for this host.");
Damien Miller7392ae62003-06-11 22:05:25 +1000899 else
900 snprintf(msg1, sizeof(msg1), ".");
Damien Miller95def091999-11-25 00:26:21 +1100901 /* The default */
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000902 fp = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000903 options.fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000904 ra = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000905 options.fingerprint_hash, SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000906 if (fp == NULL || ra == NULL)
907 fatal("%s: sshkey_fingerprint fail", __func__);
Damien Miller7392ae62003-06-11 22:05:25 +1000908 msg2[0] = '\0';
Damien Miller7392ae62003-06-11 22:05:25 +1000909 if (options.verify_host_key_dns) {
Damien Miller150b5572003-11-17 21:19:29 +1100910 if (matching_host_key_dns)
Damien Miller7392ae62003-06-11 22:05:25 +1000911 snprintf(msg2, sizeof(msg2),
912 "Matching host key fingerprint"
913 " found in DNS.\n");
914 else
915 snprintf(msg2, sizeof(msg2),
916 "No matching host key fingerprint"
917 " found in DNS.\n");
918 }
Damien Miller49d795c2002-01-22 23:34:12 +1100919 snprintf(msg, sizeof(msg),
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000920 "The authenticity of host '%.200s (%s)' can't be "
Ben Lindstrom3ed66402002-08-01 01:21:56 +0000921 "established%s\n"
Damien Miller10288242008-06-30 00:04:03 +1000922 "%s key fingerprint is %s.%s%s\n%s"
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000923 "Are you sure you want to continue connecting "
Ben Lindstrom3ed66402002-08-01 01:21:56 +0000924 "(yes/no)? ",
Damien Miller10288242008-06-30 00:04:03 +1000925 host, ip, msg1, type, fp,
926 options.visual_host_key ? "\n" : "",
927 options.visual_host_key ? ra : "",
928 msg2);
Darren Tuckera627d422013-06-02 07:31:17 +1000929 free(ra);
930 free(fp);
Damien Miller49d795c2002-01-22 23:34:12 +1100931 if (!confirm(msg))
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000932 goto fail;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000933 hostkey_trusted = 1; /* user explicitly confirmed */
Damien Miller95def091999-11-25 00:26:21 +1100934 }
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000935 /*
936 * If not in strict mode, add the key automatically to the
937 * local known_hosts file.
938 */
Damien Miller1227d4c2005-03-02 12:06:51 +1100939 if (options.check_host_ip && ip_status == HOST_NEW) {
Damien Millerd925dcd2010-12-01 12:21:51 +1100940 snprintf(hostline, sizeof(hostline), "%s,%s", host, ip);
Damien Miller1227d4c2005-03-02 12:06:51 +1100941 hostp = hostline;
942 if (options.hash_known_hosts) {
943 /* Add hash of host and IP separately */
Damien Miller295ee632011-05-29 21:42:31 +1000944 r = add_host_to_hostfile(user_hostfiles[0],
945 host, host_key, options.hash_known_hosts) &&
946 add_host_to_hostfile(user_hostfiles[0], ip,
Damien Miller1227d4c2005-03-02 12:06:51 +1100947 host_key, options.hash_known_hosts);
948 } else {
949 /* Add unhashed "host,ip" */
Damien Miller295ee632011-05-29 21:42:31 +1000950 r = add_host_to_hostfile(user_hostfiles[0],
Damien Miller1227d4c2005-03-02 12:06:51 +1100951 hostline, host_key,
952 options.hash_known_hosts);
953 }
954 } else {
Damien Miller295ee632011-05-29 21:42:31 +1000955 r = add_host_to_hostfile(user_hostfiles[0], host,
956 host_key, options.hash_known_hosts);
Damien Miller1227d4c2005-03-02 12:06:51 +1100957 hostp = host;
958 }
959
960 if (!r)
Damien Miller996acd22003-04-09 20:59:48 +1000961 logit("Failed to add the host to the list of known "
Damien Miller295ee632011-05-29 21:42:31 +1000962 "hosts (%.500s).", user_hostfiles[0]);
Damien Miller95def091999-11-25 00:26:21 +1100963 else
Damien Miller996acd22003-04-09 20:59:48 +1000964 logit("Warning: Permanently added '%.200s' (%s) to the "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000965 "list of known hosts.", hostp, type);
Damien Miller95def091999-11-25 00:26:21 +1100966 break;
Damien Miller1aed65e2010-03-04 21:53:35 +1100967 case HOST_REVOKED:
968 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
969 error("@ WARNING: REVOKED HOST KEY DETECTED! @");
970 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
971 error("The %s host key for %s is marked as revoked.", type, host);
972 error("This could mean that a stolen key is being used to");
973 error("impersonate this host.");
974
975 /*
976 * If strict host key checking is in use, the user will have
977 * to edit the key manually and we can only abort.
978 */
979 if (options.strict_host_key_checking) {
980 error("%s host key for %.200s was revoked and you have "
981 "requested strict checking.", type, host);
982 goto fail;
983 }
984 goto continue_unsafe;
985
Damien Miller95def091999-11-25 00:26:21 +1100986 case HOST_CHANGED:
Damien Miller0a80ca12010-02-27 07:55:05 +1100987 if (want_cert) {
988 /*
989 * This is only a debug() since it is valid to have
990 * CAs with wildcard DNS matches that don't match
991 * all hosts that one might visit.
992 */
993 debug("Host certificate authority does not "
Damien Millerd925dcd2010-12-01 12:21:51 +1100994 "match %s in %s:%lu", CA_MARKER,
995 host_found->file, host_found->line);
Damien Miller0a80ca12010-02-27 07:55:05 +1100996 goto fail;
997 }
Damien Millerda828392006-08-05 11:35:45 +1000998 if (readonly == ROQUIET)
999 goto fail;
Damien Miller95def091999-11-25 00:26:21 +11001000 if (options.check_host_ip && host_ip_differ) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001001 char *key_msg;
Damien Miller95def091999-11-25 00:26:21 +11001002 if (ip_status == HOST_NEW)
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001003 key_msg = "is unknown";
Damien Miller95def091999-11-25 00:26:21 +11001004 else if (ip_status == HOST_OK)
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001005 key_msg = "is unchanged";
Damien Miller95def091999-11-25 00:26:21 +11001006 else
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001007 key_msg = "has a different value";
Damien Miller95def091999-11-25 00:26:21 +11001008 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1009 error("@ WARNING: POSSIBLE DNS SPOOFING DETECTED! @");
1010 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
Damien Millere247cc42000-05-07 12:03:14 +10001011 error("The %s host key for %s has changed,", type, host);
Darren Tuckerff4454d2008-06-13 10:21:51 +10001012 error("and the key for the corresponding IP address %s", ip);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001013 error("%s. This could either mean that", key_msg);
Damien Miller95def091999-11-25 00:26:21 +11001014 error("DNS SPOOFING is happening or the IP address for the host");
Ben Lindstrom46c16222000-12-22 01:43:59 +00001015 error("and its host key have changed at the same time.");
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +00001016 if (ip_status != HOST_NEW)
Damien Millerd925dcd2010-12-01 12:21:51 +11001017 error("Offending key for IP in %s:%lu",
1018 ip_found->file, ip_found->line);
Damien Miller95def091999-11-25 00:26:21 +11001019 }
1020 /* The host key has changed. */
Damien Miller5a388972003-11-17 21:10:47 +11001021 warn_changed_key(host_key);
Damien Miller95def091999-11-25 00:26:21 +11001022 error("Add correct host key in %.100s to get rid of this message.",
Damien Miller295ee632011-05-29 21:42:31 +10001023 user_hostfiles[0]);
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +00001024 error("Offending %s key in %s:%lu",
1025 sshkey_type(host_found->key),
Damien Millerd925dcd2010-12-01 12:21:51 +11001026 host_found->file, host_found->line);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001027
Damien Miller5428f641999-11-25 11:54:57 +11001028 /*
1029 * If strict host key checking is in use, the user will have
1030 * to edit the key manually and we can only abort.
1031 */
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001032 if (options.strict_host_key_checking) {
1033 error("%s host key for %.200s has changed and you have "
1034 "requested strict checking.", type, host);
1035 goto fail;
1036 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001037
Damien Miller1aed65e2010-03-04 21:53:35 +11001038 continue_unsafe:
Damien Miller5428f641999-11-25 11:54:57 +11001039 /*
1040 * If strict host key checking has not been requested, allow
Damien Miller941ac452003-06-04 20:31:53 +10001041 * the connection but without MITM-able authentication or
Damien Miller437edb92006-08-05 09:11:13 +10001042 * forwarding.
Damien Miller5428f641999-11-25 11:54:57 +11001043 */
Damien Miller95def091999-11-25 00:26:21 +11001044 if (options.password_authentication) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001045 error("Password authentication is disabled to avoid "
1046 "man-in-the-middle attacks.");
Damien Miller95def091999-11-25 00:26:21 +11001047 options.password_authentication = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001048 cancelled_forwarding = 1;
Damien Miller95def091999-11-25 00:26:21 +11001049 }
Damien Miller941ac452003-06-04 20:31:53 +10001050 if (options.kbd_interactive_authentication) {
1051 error("Keyboard-interactive authentication is disabled"
1052 " to avoid man-in-the-middle attacks.");
1053 options.kbd_interactive_authentication = 0;
1054 options.challenge_response_authentication = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001055 cancelled_forwarding = 1;
Damien Miller941ac452003-06-04 20:31:53 +10001056 }
1057 if (options.challenge_response_authentication) {
1058 error("Challenge/response authentication is disabled"
1059 " to avoid man-in-the-middle attacks.");
1060 options.challenge_response_authentication = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001061 cancelled_forwarding = 1;
Damien Miller941ac452003-06-04 20:31:53 +10001062 }
Damien Miller95def091999-11-25 00:26:21 +11001063 if (options.forward_agent) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001064 error("Agent forwarding is disabled to avoid "
1065 "man-in-the-middle attacks.");
Damien Miller95def091999-11-25 00:26:21 +11001066 options.forward_agent = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001067 cancelled_forwarding = 1;
Damien Miller95def091999-11-25 00:26:21 +11001068 }
Ben Lindstromc72745a2000-12-02 19:03:54 +00001069 if (options.forward_x11) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001070 error("X11 forwarding is disabled to avoid "
1071 "man-in-the-middle attacks.");
Ben Lindstromc72745a2000-12-02 19:03:54 +00001072 options.forward_x11 = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001073 cancelled_forwarding = 1;
Ben Lindstromc72745a2000-12-02 19:03:54 +00001074 }
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001075 if (options.num_local_forwards > 0 ||
1076 options.num_remote_forwards > 0) {
1077 error("Port forwarding is disabled to avoid "
1078 "man-in-the-middle attacks.");
1079 options.num_local_forwards =
Damien Miller9f0f5c62001-12-21 14:45:46 +11001080 options.num_remote_forwards = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001081 cancelled_forwarding = 1;
Ben Lindstromc72745a2000-12-02 19:03:54 +00001082 }
Damien Miller437edb92006-08-05 09:11:13 +10001083 if (options.tun_open != SSH_TUNMODE_NO) {
1084 error("Tunnel forwarding is disabled to avoid "
1085 "man-in-the-middle attacks.");
1086 options.tun_open = SSH_TUNMODE_NO;
Darren Tucker068e01f2008-07-02 22:33:55 +10001087 cancelled_forwarding = 1;
Damien Miller437edb92006-08-05 09:11:13 +10001088 }
Darren Tucker068e01f2008-07-02 22:33:55 +10001089 if (options.exit_on_forward_failure && cancelled_forwarding)
1090 fatal("Error: forwarding disabled due to host key "
1091 "check failure");
1092
Damien Miller5428f641999-11-25 11:54:57 +11001093 /*
1094 * XXX Should permit the user to change to use the new id.
1095 * This could be done by converting the host key to an
1096 * identifying sentence, tell that the host identifies itself
Darren Tuckere2b36742010-01-13 22:42:34 +11001097 * by that sentence, and ask the user if he/she wishes to
Damien Miller5428f641999-11-25 11:54:57 +11001098 * accept the authentication.
1099 */
Damien Miller95def091999-11-25 00:26:21 +11001100 break;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001101 case HOST_FOUND:
1102 fatal("internal error");
1103 break;
Damien Miller95def091999-11-25 00:26:21 +11001104 }
Ben Lindstromc72745a2000-12-02 19:03:54 +00001105
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +00001106 if (options.check_host_ip && host_status != HOST_CHANGED &&
1107 ip_status == HOST_CHANGED) {
Damien Miller49d795c2002-01-22 23:34:12 +11001108 snprintf(msg, sizeof(msg),
1109 "Warning: the %s host key for '%.200s' "
1110 "differs from the key for the IP address '%.128s'"
Damien Millerd925dcd2010-12-01 12:21:51 +11001111 "\nOffending key for IP in %s:%lu",
1112 type, host, ip, ip_found->file, ip_found->line);
Damien Miller49d795c2002-01-22 23:34:12 +11001113 if (host_status == HOST_OK) {
1114 len = strlen(msg);
1115 snprintf(msg + len, sizeof(msg) - len,
Damien Millerd925dcd2010-12-01 12:21:51 +11001116 "\nMatching host key in %s:%lu",
1117 host_found->file, host_found->line);
Damien Miller49d795c2002-01-22 23:34:12 +11001118 }
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +00001119 if (options.strict_host_key_checking == 1) {
Damien Millerab2db412003-06-02 19:09:13 +10001120 logit("%s", msg);
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001121 error("Exiting, you have requested strict checking.");
1122 goto fail;
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +00001123 } else if (options.strict_host_key_checking == 2) {
Damien Miller49d795c2002-01-22 23:34:12 +11001124 strlcat(msg, "\nAre you sure you want "
1125 "to continue connecting (yes/no)? ", sizeof(msg));
1126 if (!confirm(msg))
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001127 goto fail;
Damien Miller49d795c2002-01-22 23:34:12 +11001128 } else {
Damien Millerab2db412003-06-02 19:09:13 +10001129 logit("%s", msg);
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +00001130 }
1131 }
1132
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00001133 if (!hostkey_trusted && options.update_hostkeys) {
1134 debug("%s: hostkey not known or explicitly trusted: "
1135 "disabling UpdateHostkeys", __func__);
1136 options.update_hostkeys = 0;
1137 }
1138
Darren Tuckera627d422013-06-02 07:31:17 +10001139 free(ip);
1140 free(host);
Damien Millerd925dcd2010-12-01 12:21:51 +11001141 if (host_hostkeys != NULL)
1142 free_hostkeys(host_hostkeys);
1143 if (ip_hostkeys != NULL)
1144 free_hostkeys(ip_hostkeys);
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001145 return 0;
1146
1147fail:
Damien Miller1aed65e2010-03-04 21:53:35 +11001148 if (want_cert && host_status != HOST_REVOKED) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001149 /*
1150 * No matching certificate. Downgrade cert to raw key and
1151 * search normally.
1152 */
1153 debug("No matching CA found. Retry with plain key");
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +00001154 if ((r = sshkey_from_private(host_key, &raw_key)) != 0)
1155 fatal("%s: sshkey_from_private: %s",
1156 __func__, ssh_err(r));
1157 if ((r = sshkey_drop_cert(raw_key)) != 0)
1158 fatal("Couldn't drop certificate: %s", ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001159 host_key = raw_key;
1160 goto retry;
1161 }
1162 if (raw_key != NULL)
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +00001163 sshkey_free(raw_key);
Darren Tuckera627d422013-06-02 07:31:17 +10001164 free(ip);
1165 free(host);
Damien Millerd925dcd2010-12-01 12:21:51 +11001166 if (host_hostkeys != NULL)
1167 free_hostkeys(host_hostkeys);
1168 if (ip_hostkeys != NULL)
1169 free_hostkeys(ip_hostkeys);
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001170 return -1;
1171}
1172
Damien Miller37876e92003-05-15 10:19:46 +10001173/* returns 0 if key verifies or -1 if key does NOT verify */
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001174int
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001175verify_host_key(char *host, struct sockaddr *hostaddr, struct sshkey *host_key)
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001176{
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001177 u_int i;
Damien Miller6b37fbb2014-07-04 08:59:24 +10001178 int r = -1, flags = 0;
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001179 char valid[64], *fp = NULL, *cafp = NULL;
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001180 struct sshkey *plain = NULL;
Damien Millerd925dcd2010-12-01 12:21:51 +11001181
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001182 if ((fp = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001183 options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL) {
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001184 error("%s: fingerprint host key: %s", __func__, ssh_err(r));
1185 r = -1;
1186 goto out;
1187 }
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001188
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001189 if (sshkey_is_cert(host_key)) {
1190 if ((cafp = sshkey_fingerprint(host_key->cert->signature_key,
1191 options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL) {
1192 error("%s: fingerprint CA key: %s",
1193 __func__, ssh_err(r));
1194 r = -1;
1195 goto out;
1196 }
1197 sshkey_format_cert_validity(host_key->cert,
1198 valid, sizeof(valid));
1199 debug("Server host certificate: %s %s, serial %llu "
1200 "ID \"%s\" CA %s %s valid %s",
1201 sshkey_ssh_name(host_key), fp,
djm@openbsd.org8ca915f2015-11-20 01:45:29 +00001202 (unsigned long long)host_key->cert->serial,
1203 host_key->cert->key_id,
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001204 sshkey_ssh_name(host_key->cert->signature_key), cafp,
1205 valid);
1206 for (i = 0; i < host_key->cert->nprincipals; i++) {
1207 debug2("Server host certificate hostname: %s",
1208 host_key->cert->principals[i]);
1209 }
1210 } else {
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001211 debug("Server host key: %s %s", sshkey_ssh_name(host_key), fp);
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001212 }
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001213
1214 if (sshkey_equal(previous_host_key, host_key)) {
1215 debug2("%s: server host key %s %s matches cached key",
1216 __func__, sshkey_type(host_key), fp);
1217 r = 0;
1218 goto out;
1219 }
1220
1221 /* Check in RevokedHostKeys file if specified */
1222 if (options.revoked_host_keys != NULL) {
1223 r = sshkey_check_revoked(host_key, options.revoked_host_keys);
1224 switch (r) {
1225 case 0:
1226 break; /* not revoked */
1227 case SSH_ERR_KEY_REVOKED:
1228 error("Host key %s %s revoked by file %s",
1229 sshkey_type(host_key), fp,
1230 options.revoked_host_keys);
1231 r = -1;
1232 goto out;
1233 default:
1234 error("Error checking host key %s %s in "
1235 "revoked keys file %s: %s", sshkey_type(host_key),
1236 fp, options.revoked_host_keys, ssh_err(r));
1237 r = -1;
1238 goto out;
1239 }
Damien Miller6b37fbb2014-07-04 08:59:24 +10001240 }
1241
Damien Miller7d6a9fb2014-04-20 13:23:43 +10001242 if (options.verify_host_key_dns) {
1243 /*
1244 * XXX certs are not yet supported for DNS, so downgrade
1245 * them and try the plain key.
1246 */
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001247 if ((r = sshkey_from_private(host_key, &plain)) != 0)
1248 goto out;
1249 if (sshkey_is_cert(plain))
1250 sshkey_drop_cert(plain);
Damien Miller7d6a9fb2014-04-20 13:23:43 +10001251 if (verify_host_key_dns(host, hostaddr, plain, &flags) == 0) {
1252 if (flags & DNS_VERIFY_FOUND) {
1253 if (options.verify_host_key_dns == 1 &&
1254 flags & DNS_VERIFY_MATCH &&
1255 flags & DNS_VERIFY_SECURE) {
Damien Miller6b37fbb2014-07-04 08:59:24 +10001256 r = 0;
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001257 goto out;
Damien Miller7d6a9fb2014-04-20 13:23:43 +10001258 }
1259 if (flags & DNS_VERIFY_MATCH) {
1260 matching_host_key_dns = 1;
1261 } else {
1262 warn_changed_key(plain);
1263 error("Update the SSHFP RR in DNS "
1264 "with the new host key to get rid "
1265 "of this message.");
1266 }
Damien Miller150b5572003-11-17 21:19:29 +11001267 }
Damien Miller37876e92003-05-15 10:19:46 +10001268 }
1269 }
Damien Miller6b37fbb2014-07-04 08:59:24 +10001270 r = check_host_key(host, hostaddr, options.port, host_key, RDRW,
Damien Miller295ee632011-05-29 21:42:31 +10001271 options.user_hostfiles, options.num_user_hostfiles,
1272 options.system_hostfiles, options.num_system_hostfiles);
Damien Miller6b37fbb2014-07-04 08:59:24 +10001273
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001274out:
1275 sshkey_free(plain);
1276 free(fp);
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001277 free(cafp);
Damien Miller6b37fbb2014-07-04 08:59:24 +10001278 if (r == 0 && host_key != NULL) {
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +00001279 sshkey_free(previous_host_key);
1280 r = sshkey_from_private(host_key, &previous_host_key);
Damien Miller6b37fbb2014-07-04 08:59:24 +10001281 }
1282
1283 return r;
Damien Millera34a28b1999-12-14 10:47:15 +11001284}
Damien Miller037a0dc1999-12-07 15:38:31 +11001285
Damien Miller396691a2000-01-20 22:44:08 +11001286/*
1287 * Starts a dialog with the server, and authenticates the current user on the
1288 * server. This does not need any extra privileges. The basic connection
1289 * to the server must already have been established before this is called.
1290 * If login fails, this function prints an error and never returns.
1291 * This function does not require super-user privileges.
1292 */
1293void
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001294ssh_login(Sensitive *sensitive, const char *orighost,
Damien Millerd925dcd2010-12-01 12:21:51 +11001295 struct sockaddr *hostaddr, u_short port, struct passwd *pw, int timeout_ms)
Damien Miller396691a2000-01-20 22:44:08 +11001296{
Damien Miller0faf7472013-10-17 11:47:23 +11001297 char *host;
Damien Millereba71ba2000-04-29 23:57:08 +10001298 char *server_user, *local_user;
1299
Damien Millereba71ba2000-04-29 23:57:08 +10001300 local_user = xstrdup(pw->pw_name);
1301 server_user = options.user ? options.user : local_user;
Damien Miller396691a2000-01-20 22:44:08 +11001302
1303 /* Convert the user-supplied hostname into all lowercase. */
1304 host = xstrdup(orighost);
Damien Miller0faf7472013-10-17 11:47:23 +11001305 lowercase(host);
Damien Miller396691a2000-01-20 22:44:08 +11001306
1307 /* Exchange protocol version identification strings with the server. */
Damien Miller67bd0622007-09-17 12:06:57 +10001308 ssh_exchange_identification(timeout_ms);
Damien Miller396691a2000-01-20 22:44:08 +11001309
1310 /* Put the connection into non-blocking mode. */
1311 packet_set_nonblocking();
1312
Damien Miller396691a2000-01-20 22:44:08 +11001313 /* key exchange */
Damien Miller396691a2000-01-20 22:44:08 +11001314 /* authenticate user */
dtucker@openbsd.orgbb2289e2015-04-14 04:17:03 +00001315 debug("Authenticating to %s:%d as '%s'", host, port, server_user);
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001316 ssh_kex2(host, hostaddr, port);
1317 ssh_userauth2(local_user, server_user, host, sensitive);
Darren Tuckera627d422013-06-02 07:31:17 +10001318 free(local_user);
Damien Miller396691a2000-01-20 22:44:08 +11001319}
Damien Miller79438cc2001-02-16 12:34:57 +11001320
1321void
1322ssh_put_password(char *password)
1323{
1324 int size;
1325 char *padded;
1326
Ben Lindstromd20d0f32001-03-10 17:22:20 +00001327 if (datafellows & SSH_BUG_PASSWORDPAD) {
Ben Lindstrom664408d2001-06-09 01:42:01 +00001328 packet_put_cstring(password);
Ben Lindstromd20d0f32001-03-10 17:22:20 +00001329 return;
1330 }
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +00001331 size = ROUNDUP(strlen(password) + 1, 32);
Damien Miller07d86be2006-03-26 14:19:21 +11001332 padded = xcalloc(1, size);
Damien Miller79438cc2001-02-16 12:34:57 +11001333 strlcpy(padded, password, size);
1334 packet_put_string(padded, size);
Damien Millera5103f42014-02-04 11:20:14 +11001335 explicit_bzero(padded, size);
Darren Tuckera627d422013-06-02 07:31:17 +10001336 free(padded);
Damien Miller79438cc2001-02-16 12:34:57 +11001337}
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001338
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001339/* print all known host keys for a given host, but skip keys of given type */
1340static int
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001341show_other_keys(struct hostkeys *hostkeys, struct sshkey *key)
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001342{
Damien Miller106bf1c2013-12-29 17:54:03 +11001343 int type[] = {
Damien Miller106bf1c2013-12-29 17:54:03 +11001344 KEY_RSA,
1345 KEY_DSA,
1346 KEY_ECDSA,
1347 KEY_ED25519,
1348 -1
1349 };
Damien Millerd925dcd2010-12-01 12:21:51 +11001350 int i, ret = 0;
1351 char *fp, *ra;
1352 const struct hostkey_entry *found;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001353
1354 for (i = 0; type[i] != -1; i++) {
1355 if (type[i] == key->type)
1356 continue;
Damien Millerd925dcd2010-12-01 12:21:51 +11001357 if (!lookup_key_in_hostkeys_by_type(hostkeys, type[i], &found))
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001358 continue;
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001359 fp = sshkey_fingerprint(found->key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001360 options.fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001361 ra = sshkey_fingerprint(found->key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001362 options.fingerprint_hash, SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001363 if (fp == NULL || ra == NULL)
1364 fatal("%s: sshkey_fingerprint fail", __func__);
Damien Millerd925dcd2010-12-01 12:21:51 +11001365 logit("WARNING: %s key found for host %s\n"
1366 "in %s:%lu\n"
1367 "%s key fingerprint %s.",
1368 key_type(found->key),
1369 found->host, found->file, found->line,
1370 key_type(found->key), fp);
1371 if (options.visual_host_key)
1372 logit("%s", ra);
Darren Tuckera627d422013-06-02 07:31:17 +10001373 free(ra);
1374 free(fp);
Damien Millerd925dcd2010-12-01 12:21:51 +11001375 ret = 1;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001376 }
Damien Millerd925dcd2010-12-01 12:21:51 +11001377 return ret;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001378}
Damien Miller5a388972003-11-17 21:10:47 +11001379
1380static void
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001381warn_changed_key(struct sshkey *host_key)
Damien Miller5a388972003-11-17 21:10:47 +11001382{
1383 char *fp;
Damien Miller5a388972003-11-17 21:10:47 +11001384
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001385 fp = sshkey_fingerprint(host_key, options.fingerprint_hash,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001386 SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001387 if (fp == NULL)
1388 fatal("%s: sshkey_fingerprint fail", __func__);
Damien Miller5a388972003-11-17 21:10:47 +11001389
1390 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1391 error("@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @");
1392 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1393 error("IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!");
1394 error("Someone could be eavesdropping on you right now (man-in-the-middle attack)!");
Damien Miller05c89972011-01-06 22:42:04 +11001395 error("It is also possible that a host key has just been changed.");
Damien Miller5a388972003-11-17 21:10:47 +11001396 error("The fingerprint for the %s key sent by the remote host is\n%s.",
Damien Miller05c89972011-01-06 22:42:04 +11001397 key_type(host_key), fp);
Damien Miller5a388972003-11-17 21:10:47 +11001398 error("Please contact your system administrator.");
1399
Darren Tuckera627d422013-06-02 07:31:17 +10001400 free(fp);
Damien Miller5a388972003-11-17 21:10:47 +11001401}
Damien Millerd27b9472005-12-13 19:29:02 +11001402
1403/*
1404 * Execute a local command
1405 */
1406int
1407ssh_local_cmd(const char *args)
1408{
1409 char *shell;
1410 pid_t pid;
1411 int status;
Damien Millered3a8eb2011-01-07 10:02:52 +11001412 void (*osighand)(int);
Damien Millerd27b9472005-12-13 19:29:02 +11001413
1414 if (!options.permit_local_command ||
1415 args == NULL || !*args)
1416 return (1);
1417
Damien Miller38d9a962010-10-07 22:07:11 +11001418 if ((shell = getenv("SHELL")) == NULL || *shell == '\0')
Damien Millerd27b9472005-12-13 19:29:02 +11001419 shell = _PATH_BSHELL;
1420
Damien Millered3a8eb2011-01-07 10:02:52 +11001421 osighand = signal(SIGCHLD, SIG_DFL);
Damien Millerd27b9472005-12-13 19:29:02 +11001422 pid = fork();
1423 if (pid == 0) {
Damien Miller6fb6fd52011-01-16 23:17:45 +11001424 signal(SIGPIPE, SIG_DFL);
Damien Millerd27b9472005-12-13 19:29:02 +11001425 debug3("Executing %s -c \"%s\"", shell, args);
1426 execl(shell, shell, "-c", args, (char *)NULL);
1427 error("Couldn't execute %s -c \"%s\": %s",
1428 shell, args, strerror(errno));
1429 _exit(1);
1430 } else if (pid == -1)
1431 fatal("fork failed: %.100s", strerror(errno));
1432 while (waitpid(pid, &status, 0) == -1)
1433 if (errno != EINTR)
1434 fatal("Couldn't wait for child: %s", strerror(errno));
Damien Millered3a8eb2011-01-07 10:02:52 +11001435 signal(SIGCHLD, osighand);
Damien Millerd27b9472005-12-13 19:29:02 +11001436
1437 if (!WIFEXITED(status))
1438 return (1);
1439
1440 return (WEXITSTATUS(status));
1441}
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001442
1443void
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001444maybe_add_key_to_agent(char *authfile, struct sshkey *private, char *comment,
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001445 char *passphrase)
1446{
1447 int auth_sock = -1, r;
1448
1449 if (options.add_keys_to_agent == 0)
1450 return;
1451
1452 if ((r = ssh_get_authentication_socket(&auth_sock)) != 0) {
1453 debug3("no authentication agent, not adding key");
1454 return;
1455 }
1456
1457 if (options.add_keys_to_agent == 2 &&
1458 !ask_permission("Add key %s (%s) to agent?", authfile, comment)) {
1459 debug3("user denied adding this key");
dtucker@openbsd.org566b3a42017-03-10 03:22:40 +00001460 close(auth_sock);
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001461 return;
1462 }
1463
1464 if ((r = ssh_add_identity_constrained(auth_sock, private, comment, 0,
1465 (options.add_keys_to_agent == 3))) == 0)
1466 debug("identity added to agent: %s", authfile);
1467 else
1468 debug("could not add identity to agent: %s (%d)", authfile, r);
dtucker@openbsd.org566b3a42017-03-10 03:22:40 +00001469 close(auth_sock);
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001470}