blob: 1a5f6a4c8e161ad7e32fce38992209c82c669452 [file] [log] [blame]
djm@openbsd.org06232032019-01-19 21:36:38 +00001/* $OpenBSD: sshconnect.c,v 1.311 2019/01/19 21:36:38 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
djm@openbsd.orgac2e3022018-02-23 02:34:33 +000026#include <net/if.h>
Damien Miller8ec8c3e2006-07-10 20:35:38 +100027#include <netinet/in.h>
Darren Tucker46aa3e02006-09-02 15:32:40 +100028#include <arpa/inet.h>
Damien Miller03e20032006-03-15 11:16:59 +110029
Damien Millerc7b06362006-03-15 11:53:45 +110030#include <ctype.h>
Darren Tucker39972492006-07-12 22:22:46 +100031#include <errno.h>
Darren Tucker6e7fe1c2010-01-08 17:07:22 +110032#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100033#include <netdb.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110034#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110035#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110036#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100037#include <pwd.h>
djm@openbsd.org45404282017-06-24 05:37:44 +000038#ifdef HAVE_POLL_H
39#include <poll.h>
40#endif
Damien Miller9c0c31d2010-10-12 13:30:44 +110041#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100042#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100043#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100044#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100045#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100046#include <unistd.h>
Darren Tuckerb59162d2018-02-23 15:20:42 +110047#ifdef HAVE_IFADDRS_H
48# include <ifaddrs.h>
49#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +100050
Damien Millerd4a8b7e1999-10-27 13:42:43 +100051#include "xmalloc.h"
Damien Millerd7834352006-08-05 12:39:39 +100052#include "hostfile.h"
53#include "ssh.h"
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +000054#include "sshbuf.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100055#include "packet.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100056#include "compat.h"
markus@openbsd.org5467fbc2018-07-11 18:53:29 +000057#include "sshkey.h"
Damien Millereba71ba2000-04-29 23:57:08 +100058#include "sshconnect.h"
Damien Miller450a7a12000-03-26 13:04:51 +100059#include "hostfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000060#include "log.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100061#include "misc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000062#include "readconf.h"
63#include "atomicio.h"
Damien Miller37876e92003-05-15 10:19:46 +100064#include "dns.h"
Damien Miller1262b662013-08-21 02:44:24 +100065#include "monitor_fdpass.h"
Damien Miller0a80ca12010-02-27 07:55:05 +110066#include "ssh2.h"
Damien Millerb7576772006-07-10 20:23:39 +100067#include "version.h"
djm@openbsd.org5e39a492014-12-04 02:24:32 +000068#include "authfile.h"
69#include "ssherr.h"
jcs@openbsd.orgf361df42015-11-15 22:26:49 +000070#include "authfd.h"
djm@openbsd.org0a843d92018-12-27 03:25:24 +000071#include "kex.h"
Damien Miller37876e92003-05-15 10:19:46 +100072
markus@openbsd.org54d90ac2017-05-30 08:52:19 +000073struct sshkey *previous_host_key = NULL;
Damien Miller1383bd82000-04-06 12:32:37 +100074
Damien Millerc1af1d52005-11-05 15:08:57 +110075static int matching_host_key_dns = 0;
Damien Miller7392ae62003-06-11 22:05:25 +100076
Damien Millera41ccca2010-10-07 22:07:32 +110077static pid_t proxy_command_pid = 0;
78
Ben Lindstromf9c48842002-06-11 16:37:51 +000079/* import */
djm@openbsd.orgccef7c42018-11-16 06:17:38 +000080extern int debug_flag;
Damien Milleraae6c611999-12-06 11:47:28 +110081extern Options options;
Damien Miller34132e52000-01-14 15:45:46 +110082extern char *__progname;
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
djm@openbsd.orgccef7c42018-11-16 06:17:38 +0000102static void
103stderr_null(void)
104{
105 int devnull;
106
107 if ((devnull = open(_PATH_DEVNULL, O_WRONLY)) == -1) {
108 error("Can't open %s for stderr redirection: %s",
109 _PATH_DEVNULL, strerror(errno));
110 return;
111 }
112 if (devnull == STDERR_FILENO)
113 return;
114 if (dup2(devnull, STDERR_FILENO) == -1)
115 error("Cannot redirect stderr to %s", _PATH_DEVNULL);
116 if (devnull > STDERR_FILENO)
117 close(devnull);
118}
119
Damien Miller1262b662013-08-21 02:44:24 +1000120/*
121 * Connect to the given ssh server using a proxy command that passes a
122 * a connected fd back to us.
123 */
124static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000125ssh_proxy_fdpass_connect(struct ssh *ssh, const char *host, u_short port,
Damien Miller1262b662013-08-21 02:44:24 +1000126 const char *proxy_command)
127{
128 char *command_string;
129 int sp[2], sock;
130 pid_t pid;
131 char *shell;
132
133 if ((shell = getenv("SHELL")) == NULL)
134 shell = _PATH_BSHELL;
135
136 if (socketpair(AF_UNIX, SOCK_STREAM, 0, sp) < 0)
137 fatal("Could not create socketpair to communicate with "
138 "proxy dialer: %.100s", strerror(errno));
139
140 command_string = expand_proxy_command(proxy_command, options.user,
141 host, port);
142 debug("Executing proxy dialer command: %.500s", command_string);
143
144 /* Fork and execute the proxy command. */
145 if ((pid = fork()) == 0) {
146 char *argv[10];
147
Damien Miller1262b662013-08-21 02:44:24 +1000148 close(sp[1]);
149 /* Redirect stdin and stdout. */
150 if (sp[0] != 0) {
151 if (dup2(sp[0], 0) < 0)
152 perror("dup2 stdin");
153 }
154 if (sp[0] != 1) {
155 if (dup2(sp[0], 1) < 0)
156 perror("dup2 stdout");
157 }
158 if (sp[0] >= 2)
159 close(sp[0]);
160
161 /*
djm@openbsd.orgccef7c42018-11-16 06:17:38 +0000162 * Stderr is left for non-ControlPersist connections is so
163 * error messages may be printed on the user's terminal.
Damien Miller1262b662013-08-21 02:44:24 +1000164 */
dtucker@openbsd.org7fca94e2018-11-18 22:43:29 +0000165 if (!debug_flag && options.control_path != NULL &&
166 options.control_persist)
djm@openbsd.orgccef7c42018-11-16 06:17:38 +0000167 stderr_null();
168
Damien Miller1262b662013-08-21 02:44:24 +1000169 argv[0] = shell;
170 argv[1] = "-c";
171 argv[2] = command_string;
172 argv[3] = NULL;
173
174 /*
175 * Execute the proxy command.
176 * Note that we gave up any extra privileges above.
177 */
178 execv(argv[0], argv);
179 perror(argv[0]);
180 exit(1);
181 }
182 /* Parent. */
183 if (pid < 0)
184 fatal("fork failed: %.100s", strerror(errno));
185 close(sp[0]);
186 free(command_string);
187
188 if ((sock = mm_receive_fd(sp[1])) == -1)
189 fatal("proxy dialer did not pass back a connection");
markus@openbsd.orgfc77ccd2016-01-14 22:56:56 +0000190 close(sp[1]);
Damien Miller1262b662013-08-21 02:44:24 +1000191
192 while (waitpid(pid, NULL, 0) == -1)
193 if (errno != EINTR)
194 fatal("Couldn't wait for child: %s", strerror(errno));
195
196 /* Set the connection file descriptors. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000197 if (ssh_packet_set_connection(ssh, sock, sock) == NULL)
198 return -1; /* ssh_packet_set_connection logs error */
Damien Miller1262b662013-08-21 02:44:24 +1000199
200 return 0;
201}
202
Damien Miller95def091999-11-25 00:26:21 +1100203/*
204 * Connect to the given ssh server using a proxy command.
205 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000206static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000207ssh_proxy_connect(struct ssh *ssh, const char *host, u_short port,
208 const char *proxy_command)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000209{
Damien Miller1262b662013-08-21 02:44:24 +1000210 char *command_string;
Damien Miller95def091999-11-25 00:26:21 +1100211 int pin[2], pout[2];
Damien Miller166fca82000-04-20 07:42:21 +1000212 pid_t pid;
Damien Miller1262b662013-08-21 02:44:24 +1000213 char *shell;
Damien Miller1d824ab2007-09-17 11:58:04 +1000214
Damien Miller38d9a962010-10-07 22:07:11 +1100215 if ((shell = getenv("SHELL")) == NULL || *shell == '\0')
Damien Miller1d824ab2007-09-17 11:58:04 +1000216 shell = _PATH_BSHELL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000217
Damien Miller95def091999-11-25 00:26:21 +1100218 /* Create pipes for communicating with the proxy. */
219 if (pipe(pin) < 0 || pipe(pout) < 0)
220 fatal("Could not create pipes to communicate with the proxy: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100221 strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000222
Damien Miller1262b662013-08-21 02:44:24 +1000223 command_string = expand_proxy_command(proxy_command, options.user,
224 host, port);
Damien Miller95def091999-11-25 00:26:21 +1100225 debug("Executing proxy command: %.500s", command_string);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000226
Damien Miller95def091999-11-25 00:26:21 +1100227 /* Fork and execute the proxy command. */
228 if ((pid = fork()) == 0) {
229 char *argv[10];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000230
Damien Miller95def091999-11-25 00:26:21 +1100231 /* Redirect stdin and stdout. */
232 close(pin[1]);
233 if (pin[0] != 0) {
234 if (dup2(pin[0], 0) < 0)
235 perror("dup2 stdin");
236 close(pin[0]);
237 }
238 close(pout[0]);
239 if (dup2(pout[1], 1) < 0)
240 perror("dup2 stdout");
241 /* Cannot be 1 because pin allocated two descriptors. */
242 close(pout[1]);
243
djm@openbsd.orgccef7c42018-11-16 06:17:38 +0000244 /*
245 * Stderr is left for non-ControlPersist connections is so
246 * error messages may be printed on the user's terminal.
247 */
dtucker@openbsd.org7fca94e2018-11-18 22:43:29 +0000248 if (!debug_flag && options.control_path != NULL &&
249 options.control_persist)
djm@openbsd.orgccef7c42018-11-16 06:17:38 +0000250 stderr_null();
251
Damien Miller1d824ab2007-09-17 11:58:04 +1000252 argv[0] = shell;
Damien Miller95def091999-11-25 00:26:21 +1100253 argv[1] = "-c";
254 argv[2] = command_string;
255 argv[3] = NULL;
256
257 /* Execute the proxy command. Note that we gave up any
258 extra privileges above. */
Damien Miller6fb6fd52011-01-16 23:17:45 +1100259 signal(SIGPIPE, SIG_DFL);
Kevin Stevesfcd5d602001-01-07 11:45:22 +0000260 execv(argv[0], argv);
261 perror(argv[0]);
Damien Miller95def091999-11-25 00:26:21 +1100262 exit(1);
263 }
264 /* Parent. */
265 if (pid < 0)
266 fatal("fork failed: %.100s", strerror(errno));
Damien Miller8c4e18a2002-09-19 12:05:02 +1000267 else
268 proxy_command_pid = pid; /* save pid to clean up later */
Damien Miller95def091999-11-25 00:26:21 +1100269
270 /* Close child side of the descriptors. */
271 close(pin[0]);
272 close(pout[1]);
273
274 /* Free the command name. */
Darren Tuckera627d422013-06-02 07:31:17 +1000275 free(command_string);
Damien Miller95def091999-11-25 00:26:21 +1100276
277 /* Set the connection file descriptors. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000278 if (ssh_packet_set_connection(ssh, pout[0], pin[1]) == NULL)
279 return -1; /* ssh_packet_set_connection logs error */
Damien Miller95def091999-11-25 00:26:21 +1100280
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000281 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000282}
283
Damien Millera41ccca2010-10-07 22:07:32 +1100284void
285ssh_kill_proxy_command(void)
286{
287 /*
288 * Send SIGHUP to proxy command if used. We don't wait() in
289 * case it hangs and instead rely on init to reap the child
290 */
291 if (proxy_command_pid > 1)
Damien Miller45fcdaa2010-10-07 22:07:58 +1100292 kill(proxy_command_pid, SIGHUP);
Damien Millera41ccca2010-10-07 22:07:32 +1100293}
294
Darren Tuckerb59162d2018-02-23 15:20:42 +1100295#ifdef HAVE_IFADDRS_H
Damien Miller95def091999-11-25 00:26:21 +1100296/*
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000297 * Search a interface address list (returned from getifaddrs(3)) for an
djm@openbsd.org001aa552018-04-10 00:10:49 +0000298 * address that matches the desired address family on the specified interface.
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000299 * Returns 0 and fills in *resultp and *rlenp on success. Returns -1 on failure.
300 */
301static int
302check_ifaddrs(const char *ifname, int af, const struct ifaddrs *ifaddrs,
303 struct sockaddr_storage *resultp, socklen_t *rlenp)
304{
305 struct sockaddr_in6 *sa6;
306 struct sockaddr_in *sa;
307 struct in6_addr *v6addr;
308 const struct ifaddrs *ifa;
309 int allow_local;
310
311 /*
312 * Prefer addresses that are not loopback or linklocal, but use them
313 * if nothing else matches.
314 */
315 for (allow_local = 0; allow_local < 2; allow_local++) {
316 for (ifa = ifaddrs; ifa != NULL; ifa = ifa->ifa_next) {
317 if (ifa->ifa_addr == NULL || ifa->ifa_name == NULL ||
318 (ifa->ifa_flags & IFF_UP) == 0 ||
319 ifa->ifa_addr->sa_family != af ||
320 strcmp(ifa->ifa_name, options.bind_interface) != 0)
321 continue;
322 switch (ifa->ifa_addr->sa_family) {
323 case AF_INET:
324 sa = (struct sockaddr_in *)ifa->ifa_addr;
325 if (!allow_local && sa->sin_addr.s_addr ==
326 htonl(INADDR_LOOPBACK))
327 continue;
328 if (*rlenp < sizeof(struct sockaddr_in)) {
329 error("%s: v4 addr doesn't fit",
330 __func__);
331 return -1;
332 }
333 *rlenp = sizeof(struct sockaddr_in);
334 memcpy(resultp, sa, *rlenp);
335 return 0;
336 case AF_INET6:
337 sa6 = (struct sockaddr_in6 *)ifa->ifa_addr;
338 v6addr = &sa6->sin6_addr;
339 if (!allow_local &&
340 (IN6_IS_ADDR_LINKLOCAL(v6addr) ||
341 IN6_IS_ADDR_LOOPBACK(v6addr)))
342 continue;
343 if (*rlenp < sizeof(struct sockaddr_in6)) {
344 error("%s: v6 addr doesn't fit",
345 __func__);
346 return -1;
347 }
348 *rlenp = sizeof(struct sockaddr_in6);
349 memcpy(resultp, sa6, *rlenp);
350 return 0;
351 }
352 }
353 }
354 return -1;
355}
Darren Tuckerb59162d2018-02-23 15:20:42 +1100356#endif
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000357
358/*
dtucker@openbsd.org3ba6e682018-07-19 23:03:16 +0000359 * Creates a socket for use as the ssh connection.
Damien Miller95def091999-11-25 00:26:21 +1100360 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000361static int
dtucker@openbsd.org95d41e92018-07-19 10:28:47 +0000362ssh_create_socket(struct addrinfo *ai)
Damien Miller95def091999-11-25 00:26:21 +1100363{
dtucker@openbsd.org258dc8b2018-07-18 11:34:04 +0000364 int sock, r;
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000365 struct sockaddr_storage bindaddr;
366 socklen_t bindaddrlen = 0;
Damien Millerd1a7a9c2014-02-07 09:24:33 +1100367 struct addrinfo hints, *res = NULL;
Darren Tuckerb59162d2018-02-23 15:20:42 +1100368#ifdef HAVE_IFADDRS_H
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000369 struct ifaddrs *ifaddrs = NULL;
Darren Tuckerb59162d2018-02-23 15:20:42 +1100370#endif
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000371 char ntop[NI_MAXHOST];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000372
Darren Tucker7bd98e72010-01-10 10:31:12 +1100373 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Darren Tucker6e7fe1c2010-01-08 17:07:22 +1100374 if (sock < 0) {
Darren Tuckere6e52f82013-10-10 10:28:07 +1100375 error("socket: %s", strerror(errno));
Darren Tucker6e7fe1c2010-01-08 17:07:22 +1100376 return -1;
377 }
378 fcntl(sock, F_SETFD, FD_CLOEXEC);
Ben Lindstrome0f88042001-04-30 13:06:24 +0000379
380 /* Bind the socket to an alternative local IP address */
dtucker@openbsd.org95d41e92018-07-19 10:28:47 +0000381 if (options.bind_address == NULL && options.bind_interface == NULL)
Ben Lindstrome0f88042001-04-30 13:06:24 +0000382 return sock;
383
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000384 if (options.bind_address != NULL) {
Damien Millerd1a7a9c2014-02-07 09:24:33 +1100385 memset(&hints, 0, sizeof(hints));
386 hints.ai_family = ai->ai_family;
387 hints.ai_socktype = ai->ai_socktype;
388 hints.ai_protocol = ai->ai_protocol;
389 hints.ai_flags = AI_PASSIVE;
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000390 if ((r = getaddrinfo(options.bind_address, NULL,
391 &hints, &res)) != 0) {
Damien Millerd1a7a9c2014-02-07 09:24:33 +1100392 error("getaddrinfo: %s: %s", options.bind_address,
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000393 ssh_gai_strerror(r));
394 goto fail;
Damien Millerd1a7a9c2014-02-07 09:24:33 +1100395 }
dtucker@openbsd.org3e19fb92018-02-23 04:18:46 +0000396 if (res == NULL) {
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000397 error("getaddrinfo: no addrs");
398 goto fail;
dtucker@openbsd.org3e19fb92018-02-23 04:18:46 +0000399 }
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000400 memcpy(&bindaddr, res->ai_addr, res->ai_addrlen);
401 bindaddrlen = res->ai_addrlen;
402 } else if (options.bind_interface != NULL) {
Darren Tuckerb59162d2018-02-23 15:20:42 +1100403#ifdef HAVE_IFADDRS_H
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000404 if ((r = getifaddrs(&ifaddrs)) != 0) {
405 error("getifaddrs: %s: %s", options.bind_interface,
406 strerror(errno));
407 goto fail;
408 }
409 bindaddrlen = sizeof(bindaddr);
410 if (check_ifaddrs(options.bind_interface, ai->ai_family,
411 ifaddrs, &bindaddr, &bindaddrlen) != 0) {
412 logit("getifaddrs: %s: no suitable addresses",
413 options.bind_interface);
414 goto fail;
415 }
Darren Tuckerb59162d2018-02-23 15:20:42 +1100416#else
417 error("BindInterface not supported on this platform.");
418#endif
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000419 }
420 if ((r = getnameinfo((struct sockaddr *)&bindaddr, bindaddrlen,
421 ntop, sizeof(ntop), NULL, 0, NI_NUMERICHOST)) != 0) {
422 error("%s: getnameinfo failed: %s", __func__,
423 ssh_gai_strerror(r));
424 goto fail;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000425 }
dtucker@openbsd.org258dc8b2018-07-18 11:34:04 +0000426 if (bind(sock, (struct sockaddr *)&bindaddr, bindaddrlen) != 0) {
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000427 error("bind %s: %s", ntop, strerror(errno));
428 goto fail;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000429 }
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000430 debug("%s: bound to %s", __func__, ntop);
431 /* success */
432 goto out;
433fail:
434 close(sock);
435 sock = -1;
436 out:
Damien Millerd1a7a9c2014-02-07 09:24:33 +1100437 if (res != NULL)
438 freeaddrinfo(res);
Darren Tuckerb59162d2018-02-23 15:20:42 +1100439#ifdef HAVE_IFADDRS_H
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000440 if (ifaddrs != NULL)
441 freeifaddrs(ifaddrs);
Darren Tuckerb59162d2018-02-23 15:20:42 +1100442#endif
Damien Miller95def091999-11-25 00:26:21 +1100443 return sock;
444}
445
djm@openbsd.org45404282017-06-24 05:37:44 +0000446/*
Damien Miller34132e52000-01-14 15:45:46 +1100447 * Opens a TCP/IP connection to the remote server on the given host.
448 * The address of the remote host will be returned in hostaddr.
dtucker@openbsd.org95d41e92018-07-19 10:28:47 +0000449 * If port is 0, the default port will be used.
Damien Miller95def091999-11-25 00:26:21 +1100450 * Connection_attempts specifies the maximum number of tries (one per
451 * second). If proxy_command is non-NULL, it specifies the command (with %h
452 * and %p substituted for host and port, respectively) to use to contact
453 * the daemon.
454 */
Damien Miller0faf7472013-10-17 11:47:23 +1100455static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000456ssh_connect_direct(struct ssh *ssh, const char *host, struct addrinfo *aitop,
Damien Miller0faf7472013-10-17 11:47:23 +1100457 struct sockaddr_storage *hostaddr, u_short port, int family,
dtucker@openbsd.org95d41e92018-07-19 10:28:47 +0000458 int connection_attempts, int *timeout_ms, int want_keepalive)
Damien Miller95def091999-11-25 00:26:21 +1100459{
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000460 int on = 1;
djm@openbsd.org7c779912018-01-23 05:17:04 +0000461 int oerrno, sock = -1, attempt;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000462 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller0faf7472013-10-17 11:47:23 +1100463 struct addrinfo *ai;
Damien Miller95def091999-11-25 00:26:21 +1100464
dtucker@openbsd.org95d41e92018-07-19 10:28:47 +0000465 debug2("%s", __func__);
djm@openbsd.org88b6fcd2015-11-19 08:23:27 +0000466 memset(ntop, 0, sizeof(ntop));
467 memset(strport, 0, sizeof(strport));
Damien Miller95def091999-11-25 00:26:21 +1100468
Damien Miller56e5e6a2006-04-23 12:08:59 +1000469 for (attempt = 0; attempt < connection_attempts; attempt++) {
Damien Millerf4bcd102006-10-24 03:02:23 +1000470 if (attempt > 0) {
471 /* Sleep a moment before retrying. */
472 sleep(1);
Damien Miller95def091999-11-25 00:26:21 +1100473 debug("Trying again...");
Damien Millerf4bcd102006-10-24 03:02:23 +1000474 }
Damien Miller56e5e6a2006-04-23 12:08:59 +1000475 /*
476 * Loop through addresses for this host, and try each one in
477 * sequence until the connection succeeds.
478 */
Damien Miller34132e52000-01-14 15:45:46 +1100479 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller0faf7472013-10-17 11:47:23 +1100480 if (ai->ai_family != AF_INET &&
djm@openbsd.org7c779912018-01-23 05:17:04 +0000481 ai->ai_family != AF_INET6) {
482 errno = EAFNOSUPPORT;
Damien Miller34132e52000-01-14 15:45:46 +1100483 continue;
djm@openbsd.org7c779912018-01-23 05:17:04 +0000484 }
Damien Miller34132e52000-01-14 15:45:46 +1100485 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
486 ntop, sizeof(ntop), strport, sizeof(strport),
487 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
djm@openbsd.org7c779912018-01-23 05:17:04 +0000488 oerrno = errno;
djm@openbsd.org46152af2015-09-04 04:55:24 +0000489 error("%s: getnameinfo failed", __func__);
djm@openbsd.org7c779912018-01-23 05:17:04 +0000490 errno = oerrno;
Damien Miller34132e52000-01-14 15:45:46 +1100491 continue;
492 }
493 debug("Connecting to %.200s [%.100s] port %s.",
494 host, ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +1100495
Damien Miller34132e52000-01-14 15:45:46 +1100496 /* Create a socket for connecting. */
dtucker@openbsd.org95d41e92018-07-19 10:28:47 +0000497 sock = ssh_create_socket(ai);
stsp@openbsd.orga60c5dc2018-01-23 18:33:49 +0000498 if (sock < 0) {
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000499 /* Any error is already output */
djm@openbsd.org7c779912018-01-23 05:17:04 +0000500 errno = 0;
Damien Miller34132e52000-01-14 15:45:46 +1100501 continue;
stsp@openbsd.orga60c5dc2018-01-23 18:33:49 +0000502 }
Damien Miller95def091999-11-25 00:26:21 +1100503
Damien Millerb78d5eb2003-05-16 11:39:04 +1000504 if (timeout_connect(sock, ai->ai_addr, ai->ai_addrlen,
Damien Miller67bd0622007-09-17 12:06:57 +1000505 timeout_ms) >= 0) {
Damien Miller34132e52000-01-14 15:45:46 +1100506 /* Successful connection. */
Ben Lindstroma3700052001-04-05 23:26:32 +0000507 memcpy(hostaddr, ai->ai_addr, ai->ai_addrlen);
Damien Miller95def091999-11-25 00:26:21 +1100508 break;
Damien Miller34132e52000-01-14 15:45:46 +1100509 } else {
djm@openbsd.org7c779912018-01-23 05:17:04 +0000510 oerrno = errno;
Ben Lindstrom728aa7e2002-07-15 17:48:11 +0000511 debug("connect to address %s port %s: %s",
512 ntop, strport, strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100513 close(sock);
Damien Miller56e5e6a2006-04-23 12:08:59 +1000514 sock = -1;
djm@openbsd.org7c779912018-01-23 05:17:04 +0000515 errno = oerrno;
Damien Miller95def091999-11-25 00:26:21 +1100516 }
Damien Miller95def091999-11-25 00:26:21 +1100517 }
Damien Miller56e5e6a2006-04-23 12:08:59 +1000518 if (sock != -1)
Damien Miller34132e52000-01-14 15:45:46 +1100519 break; /* Successful connection. */
Damien Miller95def091999-11-25 00:26:21 +1100520 }
Damien Miller34132e52000-01-14 15:45:46 +1100521
Damien Miller95def091999-11-25 00:26:21 +1100522 /* Return failure if we didn't get a successful connection. */
Damien Miller56e5e6a2006-04-23 12:08:59 +1000523 if (sock == -1) {
Darren Tuckerb2161e32005-01-20 11:00:46 +1100524 error("ssh: connect to host %s port %s: %s",
djm@openbsd.org7c779912018-01-23 05:17:04 +0000525 host, strport, errno == 0 ? "failure" : strerror(errno));
526 return -1;
Ben Lindstroma6cd75c2002-07-11 04:00:19 +0000527 }
Damien Miller95def091999-11-25 00:26:21 +1100528
529 debug("Connection established.");
530
Damien Miller12c150e2003-12-17 16:31:10 +1100531 /* Set SO_KEEPALIVE if requested. */
Damien Miller67bd0622007-09-17 12:06:57 +1000532 if (want_keepalive &&
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000533 setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE, (void *)&on,
534 sizeof(on)) < 0)
535 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100536
537 /* Set the connection. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000538 if (ssh_packet_set_connection(ssh, sock, sock) == NULL)
539 return -1; /* ssh_packet_set_connection logs error */
Damien Miller95def091999-11-25 00:26:21 +1100540
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000541 return 0;
Damien Miller95def091999-11-25 00:26:21 +1100542}
543
Damien Miller0faf7472013-10-17 11:47:23 +1100544int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000545ssh_connect(struct ssh *ssh, const char *host, struct addrinfo *addrs,
Damien Miller0faf7472013-10-17 11:47:23 +1100546 struct sockaddr_storage *hostaddr, u_short port, int family,
dtucker@openbsd.org95d41e92018-07-19 10:28:47 +0000547 int connection_attempts, int *timeout_ms, int want_keepalive)
Damien Miller0faf7472013-10-17 11:47:23 +1100548{
549 if (options.proxy_command == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000550 return ssh_connect_direct(ssh, host, addrs, hostaddr, port,
dtucker@openbsd.org95d41e92018-07-19 10:28:47 +0000551 family, connection_attempts, timeout_ms, want_keepalive);
Damien Miller0faf7472013-10-17 11:47:23 +1100552 } else if (strcmp(options.proxy_command, "-") == 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000553 if ((ssh_packet_set_connection(ssh,
554 STDIN_FILENO, STDOUT_FILENO)) == NULL)
555 return -1; /* ssh_packet_set_connection logs error */
556 return 0;
Damien Miller0faf7472013-10-17 11:47:23 +1100557 } else if (options.proxy_use_fdpass) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000558 return ssh_proxy_fdpass_connect(ssh, host, port,
Damien Miller0faf7472013-10-17 11:47:23 +1100559 options.proxy_command);
560 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000561 return ssh_proxy_connect(ssh, host, port, options.proxy_command);
Damien Miller0faf7472013-10-17 11:47:23 +1100562}
563
Ben Lindstromb6c06d92001-02-10 23:21:09 +0000564/* defaults to 'no' */
Ben Lindstrombba81212001-06-25 05:01:22 +0000565static int
Damien Millere3980042001-10-10 15:02:03 +1000566confirm(const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000567{
Damien Miller49d795c2002-01-22 23:34:12 +1100568 const char *msg, *again = "Please type 'yes' or 'no': ";
569 char *p;
570 int ret = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000571
Ben Lindstromb6c06d92001-02-10 23:21:09 +0000572 if (options.batch_mode)
573 return 0;
Damien Miller49d795c2002-01-22 23:34:12 +1100574 for (msg = prompt;;msg = again) {
575 p = read_passphrase(msg, RP_ECHO);
djm@openbsd.orge0ce54c2017-12-06 05:06:21 +0000576 if (p == NULL)
577 return 0;
578 p[strcspn(p, "\n")] = '\0';
579 if (p[0] == '\0' || strcasecmp(p, "no") == 0)
Damien Miller49d795c2002-01-22 23:34:12 +1100580 ret = 0;
djm@openbsd.orge0ce54c2017-12-06 05:06:21 +0000581 else if (strcasecmp(p, "yes") == 0)
Damien Miller49d795c2002-01-22 23:34:12 +1100582 ret = 1;
Darren Tuckera627d422013-06-02 07:31:17 +1000583 free(p);
Damien Miller49d795c2002-01-22 23:34:12 +1100584 if (ret != -1)
585 return ret;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000586 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000587}
588
Damien Miller0a80ca12010-02-27 07:55:05 +1100589static int
djm@openbsd.orgecac7e12018-09-20 03:30:44 +0000590check_host_cert(const char *host, const struct sshkey *key)
Damien Miller0a80ca12010-02-27 07:55:05 +1100591{
592 const char *reason;
djm@openbsd.orgecac7e12018-09-20 03:30:44 +0000593 int r;
Damien Miller0a80ca12010-02-27 07:55:05 +1100594
djm@openbsd.orgecac7e12018-09-20 03:30:44 +0000595 if (sshkey_cert_check_authority(key, 1, 0, host, &reason) != 0) {
Damien Miller0a80ca12010-02-27 07:55:05 +1100596 error("%s", reason);
597 return 0;
598 }
djm@openbsd.orgecac7e12018-09-20 03:30:44 +0000599 if (sshbuf_len(key->cert->critical) != 0) {
Damien Miller4e270b02010-04-16 15:56:21 +1000600 error("Certificate for %s contains unsupported "
601 "critical options(s)", host);
Damien Miller0a80ca12010-02-27 07:55:05 +1100602 return 0;
603 }
djm@openbsd.orgecac7e12018-09-20 03:30:44 +0000604 if ((r = sshkey_check_cert_sigtype(key,
605 options.ca_sign_algorithms)) != 0) {
606 logit("%s: certificate signature algorithm %s: %s", __func__,
607 (key->cert == NULL || key->cert->signature_type == NULL) ?
608 "(null)" : key->cert->signature_type, ssh_err(r));
609 return 0;
610 }
611
Damien Miller0a80ca12010-02-27 07:55:05 +1100612 return 1;
613}
614
Damien Millerd925dcd2010-12-01 12:21:51 +1100615static int
616sockaddr_is_local(struct sockaddr *hostaddr)
617{
618 switch (hostaddr->sa_family) {
619 case AF_INET:
620 return (ntohl(((struct sockaddr_in *)hostaddr)->
621 sin_addr.s_addr) >> 24) == IN_LOOPBACKNET;
622 case AF_INET6:
623 return IN6_IS_ADDR_LOOPBACK(
624 &(((struct sockaddr_in6 *)hostaddr)->sin6_addr));
625 default:
626 return 0;
627 }
628}
629
630/*
631 * Prepare the hostname and ip address strings that are used to lookup
632 * host keys in known_hosts files. These may have a port number appended.
633 */
634void
635get_hostfile_hostname_ipaddr(char *hostname, struct sockaddr *hostaddr,
636 u_short port, char **hostfile_hostname, char **hostfile_ipaddr)
637{
638 char ntop[NI_MAXHOST];
639 socklen_t addrlen;
640
641 switch (hostaddr == NULL ? -1 : hostaddr->sa_family) {
642 case -1:
643 addrlen = 0;
644 break;
645 case AF_INET:
646 addrlen = sizeof(struct sockaddr_in);
647 break;
648 case AF_INET6:
649 addrlen = sizeof(struct sockaddr_in6);
650 break;
651 default:
652 addrlen = sizeof(struct sockaddr);
653 break;
654 }
655
656 /*
657 * We don't have the remote ip-address for connections
658 * using a proxy command
659 */
660 if (hostfile_ipaddr != NULL) {
661 if (options.proxy_command == NULL) {
662 if (getnameinfo(hostaddr, addrlen,
663 ntop, sizeof(ntop), NULL, 0, NI_NUMERICHOST) != 0)
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000664 fatal("%s: getnameinfo failed", __func__);
Damien Millerd925dcd2010-12-01 12:21:51 +1100665 *hostfile_ipaddr = put_host_port(ntop, port);
666 } else {
667 *hostfile_ipaddr = xstrdup("<no hostip for proxy "
668 "command>");
669 }
670 }
671
672 /*
673 * Allow the user to record the key under a different name or
674 * differentiate a non-standard port. This is useful for ssh
675 * tunneling over forwarded connections or if you run multiple
676 * sshd's on different ports on the same machine.
677 */
678 if (hostfile_hostname != NULL) {
679 if (options.host_key_alias != NULL) {
680 *hostfile_hostname = xstrdup(options.host_key_alias);
681 debug("using hostkeyalias: %s", *hostfile_hostname);
682 } else {
683 *hostfile_hostname = put_host_port(hostname, port);
684 }
685 }
686}
687
Damien Miller95def091999-11-25 00:26:21 +1100688/*
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000689 * check whether the supplied host key is valid, return -1 if the key
Damien Miller295ee632011-05-29 21:42:31 +1000690 * is not valid. user_hostfile[0] will not be updated if 'readonly' is true.
Damien Miller95def091999-11-25 00:26:21 +1100691 */
Damien Millerda828392006-08-05 11:35:45 +1000692#define RDRW 0
693#define RDONLY 1
694#define ROQUIET 2
Ben Lindstrombba81212001-06-25 05:01:22 +0000695static int
Damien Millerda828392006-08-05 11:35:45 +1000696check_host_key(char *hostname, struct sockaddr *hostaddr, u_short port,
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000697 struct sshkey *host_key, int readonly,
Damien Miller295ee632011-05-29 21:42:31 +1000698 char **user_hostfiles, u_int num_user_hostfiles,
699 char **system_hostfiles, u_int num_system_hostfiles)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000700{
Damien Miller95def091999-11-25 00:26:21 +1100701 HostStatus host_status;
702 HostStatus ip_status;
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000703 struct sshkey *raw_key = NULL;
Damien Miller295ee632011-05-29 21:42:31 +1000704 char *ip = NULL, *host = NULL;
705 char hostline[1000], *hostp, *fp, *ra;
Damien Miller49d795c2002-01-22 23:34:12 +1100706 char msg[1024];
Damien Miller295ee632011-05-29 21:42:31 +1000707 const char *type;
Damien Millerd925dcd2010-12-01 12:21:51 +1100708 const struct hostkey_entry *host_found, *ip_found;
Damien Miller295ee632011-05-29 21:42:31 +1000709 int len, cancelled_forwarding = 0;
710 int local = sockaddr_is_local(hostaddr);
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +0000711 int r, want_cert = sshkey_is_cert(host_key), host_ip_differ = 0;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000712 int hostkey_trusted = 0; /* Known or explicitly accepted by user */
Damien Miller295ee632011-05-29 21:42:31 +1000713 struct hostkeys *host_hostkeys, *ip_hostkeys;
714 u_int i;
Damien Miller34132e52000-01-14 15:45:46 +1100715
716 /*
717 * Force accepting of the host key for loopback/localhost. The
718 * problem is that if the home directory is NFS-mounted to multiple
719 * machines, localhost will refer to a different machine in each of
720 * them, and the user will get bogus HOST_CHANGED warnings. This
721 * essentially disables host authentication for localhost; however,
722 * this is probably not a real problem.
723 */
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +0000724 if (options.no_host_authentication_for_localhost == 1 && local &&
725 options.host_key_alias == NULL) {
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000726 debug("Forcing accepting of host key for "
727 "loopback/localhost.");
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000728 return 0;
Damien Miller34132e52000-01-14 15:45:46 +1100729 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000730
Damien Milleraae6c611999-12-06 11:47:28 +1100731 /*
Damien Millerd925dcd2010-12-01 12:21:51 +1100732 * Prepare the hostname and address strings used for hostkey lookup.
733 * In some cases, these will have a port number appended.
Damien Milleraae6c611999-12-06 11:47:28 +1100734 */
Damien Millerd925dcd2010-12-01 12:21:51 +1100735 get_hostfile_hostname_ipaddr(hostname, hostaddr, port, &host, &ip);
Darren Tucker78913e02008-06-13 04:47:34 +1000736
737 /*
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000738 * Turn off check_host_ip if the connection is to localhost, via proxy
739 * command or if we don't have a hostname to compare with
740 */
Darren Tuckerda345532006-07-10 23:04:19 +1000741 if (options.check_host_ip && (local ||
742 strcmp(hostname, ip) == 0 || options.proxy_command != NULL))
Damien Milleraae6c611999-12-06 11:47:28 +1100743 options.check_host_ip = 0;
744
Damien Millerd925dcd2010-12-01 12:21:51 +1100745 host_hostkeys = init_hostkeys();
Damien Miller295ee632011-05-29 21:42:31 +1000746 for (i = 0; i < num_user_hostfiles; i++)
747 load_hostkeys(host_hostkeys, host, user_hostfiles[i]);
748 for (i = 0; i < num_system_hostfiles; i++)
749 load_hostkeys(host_hostkeys, host, system_hostfiles[i]);
Damien Millerd925dcd2010-12-01 12:21:51 +1100750
751 ip_hostkeys = NULL;
752 if (!want_cert && options.check_host_ip) {
753 ip_hostkeys = init_hostkeys();
Damien Miller295ee632011-05-29 21:42:31 +1000754 for (i = 0; i < num_user_hostfiles; i++)
755 load_hostkeys(ip_hostkeys, ip, user_hostfiles[i]);
756 for (i = 0; i < num_system_hostfiles; i++)
757 load_hostkeys(ip_hostkeys, ip, system_hostfiles[i]);
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000758 }
759
Damien Miller0a80ca12010-02-27 07:55:05 +1100760 retry:
Damien Millerd925dcd2010-12-01 12:21:51 +1100761 /* Reload these as they may have changed on cert->key downgrade */
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +0000762 want_cert = sshkey_is_cert(host_key);
763 type = sshkey_type(host_key);
Damien Miller0a80ca12010-02-27 07:55:05 +1100764
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000765 /*
Damien Miller788f2122005-11-05 15:14:59 +1100766 * Check if the host key is present in the user's list of known
Damien Miller5428f641999-11-25 11:54:57 +1100767 * hosts or in the systemwide list.
768 */
Damien Millerd925dcd2010-12-01 12:21:51 +1100769 host_status = check_key_in_hostkeys(host_hostkeys, host_key,
770 &host_found);
771
Damien Miller5428f641999-11-25 11:54:57 +1100772 /*
Damien Miller5428f641999-11-25 11:54:57 +1100773 * Also perform check for the ip address, skip the check if we are
Damien Miller0a80ca12010-02-27 07:55:05 +1100774 * localhost, looking for a certificate, or the hostname was an ip
775 * address to begin with.
Damien Miller5428f641999-11-25 11:54:57 +1100776 */
Damien Millerd925dcd2010-12-01 12:21:51 +1100777 if (!want_cert && ip_hostkeys != NULL) {
778 ip_status = check_key_in_hostkeys(ip_hostkeys, host_key,
779 &ip_found);
Damien Miller95def091999-11-25 00:26:21 +1100780 if (host_status == HOST_CHANGED &&
Damien Millerd925dcd2010-12-01 12:21:51 +1100781 (ip_status != HOST_CHANGED ||
782 (ip_found != NULL &&
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +0000783 !sshkey_equal(ip_found->key, host_found->key))))
Damien Miller95def091999-11-25 00:26:21 +1100784 host_ip_differ = 1;
Damien Miller95def091999-11-25 00:26:21 +1100785 } else
786 ip_status = host_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000787
Damien Miller95def091999-11-25 00:26:21 +1100788 switch (host_status) {
789 case HOST_OK:
790 /* The host is known and the key matches. */
Damien Miller0a80ca12010-02-27 07:55:05 +1100791 debug("Host '%.200s' is known and matches the %s host %s.",
792 host, type, want_cert ? "certificate" : "key");
Damien Millerd925dcd2010-12-01 12:21:51 +1100793 debug("Found %s in %s:%lu", want_cert ? "CA key" : "key",
794 host_found->file, host_found->line);
djm@openbsd.org6f8ca3b2017-06-24 05:35:05 +0000795 if (want_cert &&
796 !check_host_cert(options.host_key_alias == NULL ?
797 hostname : options.host_key_alias, host_key))
Damien Miller0a80ca12010-02-27 07:55:05 +1100798 goto fail;
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000799 if (options.check_host_ip && ip_status == HOST_NEW) {
Damien Miller0a80ca12010-02-27 07:55:05 +1100800 if (readonly || want_cert)
Damien Miller996acd22003-04-09 20:59:48 +1000801 logit("%s host key for IP address "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000802 "'%.128s' not in list of known hosts.",
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000803 type, ip);
Damien Miller295ee632011-05-29 21:42:31 +1000804 else if (!add_host_to_hostfile(user_hostfiles[0], ip,
Damien Millere1776152005-03-01 21:47:37 +1100805 host_key, options.hash_known_hosts))
Damien Miller996acd22003-04-09 20:59:48 +1000806 logit("Failed to add the %s host key for IP "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000807 "address '%.128s' to the list of known "
dtucker@openbsd.org496aeb22015-05-28 05:41:29 +0000808 "hosts (%.500s).", type, ip,
Damien Miller295ee632011-05-29 21:42:31 +1000809 user_hostfiles[0]);
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000810 else
Damien Miller996acd22003-04-09 20:59:48 +1000811 logit("Warning: Permanently added the %s host "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000812 "key for IP address '%.128s' to the list "
813 "of known hosts.", type, ip);
Damien Miller10288242008-06-30 00:04:03 +1000814 } else if (options.visual_host_key) {
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000815 fp = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000816 options.fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000817 ra = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000818 options.fingerprint_hash, SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000819 if (fp == NULL || ra == NULL)
820 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.orgac3451d2015-09-04 03:57:38 +0000821 logit("Host key fingerprint is %s\n%s", fp, ra);
Darren Tuckera627d422013-06-02 07:31:17 +1000822 free(ra);
823 free(fp);
Damien Miller95def091999-11-25 00:26:21 +1100824 }
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000825 hostkey_trusted = 1;
Damien Miller95def091999-11-25 00:26:21 +1100826 break;
827 case HOST_NEW:
Damien Millerda828392006-08-05 11:35:45 +1000828 if (options.host_key_alias == NULL && port != 0 &&
829 port != SSH_DEFAULT_PORT) {
830 debug("checking without port identifier");
Damien Millerece92c82008-11-03 19:25:03 +1100831 if (check_host_key(hostname, hostaddr, 0, host_key,
Damien Miller295ee632011-05-29 21:42:31 +1000832 ROQUIET, user_hostfiles, num_user_hostfiles,
833 system_hostfiles, num_system_hostfiles) == 0) {
Damien Millerda828392006-08-05 11:35:45 +1000834 debug("found matching key w/out port");
835 break;
836 }
837 }
Damien Miller0a80ca12010-02-27 07:55:05 +1100838 if (readonly || want_cert)
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000839 goto fail;
Damien Miller95def091999-11-25 00:26:21 +1100840 /* The host is new. */
djm@openbsd.org22376d22017-09-03 23:33:13 +0000841 if (options.strict_host_key_checking ==
842 SSH_STRICT_HOSTKEY_YES) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000843 /*
844 * User has requested strict host key checking. We
845 * will not add the host key automatically. The only
846 * alternative left is to abort.
847 */
848 error("No %s host key is known for %.200s and you "
849 "have requested strict checking.", type, host);
850 goto fail;
djm@openbsd.org22376d22017-09-03 23:33:13 +0000851 } else if (options.strict_host_key_checking ==
852 SSH_STRICT_HOSTKEY_ASK) {
Damien Miller7392ae62003-06-11 22:05:25 +1000853 char msg1[1024], msg2[1024];
854
Damien Millerd925dcd2010-12-01 12:21:51 +1100855 if (show_other_keys(host_hostkeys, host_key))
Damien Miller7392ae62003-06-11 22:05:25 +1000856 snprintf(msg1, sizeof(msg1),
Damien Miller0dc1bef2005-07-17 17:22:45 +1000857 "\nbut keys of different type are already"
858 " known for this host.");
Damien Miller7392ae62003-06-11 22:05:25 +1000859 else
860 snprintf(msg1, sizeof(msg1), ".");
Damien Miller95def091999-11-25 00:26:21 +1100861 /* The default */
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000862 fp = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000863 options.fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000864 ra = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000865 options.fingerprint_hash, SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000866 if (fp == NULL || ra == NULL)
867 fatal("%s: sshkey_fingerprint fail", __func__);
Damien Miller7392ae62003-06-11 22:05:25 +1000868 msg2[0] = '\0';
Damien Miller7392ae62003-06-11 22:05:25 +1000869 if (options.verify_host_key_dns) {
Damien Miller150b5572003-11-17 21:19:29 +1100870 if (matching_host_key_dns)
Damien Miller7392ae62003-06-11 22:05:25 +1000871 snprintf(msg2, sizeof(msg2),
872 "Matching host key fingerprint"
873 " found in DNS.\n");
874 else
875 snprintf(msg2, sizeof(msg2),
876 "No matching host key fingerprint"
877 " found in DNS.\n");
878 }
Damien Miller49d795c2002-01-22 23:34:12 +1100879 snprintf(msg, sizeof(msg),
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000880 "The authenticity of host '%.200s (%s)' can't be "
Ben Lindstrom3ed66402002-08-01 01:21:56 +0000881 "established%s\n"
Damien Miller10288242008-06-30 00:04:03 +1000882 "%s key fingerprint is %s.%s%s\n%s"
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000883 "Are you sure you want to continue connecting "
Ben Lindstrom3ed66402002-08-01 01:21:56 +0000884 "(yes/no)? ",
Damien Miller10288242008-06-30 00:04:03 +1000885 host, ip, msg1, type, fp,
886 options.visual_host_key ? "\n" : "",
887 options.visual_host_key ? ra : "",
888 msg2);
Darren Tuckera627d422013-06-02 07:31:17 +1000889 free(ra);
890 free(fp);
Damien Miller49d795c2002-01-22 23:34:12 +1100891 if (!confirm(msg))
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000892 goto fail;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000893 hostkey_trusted = 1; /* user explicitly confirmed */
Damien Miller95def091999-11-25 00:26:21 +1100894 }
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000895 /*
djm@openbsd.org22376d22017-09-03 23:33:13 +0000896 * If in "new" or "off" strict mode, add the key automatically
897 * to the local known_hosts file.
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000898 */
Damien Miller1227d4c2005-03-02 12:06:51 +1100899 if (options.check_host_ip && ip_status == HOST_NEW) {
Damien Millerd925dcd2010-12-01 12:21:51 +1100900 snprintf(hostline, sizeof(hostline), "%s,%s", host, ip);
Damien Miller1227d4c2005-03-02 12:06:51 +1100901 hostp = hostline;
902 if (options.hash_known_hosts) {
903 /* Add hash of host and IP separately */
Damien Miller295ee632011-05-29 21:42:31 +1000904 r = add_host_to_hostfile(user_hostfiles[0],
905 host, host_key, options.hash_known_hosts) &&
906 add_host_to_hostfile(user_hostfiles[0], ip,
Damien Miller1227d4c2005-03-02 12:06:51 +1100907 host_key, options.hash_known_hosts);
908 } else {
909 /* Add unhashed "host,ip" */
Damien Miller295ee632011-05-29 21:42:31 +1000910 r = add_host_to_hostfile(user_hostfiles[0],
Damien Miller1227d4c2005-03-02 12:06:51 +1100911 hostline, host_key,
912 options.hash_known_hosts);
913 }
914 } else {
Damien Miller295ee632011-05-29 21:42:31 +1000915 r = add_host_to_hostfile(user_hostfiles[0], host,
916 host_key, options.hash_known_hosts);
Damien Miller1227d4c2005-03-02 12:06:51 +1100917 hostp = host;
918 }
919
920 if (!r)
Damien Miller996acd22003-04-09 20:59:48 +1000921 logit("Failed to add the host to the list of known "
Damien Miller295ee632011-05-29 21:42:31 +1000922 "hosts (%.500s).", user_hostfiles[0]);
Damien Miller95def091999-11-25 00:26:21 +1100923 else
Damien Miller996acd22003-04-09 20:59:48 +1000924 logit("Warning: Permanently added '%.200s' (%s) to the "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000925 "list of known hosts.", hostp, type);
Damien Miller95def091999-11-25 00:26:21 +1100926 break;
Damien Miller1aed65e2010-03-04 21:53:35 +1100927 case HOST_REVOKED:
928 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
929 error("@ WARNING: REVOKED HOST KEY DETECTED! @");
930 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
931 error("The %s host key for %s is marked as revoked.", type, host);
932 error("This could mean that a stolen key is being used to");
933 error("impersonate this host.");
934
935 /*
936 * If strict host key checking is in use, the user will have
937 * to edit the key manually and we can only abort.
938 */
djm@openbsd.org22376d22017-09-03 23:33:13 +0000939 if (options.strict_host_key_checking !=
940 SSH_STRICT_HOSTKEY_OFF) {
Damien Miller1aed65e2010-03-04 21:53:35 +1100941 error("%s host key for %.200s was revoked and you have "
942 "requested strict checking.", type, host);
943 goto fail;
944 }
945 goto continue_unsafe;
946
Damien Miller95def091999-11-25 00:26:21 +1100947 case HOST_CHANGED:
Damien Miller0a80ca12010-02-27 07:55:05 +1100948 if (want_cert) {
949 /*
950 * This is only a debug() since it is valid to have
951 * CAs with wildcard DNS matches that don't match
952 * all hosts that one might visit.
953 */
954 debug("Host certificate authority does not "
Damien Millerd925dcd2010-12-01 12:21:51 +1100955 "match %s in %s:%lu", CA_MARKER,
956 host_found->file, host_found->line);
Damien Miller0a80ca12010-02-27 07:55:05 +1100957 goto fail;
958 }
Damien Millerda828392006-08-05 11:35:45 +1000959 if (readonly == ROQUIET)
960 goto fail;
Damien Miller95def091999-11-25 00:26:21 +1100961 if (options.check_host_ip && host_ip_differ) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000962 char *key_msg;
Damien Miller95def091999-11-25 00:26:21 +1100963 if (ip_status == HOST_NEW)
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000964 key_msg = "is unknown";
Damien Miller95def091999-11-25 00:26:21 +1100965 else if (ip_status == HOST_OK)
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000966 key_msg = "is unchanged";
Damien Miller95def091999-11-25 00:26:21 +1100967 else
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000968 key_msg = "has a different value";
Damien Miller95def091999-11-25 00:26:21 +1100969 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
970 error("@ WARNING: POSSIBLE DNS SPOOFING DETECTED! @");
971 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
Damien Millere247cc42000-05-07 12:03:14 +1000972 error("The %s host key for %s has changed,", type, host);
Darren Tuckerff4454d2008-06-13 10:21:51 +1000973 error("and the key for the corresponding IP address %s", ip);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000974 error("%s. This could either mean that", key_msg);
Damien Miller95def091999-11-25 00:26:21 +1100975 error("DNS SPOOFING is happening or the IP address for the host");
Ben Lindstrom46c16222000-12-22 01:43:59 +0000976 error("and its host key have changed at the same time.");
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000977 if (ip_status != HOST_NEW)
Damien Millerd925dcd2010-12-01 12:21:51 +1100978 error("Offending key for IP in %s:%lu",
979 ip_found->file, ip_found->line);
Damien Miller95def091999-11-25 00:26:21 +1100980 }
981 /* The host key has changed. */
Damien Miller5a388972003-11-17 21:10:47 +1100982 warn_changed_key(host_key);
Damien Miller95def091999-11-25 00:26:21 +1100983 error("Add correct host key in %.100s to get rid of this message.",
Damien Miller295ee632011-05-29 21:42:31 +1000984 user_hostfiles[0]);
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +0000985 error("Offending %s key in %s:%lu",
986 sshkey_type(host_found->key),
Damien Millerd925dcd2010-12-01 12:21:51 +1100987 host_found->file, host_found->line);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000988
Damien Miller5428f641999-11-25 11:54:57 +1100989 /*
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) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000995 error("%s host key for %.200s has changed and you have "
996 "requested strict checking.", type, host);
997 goto fail;
998 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000999
Damien Miller1aed65e2010-03-04 21:53:35 +11001000 continue_unsafe:
Damien Miller5428f641999-11-25 11:54:57 +11001001 /*
1002 * If strict host key checking has not been requested, allow
Damien Miller941ac452003-06-04 20:31:53 +10001003 * the connection but without MITM-able authentication or
Damien Miller437edb92006-08-05 09:11:13 +10001004 * forwarding.
Damien Miller5428f641999-11-25 11:54:57 +11001005 */
Damien Miller95def091999-11-25 00:26:21 +11001006 if (options.password_authentication) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001007 error("Password authentication is disabled to avoid "
1008 "man-in-the-middle attacks.");
Damien Miller95def091999-11-25 00:26:21 +11001009 options.password_authentication = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001010 cancelled_forwarding = 1;
Damien Miller95def091999-11-25 00:26:21 +11001011 }
Damien Miller941ac452003-06-04 20:31:53 +10001012 if (options.kbd_interactive_authentication) {
1013 error("Keyboard-interactive authentication is disabled"
1014 " to avoid man-in-the-middle attacks.");
1015 options.kbd_interactive_authentication = 0;
1016 options.challenge_response_authentication = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001017 cancelled_forwarding = 1;
Damien Miller941ac452003-06-04 20:31:53 +10001018 }
1019 if (options.challenge_response_authentication) {
1020 error("Challenge/response authentication is disabled"
1021 " to avoid man-in-the-middle attacks.");
1022 options.challenge_response_authentication = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001023 cancelled_forwarding = 1;
Damien Miller941ac452003-06-04 20:31:53 +10001024 }
Damien Miller95def091999-11-25 00:26:21 +11001025 if (options.forward_agent) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001026 error("Agent forwarding is disabled to avoid "
1027 "man-in-the-middle attacks.");
Damien Miller95def091999-11-25 00:26:21 +11001028 options.forward_agent = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001029 cancelled_forwarding = 1;
Damien Miller95def091999-11-25 00:26:21 +11001030 }
Ben Lindstromc72745a2000-12-02 19:03:54 +00001031 if (options.forward_x11) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001032 error("X11 forwarding is disabled to avoid "
1033 "man-in-the-middle attacks.");
Ben Lindstromc72745a2000-12-02 19:03:54 +00001034 options.forward_x11 = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001035 cancelled_forwarding = 1;
Ben Lindstromc72745a2000-12-02 19:03:54 +00001036 }
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001037 if (options.num_local_forwards > 0 ||
1038 options.num_remote_forwards > 0) {
1039 error("Port forwarding is disabled to avoid "
1040 "man-in-the-middle attacks.");
1041 options.num_local_forwards =
Damien Miller9f0f5c62001-12-21 14:45:46 +11001042 options.num_remote_forwards = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001043 cancelled_forwarding = 1;
Ben Lindstromc72745a2000-12-02 19:03:54 +00001044 }
Damien Miller437edb92006-08-05 09:11:13 +10001045 if (options.tun_open != SSH_TUNMODE_NO) {
1046 error("Tunnel forwarding is disabled to avoid "
1047 "man-in-the-middle attacks.");
1048 options.tun_open = SSH_TUNMODE_NO;
Darren Tucker068e01f2008-07-02 22:33:55 +10001049 cancelled_forwarding = 1;
Damien Miller437edb92006-08-05 09:11:13 +10001050 }
Darren Tucker068e01f2008-07-02 22:33:55 +10001051 if (options.exit_on_forward_failure && cancelled_forwarding)
1052 fatal("Error: forwarding disabled due to host key "
1053 "check failure");
1054
Damien Miller5428f641999-11-25 11:54:57 +11001055 /*
1056 * XXX Should permit the user to change to use the new id.
1057 * This could be done by converting the host key to an
1058 * identifying sentence, tell that the host identifies itself
Darren Tuckere2b36742010-01-13 22:42:34 +11001059 * by that sentence, and ask the user if he/she wishes to
Damien Miller5428f641999-11-25 11:54:57 +11001060 * accept the authentication.
1061 */
Damien Miller95def091999-11-25 00:26:21 +11001062 break;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001063 case HOST_FOUND:
1064 fatal("internal error");
1065 break;
Damien Miller95def091999-11-25 00:26:21 +11001066 }
Ben Lindstromc72745a2000-12-02 19:03:54 +00001067
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +00001068 if (options.check_host_ip && host_status != HOST_CHANGED &&
1069 ip_status == HOST_CHANGED) {
Damien Miller49d795c2002-01-22 23:34:12 +11001070 snprintf(msg, sizeof(msg),
1071 "Warning: the %s host key for '%.200s' "
1072 "differs from the key for the IP address '%.128s'"
Damien Millerd925dcd2010-12-01 12:21:51 +11001073 "\nOffending key for IP in %s:%lu",
1074 type, host, ip, ip_found->file, ip_found->line);
Damien Miller49d795c2002-01-22 23:34:12 +11001075 if (host_status == HOST_OK) {
1076 len = strlen(msg);
1077 snprintf(msg + len, sizeof(msg) - len,
Damien Millerd925dcd2010-12-01 12:21:51 +11001078 "\nMatching host key in %s:%lu",
1079 host_found->file, host_found->line);
Damien Miller49d795c2002-01-22 23:34:12 +11001080 }
djm@openbsd.org22376d22017-09-03 23:33:13 +00001081 if (options.strict_host_key_checking ==
1082 SSH_STRICT_HOSTKEY_ASK) {
Damien Miller49d795c2002-01-22 23:34:12 +11001083 strlcat(msg, "\nAre you sure you want "
1084 "to continue connecting (yes/no)? ", sizeof(msg));
1085 if (!confirm(msg))
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001086 goto fail;
djm@openbsd.org22376d22017-09-03 23:33:13 +00001087 } else if (options.strict_host_key_checking !=
1088 SSH_STRICT_HOSTKEY_OFF) {
1089 logit("%s", msg);
1090 error("Exiting, you have requested strict checking.");
1091 goto fail;
Damien Miller49d795c2002-01-22 23:34:12 +11001092 } else {
Damien Millerab2db412003-06-02 19:09:13 +10001093 logit("%s", msg);
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +00001094 }
1095 }
1096
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00001097 if (!hostkey_trusted && options.update_hostkeys) {
1098 debug("%s: hostkey not known or explicitly trusted: "
1099 "disabling UpdateHostkeys", __func__);
1100 options.update_hostkeys = 0;
1101 }
1102
Darren Tuckera627d422013-06-02 07:31:17 +10001103 free(ip);
1104 free(host);
Damien Millerd925dcd2010-12-01 12:21:51 +11001105 if (host_hostkeys != NULL)
1106 free_hostkeys(host_hostkeys);
1107 if (ip_hostkeys != NULL)
1108 free_hostkeys(ip_hostkeys);
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001109 return 0;
1110
1111fail:
Damien Miller1aed65e2010-03-04 21:53:35 +11001112 if (want_cert && host_status != HOST_REVOKED) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001113 /*
1114 * No matching certificate. Downgrade cert to raw key and
1115 * search normally.
1116 */
1117 debug("No matching CA found. Retry with plain key");
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +00001118 if ((r = sshkey_from_private(host_key, &raw_key)) != 0)
1119 fatal("%s: sshkey_from_private: %s",
1120 __func__, ssh_err(r));
1121 if ((r = sshkey_drop_cert(raw_key)) != 0)
1122 fatal("Couldn't drop certificate: %s", ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001123 host_key = raw_key;
1124 goto retry;
1125 }
dtucker@openbsd.orgf1f047f2018-02-07 22:52:45 +00001126 sshkey_free(raw_key);
Darren Tuckera627d422013-06-02 07:31:17 +10001127 free(ip);
1128 free(host);
Damien Millerd925dcd2010-12-01 12:21:51 +11001129 if (host_hostkeys != NULL)
1130 free_hostkeys(host_hostkeys);
1131 if (ip_hostkeys != NULL)
1132 free_hostkeys(ip_hostkeys);
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001133 return -1;
1134}
1135
Damien Miller37876e92003-05-15 10:19:46 +10001136/* returns 0 if key verifies or -1 if key does NOT verify */
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001137int
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001138verify_host_key(char *host, struct sockaddr *hostaddr, struct sshkey *host_key)
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001139{
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001140 u_int i;
Damien Miller6b37fbb2014-07-04 08:59:24 +10001141 int r = -1, flags = 0;
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001142 char valid[64], *fp = NULL, *cafp = NULL;
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001143 struct sshkey *plain = NULL;
Damien Millerd925dcd2010-12-01 12:21:51 +11001144
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001145 if ((fp = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001146 options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL) {
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001147 error("%s: fingerprint host key: %s", __func__, ssh_err(r));
1148 r = -1;
1149 goto out;
1150 }
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001151
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001152 if (sshkey_is_cert(host_key)) {
1153 if ((cafp = sshkey_fingerprint(host_key->cert->signature_key,
1154 options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL) {
1155 error("%s: fingerprint CA key: %s",
1156 __func__, ssh_err(r));
1157 r = -1;
1158 goto out;
1159 }
1160 sshkey_format_cert_validity(host_key->cert,
1161 valid, sizeof(valid));
1162 debug("Server host certificate: %s %s, serial %llu "
1163 "ID \"%s\" CA %s %s valid %s",
1164 sshkey_ssh_name(host_key), fp,
djm@openbsd.org8ca915f2015-11-20 01:45:29 +00001165 (unsigned long long)host_key->cert->serial,
1166 host_key->cert->key_id,
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001167 sshkey_ssh_name(host_key->cert->signature_key), cafp,
1168 valid);
1169 for (i = 0; i < host_key->cert->nprincipals; i++) {
1170 debug2("Server host certificate hostname: %s",
1171 host_key->cert->principals[i]);
1172 }
1173 } else {
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001174 debug("Server host key: %s %s", sshkey_ssh_name(host_key), fp);
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001175 }
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001176
1177 if (sshkey_equal(previous_host_key, host_key)) {
1178 debug2("%s: server host key %s %s matches cached key",
1179 __func__, sshkey_type(host_key), fp);
1180 r = 0;
1181 goto out;
1182 }
1183
1184 /* Check in RevokedHostKeys file if specified */
1185 if (options.revoked_host_keys != NULL) {
1186 r = sshkey_check_revoked(host_key, options.revoked_host_keys);
1187 switch (r) {
1188 case 0:
1189 break; /* not revoked */
1190 case SSH_ERR_KEY_REVOKED:
1191 error("Host key %s %s revoked by file %s",
1192 sshkey_type(host_key), fp,
1193 options.revoked_host_keys);
1194 r = -1;
1195 goto out;
1196 default:
1197 error("Error checking host key %s %s in "
1198 "revoked keys file %s: %s", sshkey_type(host_key),
1199 fp, options.revoked_host_keys, ssh_err(r));
1200 r = -1;
1201 goto out;
1202 }
Damien Miller6b37fbb2014-07-04 08:59:24 +10001203 }
1204
Damien Miller7d6a9fb2014-04-20 13:23:43 +10001205 if (options.verify_host_key_dns) {
1206 /*
1207 * XXX certs are not yet supported for DNS, so downgrade
1208 * them and try the plain key.
1209 */
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001210 if ((r = sshkey_from_private(host_key, &plain)) != 0)
1211 goto out;
1212 if (sshkey_is_cert(plain))
1213 sshkey_drop_cert(plain);
Damien Miller7d6a9fb2014-04-20 13:23:43 +10001214 if (verify_host_key_dns(host, hostaddr, plain, &flags) == 0) {
1215 if (flags & DNS_VERIFY_FOUND) {
1216 if (options.verify_host_key_dns == 1 &&
1217 flags & DNS_VERIFY_MATCH &&
1218 flags & DNS_VERIFY_SECURE) {
Damien Miller6b37fbb2014-07-04 08:59:24 +10001219 r = 0;
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001220 goto out;
Damien Miller7d6a9fb2014-04-20 13:23:43 +10001221 }
1222 if (flags & DNS_VERIFY_MATCH) {
1223 matching_host_key_dns = 1;
1224 } else {
djm@openbsd.orgaea59a02017-09-14 04:32:21 +00001225 warn_changed_key(plain);
1226 error("Update the SSHFP RR in DNS "
1227 "with the new host key to get rid "
1228 "of this message.");
Damien Miller7d6a9fb2014-04-20 13:23:43 +10001229 }
Damien Miller150b5572003-11-17 21:19:29 +11001230 }
Damien Miller37876e92003-05-15 10:19:46 +10001231 }
1232 }
Damien Miller6b37fbb2014-07-04 08:59:24 +10001233 r = check_host_key(host, hostaddr, options.port, host_key, RDRW,
Damien Miller295ee632011-05-29 21:42:31 +10001234 options.user_hostfiles, options.num_user_hostfiles,
1235 options.system_hostfiles, options.num_system_hostfiles);
Damien Miller6b37fbb2014-07-04 08:59:24 +10001236
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001237out:
1238 sshkey_free(plain);
1239 free(fp);
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001240 free(cafp);
Damien Miller6b37fbb2014-07-04 08:59:24 +10001241 if (r == 0 && host_key != NULL) {
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +00001242 sshkey_free(previous_host_key);
1243 r = sshkey_from_private(host_key, &previous_host_key);
Damien Miller6b37fbb2014-07-04 08:59:24 +10001244 }
1245
1246 return r;
Damien Millera34a28b1999-12-14 10:47:15 +11001247}
Damien Miller037a0dc1999-12-07 15:38:31 +11001248
Damien Miller396691a2000-01-20 22:44:08 +11001249/*
1250 * Starts a dialog with the server, and authenticates the current user on the
1251 * server. This does not need any extra privileges. The basic connection
1252 * to the server must already have been established before this is called.
1253 * If login fails, this function prints an error and never returns.
1254 * This function does not require super-user privileges.
1255 */
1256void
djm@openbsd.org0a843d92018-12-27 03:25:24 +00001257ssh_login(struct ssh *ssh, Sensitive *sensitive, const char *orighost,
Damien Millerd925dcd2010-12-01 12:21:51 +11001258 struct sockaddr *hostaddr, u_short port, struct passwd *pw, int timeout_ms)
Damien Miller396691a2000-01-20 22:44:08 +11001259{
Damien Miller0faf7472013-10-17 11:47:23 +11001260 char *host;
Damien Millereba71ba2000-04-29 23:57:08 +10001261 char *server_user, *local_user;
1262
Damien Millereba71ba2000-04-29 23:57:08 +10001263 local_user = xstrdup(pw->pw_name);
1264 server_user = options.user ? options.user : local_user;
Damien Miller396691a2000-01-20 22:44:08 +11001265
1266 /* Convert the user-supplied hostname into all lowercase. */
1267 host = xstrdup(orighost);
Damien Miller0faf7472013-10-17 11:47:23 +11001268 lowercase(host);
Damien Miller396691a2000-01-20 22:44:08 +11001269
1270 /* Exchange protocol version identification strings with the server. */
djm@openbsd.org0a843d92018-12-27 03:25:24 +00001271 if (kex_exchange_identification(ssh, timeout_ms, NULL) != 0)
1272 cleanup_exit(255); /* error already logged */
Damien Miller396691a2000-01-20 22:44:08 +11001273
1274 /* Put the connection into non-blocking mode. */
djm@openbsd.org0a843d92018-12-27 03:25:24 +00001275 ssh_packet_set_nonblocking(ssh);
Damien Miller396691a2000-01-20 22:44:08 +11001276
Damien Miller396691a2000-01-20 22:44:08 +11001277 /* key exchange */
Damien Miller396691a2000-01-20 22:44:08 +11001278 /* authenticate user */
dtucker@openbsd.orgbb2289e2015-04-14 04:17:03 +00001279 debug("Authenticating to %s:%d as '%s'", host, port, server_user);
djm@openbsd.org0a843d92018-12-27 03:25:24 +00001280 ssh_kex2(ssh, host, hostaddr, port);
1281 ssh_userauth2(ssh, local_user, server_user, host, sensitive);
Darren Tuckera627d422013-06-02 07:31:17 +10001282 free(local_user);
Damien Miller396691a2000-01-20 22:44:08 +11001283}
Damien Miller79438cc2001-02-16 12:34:57 +11001284
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001285/* print all known host keys for a given host, but skip keys of given type */
1286static int
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001287show_other_keys(struct hostkeys *hostkeys, struct sshkey *key)
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001288{
Damien Miller106bf1c2013-12-29 17:54:03 +11001289 int type[] = {
Damien Miller106bf1c2013-12-29 17:54:03 +11001290 KEY_RSA,
1291 KEY_DSA,
1292 KEY_ECDSA,
1293 KEY_ED25519,
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00001294 KEY_XMSS,
Damien Miller106bf1c2013-12-29 17:54:03 +11001295 -1
1296 };
Damien Millerd925dcd2010-12-01 12:21:51 +11001297 int i, ret = 0;
1298 char *fp, *ra;
1299 const struct hostkey_entry *found;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001300
1301 for (i = 0; type[i] != -1; i++) {
1302 if (type[i] == key->type)
1303 continue;
Damien Millerd925dcd2010-12-01 12:21:51 +11001304 if (!lookup_key_in_hostkeys_by_type(hostkeys, type[i], &found))
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001305 continue;
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001306 fp = sshkey_fingerprint(found->key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001307 options.fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001308 ra = sshkey_fingerprint(found->key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001309 options.fingerprint_hash, SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001310 if (fp == NULL || ra == NULL)
1311 fatal("%s: sshkey_fingerprint fail", __func__);
Damien Millerd925dcd2010-12-01 12:21:51 +11001312 logit("WARNING: %s key found for host %s\n"
1313 "in %s:%lu\n"
1314 "%s key fingerprint %s.",
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001315 sshkey_type(found->key),
Damien Millerd925dcd2010-12-01 12:21:51 +11001316 found->host, found->file, found->line,
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001317 sshkey_type(found->key), fp);
Damien Millerd925dcd2010-12-01 12:21:51 +11001318 if (options.visual_host_key)
1319 logit("%s", ra);
Darren Tuckera627d422013-06-02 07:31:17 +10001320 free(ra);
1321 free(fp);
Damien Millerd925dcd2010-12-01 12:21:51 +11001322 ret = 1;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001323 }
Damien Millerd925dcd2010-12-01 12:21:51 +11001324 return ret;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001325}
Damien Miller5a388972003-11-17 21:10:47 +11001326
1327static void
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001328warn_changed_key(struct sshkey *host_key)
Damien Miller5a388972003-11-17 21:10:47 +11001329{
1330 char *fp;
Damien Miller5a388972003-11-17 21:10:47 +11001331
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001332 fp = sshkey_fingerprint(host_key, options.fingerprint_hash,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001333 SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001334 if (fp == NULL)
1335 fatal("%s: sshkey_fingerprint fail", __func__);
Damien Miller5a388972003-11-17 21:10:47 +11001336
1337 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1338 error("@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @");
1339 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1340 error("IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!");
1341 error("Someone could be eavesdropping on you right now (man-in-the-middle attack)!");
Damien Miller05c89972011-01-06 22:42:04 +11001342 error("It is also possible that a host key has just been changed.");
Damien Miller5a388972003-11-17 21:10:47 +11001343 error("The fingerprint for the %s key sent by the remote host is\n%s.",
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001344 sshkey_type(host_key), fp);
Damien Miller5a388972003-11-17 21:10:47 +11001345 error("Please contact your system administrator.");
1346
Darren Tuckera627d422013-06-02 07:31:17 +10001347 free(fp);
Damien Miller5a388972003-11-17 21:10:47 +11001348}
Damien Millerd27b9472005-12-13 19:29:02 +11001349
1350/*
1351 * Execute a local command
1352 */
1353int
1354ssh_local_cmd(const char *args)
1355{
1356 char *shell;
1357 pid_t pid;
1358 int status;
Damien Millered3a8eb2011-01-07 10:02:52 +11001359 void (*osighand)(int);
Damien Millerd27b9472005-12-13 19:29:02 +11001360
1361 if (!options.permit_local_command ||
1362 args == NULL || !*args)
1363 return (1);
1364
Damien Miller38d9a962010-10-07 22:07:11 +11001365 if ((shell = getenv("SHELL")) == NULL || *shell == '\0')
Damien Millerd27b9472005-12-13 19:29:02 +11001366 shell = _PATH_BSHELL;
1367
Damien Millered3a8eb2011-01-07 10:02:52 +11001368 osighand = signal(SIGCHLD, SIG_DFL);
Damien Millerd27b9472005-12-13 19:29:02 +11001369 pid = fork();
1370 if (pid == 0) {
Damien Miller6fb6fd52011-01-16 23:17:45 +11001371 signal(SIGPIPE, SIG_DFL);
Damien Millerd27b9472005-12-13 19:29:02 +11001372 debug3("Executing %s -c \"%s\"", shell, args);
1373 execl(shell, shell, "-c", args, (char *)NULL);
1374 error("Couldn't execute %s -c \"%s\": %s",
1375 shell, args, strerror(errno));
1376 _exit(1);
1377 } else if (pid == -1)
1378 fatal("fork failed: %.100s", strerror(errno));
1379 while (waitpid(pid, &status, 0) == -1)
1380 if (errno != EINTR)
1381 fatal("Couldn't wait for child: %s", strerror(errno));
Damien Millered3a8eb2011-01-07 10:02:52 +11001382 signal(SIGCHLD, osighand);
Damien Millerd27b9472005-12-13 19:29:02 +11001383
1384 if (!WIFEXITED(status))
1385 return (1);
1386
1387 return (WEXITSTATUS(status));
1388}
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001389
1390void
djm@openbsd.orgd9e5cf02018-02-10 09:25:34 +00001391maybe_add_key_to_agent(char *authfile, const struct sshkey *private,
1392 char *comment, char *passphrase)
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001393{
1394 int auth_sock = -1, r;
1395
1396 if (options.add_keys_to_agent == 0)
1397 return;
1398
1399 if ((r = ssh_get_authentication_socket(&auth_sock)) != 0) {
1400 debug3("no authentication agent, not adding key");
1401 return;
1402 }
1403
1404 if (options.add_keys_to_agent == 2 &&
1405 !ask_permission("Add key %s (%s) to agent?", authfile, comment)) {
1406 debug3("user denied adding this key");
dtucker@openbsd.org566b3a42017-03-10 03:22:40 +00001407 close(auth_sock);
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001408 return;
1409 }
1410
1411 if ((r = ssh_add_identity_constrained(auth_sock, private, comment, 0,
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00001412 (options.add_keys_to_agent == 3), 0)) == 0)
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001413 debug("identity added to agent: %s", authfile);
1414 else
1415 debug("could not add identity to agent: %s (%d)", authfile, r);
dtucker@openbsd.org566b3a42017-03-10 03:22:40 +00001416 close(auth_sock);
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001417}