blob: c57f1a0fff8c08f5d62e4cf9ef3b8ddd84d13bc5 [file] [log] [blame]
dtucker@openbsd.org1c554a52019-05-03 03:27:38 +00001/* $OpenBSD: sshconnect.c,v 1.315 2019/05/03 03:27:38 dtucker Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * Code to connect to a remote host, and to perform the client side of the
7 * login (authentication) dialog.
Damien Millere4340be2000-09-16 13:29:08 +11008 *
9 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110014 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100015
16#include "includes.h"
Damien Miller9cf6d072006-03-15 11:29:24 +110017
18#include <sys/types.h>
19#include <sys/wait.h>
Damien Millerf17883e2006-03-15 11:45:54 +110020#include <sys/stat.h>
Damien Miller8ec8c3e2006-07-10 20:35:38 +100021#include <sys/socket.h>
Damien Miller9aec9192006-08-05 10:57:45 +100022#ifdef HAVE_SYS_TIME_H
23# include <sys/time.h>
24#endif
Damien Miller8ec8c3e2006-07-10 20:35:38 +100025
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{
dtucker@openbsd.org483b3b62019-02-01 03:52:23 +0000460 int on = 1, saved_timeout_ms = *timeout_ms;
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
dtucker@openbsd.org483b3b62019-02-01 03:52:23 +0000504 *timeout_ms = saved_timeout_ms;
Damien Millerb78d5eb2003-05-16 11:39:04 +1000505 if (timeout_connect(sock, ai->ai_addr, ai->ai_addrlen,
Damien Miller67bd0622007-09-17 12:06:57 +1000506 timeout_ms) >= 0) {
Damien Miller34132e52000-01-14 15:45:46 +1100507 /* Successful connection. */
Ben Lindstroma3700052001-04-05 23:26:32 +0000508 memcpy(hostaddr, ai->ai_addr, ai->ai_addrlen);
Damien Miller95def091999-11-25 00:26:21 +1100509 break;
Damien Miller34132e52000-01-14 15:45:46 +1100510 } else {
djm@openbsd.org7c779912018-01-23 05:17:04 +0000511 oerrno = errno;
Ben Lindstrom728aa7e2002-07-15 17:48:11 +0000512 debug("connect to address %s port %s: %s",
513 ntop, strport, strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100514 close(sock);
Damien Miller56e5e6a2006-04-23 12:08:59 +1000515 sock = -1;
djm@openbsd.org7c779912018-01-23 05:17:04 +0000516 errno = oerrno;
Damien Miller95def091999-11-25 00:26:21 +1100517 }
Damien Miller95def091999-11-25 00:26:21 +1100518 }
Damien Miller56e5e6a2006-04-23 12:08:59 +1000519 if (sock != -1)
Damien Miller34132e52000-01-14 15:45:46 +1100520 break; /* Successful connection. */
Damien Miller95def091999-11-25 00:26:21 +1100521 }
Damien Miller34132e52000-01-14 15:45:46 +1100522
Damien Miller95def091999-11-25 00:26:21 +1100523 /* Return failure if we didn't get a successful connection. */
Damien Miller56e5e6a2006-04-23 12:08:59 +1000524 if (sock == -1) {
Darren Tuckerb2161e32005-01-20 11:00:46 +1100525 error("ssh: connect to host %s port %s: %s",
djm@openbsd.org7c779912018-01-23 05:17:04 +0000526 host, strport, errno == 0 ? "failure" : strerror(errno));
527 return -1;
Ben Lindstroma6cd75c2002-07-11 04:00:19 +0000528 }
Damien Miller95def091999-11-25 00:26:21 +1100529
530 debug("Connection established.");
531
Damien Miller12c150e2003-12-17 16:31:10 +1100532 /* Set SO_KEEPALIVE if requested. */
Damien Miller67bd0622007-09-17 12:06:57 +1000533 if (want_keepalive &&
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000534 setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE, (void *)&on,
535 sizeof(on)) < 0)
536 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100537
538 /* Set the connection. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000539 if (ssh_packet_set_connection(ssh, sock, sock) == NULL)
540 return -1; /* ssh_packet_set_connection logs error */
Damien Miller95def091999-11-25 00:26:21 +1100541
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000542 return 0;
Damien Miller95def091999-11-25 00:26:21 +1100543}
544
Damien Miller0faf7472013-10-17 11:47:23 +1100545int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000546ssh_connect(struct ssh *ssh, const char *host, struct addrinfo *addrs,
Damien Miller0faf7472013-10-17 11:47:23 +1100547 struct sockaddr_storage *hostaddr, u_short port, int family,
dtucker@openbsd.org95d41e92018-07-19 10:28:47 +0000548 int connection_attempts, int *timeout_ms, int want_keepalive)
Damien Miller0faf7472013-10-17 11:47:23 +1100549{
markus@openbsd.org8e7bac32019-02-27 19:37:01 +0000550 int in, out;
551
Damien Miller0faf7472013-10-17 11:47:23 +1100552 if (options.proxy_command == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000553 return ssh_connect_direct(ssh, host, addrs, hostaddr, port,
dtucker@openbsd.org95d41e92018-07-19 10:28:47 +0000554 family, connection_attempts, timeout_ms, want_keepalive);
Damien Miller0faf7472013-10-17 11:47:23 +1100555 } else if (strcmp(options.proxy_command, "-") == 0) {
markus@openbsd.org8e7bac32019-02-27 19:37:01 +0000556 if ((in = dup(STDIN_FILENO)) < 0 ||
557 (out = dup(STDOUT_FILENO)) < 0) {
558 if (in >= 0)
559 close(in);
560 error("%s: dup() in/out failed", __func__);
561 return -1; /* ssh_packet_set_connection logs error */
562 }
563 if ((ssh_packet_set_connection(ssh, in, out)) == NULL)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000564 return -1; /* ssh_packet_set_connection logs error */
565 return 0;
Damien Miller0faf7472013-10-17 11:47:23 +1100566 } else if (options.proxy_use_fdpass) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000567 return ssh_proxy_fdpass_connect(ssh, host, port,
Damien Miller0faf7472013-10-17 11:47:23 +1100568 options.proxy_command);
569 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000570 return ssh_proxy_connect(ssh, host, port, options.proxy_command);
Damien Miller0faf7472013-10-17 11:47:23 +1100571}
572
Ben Lindstromb6c06d92001-02-10 23:21:09 +0000573/* defaults to 'no' */
Ben Lindstrombba81212001-06-25 05:01:22 +0000574static int
dtucker@openbsd.org05b9a462019-01-24 17:00:29 +0000575confirm(const char *prompt, const char *fingerprint)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000576{
Damien Miller49d795c2002-01-22 23:34:12 +1100577 const char *msg, *again = "Please type 'yes' or 'no': ";
dtucker@openbsd.org05b9a462019-01-24 17:00:29 +0000578 const char *again_fp = "Please type 'yes', 'no' or the fingerprint: ";
Damien Miller49d795c2002-01-22 23:34:12 +1100579 char *p;
580 int ret = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000581
Ben Lindstromb6c06d92001-02-10 23:21:09 +0000582 if (options.batch_mode)
583 return 0;
dtucker@openbsd.org05b9a462019-01-24 17:00:29 +0000584 for (msg = prompt;;msg = fingerprint ? again_fp : again) {
Damien Miller49d795c2002-01-22 23:34:12 +1100585 p = read_passphrase(msg, RP_ECHO);
djm@openbsd.orge0ce54c2017-12-06 05:06:21 +0000586 if (p == NULL)
587 return 0;
588 p[strcspn(p, "\n")] = '\0';
589 if (p[0] == '\0' || strcasecmp(p, "no") == 0)
Damien Miller49d795c2002-01-22 23:34:12 +1100590 ret = 0;
dtucker@openbsd.org05b9a462019-01-24 17:00:29 +0000591 else if (strcasecmp(p, "yes") == 0 || (fingerprint != NULL &&
592 strcasecmp(p, fingerprint) == 0))
Damien Miller49d795c2002-01-22 23:34:12 +1100593 ret = 1;
Darren Tuckera627d422013-06-02 07:31:17 +1000594 free(p);
Damien Miller49d795c2002-01-22 23:34:12 +1100595 if (ret != -1)
596 return ret;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000597 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000598}
599
Damien Miller0a80ca12010-02-27 07:55:05 +1100600static int
djm@openbsd.orgecac7e12018-09-20 03:30:44 +0000601check_host_cert(const char *host, const struct sshkey *key)
Damien Miller0a80ca12010-02-27 07:55:05 +1100602{
603 const char *reason;
djm@openbsd.orgecac7e12018-09-20 03:30:44 +0000604 int r;
Damien Miller0a80ca12010-02-27 07:55:05 +1100605
djm@openbsd.orgecac7e12018-09-20 03:30:44 +0000606 if (sshkey_cert_check_authority(key, 1, 0, host, &reason) != 0) {
Damien Miller0a80ca12010-02-27 07:55:05 +1100607 error("%s", reason);
608 return 0;
609 }
djm@openbsd.orgecac7e12018-09-20 03:30:44 +0000610 if (sshbuf_len(key->cert->critical) != 0) {
Damien Miller4e270b02010-04-16 15:56:21 +1000611 error("Certificate for %s contains unsupported "
612 "critical options(s)", host);
Damien Miller0a80ca12010-02-27 07:55:05 +1100613 return 0;
614 }
djm@openbsd.orgecac7e12018-09-20 03:30:44 +0000615 if ((r = sshkey_check_cert_sigtype(key,
616 options.ca_sign_algorithms)) != 0) {
617 logit("%s: certificate signature algorithm %s: %s", __func__,
618 (key->cert == NULL || key->cert->signature_type == NULL) ?
619 "(null)" : key->cert->signature_type, ssh_err(r));
620 return 0;
621 }
622
Damien Miller0a80ca12010-02-27 07:55:05 +1100623 return 1;
624}
625
Damien Millerd925dcd2010-12-01 12:21:51 +1100626static int
627sockaddr_is_local(struct sockaddr *hostaddr)
628{
629 switch (hostaddr->sa_family) {
630 case AF_INET:
631 return (ntohl(((struct sockaddr_in *)hostaddr)->
632 sin_addr.s_addr) >> 24) == IN_LOOPBACKNET;
633 case AF_INET6:
634 return IN6_IS_ADDR_LOOPBACK(
635 &(((struct sockaddr_in6 *)hostaddr)->sin6_addr));
636 default:
637 return 0;
638 }
639}
640
641/*
642 * Prepare the hostname and ip address strings that are used to lookup
643 * host keys in known_hosts files. These may have a port number appended.
644 */
645void
646get_hostfile_hostname_ipaddr(char *hostname, struct sockaddr *hostaddr,
647 u_short port, char **hostfile_hostname, char **hostfile_ipaddr)
648{
649 char ntop[NI_MAXHOST];
650 socklen_t addrlen;
651
652 switch (hostaddr == NULL ? -1 : hostaddr->sa_family) {
653 case -1:
654 addrlen = 0;
655 break;
656 case AF_INET:
657 addrlen = sizeof(struct sockaddr_in);
658 break;
659 case AF_INET6:
660 addrlen = sizeof(struct sockaddr_in6);
661 break;
662 default:
663 addrlen = sizeof(struct sockaddr);
664 break;
665 }
666
667 /*
668 * We don't have the remote ip-address for connections
669 * using a proxy command
670 */
671 if (hostfile_ipaddr != NULL) {
672 if (options.proxy_command == NULL) {
673 if (getnameinfo(hostaddr, addrlen,
674 ntop, sizeof(ntop), NULL, 0, NI_NUMERICHOST) != 0)
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000675 fatal("%s: getnameinfo failed", __func__);
Damien Millerd925dcd2010-12-01 12:21:51 +1100676 *hostfile_ipaddr = put_host_port(ntop, port);
677 } else {
678 *hostfile_ipaddr = xstrdup("<no hostip for proxy "
679 "command>");
680 }
681 }
682
683 /*
684 * Allow the user to record the key under a different name or
685 * differentiate a non-standard port. This is useful for ssh
686 * tunneling over forwarded connections or if you run multiple
687 * sshd's on different ports on the same machine.
688 */
689 if (hostfile_hostname != NULL) {
690 if (options.host_key_alias != NULL) {
691 *hostfile_hostname = xstrdup(options.host_key_alias);
692 debug("using hostkeyalias: %s", *hostfile_hostname);
693 } else {
694 *hostfile_hostname = put_host_port(hostname, port);
695 }
696 }
697}
698
Damien Miller95def091999-11-25 00:26:21 +1100699/*
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000700 * check whether the supplied host key is valid, return -1 if the key
Damien Miller295ee632011-05-29 21:42:31 +1000701 * is not valid. user_hostfile[0] will not be updated if 'readonly' is true.
Damien Miller95def091999-11-25 00:26:21 +1100702 */
Damien Millerda828392006-08-05 11:35:45 +1000703#define RDRW 0
704#define RDONLY 1
705#define ROQUIET 2
Ben Lindstrombba81212001-06-25 05:01:22 +0000706static int
Damien Millerda828392006-08-05 11:35:45 +1000707check_host_key(char *hostname, struct sockaddr *hostaddr, u_short port,
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000708 struct sshkey *host_key, int readonly,
Damien Miller295ee632011-05-29 21:42:31 +1000709 char **user_hostfiles, u_int num_user_hostfiles,
710 char **system_hostfiles, u_int num_system_hostfiles)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000711{
Damien Miller95def091999-11-25 00:26:21 +1100712 HostStatus host_status;
713 HostStatus ip_status;
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000714 struct sshkey *raw_key = NULL;
Damien Miller295ee632011-05-29 21:42:31 +1000715 char *ip = NULL, *host = NULL;
716 char hostline[1000], *hostp, *fp, *ra;
Damien Miller49d795c2002-01-22 23:34:12 +1100717 char msg[1024];
Damien Miller295ee632011-05-29 21:42:31 +1000718 const char *type;
Damien Millerd925dcd2010-12-01 12:21:51 +1100719 const struct hostkey_entry *host_found, *ip_found;
dtucker@openbsd.org05b9a462019-01-24 17:00:29 +0000720 int len, cancelled_forwarding = 0, confirmed;
Damien Miller295ee632011-05-29 21:42:31 +1000721 int local = sockaddr_is_local(hostaddr);
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +0000722 int r, want_cert = sshkey_is_cert(host_key), host_ip_differ = 0;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000723 int hostkey_trusted = 0; /* Known or explicitly accepted by user */
Damien Miller295ee632011-05-29 21:42:31 +1000724 struct hostkeys *host_hostkeys, *ip_hostkeys;
725 u_int i;
Damien Miller34132e52000-01-14 15:45:46 +1100726
727 /*
728 * Force accepting of the host key for loopback/localhost. The
729 * problem is that if the home directory is NFS-mounted to multiple
730 * machines, localhost will refer to a different machine in each of
731 * them, and the user will get bogus HOST_CHANGED warnings. This
732 * essentially disables host authentication for localhost; however,
733 * this is probably not a real problem.
734 */
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +0000735 if (options.no_host_authentication_for_localhost == 1 && local &&
736 options.host_key_alias == NULL) {
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000737 debug("Forcing accepting of host key for "
738 "loopback/localhost.");
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000739 return 0;
Damien Miller34132e52000-01-14 15:45:46 +1100740 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000741
Damien Milleraae6c611999-12-06 11:47:28 +1100742 /*
Damien Millerd925dcd2010-12-01 12:21:51 +1100743 * Prepare the hostname and address strings used for hostkey lookup.
744 * In some cases, these will have a port number appended.
Damien Milleraae6c611999-12-06 11:47:28 +1100745 */
Damien Millerd925dcd2010-12-01 12:21:51 +1100746 get_hostfile_hostname_ipaddr(hostname, hostaddr, port, &host, &ip);
Darren Tucker78913e02008-06-13 04:47:34 +1000747
748 /*
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000749 * Turn off check_host_ip if the connection is to localhost, via proxy
750 * command or if we don't have a hostname to compare with
751 */
Darren Tuckerda345532006-07-10 23:04:19 +1000752 if (options.check_host_ip && (local ||
753 strcmp(hostname, ip) == 0 || options.proxy_command != NULL))
Damien Milleraae6c611999-12-06 11:47:28 +1100754 options.check_host_ip = 0;
755
Damien Millerd925dcd2010-12-01 12:21:51 +1100756 host_hostkeys = init_hostkeys();
Damien Miller295ee632011-05-29 21:42:31 +1000757 for (i = 0; i < num_user_hostfiles; i++)
758 load_hostkeys(host_hostkeys, host, user_hostfiles[i]);
759 for (i = 0; i < num_system_hostfiles; i++)
760 load_hostkeys(host_hostkeys, host, system_hostfiles[i]);
Damien Millerd925dcd2010-12-01 12:21:51 +1100761
762 ip_hostkeys = NULL;
763 if (!want_cert && options.check_host_ip) {
764 ip_hostkeys = init_hostkeys();
Damien Miller295ee632011-05-29 21:42:31 +1000765 for (i = 0; i < num_user_hostfiles; i++)
766 load_hostkeys(ip_hostkeys, ip, user_hostfiles[i]);
767 for (i = 0; i < num_system_hostfiles; i++)
768 load_hostkeys(ip_hostkeys, ip, system_hostfiles[i]);
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000769 }
770
Damien Miller0a80ca12010-02-27 07:55:05 +1100771 retry:
Damien Millerd925dcd2010-12-01 12:21:51 +1100772 /* Reload these as they may have changed on cert->key downgrade */
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +0000773 want_cert = sshkey_is_cert(host_key);
774 type = sshkey_type(host_key);
Damien Miller0a80ca12010-02-27 07:55:05 +1100775
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000776 /*
Damien Miller788f2122005-11-05 15:14:59 +1100777 * Check if the host key is present in the user's list of known
Damien Miller5428f641999-11-25 11:54:57 +1100778 * hosts or in the systemwide list.
779 */
Damien Millerd925dcd2010-12-01 12:21:51 +1100780 host_status = check_key_in_hostkeys(host_hostkeys, host_key,
781 &host_found);
782
Damien Miller5428f641999-11-25 11:54:57 +1100783 /*
Damien Miller5428f641999-11-25 11:54:57 +1100784 * Also perform check for the ip address, skip the check if we are
Damien Miller0a80ca12010-02-27 07:55:05 +1100785 * localhost, looking for a certificate, or the hostname was an ip
786 * address to begin with.
Damien Miller5428f641999-11-25 11:54:57 +1100787 */
Damien Millerd925dcd2010-12-01 12:21:51 +1100788 if (!want_cert && ip_hostkeys != NULL) {
789 ip_status = check_key_in_hostkeys(ip_hostkeys, host_key,
790 &ip_found);
Damien Miller95def091999-11-25 00:26:21 +1100791 if (host_status == HOST_CHANGED &&
Damien Millerd925dcd2010-12-01 12:21:51 +1100792 (ip_status != HOST_CHANGED ||
793 (ip_found != NULL &&
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +0000794 !sshkey_equal(ip_found->key, host_found->key))))
Damien Miller95def091999-11-25 00:26:21 +1100795 host_ip_differ = 1;
Damien Miller95def091999-11-25 00:26:21 +1100796 } else
797 ip_status = host_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000798
Damien Miller95def091999-11-25 00:26:21 +1100799 switch (host_status) {
800 case HOST_OK:
801 /* The host is known and the key matches. */
Damien Miller0a80ca12010-02-27 07:55:05 +1100802 debug("Host '%.200s' is known and matches the %s host %s.",
803 host, type, want_cert ? "certificate" : "key");
Damien Millerd925dcd2010-12-01 12:21:51 +1100804 debug("Found %s in %s:%lu", want_cert ? "CA key" : "key",
805 host_found->file, host_found->line);
djm@openbsd.org6f8ca3b2017-06-24 05:35:05 +0000806 if (want_cert &&
807 !check_host_cert(options.host_key_alias == NULL ?
808 hostname : options.host_key_alias, host_key))
Damien Miller0a80ca12010-02-27 07:55:05 +1100809 goto fail;
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000810 if (options.check_host_ip && ip_status == HOST_NEW) {
Damien Miller0a80ca12010-02-27 07:55:05 +1100811 if (readonly || want_cert)
Damien Miller996acd22003-04-09 20:59:48 +1000812 logit("%s host key for IP address "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000813 "'%.128s' not in list of known hosts.",
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000814 type, ip);
Damien Miller295ee632011-05-29 21:42:31 +1000815 else if (!add_host_to_hostfile(user_hostfiles[0], ip,
Damien Millere1776152005-03-01 21:47:37 +1100816 host_key, options.hash_known_hosts))
Damien Miller996acd22003-04-09 20:59:48 +1000817 logit("Failed to add the %s host key for IP "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000818 "address '%.128s' to the list of known "
dtucker@openbsd.org496aeb22015-05-28 05:41:29 +0000819 "hosts (%.500s).", type, ip,
Damien Miller295ee632011-05-29 21:42:31 +1000820 user_hostfiles[0]);
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000821 else
Damien Miller996acd22003-04-09 20:59:48 +1000822 logit("Warning: Permanently added the %s host "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000823 "key for IP address '%.128s' to the list "
824 "of known hosts.", type, ip);
Damien Miller10288242008-06-30 00:04:03 +1000825 } else if (options.visual_host_key) {
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000826 fp = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000827 options.fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000828 ra = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000829 options.fingerprint_hash, SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000830 if (fp == NULL || ra == NULL)
831 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.orgac3451d2015-09-04 03:57:38 +0000832 logit("Host key fingerprint is %s\n%s", fp, ra);
Darren Tuckera627d422013-06-02 07:31:17 +1000833 free(ra);
834 free(fp);
Damien Miller95def091999-11-25 00:26:21 +1100835 }
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000836 hostkey_trusted = 1;
Damien Miller95def091999-11-25 00:26:21 +1100837 break;
838 case HOST_NEW:
Damien Millerda828392006-08-05 11:35:45 +1000839 if (options.host_key_alias == NULL && port != 0 &&
840 port != SSH_DEFAULT_PORT) {
841 debug("checking without port identifier");
Damien Millerece92c82008-11-03 19:25:03 +1100842 if (check_host_key(hostname, hostaddr, 0, host_key,
Damien Miller295ee632011-05-29 21:42:31 +1000843 ROQUIET, user_hostfiles, num_user_hostfiles,
844 system_hostfiles, num_system_hostfiles) == 0) {
Damien Millerda828392006-08-05 11:35:45 +1000845 debug("found matching key w/out port");
846 break;
847 }
848 }
Damien Miller0a80ca12010-02-27 07:55:05 +1100849 if (readonly || want_cert)
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000850 goto fail;
Damien Miller95def091999-11-25 00:26:21 +1100851 /* The host is new. */
djm@openbsd.org22376d22017-09-03 23:33:13 +0000852 if (options.strict_host_key_checking ==
853 SSH_STRICT_HOSTKEY_YES) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000854 /*
855 * User has requested strict host key checking. We
856 * will not add the host key automatically. The only
857 * alternative left is to abort.
858 */
859 error("No %s host key is known for %.200s and you "
860 "have requested strict checking.", type, host);
861 goto fail;
djm@openbsd.org22376d22017-09-03 23:33:13 +0000862 } else if (options.strict_host_key_checking ==
863 SSH_STRICT_HOSTKEY_ASK) {
Damien Miller7392ae62003-06-11 22:05:25 +1000864 char msg1[1024], msg2[1024];
865
Damien Millerd925dcd2010-12-01 12:21:51 +1100866 if (show_other_keys(host_hostkeys, host_key))
Damien Miller7392ae62003-06-11 22:05:25 +1000867 snprintf(msg1, sizeof(msg1),
Damien Miller0dc1bef2005-07-17 17:22:45 +1000868 "\nbut keys of different type are already"
869 " known for this host.");
Damien Miller7392ae62003-06-11 22:05:25 +1000870 else
871 snprintf(msg1, sizeof(msg1), ".");
Damien Miller95def091999-11-25 00:26:21 +1100872 /* The default */
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000873 fp = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000874 options.fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000875 ra = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000876 options.fingerprint_hash, SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000877 if (fp == NULL || ra == NULL)
878 fatal("%s: sshkey_fingerprint fail", __func__);
Damien Miller7392ae62003-06-11 22:05:25 +1000879 msg2[0] = '\0';
Damien Miller7392ae62003-06-11 22:05:25 +1000880 if (options.verify_host_key_dns) {
Damien Miller150b5572003-11-17 21:19:29 +1100881 if (matching_host_key_dns)
Damien Miller7392ae62003-06-11 22:05:25 +1000882 snprintf(msg2, sizeof(msg2),
883 "Matching host key fingerprint"
884 " found in DNS.\n");
885 else
886 snprintf(msg2, sizeof(msg2),
887 "No matching host key fingerprint"
888 " found in DNS.\n");
889 }
Damien Miller49d795c2002-01-22 23:34:12 +1100890 snprintf(msg, sizeof(msg),
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000891 "The authenticity of host '%.200s (%s)' can't be "
Ben Lindstrom3ed66402002-08-01 01:21:56 +0000892 "established%s\n"
Damien Miller10288242008-06-30 00:04:03 +1000893 "%s key fingerprint is %s.%s%s\n%s"
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000894 "Are you sure you want to continue connecting "
dtucker@openbsd.org05b9a462019-01-24 17:00:29 +0000895 "(yes/no/[fingerprint])? ",
Damien Miller10288242008-06-30 00:04:03 +1000896 host, ip, msg1, type, fp,
897 options.visual_host_key ? "\n" : "",
898 options.visual_host_key ? ra : "",
899 msg2);
Darren Tuckera627d422013-06-02 07:31:17 +1000900 free(ra);
dtucker@openbsd.org05b9a462019-01-24 17:00:29 +0000901 confirmed = confirm(msg, fp);
Darren Tuckera627d422013-06-02 07:31:17 +1000902 free(fp);
dtucker@openbsd.org05b9a462019-01-24 17:00:29 +0000903 if (!confirmed)
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000904 goto fail;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000905 hostkey_trusted = 1; /* user explicitly confirmed */
Damien Miller95def091999-11-25 00:26:21 +1100906 }
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000907 /*
djm@openbsd.org22376d22017-09-03 23:33:13 +0000908 * If in "new" or "off" strict mode, add the key automatically
909 * to the local known_hosts file.
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000910 */
Damien Miller1227d4c2005-03-02 12:06:51 +1100911 if (options.check_host_ip && ip_status == HOST_NEW) {
Damien Millerd925dcd2010-12-01 12:21:51 +1100912 snprintf(hostline, sizeof(hostline), "%s,%s", host, ip);
Damien Miller1227d4c2005-03-02 12:06:51 +1100913 hostp = hostline;
914 if (options.hash_known_hosts) {
915 /* Add hash of host and IP separately */
Damien Miller295ee632011-05-29 21:42:31 +1000916 r = add_host_to_hostfile(user_hostfiles[0],
917 host, host_key, options.hash_known_hosts) &&
918 add_host_to_hostfile(user_hostfiles[0], ip,
Damien Miller1227d4c2005-03-02 12:06:51 +1100919 host_key, options.hash_known_hosts);
920 } else {
921 /* Add unhashed "host,ip" */
Damien Miller295ee632011-05-29 21:42:31 +1000922 r = add_host_to_hostfile(user_hostfiles[0],
Damien Miller1227d4c2005-03-02 12:06:51 +1100923 hostline, host_key,
924 options.hash_known_hosts);
925 }
926 } else {
Damien Miller295ee632011-05-29 21:42:31 +1000927 r = add_host_to_hostfile(user_hostfiles[0], host,
928 host_key, options.hash_known_hosts);
Damien Miller1227d4c2005-03-02 12:06:51 +1100929 hostp = host;
930 }
931
932 if (!r)
Damien Miller996acd22003-04-09 20:59:48 +1000933 logit("Failed to add the host to the list of known "
Damien Miller295ee632011-05-29 21:42:31 +1000934 "hosts (%.500s).", user_hostfiles[0]);
Damien Miller95def091999-11-25 00:26:21 +1100935 else
Damien Miller996acd22003-04-09 20:59:48 +1000936 logit("Warning: Permanently added '%.200s' (%s) to the "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000937 "list of known hosts.", hostp, type);
Damien Miller95def091999-11-25 00:26:21 +1100938 break;
Damien Miller1aed65e2010-03-04 21:53:35 +1100939 case HOST_REVOKED:
940 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
941 error("@ WARNING: REVOKED HOST KEY DETECTED! @");
942 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
943 error("The %s host key for %s is marked as revoked.", type, host);
944 error("This could mean that a stolen key is being used to");
945 error("impersonate this host.");
946
947 /*
948 * If strict host key checking is in use, the user will have
949 * to edit the key manually and we can only abort.
950 */
djm@openbsd.org22376d22017-09-03 23:33:13 +0000951 if (options.strict_host_key_checking !=
952 SSH_STRICT_HOSTKEY_OFF) {
Damien Miller1aed65e2010-03-04 21:53:35 +1100953 error("%s host key for %.200s was revoked and you have "
954 "requested strict checking.", type, host);
955 goto fail;
956 }
957 goto continue_unsafe;
958
Damien Miller95def091999-11-25 00:26:21 +1100959 case HOST_CHANGED:
Damien Miller0a80ca12010-02-27 07:55:05 +1100960 if (want_cert) {
961 /*
962 * This is only a debug() since it is valid to have
963 * CAs with wildcard DNS matches that don't match
964 * all hosts that one might visit.
965 */
966 debug("Host certificate authority does not "
Damien Millerd925dcd2010-12-01 12:21:51 +1100967 "match %s in %s:%lu", CA_MARKER,
968 host_found->file, host_found->line);
Damien Miller0a80ca12010-02-27 07:55:05 +1100969 goto fail;
970 }
Damien Millerda828392006-08-05 11:35:45 +1000971 if (readonly == ROQUIET)
972 goto fail;
Damien Miller95def091999-11-25 00:26:21 +1100973 if (options.check_host_ip && host_ip_differ) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000974 char *key_msg;
Damien Miller95def091999-11-25 00:26:21 +1100975 if (ip_status == HOST_NEW)
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000976 key_msg = "is unknown";
Damien Miller95def091999-11-25 00:26:21 +1100977 else if (ip_status == HOST_OK)
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000978 key_msg = "is unchanged";
Damien Miller95def091999-11-25 00:26:21 +1100979 else
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000980 key_msg = "has a different value";
Damien Miller95def091999-11-25 00:26:21 +1100981 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
982 error("@ WARNING: POSSIBLE DNS SPOOFING DETECTED! @");
983 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
Damien Millere247cc42000-05-07 12:03:14 +1000984 error("The %s host key for %s has changed,", type, host);
Darren Tuckerff4454d2008-06-13 10:21:51 +1000985 error("and the key for the corresponding IP address %s", ip);
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000986 error("%s. This could either mean that", key_msg);
Damien Miller95def091999-11-25 00:26:21 +1100987 error("DNS SPOOFING is happening or the IP address for the host");
Ben Lindstrom46c16222000-12-22 01:43:59 +0000988 error("and its host key have changed at the same time.");
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000989 if (ip_status != HOST_NEW)
Damien Millerd925dcd2010-12-01 12:21:51 +1100990 error("Offending key for IP in %s:%lu",
991 ip_found->file, ip_found->line);
Damien Miller95def091999-11-25 00:26:21 +1100992 }
993 /* The host key has changed. */
Damien Miller5a388972003-11-17 21:10:47 +1100994 warn_changed_key(host_key);
Damien Miller95def091999-11-25 00:26:21 +1100995 error("Add correct host key in %.100s to get rid of this message.",
Damien Miller295ee632011-05-29 21:42:31 +1000996 user_hostfiles[0]);
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +0000997 error("Offending %s key in %s:%lu",
998 sshkey_type(host_found->key),
Damien Millerd925dcd2010-12-01 12:21:51 +1100999 host_found->file, host_found->line);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001000
Damien Miller5428f641999-11-25 11:54:57 +11001001 /*
1002 * If strict host key checking is in use, the user will have
1003 * to edit the key manually and we can only abort.
1004 */
djm@openbsd.org22376d22017-09-03 23:33:13 +00001005 if (options.strict_host_key_checking !=
1006 SSH_STRICT_HOSTKEY_OFF) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001007 error("%s host key for %.200s has changed and you have "
1008 "requested strict checking.", type, host);
1009 goto fail;
1010 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001011
Damien Miller1aed65e2010-03-04 21:53:35 +11001012 continue_unsafe:
Damien Miller5428f641999-11-25 11:54:57 +11001013 /*
1014 * If strict host key checking has not been requested, allow
Damien Miller941ac452003-06-04 20:31:53 +10001015 * the connection but without MITM-able authentication or
Damien Miller437edb92006-08-05 09:11:13 +10001016 * forwarding.
Damien Miller5428f641999-11-25 11:54:57 +11001017 */
Damien Miller95def091999-11-25 00:26:21 +11001018 if (options.password_authentication) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001019 error("Password authentication is disabled to avoid "
1020 "man-in-the-middle attacks.");
Damien Miller95def091999-11-25 00:26:21 +11001021 options.password_authentication = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001022 cancelled_forwarding = 1;
Damien Miller95def091999-11-25 00:26:21 +11001023 }
Damien Miller941ac452003-06-04 20:31:53 +10001024 if (options.kbd_interactive_authentication) {
1025 error("Keyboard-interactive authentication is disabled"
1026 " to avoid man-in-the-middle attacks.");
1027 options.kbd_interactive_authentication = 0;
1028 options.challenge_response_authentication = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001029 cancelled_forwarding = 1;
Damien Miller941ac452003-06-04 20:31:53 +10001030 }
1031 if (options.challenge_response_authentication) {
1032 error("Challenge/response authentication is disabled"
1033 " to avoid man-in-the-middle attacks.");
1034 options.challenge_response_authentication = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001035 cancelled_forwarding = 1;
Damien Miller941ac452003-06-04 20:31:53 +10001036 }
Damien Miller95def091999-11-25 00:26:21 +11001037 if (options.forward_agent) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001038 error("Agent forwarding is disabled to avoid "
1039 "man-in-the-middle attacks.");
Damien Miller95def091999-11-25 00:26:21 +11001040 options.forward_agent = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001041 cancelled_forwarding = 1;
Damien Miller95def091999-11-25 00:26:21 +11001042 }
Ben Lindstromc72745a2000-12-02 19:03:54 +00001043 if (options.forward_x11) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001044 error("X11 forwarding is disabled to avoid "
1045 "man-in-the-middle attacks.");
Ben Lindstromc72745a2000-12-02 19:03:54 +00001046 options.forward_x11 = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001047 cancelled_forwarding = 1;
Ben Lindstromc72745a2000-12-02 19:03:54 +00001048 }
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001049 if (options.num_local_forwards > 0 ||
1050 options.num_remote_forwards > 0) {
1051 error("Port forwarding is disabled to avoid "
1052 "man-in-the-middle attacks.");
1053 options.num_local_forwards =
Damien Miller9f0f5c62001-12-21 14:45:46 +11001054 options.num_remote_forwards = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001055 cancelled_forwarding = 1;
Ben Lindstromc72745a2000-12-02 19:03:54 +00001056 }
Damien Miller437edb92006-08-05 09:11:13 +10001057 if (options.tun_open != SSH_TUNMODE_NO) {
1058 error("Tunnel forwarding is disabled to avoid "
1059 "man-in-the-middle attacks.");
1060 options.tun_open = SSH_TUNMODE_NO;
Darren Tucker068e01f2008-07-02 22:33:55 +10001061 cancelled_forwarding = 1;
Damien Miller437edb92006-08-05 09:11:13 +10001062 }
Darren Tucker068e01f2008-07-02 22:33:55 +10001063 if (options.exit_on_forward_failure && cancelled_forwarding)
1064 fatal("Error: forwarding disabled due to host key "
1065 "check failure");
1066
Damien Miller5428f641999-11-25 11:54:57 +11001067 /*
1068 * XXX Should permit the user to change to use the new id.
1069 * This could be done by converting the host key to an
1070 * identifying sentence, tell that the host identifies itself
Darren Tuckere2b36742010-01-13 22:42:34 +11001071 * by that sentence, and ask the user if he/she wishes to
Damien Miller5428f641999-11-25 11:54:57 +11001072 * accept the authentication.
1073 */
Damien Miller95def091999-11-25 00:26:21 +11001074 break;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001075 case HOST_FOUND:
1076 fatal("internal error");
1077 break;
Damien Miller95def091999-11-25 00:26:21 +11001078 }
Ben Lindstromc72745a2000-12-02 19:03:54 +00001079
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +00001080 if (options.check_host_ip && host_status != HOST_CHANGED &&
1081 ip_status == HOST_CHANGED) {
Damien Miller49d795c2002-01-22 23:34:12 +11001082 snprintf(msg, sizeof(msg),
1083 "Warning: the %s host key for '%.200s' "
1084 "differs from the key for the IP address '%.128s'"
Damien Millerd925dcd2010-12-01 12:21:51 +11001085 "\nOffending key for IP in %s:%lu",
1086 type, host, ip, ip_found->file, ip_found->line);
Damien Miller49d795c2002-01-22 23:34:12 +11001087 if (host_status == HOST_OK) {
1088 len = strlen(msg);
1089 snprintf(msg + len, sizeof(msg) - len,
Damien Millerd925dcd2010-12-01 12:21:51 +11001090 "\nMatching host key in %s:%lu",
1091 host_found->file, host_found->line);
Damien Miller49d795c2002-01-22 23:34:12 +11001092 }
djm@openbsd.org22376d22017-09-03 23:33:13 +00001093 if (options.strict_host_key_checking ==
1094 SSH_STRICT_HOSTKEY_ASK) {
Damien Miller49d795c2002-01-22 23:34:12 +11001095 strlcat(msg, "\nAre you sure you want "
1096 "to continue connecting (yes/no)? ", sizeof(msg));
dtucker@openbsd.org05b9a462019-01-24 17:00:29 +00001097 if (!confirm(msg, NULL))
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001098 goto fail;
djm@openbsd.org22376d22017-09-03 23:33:13 +00001099 } else if (options.strict_host_key_checking !=
1100 SSH_STRICT_HOSTKEY_OFF) {
1101 logit("%s", msg);
1102 error("Exiting, you have requested strict checking.");
1103 goto fail;
Damien Miller49d795c2002-01-22 23:34:12 +11001104 } else {
Damien Millerab2db412003-06-02 19:09:13 +10001105 logit("%s", msg);
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +00001106 }
1107 }
1108
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00001109 if (!hostkey_trusted && options.update_hostkeys) {
1110 debug("%s: hostkey not known or explicitly trusted: "
1111 "disabling UpdateHostkeys", __func__);
1112 options.update_hostkeys = 0;
1113 }
1114
Darren Tuckera627d422013-06-02 07:31:17 +10001115 free(ip);
1116 free(host);
Damien Millerd925dcd2010-12-01 12:21:51 +11001117 if (host_hostkeys != NULL)
1118 free_hostkeys(host_hostkeys);
1119 if (ip_hostkeys != NULL)
1120 free_hostkeys(ip_hostkeys);
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001121 return 0;
1122
1123fail:
Damien Miller1aed65e2010-03-04 21:53:35 +11001124 if (want_cert && host_status != HOST_REVOKED) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001125 /*
1126 * No matching certificate. Downgrade cert to raw key and
1127 * search normally.
1128 */
1129 debug("No matching CA found. Retry with plain key");
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +00001130 if ((r = sshkey_from_private(host_key, &raw_key)) != 0)
1131 fatal("%s: sshkey_from_private: %s",
1132 __func__, ssh_err(r));
1133 if ((r = sshkey_drop_cert(raw_key)) != 0)
1134 fatal("Couldn't drop certificate: %s", ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001135 host_key = raw_key;
1136 goto retry;
1137 }
dtucker@openbsd.orgf1f047f2018-02-07 22:52:45 +00001138 sshkey_free(raw_key);
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 -1;
1146}
1147
Damien Miller37876e92003-05-15 10:19:46 +10001148/* returns 0 if key verifies or -1 if key does NOT verify */
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001149int
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001150verify_host_key(char *host, struct sockaddr *hostaddr, struct sshkey *host_key)
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001151{
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001152 u_int i;
Damien Miller6b37fbb2014-07-04 08:59:24 +10001153 int r = -1, flags = 0;
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001154 char valid[64], *fp = NULL, *cafp = NULL;
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001155 struct sshkey *plain = NULL;
Damien Millerd925dcd2010-12-01 12:21:51 +11001156
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001157 if ((fp = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001158 options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL) {
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001159 error("%s: fingerprint host key: %s", __func__, ssh_err(r));
1160 r = -1;
1161 goto out;
1162 }
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001163
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001164 if (sshkey_is_cert(host_key)) {
1165 if ((cafp = sshkey_fingerprint(host_key->cert->signature_key,
1166 options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL) {
1167 error("%s: fingerprint CA key: %s",
1168 __func__, ssh_err(r));
1169 r = -1;
1170 goto out;
1171 }
1172 sshkey_format_cert_validity(host_key->cert,
1173 valid, sizeof(valid));
1174 debug("Server host certificate: %s %s, serial %llu "
1175 "ID \"%s\" CA %s %s valid %s",
1176 sshkey_ssh_name(host_key), fp,
djm@openbsd.org8ca915f2015-11-20 01:45:29 +00001177 (unsigned long long)host_key->cert->serial,
1178 host_key->cert->key_id,
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001179 sshkey_ssh_name(host_key->cert->signature_key), cafp,
1180 valid);
1181 for (i = 0; i < host_key->cert->nprincipals; i++) {
1182 debug2("Server host certificate hostname: %s",
1183 host_key->cert->principals[i]);
1184 }
1185 } else {
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001186 debug("Server host key: %s %s", sshkey_ssh_name(host_key), fp);
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001187 }
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001188
1189 if (sshkey_equal(previous_host_key, host_key)) {
1190 debug2("%s: server host key %s %s matches cached key",
1191 __func__, sshkey_type(host_key), fp);
1192 r = 0;
1193 goto out;
1194 }
1195
1196 /* Check in RevokedHostKeys file if specified */
1197 if (options.revoked_host_keys != NULL) {
1198 r = sshkey_check_revoked(host_key, options.revoked_host_keys);
1199 switch (r) {
1200 case 0:
1201 break; /* not revoked */
1202 case SSH_ERR_KEY_REVOKED:
1203 error("Host key %s %s revoked by file %s",
1204 sshkey_type(host_key), fp,
1205 options.revoked_host_keys);
1206 r = -1;
1207 goto out;
1208 default:
1209 error("Error checking host key %s %s in "
1210 "revoked keys file %s: %s", sshkey_type(host_key),
1211 fp, options.revoked_host_keys, ssh_err(r));
1212 r = -1;
1213 goto out;
1214 }
Damien Miller6b37fbb2014-07-04 08:59:24 +10001215 }
1216
Damien Miller7d6a9fb2014-04-20 13:23:43 +10001217 if (options.verify_host_key_dns) {
1218 /*
1219 * XXX certs are not yet supported for DNS, so downgrade
1220 * them and try the plain key.
1221 */
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001222 if ((r = sshkey_from_private(host_key, &plain)) != 0)
1223 goto out;
1224 if (sshkey_is_cert(plain))
1225 sshkey_drop_cert(plain);
Damien Miller7d6a9fb2014-04-20 13:23:43 +10001226 if (verify_host_key_dns(host, hostaddr, plain, &flags) == 0) {
1227 if (flags & DNS_VERIFY_FOUND) {
1228 if (options.verify_host_key_dns == 1 &&
1229 flags & DNS_VERIFY_MATCH &&
1230 flags & DNS_VERIFY_SECURE) {
Damien Miller6b37fbb2014-07-04 08:59:24 +10001231 r = 0;
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001232 goto out;
Damien Miller7d6a9fb2014-04-20 13:23:43 +10001233 }
1234 if (flags & DNS_VERIFY_MATCH) {
1235 matching_host_key_dns = 1;
1236 } else {
djm@openbsd.orgaea59a02017-09-14 04:32:21 +00001237 warn_changed_key(plain);
1238 error("Update the SSHFP RR in DNS "
1239 "with the new host key to get rid "
1240 "of this message.");
Damien Miller7d6a9fb2014-04-20 13:23:43 +10001241 }
Damien Miller150b5572003-11-17 21:19:29 +11001242 }
Damien Miller37876e92003-05-15 10:19:46 +10001243 }
1244 }
Damien Miller6b37fbb2014-07-04 08:59:24 +10001245 r = check_host_key(host, hostaddr, options.port, host_key, RDRW,
Damien Miller295ee632011-05-29 21:42:31 +10001246 options.user_hostfiles, options.num_user_hostfiles,
1247 options.system_hostfiles, options.num_system_hostfiles);
Damien Miller6b37fbb2014-07-04 08:59:24 +10001248
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001249out:
1250 sshkey_free(plain);
1251 free(fp);
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001252 free(cafp);
Damien Miller6b37fbb2014-07-04 08:59:24 +10001253 if (r == 0 && host_key != NULL) {
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +00001254 sshkey_free(previous_host_key);
1255 r = sshkey_from_private(host_key, &previous_host_key);
Damien Miller6b37fbb2014-07-04 08:59:24 +10001256 }
1257
1258 return r;
Damien Millera34a28b1999-12-14 10:47:15 +11001259}
Damien Miller037a0dc1999-12-07 15:38:31 +11001260
Damien Miller396691a2000-01-20 22:44:08 +11001261/*
1262 * Starts a dialog with the server, and authenticates the current user on the
1263 * server. This does not need any extra privileges. The basic connection
1264 * to the server must already have been established before this is called.
1265 * If login fails, this function prints an error and never returns.
1266 * This function does not require super-user privileges.
1267 */
1268void
djm@openbsd.org0a843d92018-12-27 03:25:24 +00001269ssh_login(struct ssh *ssh, Sensitive *sensitive, const char *orighost,
Damien Millerd925dcd2010-12-01 12:21:51 +11001270 struct sockaddr *hostaddr, u_short port, struct passwd *pw, int timeout_ms)
Damien Miller396691a2000-01-20 22:44:08 +11001271{
Damien Miller0faf7472013-10-17 11:47:23 +11001272 char *host;
Damien Millereba71ba2000-04-29 23:57:08 +10001273 char *server_user, *local_user;
1274
Damien Millereba71ba2000-04-29 23:57:08 +10001275 local_user = xstrdup(pw->pw_name);
1276 server_user = options.user ? options.user : local_user;
Damien Miller396691a2000-01-20 22:44:08 +11001277
1278 /* Convert the user-supplied hostname into all lowercase. */
1279 host = xstrdup(orighost);
Damien Miller0faf7472013-10-17 11:47:23 +11001280 lowercase(host);
Damien Miller396691a2000-01-20 22:44:08 +11001281
1282 /* Exchange protocol version identification strings with the server. */
djm@openbsd.org0a843d92018-12-27 03:25:24 +00001283 if (kex_exchange_identification(ssh, timeout_ms, NULL) != 0)
1284 cleanup_exit(255); /* error already logged */
Damien Miller396691a2000-01-20 22:44:08 +11001285
1286 /* Put the connection into non-blocking mode. */
djm@openbsd.org0a843d92018-12-27 03:25:24 +00001287 ssh_packet_set_nonblocking(ssh);
Damien Miller396691a2000-01-20 22:44:08 +11001288
Damien Miller396691a2000-01-20 22:44:08 +11001289 /* key exchange */
Damien Miller396691a2000-01-20 22:44:08 +11001290 /* authenticate user */
dtucker@openbsd.orgbb2289e2015-04-14 04:17:03 +00001291 debug("Authenticating to %s:%d as '%s'", host, port, server_user);
djm@openbsd.org0a843d92018-12-27 03:25:24 +00001292 ssh_kex2(ssh, host, hostaddr, port);
1293 ssh_userauth2(ssh, local_user, server_user, host, sensitive);
Darren Tuckera627d422013-06-02 07:31:17 +10001294 free(local_user);
dtucker@openbsd.org1c554a52019-05-03 03:27:38 +00001295 free(host);
Damien Miller396691a2000-01-20 22:44:08 +11001296}
Damien Miller79438cc2001-02-16 12:34:57 +11001297
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001298/* print all known host keys for a given host, but skip keys of given type */
1299static int
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001300show_other_keys(struct hostkeys *hostkeys, struct sshkey *key)
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001301{
Damien Miller106bf1c2013-12-29 17:54:03 +11001302 int type[] = {
Damien Miller106bf1c2013-12-29 17:54:03 +11001303 KEY_RSA,
1304 KEY_DSA,
1305 KEY_ECDSA,
1306 KEY_ED25519,
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00001307 KEY_XMSS,
Damien Miller106bf1c2013-12-29 17:54:03 +11001308 -1
1309 };
Damien Millerd925dcd2010-12-01 12:21:51 +11001310 int i, ret = 0;
1311 char *fp, *ra;
1312 const struct hostkey_entry *found;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001313
1314 for (i = 0; type[i] != -1; i++) {
1315 if (type[i] == key->type)
1316 continue;
Damien Millerd925dcd2010-12-01 12:21:51 +11001317 if (!lookup_key_in_hostkeys_by_type(hostkeys, type[i], &found))
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001318 continue;
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001319 fp = sshkey_fingerprint(found->key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001320 options.fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001321 ra = sshkey_fingerprint(found->key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001322 options.fingerprint_hash, SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001323 if (fp == NULL || ra == NULL)
1324 fatal("%s: sshkey_fingerprint fail", __func__);
Damien Millerd925dcd2010-12-01 12:21:51 +11001325 logit("WARNING: %s key found for host %s\n"
1326 "in %s:%lu\n"
1327 "%s key fingerprint %s.",
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001328 sshkey_type(found->key),
Damien Millerd925dcd2010-12-01 12:21:51 +11001329 found->host, found->file, found->line,
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001330 sshkey_type(found->key), fp);
Damien Millerd925dcd2010-12-01 12:21:51 +11001331 if (options.visual_host_key)
1332 logit("%s", ra);
Darren Tuckera627d422013-06-02 07:31:17 +10001333 free(ra);
1334 free(fp);
Damien Millerd925dcd2010-12-01 12:21:51 +11001335 ret = 1;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001336 }
Damien Millerd925dcd2010-12-01 12:21:51 +11001337 return ret;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001338}
Damien Miller5a388972003-11-17 21:10:47 +11001339
1340static void
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001341warn_changed_key(struct sshkey *host_key)
Damien Miller5a388972003-11-17 21:10:47 +11001342{
1343 char *fp;
Damien Miller5a388972003-11-17 21:10:47 +11001344
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001345 fp = sshkey_fingerprint(host_key, options.fingerprint_hash,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001346 SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001347 if (fp == NULL)
1348 fatal("%s: sshkey_fingerprint fail", __func__);
Damien Miller5a388972003-11-17 21:10:47 +11001349
1350 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1351 error("@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @");
1352 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1353 error("IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!");
1354 error("Someone could be eavesdropping on you right now (man-in-the-middle attack)!");
Damien Miller05c89972011-01-06 22:42:04 +11001355 error("It is also possible that a host key has just been changed.");
Damien Miller5a388972003-11-17 21:10:47 +11001356 error("The fingerprint for the %s key sent by the remote host is\n%s.",
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001357 sshkey_type(host_key), fp);
Damien Miller5a388972003-11-17 21:10:47 +11001358 error("Please contact your system administrator.");
1359
Darren Tuckera627d422013-06-02 07:31:17 +10001360 free(fp);
Damien Miller5a388972003-11-17 21:10:47 +11001361}
Damien Millerd27b9472005-12-13 19:29:02 +11001362
1363/*
1364 * Execute a local command
1365 */
1366int
1367ssh_local_cmd(const char *args)
1368{
1369 char *shell;
1370 pid_t pid;
1371 int status;
Damien Millered3a8eb2011-01-07 10:02:52 +11001372 void (*osighand)(int);
Damien Millerd27b9472005-12-13 19:29:02 +11001373
1374 if (!options.permit_local_command ||
1375 args == NULL || !*args)
1376 return (1);
1377
Damien Miller38d9a962010-10-07 22:07:11 +11001378 if ((shell = getenv("SHELL")) == NULL || *shell == '\0')
Damien Millerd27b9472005-12-13 19:29:02 +11001379 shell = _PATH_BSHELL;
1380
Damien Millered3a8eb2011-01-07 10:02:52 +11001381 osighand = signal(SIGCHLD, SIG_DFL);
Damien Millerd27b9472005-12-13 19:29:02 +11001382 pid = fork();
1383 if (pid == 0) {
Damien Miller6fb6fd52011-01-16 23:17:45 +11001384 signal(SIGPIPE, SIG_DFL);
Damien Millerd27b9472005-12-13 19:29:02 +11001385 debug3("Executing %s -c \"%s\"", shell, args);
1386 execl(shell, shell, "-c", args, (char *)NULL);
1387 error("Couldn't execute %s -c \"%s\": %s",
1388 shell, args, strerror(errno));
1389 _exit(1);
1390 } else if (pid == -1)
1391 fatal("fork failed: %.100s", strerror(errno));
1392 while (waitpid(pid, &status, 0) == -1)
1393 if (errno != EINTR)
1394 fatal("Couldn't wait for child: %s", strerror(errno));
Damien Millered3a8eb2011-01-07 10:02:52 +11001395 signal(SIGCHLD, osighand);
Damien Millerd27b9472005-12-13 19:29:02 +11001396
1397 if (!WIFEXITED(status))
1398 return (1);
1399
1400 return (WEXITSTATUS(status));
1401}
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001402
1403void
djm@openbsd.orgd9e5cf02018-02-10 09:25:34 +00001404maybe_add_key_to_agent(char *authfile, const struct sshkey *private,
1405 char *comment, char *passphrase)
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001406{
1407 int auth_sock = -1, r;
1408
1409 if (options.add_keys_to_agent == 0)
1410 return;
1411
1412 if ((r = ssh_get_authentication_socket(&auth_sock)) != 0) {
1413 debug3("no authentication agent, not adding key");
1414 return;
1415 }
1416
1417 if (options.add_keys_to_agent == 2 &&
1418 !ask_permission("Add key %s (%s) to agent?", authfile, comment)) {
1419 debug3("user denied adding this key");
dtucker@openbsd.org566b3a42017-03-10 03:22:40 +00001420 close(auth_sock);
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001421 return;
1422 }
1423
1424 if ((r = ssh_add_identity_constrained(auth_sock, private, comment, 0,
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00001425 (options.add_keys_to_agent == 3), 0)) == 0)
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001426 debug("identity added to agent: %s", authfile);
1427 else
1428 debug("could not add identity to agent: %s (%d)", authfile, r);
dtucker@openbsd.org566b3a42017-03-10 03:22:40 +00001429 close(auth_sock);
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001430}