blob: 4862da5ed6cb6d12ee17e14b84bbbaa94ba97ee3 [file] [log] [blame]
dtucker@openbsd.org7fca94e2018-11-18 22:43:29 +00001/* $OpenBSD: sshconnect.c,v 1.308 2018/11/18 22:43:29 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"
Damien Miller37876e92003-05-15 10:19:46 +100071
Damien Millereba71ba2000-04-29 23:57:08 +100072char *client_version_string = NULL;
73char *server_version_string = NULL;
markus@openbsd.org54d90ac2017-05-30 08:52:19 +000074struct sshkey *previous_host_key = NULL;
Damien Miller1383bd82000-04-06 12:32:37 +100075
Damien Millerc1af1d52005-11-05 15:08:57 +110076static int matching_host_key_dns = 0;
Damien Miller7392ae62003-06-11 22:05:25 +100077
Damien Millera41ccca2010-10-07 22:07:32 +110078static pid_t proxy_command_pid = 0;
79
Ben Lindstromf9c48842002-06-11 16:37:51 +000080/* import */
djm@openbsd.orgccef7c42018-11-16 06:17:38 +000081extern int debug_flag;
Damien Milleraae6c611999-12-06 11:47:28 +110082extern Options options;
Damien Miller34132e52000-01-14 15:45:46 +110083extern char *__progname;
Damien Milleraae6c611999-12-06 11:47:28 +110084
markus@openbsd.org54d90ac2017-05-30 08:52:19 +000085static int show_other_keys(struct hostkeys *, struct sshkey *);
86static void warn_changed_key(struct sshkey *);
Ben Lindstrom3ed66402002-08-01 01:21:56 +000087
Damien Miller1262b662013-08-21 02:44:24 +100088/* Expand a proxy command */
89static char *
90expand_proxy_command(const char *proxy_command, const char *user,
91 const char *host, int port)
92{
93 char *tmp, *ret, strport[NI_MAXSERV];
94
Damien Miller0faf7472013-10-17 11:47:23 +110095 snprintf(strport, sizeof strport, "%d", port);
Damien Miller1262b662013-08-21 02:44:24 +100096 xasprintf(&tmp, "exec %s", proxy_command);
97 ret = percent_expand(tmp, "h", host, "p", strport,
98 "r", options.user, (char *)NULL);
99 free(tmp);
100 return ret;
101}
102
djm@openbsd.orgccef7c42018-11-16 06:17:38 +0000103static void
104stderr_null(void)
105{
106 int devnull;
107
108 if ((devnull = open(_PATH_DEVNULL, O_WRONLY)) == -1) {
109 error("Can't open %s for stderr redirection: %s",
110 _PATH_DEVNULL, strerror(errno));
111 return;
112 }
113 if (devnull == STDERR_FILENO)
114 return;
115 if (dup2(devnull, STDERR_FILENO) == -1)
116 error("Cannot redirect stderr to %s", _PATH_DEVNULL);
117 if (devnull > STDERR_FILENO)
118 close(devnull);
119}
120
Damien Miller1262b662013-08-21 02:44:24 +1000121/*
122 * Connect to the given ssh server using a proxy command that passes a
123 * a connected fd back to us.
124 */
125static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000126ssh_proxy_fdpass_connect(struct ssh *ssh, const char *host, u_short port,
Damien Miller1262b662013-08-21 02:44:24 +1000127 const char *proxy_command)
128{
129 char *command_string;
130 int sp[2], sock;
131 pid_t pid;
132 char *shell;
133
134 if ((shell = getenv("SHELL")) == NULL)
135 shell = _PATH_BSHELL;
136
137 if (socketpair(AF_UNIX, SOCK_STREAM, 0, sp) < 0)
138 fatal("Could not create socketpair to communicate with "
139 "proxy dialer: %.100s", strerror(errno));
140
141 command_string = expand_proxy_command(proxy_command, options.user,
142 host, port);
143 debug("Executing proxy dialer command: %.500s", command_string);
144
145 /* Fork and execute the proxy command. */
146 if ((pid = fork()) == 0) {
147 char *argv[10];
148
Damien Miller1262b662013-08-21 02:44:24 +1000149 close(sp[1]);
150 /* Redirect stdin and stdout. */
151 if (sp[0] != 0) {
152 if (dup2(sp[0], 0) < 0)
153 perror("dup2 stdin");
154 }
155 if (sp[0] != 1) {
156 if (dup2(sp[0], 1) < 0)
157 perror("dup2 stdout");
158 }
159 if (sp[0] >= 2)
160 close(sp[0]);
161
162 /*
djm@openbsd.orgccef7c42018-11-16 06:17:38 +0000163 * Stderr is left for non-ControlPersist connections is so
164 * error messages may be printed on the user's terminal.
Damien Miller1262b662013-08-21 02:44:24 +1000165 */
dtucker@openbsd.org7fca94e2018-11-18 22:43:29 +0000166 if (!debug_flag && options.control_path != NULL &&
167 options.control_persist)
djm@openbsd.orgccef7c42018-11-16 06:17:38 +0000168 stderr_null();
169
Damien Miller1262b662013-08-21 02:44:24 +1000170 argv[0] = shell;
171 argv[1] = "-c";
172 argv[2] = command_string;
173 argv[3] = NULL;
174
175 /*
176 * Execute the proxy command.
177 * Note that we gave up any extra privileges above.
178 */
179 execv(argv[0], argv);
180 perror(argv[0]);
181 exit(1);
182 }
183 /* Parent. */
184 if (pid < 0)
185 fatal("fork failed: %.100s", strerror(errno));
186 close(sp[0]);
187 free(command_string);
188
189 if ((sock = mm_receive_fd(sp[1])) == -1)
190 fatal("proxy dialer did not pass back a connection");
markus@openbsd.orgfc77ccd2016-01-14 22:56:56 +0000191 close(sp[1]);
Damien Miller1262b662013-08-21 02:44:24 +1000192
193 while (waitpid(pid, NULL, 0) == -1)
194 if (errno != EINTR)
195 fatal("Couldn't wait for child: %s", strerror(errno));
196
197 /* Set the connection file descriptors. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000198 if (ssh_packet_set_connection(ssh, sock, sock) == NULL)
199 return -1; /* ssh_packet_set_connection logs error */
Damien Miller1262b662013-08-21 02:44:24 +1000200
201 return 0;
202}
203
Damien Miller95def091999-11-25 00:26:21 +1100204/*
205 * Connect to the given ssh server using a proxy command.
206 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000207static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000208ssh_proxy_connect(struct ssh *ssh, const char *host, u_short port,
209 const char *proxy_command)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000210{
Damien Miller1262b662013-08-21 02:44:24 +1000211 char *command_string;
Damien Miller95def091999-11-25 00:26:21 +1100212 int pin[2], pout[2];
Damien Miller166fca82000-04-20 07:42:21 +1000213 pid_t pid;
Damien Miller1262b662013-08-21 02:44:24 +1000214 char *shell;
Damien Miller1d824ab2007-09-17 11:58:04 +1000215
Damien Miller38d9a962010-10-07 22:07:11 +1100216 if ((shell = getenv("SHELL")) == NULL || *shell == '\0')
Damien Miller1d824ab2007-09-17 11:58:04 +1000217 shell = _PATH_BSHELL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000218
Damien Miller95def091999-11-25 00:26:21 +1100219 /* Create pipes for communicating with the proxy. */
220 if (pipe(pin) < 0 || pipe(pout) < 0)
221 fatal("Could not create pipes to communicate with the proxy: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100222 strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000223
Damien Miller1262b662013-08-21 02:44:24 +1000224 command_string = expand_proxy_command(proxy_command, options.user,
225 host, port);
Damien Miller95def091999-11-25 00:26:21 +1100226 debug("Executing proxy command: %.500s", command_string);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000227
Damien Miller95def091999-11-25 00:26:21 +1100228 /* Fork and execute the proxy command. */
229 if ((pid = fork()) == 0) {
230 char *argv[10];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000231
Damien Miller95def091999-11-25 00:26:21 +1100232 /* Redirect stdin and stdout. */
233 close(pin[1]);
234 if (pin[0] != 0) {
235 if (dup2(pin[0], 0) < 0)
236 perror("dup2 stdin");
237 close(pin[0]);
238 }
239 close(pout[0]);
240 if (dup2(pout[1], 1) < 0)
241 perror("dup2 stdout");
242 /* Cannot be 1 because pin allocated two descriptors. */
243 close(pout[1]);
244
djm@openbsd.orgccef7c42018-11-16 06:17:38 +0000245 /*
246 * Stderr is left for non-ControlPersist connections is so
247 * error messages may be printed on the user's terminal.
248 */
dtucker@openbsd.org7fca94e2018-11-18 22:43:29 +0000249 if (!debug_flag && options.control_path != NULL &&
250 options.control_persist)
djm@openbsd.orgccef7c42018-11-16 06:17:38 +0000251 stderr_null();
252
Damien Miller1d824ab2007-09-17 11:58:04 +1000253 argv[0] = shell;
Damien Miller95def091999-11-25 00:26:21 +1100254 argv[1] = "-c";
255 argv[2] = command_string;
256 argv[3] = NULL;
257
258 /* Execute the proxy command. Note that we gave up any
259 extra privileges above. */
Damien Miller6fb6fd52011-01-16 23:17:45 +1100260 signal(SIGPIPE, SIG_DFL);
Kevin Stevesfcd5d602001-01-07 11:45:22 +0000261 execv(argv[0], argv);
262 perror(argv[0]);
Damien Miller95def091999-11-25 00:26:21 +1100263 exit(1);
264 }
265 /* Parent. */
266 if (pid < 0)
267 fatal("fork failed: %.100s", strerror(errno));
Damien Miller8c4e18a2002-09-19 12:05:02 +1000268 else
269 proxy_command_pid = pid; /* save pid to clean up later */
Damien Miller95def091999-11-25 00:26:21 +1100270
271 /* Close child side of the descriptors. */
272 close(pin[0]);
273 close(pout[1]);
274
275 /* Free the command name. */
Darren Tuckera627d422013-06-02 07:31:17 +1000276 free(command_string);
Damien Miller95def091999-11-25 00:26:21 +1100277
278 /* Set the connection file descriptors. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000279 if (ssh_packet_set_connection(ssh, pout[0], pin[1]) == NULL)
280 return -1; /* ssh_packet_set_connection logs error */
Damien Miller95def091999-11-25 00:26:21 +1100281
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000282 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000283}
284
Damien Millera41ccca2010-10-07 22:07:32 +1100285void
286ssh_kill_proxy_command(void)
287{
288 /*
289 * Send SIGHUP to proxy command if used. We don't wait() in
290 * case it hangs and instead rely on init to reap the child
291 */
292 if (proxy_command_pid > 1)
Damien Miller45fcdaa2010-10-07 22:07:58 +1100293 kill(proxy_command_pid, SIGHUP);
Damien Millera41ccca2010-10-07 22:07:32 +1100294}
295
Darren Tuckerb59162d2018-02-23 15:20:42 +1100296#ifdef HAVE_IFADDRS_H
Damien Miller95def091999-11-25 00:26:21 +1100297/*
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000298 * Search a interface address list (returned from getifaddrs(3)) for an
djm@openbsd.org001aa552018-04-10 00:10:49 +0000299 * address that matches the desired address family on the specified interface.
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000300 * Returns 0 and fills in *resultp and *rlenp on success. Returns -1 on failure.
301 */
302static int
303check_ifaddrs(const char *ifname, int af, const struct ifaddrs *ifaddrs,
304 struct sockaddr_storage *resultp, socklen_t *rlenp)
305{
306 struct sockaddr_in6 *sa6;
307 struct sockaddr_in *sa;
308 struct in6_addr *v6addr;
309 const struct ifaddrs *ifa;
310 int allow_local;
311
312 /*
313 * Prefer addresses that are not loopback or linklocal, but use them
314 * if nothing else matches.
315 */
316 for (allow_local = 0; allow_local < 2; allow_local++) {
317 for (ifa = ifaddrs; ifa != NULL; ifa = ifa->ifa_next) {
318 if (ifa->ifa_addr == NULL || ifa->ifa_name == NULL ||
319 (ifa->ifa_flags & IFF_UP) == 0 ||
320 ifa->ifa_addr->sa_family != af ||
321 strcmp(ifa->ifa_name, options.bind_interface) != 0)
322 continue;
323 switch (ifa->ifa_addr->sa_family) {
324 case AF_INET:
325 sa = (struct sockaddr_in *)ifa->ifa_addr;
326 if (!allow_local && sa->sin_addr.s_addr ==
327 htonl(INADDR_LOOPBACK))
328 continue;
329 if (*rlenp < sizeof(struct sockaddr_in)) {
330 error("%s: v4 addr doesn't fit",
331 __func__);
332 return -1;
333 }
334 *rlenp = sizeof(struct sockaddr_in);
335 memcpy(resultp, sa, *rlenp);
336 return 0;
337 case AF_INET6:
338 sa6 = (struct sockaddr_in6 *)ifa->ifa_addr;
339 v6addr = &sa6->sin6_addr;
340 if (!allow_local &&
341 (IN6_IS_ADDR_LINKLOCAL(v6addr) ||
342 IN6_IS_ADDR_LOOPBACK(v6addr)))
343 continue;
344 if (*rlenp < sizeof(struct sockaddr_in6)) {
345 error("%s: v6 addr doesn't fit",
346 __func__);
347 return -1;
348 }
349 *rlenp = sizeof(struct sockaddr_in6);
350 memcpy(resultp, sa6, *rlenp);
351 return 0;
352 }
353 }
354 }
355 return -1;
356}
Darren Tuckerb59162d2018-02-23 15:20:42 +1100357#endif
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000358
359/*
dtucker@openbsd.org3ba6e682018-07-19 23:03:16 +0000360 * Creates a socket for use as the ssh connection.
Damien Miller95def091999-11-25 00:26:21 +1100361 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000362static int
dtucker@openbsd.org95d41e92018-07-19 10:28:47 +0000363ssh_create_socket(struct addrinfo *ai)
Damien Miller95def091999-11-25 00:26:21 +1100364{
dtucker@openbsd.org258dc8b2018-07-18 11:34:04 +0000365 int sock, r;
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000366 struct sockaddr_storage bindaddr;
367 socklen_t bindaddrlen = 0;
Damien Millerd1a7a9c2014-02-07 09:24:33 +1100368 struct addrinfo hints, *res = NULL;
Darren Tuckerb59162d2018-02-23 15:20:42 +1100369#ifdef HAVE_IFADDRS_H
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000370 struct ifaddrs *ifaddrs = NULL;
Darren Tuckerb59162d2018-02-23 15:20:42 +1100371#endif
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000372 char ntop[NI_MAXHOST];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000373
Darren Tucker7bd98e72010-01-10 10:31:12 +1100374 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Darren Tucker6e7fe1c2010-01-08 17:07:22 +1100375 if (sock < 0) {
Darren Tuckere6e52f82013-10-10 10:28:07 +1100376 error("socket: %s", strerror(errno));
Darren Tucker6e7fe1c2010-01-08 17:07:22 +1100377 return -1;
378 }
379 fcntl(sock, F_SETFD, FD_CLOEXEC);
Ben Lindstrome0f88042001-04-30 13:06:24 +0000380
381 /* Bind the socket to an alternative local IP address */
dtucker@openbsd.org95d41e92018-07-19 10:28:47 +0000382 if (options.bind_address == NULL && options.bind_interface == NULL)
Ben Lindstrome0f88042001-04-30 13:06:24 +0000383 return sock;
384
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000385 if (options.bind_address != NULL) {
Damien Millerd1a7a9c2014-02-07 09:24:33 +1100386 memset(&hints, 0, sizeof(hints));
387 hints.ai_family = ai->ai_family;
388 hints.ai_socktype = ai->ai_socktype;
389 hints.ai_protocol = ai->ai_protocol;
390 hints.ai_flags = AI_PASSIVE;
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000391 if ((r = getaddrinfo(options.bind_address, NULL,
392 &hints, &res)) != 0) {
Damien Millerd1a7a9c2014-02-07 09:24:33 +1100393 error("getaddrinfo: %s: %s", options.bind_address,
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000394 ssh_gai_strerror(r));
395 goto fail;
Damien Millerd1a7a9c2014-02-07 09:24:33 +1100396 }
dtucker@openbsd.org3e19fb92018-02-23 04:18:46 +0000397 if (res == NULL) {
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000398 error("getaddrinfo: no addrs");
399 goto fail;
dtucker@openbsd.org3e19fb92018-02-23 04:18:46 +0000400 }
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000401 memcpy(&bindaddr, res->ai_addr, res->ai_addrlen);
402 bindaddrlen = res->ai_addrlen;
403 } else if (options.bind_interface != NULL) {
Darren Tuckerb59162d2018-02-23 15:20:42 +1100404#ifdef HAVE_IFADDRS_H
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000405 if ((r = getifaddrs(&ifaddrs)) != 0) {
406 error("getifaddrs: %s: %s", options.bind_interface,
407 strerror(errno));
408 goto fail;
409 }
410 bindaddrlen = sizeof(bindaddr);
411 if (check_ifaddrs(options.bind_interface, ai->ai_family,
412 ifaddrs, &bindaddr, &bindaddrlen) != 0) {
413 logit("getifaddrs: %s: no suitable addresses",
414 options.bind_interface);
415 goto fail;
416 }
Darren Tuckerb59162d2018-02-23 15:20:42 +1100417#else
418 error("BindInterface not supported on this platform.");
419#endif
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000420 }
421 if ((r = getnameinfo((struct sockaddr *)&bindaddr, bindaddrlen,
422 ntop, sizeof(ntop), NULL, 0, NI_NUMERICHOST)) != 0) {
423 error("%s: getnameinfo failed: %s", __func__,
424 ssh_gai_strerror(r));
425 goto fail;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000426 }
dtucker@openbsd.org258dc8b2018-07-18 11:34:04 +0000427 if (bind(sock, (struct sockaddr *)&bindaddr, bindaddrlen) != 0) {
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000428 error("bind %s: %s", ntop, strerror(errno));
429 goto fail;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000430 }
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000431 debug("%s: bound to %s", __func__, ntop);
432 /* success */
433 goto out;
434fail:
435 close(sock);
436 sock = -1;
437 out:
Damien Millerd1a7a9c2014-02-07 09:24:33 +1100438 if (res != NULL)
439 freeaddrinfo(res);
Darren Tuckerb59162d2018-02-23 15:20:42 +1100440#ifdef HAVE_IFADDRS_H
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000441 if (ifaddrs != NULL)
442 freeifaddrs(ifaddrs);
Darren Tuckerb59162d2018-02-23 15:20:42 +1100443#endif
Damien Miller95def091999-11-25 00:26:21 +1100444 return sock;
445}
446
djm@openbsd.org45404282017-06-24 05:37:44 +0000447/*
448 * Wait up to *timeoutp milliseconds for fd to be readable. Updates
449 * *timeoutp with time remaining.
450 * Returns 0 if fd ready or -1 on timeout or error (see errno).
451 */
452static int
453waitrfd(int fd, int *timeoutp)
454{
455 struct pollfd pfd;
456 struct timeval t_start;
457 int oerrno, r;
458
dtucker@openbsd.org@openbsd.org5db6fbf2017-11-25 06:46:22 +0000459 monotime_tv(&t_start);
djm@openbsd.org45404282017-06-24 05:37:44 +0000460 pfd.fd = fd;
461 pfd.events = POLLIN;
462 for (; *timeoutp >= 0;) {
463 r = poll(&pfd, 1, *timeoutp);
464 oerrno = errno;
465 ms_subtract_diff(&t_start, timeoutp);
466 errno = oerrno;
467 if (r > 0)
468 return 0;
469 else if (r == -1 && errno != EAGAIN)
470 return -1;
471 else if (r == 0)
472 break;
473 }
474 /* timeout */
475 errno = ETIMEDOUT;
476 return -1;
477}
478
Damien Millerb78d5eb2003-05-16 11:39:04 +1000479static int
480timeout_connect(int sockfd, const struct sockaddr *serv_addr,
Damien Miller67bd0622007-09-17 12:06:57 +1000481 socklen_t addrlen, int *timeoutp)
Damien Millerb78d5eb2003-05-16 11:39:04 +1000482{
djm@openbsd.org45404282017-06-24 05:37:44 +0000483 int optval = 0;
484 socklen_t optlen = sizeof(optval);
Damien Millerb78d5eb2003-05-16 11:39:04 +1000485
djm@openbsd.org45404282017-06-24 05:37:44 +0000486 /* No timeout: just do a blocking connect() */
487 if (*timeoutp <= 0)
488 return connect(sockfd, serv_addr, addrlen);
Damien Millerb78d5eb2003-05-16 11:39:04 +1000489
Damien Millerf6723f02004-01-27 21:21:27 +1100490 set_nonblock(sockfd);
djm@openbsd.org45404282017-06-24 05:37:44 +0000491 if (connect(sockfd, serv_addr, addrlen) == 0) {
492 /* Succeeded already? */
Damien Millerf6723f02004-01-27 21:21:27 +1100493 unset_nonblock(sockfd);
djm@openbsd.org45404282017-06-24 05:37:44 +0000494 return 0;
495 } else if (errno != EINPROGRESS)
496 return -1;
497
498 if (waitrfd(sockfd, timeoutp) == -1)
499 return -1;
500
501 /* Completed or failed */
502 if (getsockopt(sockfd, SOL_SOCKET, SO_ERROR, &optval, &optlen) == -1) {
503 debug("getsockopt: %s", strerror(errno));
504 return -1;
Damien Millerf6723f02004-01-27 21:21:27 +1100505 }
djm@openbsd.org45404282017-06-24 05:37:44 +0000506 if (optval != 0) {
507 errno = optval;
508 return -1;
Damien Miller67bd0622007-09-17 12:06:57 +1000509 }
djm@openbsd.org45404282017-06-24 05:37:44 +0000510 unset_nonblock(sockfd);
511 return 0;
Damien Millerb78d5eb2003-05-16 11:39:04 +1000512}
513
Damien Miller95def091999-11-25 00:26:21 +1100514/*
Damien Miller34132e52000-01-14 15:45:46 +1100515 * Opens a TCP/IP connection to the remote server on the given host.
516 * The address of the remote host will be returned in hostaddr.
dtucker@openbsd.org95d41e92018-07-19 10:28:47 +0000517 * If port is 0, the default port will be used.
Damien Miller95def091999-11-25 00:26:21 +1100518 * Connection_attempts specifies the maximum number of tries (one per
519 * second). If proxy_command is non-NULL, it specifies the command (with %h
520 * and %p substituted for host and port, respectively) to use to contact
521 * the daemon.
522 */
Damien Miller0faf7472013-10-17 11:47:23 +1100523static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000524ssh_connect_direct(struct ssh *ssh, const char *host, struct addrinfo *aitop,
Damien Miller0faf7472013-10-17 11:47:23 +1100525 struct sockaddr_storage *hostaddr, u_short port, int family,
dtucker@openbsd.org95d41e92018-07-19 10:28:47 +0000526 int connection_attempts, int *timeout_ms, int want_keepalive)
Damien Miller95def091999-11-25 00:26:21 +1100527{
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000528 int on = 1;
djm@openbsd.org7c779912018-01-23 05:17:04 +0000529 int oerrno, sock = -1, attempt;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000530 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller0faf7472013-10-17 11:47:23 +1100531 struct addrinfo *ai;
Damien Miller95def091999-11-25 00:26:21 +1100532
dtucker@openbsd.org95d41e92018-07-19 10:28:47 +0000533 debug2("%s", __func__);
djm@openbsd.org88b6fcd2015-11-19 08:23:27 +0000534 memset(ntop, 0, sizeof(ntop));
535 memset(strport, 0, sizeof(strport));
Damien Miller95def091999-11-25 00:26:21 +1100536
Damien Miller56e5e6a2006-04-23 12:08:59 +1000537 for (attempt = 0; attempt < connection_attempts; attempt++) {
Damien Millerf4bcd102006-10-24 03:02:23 +1000538 if (attempt > 0) {
539 /* Sleep a moment before retrying. */
540 sleep(1);
Damien Miller95def091999-11-25 00:26:21 +1100541 debug("Trying again...");
Damien Millerf4bcd102006-10-24 03:02:23 +1000542 }
Damien Miller56e5e6a2006-04-23 12:08:59 +1000543 /*
544 * Loop through addresses for this host, and try each one in
545 * sequence until the connection succeeds.
546 */
Damien Miller34132e52000-01-14 15:45:46 +1100547 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller0faf7472013-10-17 11:47:23 +1100548 if (ai->ai_family != AF_INET &&
djm@openbsd.org7c779912018-01-23 05:17:04 +0000549 ai->ai_family != AF_INET6) {
550 errno = EAFNOSUPPORT;
Damien Miller34132e52000-01-14 15:45:46 +1100551 continue;
djm@openbsd.org7c779912018-01-23 05:17:04 +0000552 }
Damien Miller34132e52000-01-14 15:45:46 +1100553 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
554 ntop, sizeof(ntop), strport, sizeof(strport),
555 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
djm@openbsd.org7c779912018-01-23 05:17:04 +0000556 oerrno = errno;
djm@openbsd.org46152af2015-09-04 04:55:24 +0000557 error("%s: getnameinfo failed", __func__);
djm@openbsd.org7c779912018-01-23 05:17:04 +0000558 errno = oerrno;
Damien Miller34132e52000-01-14 15:45:46 +1100559 continue;
560 }
561 debug("Connecting to %.200s [%.100s] port %s.",
562 host, ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +1100563
Damien Miller34132e52000-01-14 15:45:46 +1100564 /* Create a socket for connecting. */
dtucker@openbsd.org95d41e92018-07-19 10:28:47 +0000565 sock = ssh_create_socket(ai);
stsp@openbsd.orga60c5dc2018-01-23 18:33:49 +0000566 if (sock < 0) {
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000567 /* Any error is already output */
djm@openbsd.org7c779912018-01-23 05:17:04 +0000568 errno = 0;
Damien Miller34132e52000-01-14 15:45:46 +1100569 continue;
stsp@openbsd.orga60c5dc2018-01-23 18:33:49 +0000570 }
Damien Miller95def091999-11-25 00:26:21 +1100571
Damien Millerb78d5eb2003-05-16 11:39:04 +1000572 if (timeout_connect(sock, ai->ai_addr, ai->ai_addrlen,
Damien Miller67bd0622007-09-17 12:06:57 +1000573 timeout_ms) >= 0) {
Damien Miller34132e52000-01-14 15:45:46 +1100574 /* Successful connection. */
Ben Lindstroma3700052001-04-05 23:26:32 +0000575 memcpy(hostaddr, ai->ai_addr, ai->ai_addrlen);
Damien Miller95def091999-11-25 00:26:21 +1100576 break;
Damien Miller34132e52000-01-14 15:45:46 +1100577 } else {
djm@openbsd.org7c779912018-01-23 05:17:04 +0000578 oerrno = errno;
Ben Lindstrom728aa7e2002-07-15 17:48:11 +0000579 debug("connect to address %s port %s: %s",
580 ntop, strport, strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100581 close(sock);
Damien Miller56e5e6a2006-04-23 12:08:59 +1000582 sock = -1;
djm@openbsd.org7c779912018-01-23 05:17:04 +0000583 errno = oerrno;
Damien Miller95def091999-11-25 00:26:21 +1100584 }
Damien Miller95def091999-11-25 00:26:21 +1100585 }
Damien Miller56e5e6a2006-04-23 12:08:59 +1000586 if (sock != -1)
Damien Miller34132e52000-01-14 15:45:46 +1100587 break; /* Successful connection. */
Damien Miller95def091999-11-25 00:26:21 +1100588 }
Damien Miller34132e52000-01-14 15:45:46 +1100589
Damien Miller95def091999-11-25 00:26:21 +1100590 /* Return failure if we didn't get a successful connection. */
Damien Miller56e5e6a2006-04-23 12:08:59 +1000591 if (sock == -1) {
Darren Tuckerb2161e32005-01-20 11:00:46 +1100592 error("ssh: connect to host %s port %s: %s",
djm@openbsd.org7c779912018-01-23 05:17:04 +0000593 host, strport, errno == 0 ? "failure" : strerror(errno));
594 return -1;
Ben Lindstroma6cd75c2002-07-11 04:00:19 +0000595 }
Damien Miller95def091999-11-25 00:26:21 +1100596
597 debug("Connection established.");
598
Damien Miller12c150e2003-12-17 16:31:10 +1100599 /* Set SO_KEEPALIVE if requested. */
Damien Miller67bd0622007-09-17 12:06:57 +1000600 if (want_keepalive &&
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000601 setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE, (void *)&on,
602 sizeof(on)) < 0)
603 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100604
605 /* Set the connection. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000606 if (ssh_packet_set_connection(ssh, sock, sock) == NULL)
607 return -1; /* ssh_packet_set_connection logs error */
Damien Miller95def091999-11-25 00:26:21 +1100608
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000609 return 0;
Damien Miller95def091999-11-25 00:26:21 +1100610}
611
Damien Miller0faf7472013-10-17 11:47:23 +1100612int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000613ssh_connect(struct ssh *ssh, const char *host, struct addrinfo *addrs,
Damien Miller0faf7472013-10-17 11:47:23 +1100614 struct sockaddr_storage *hostaddr, u_short port, int family,
dtucker@openbsd.org95d41e92018-07-19 10:28:47 +0000615 int connection_attempts, int *timeout_ms, int want_keepalive)
Damien Miller0faf7472013-10-17 11:47:23 +1100616{
617 if (options.proxy_command == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000618 return ssh_connect_direct(ssh, host, addrs, hostaddr, port,
dtucker@openbsd.org95d41e92018-07-19 10:28:47 +0000619 family, connection_attempts, timeout_ms, want_keepalive);
Damien Miller0faf7472013-10-17 11:47:23 +1100620 } else if (strcmp(options.proxy_command, "-") == 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000621 if ((ssh_packet_set_connection(ssh,
622 STDIN_FILENO, STDOUT_FILENO)) == NULL)
623 return -1; /* ssh_packet_set_connection logs error */
624 return 0;
Damien Miller0faf7472013-10-17 11:47:23 +1100625 } else if (options.proxy_use_fdpass) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000626 return ssh_proxy_fdpass_connect(ssh, host, port,
Damien Miller0faf7472013-10-17 11:47:23 +1100627 options.proxy_command);
628 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000629 return ssh_proxy_connect(ssh, host, port, options.proxy_command);
Damien Miller0faf7472013-10-17 11:47:23 +1100630}
631
Darren Tucker00c15182012-09-06 21:21:56 +1000632static void
633send_client_banner(int connection_out, int minor1)
634{
Darren Tucker00c15182012-09-06 21:21:56 +1000635 /* Send our own protocol version identification. */
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000636 xasprintf(&client_version_string, "SSH-%d.%d-%.100s\r\n",
637 PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2, SSH_VERSION);
markus@openbsd.orga3068632016-01-14 16:17:39 +0000638 if (atomicio(vwrite, connection_out, client_version_string,
Darren Tucker00c15182012-09-06 21:21:56 +1000639 strlen(client_version_string)) != strlen(client_version_string))
640 fatal("write: %.100s", strerror(errno));
641 chop(client_version_string);
642 debug("Local version string %.100s", client_version_string);
643}
644
Damien Milleraae6c611999-12-06 11:47:28 +1100645/*
Damien Miller95def091999-11-25 00:26:21 +1100646 * Waits for the server identification string, and sends our own
647 * identification string.
648 */
Darren Tucker1cc55d72009-06-21 18:17:19 +1000649void
Damien Miller67bd0622007-09-17 12:06:57 +1000650ssh_exchange_identification(int timeout_ms)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000651{
Damien Miller95def091999-11-25 00:26:21 +1100652 char buf[256], remote_version[256]; /* must be same size! */
Damien Millereccb9de2005-06-17 12:59:34 +1000653 int remote_major, remote_minor, mismatch;
Damien Miller95def091999-11-25 00:26:21 +1100654 int connection_in = packet_get_connection_in();
655 int connection_out = packet_get_connection_out();
Damien Miller1e88ea62006-07-10 20:15:56 +1000656 u_int i, n;
Damien Miller67bd0622007-09-17 12:06:57 +1000657 size_t len;
djm@openbsd.org45404282017-06-24 05:37:44 +0000658 int rc;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000659
djm@openbsd.org99f95ba2017-04-30 23:11:45 +0000660 send_client_banner(connection_out, 0);
Darren Tucker00c15182012-09-06 21:21:56 +1000661
Damien Millerb253cc42005-05-26 12:23:44 +1000662 /* Read other side's version identification. */
Damien Miller1e88ea62006-07-10 20:15:56 +1000663 for (n = 0;;) {
Damien Millerf6d9e222000-06-18 14:50:44 +1000664 for (i = 0; i < sizeof(buf) - 1; i++) {
Damien Miller67bd0622007-09-17 12:06:57 +1000665 if (timeout_ms > 0) {
djm@openbsd.org45404282017-06-24 05:37:44 +0000666 rc = waitrfd(connection_in, &timeout_ms);
667 if (rc == -1 && errno == ETIMEDOUT) {
Damien Miller67bd0622007-09-17 12:06:57 +1000668 fatal("Connection timed out during "
669 "banner exchange");
djm@openbsd.org45404282017-06-24 05:37:44 +0000670 } else if (rc == -1) {
671 fatal("%s: %s",
672 __func__, strerror(errno));
Damien Miller67bd0622007-09-17 12:06:57 +1000673 }
674 }
675
markus@openbsd.orga3068632016-01-14 16:17:39 +0000676 len = atomicio(read, connection_in, &buf[i], 1);
Damien Miller46d38de2005-07-17 17:02:09 +1000677 if (len != 1 && errno == EPIPE)
Damien Miller67bd0622007-09-17 12:06:57 +1000678 fatal("ssh_exchange_identification: "
679 "Connection closed by remote host");
Damien Millerb253cc42005-05-26 12:23:44 +1000680 else if (len != 1)
Damien Miller67bd0622007-09-17 12:06:57 +1000681 fatal("ssh_exchange_identification: "
682 "read: %.100s", strerror(errno));
Damien Millerf6d9e222000-06-18 14:50:44 +1000683 if (buf[i] == '\r') {
684 buf[i] = '\n';
685 buf[i + 1] = 0;
686 continue; /**XXX wait for \n */
687 }
688 if (buf[i] == '\n') {
689 buf[i + 1] = 0;
690 break;
691 }
Damien Miller1e88ea62006-07-10 20:15:56 +1000692 if (++n > 65536)
Damien Miller67bd0622007-09-17 12:06:57 +1000693 fatal("ssh_exchange_identification: "
694 "No banner received");
Damien Miller95def091999-11-25 00:26:21 +1100695 }
Damien Millerf6d9e222000-06-18 14:50:44 +1000696 buf[sizeof(buf) - 1] = 0;
697 if (strncmp(buf, "SSH-", 4) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100698 break;
Damien Millerf6d9e222000-06-18 14:50:44 +1000699 debug("ssh_exchange_identification: %s", buf);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000700 }
Damien Miller1383bd82000-04-06 12:32:37 +1000701 server_version_string = xstrdup(buf);
Damien Miller95def091999-11-25 00:26:21 +1100702
Damien Miller5428f641999-11-25 11:54:57 +1100703 /*
704 * Check that the versions match. In future this might accept
705 * several versions and set appropriate flags to handle them.
706 */
Damien Miller1383bd82000-04-06 12:32:37 +1000707 if (sscanf(server_version_string, "SSH-%d.%d-%[^\n]\n",
708 &remote_major, &remote_minor, remote_version) != 3)
Damien Miller95def091999-11-25 00:26:21 +1100709 fatal("Bad remote protocol version identification: '%.100s'", buf);
710 debug("Remote protocol version %d.%d, remote software version %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100711 remote_major, remote_minor, remote_version);
Damien Miller95def091999-11-25 00:26:21 +1100712
markus@openbsd.org48b3b2b2015-01-19 20:20:20 +0000713 active_state->compat = compat_datafellows(remote_version);
Damien Miller78928792000-04-12 20:17:38 +1000714 mismatch = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000715
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000716 switch (remote_major) {
Damien Miller78928792000-04-12 20:17:38 +1000717 case 2:
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000718 break;
719 case 1:
720 if (remote_minor != 99)
721 mismatch = 1;
djm@openbsd.org99f95ba2017-04-30 23:11:45 +0000722 break;
Damien Miller4af51302000-04-16 11:18:38 +1000723 default:
Damien Miller78928792000-04-12 20:17:38 +1000724 mismatch = 1;
725 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000726 }
Damien Miller78928792000-04-12 20:17:38 +1000727 if (mismatch)
Damien Miller95def091999-11-25 00:26:21 +1100728 fatal("Protocol major versions differ: %d vs. %d",
djm@openbsd.org99f95ba2017-04-30 23:11:45 +0000729 PROTOCOL_MAJOR_2, remote_major);
Damien Miller324541e2013-12-31 12:25:40 +1100730 if ((datafellows & SSH_BUG_RSASIGMD5) != 0)
731 logit("Server version \"%.100s\" uses unsafe RSA signature "
732 "scheme; disabling use of RSA keys", remote_version);
Damien Miller1383bd82000-04-06 12:32:37 +1000733 chop(server_version_string);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000734}
735
Ben Lindstromb6c06d92001-02-10 23:21:09 +0000736/* defaults to 'no' */
Ben Lindstrombba81212001-06-25 05:01:22 +0000737static int
Damien Millere3980042001-10-10 15:02:03 +1000738confirm(const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000739{
Damien Miller49d795c2002-01-22 23:34:12 +1100740 const char *msg, *again = "Please type 'yes' or 'no': ";
741 char *p;
742 int ret = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000743
Ben Lindstromb6c06d92001-02-10 23:21:09 +0000744 if (options.batch_mode)
745 return 0;
Damien Miller49d795c2002-01-22 23:34:12 +1100746 for (msg = prompt;;msg = again) {
747 p = read_passphrase(msg, RP_ECHO);
djm@openbsd.orge0ce54c2017-12-06 05:06:21 +0000748 if (p == NULL)
749 return 0;
750 p[strcspn(p, "\n")] = '\0';
751 if (p[0] == '\0' || strcasecmp(p, "no") == 0)
Damien Miller49d795c2002-01-22 23:34:12 +1100752 ret = 0;
djm@openbsd.orge0ce54c2017-12-06 05:06:21 +0000753 else if (strcasecmp(p, "yes") == 0)
Damien Miller49d795c2002-01-22 23:34:12 +1100754 ret = 1;
Darren Tuckera627d422013-06-02 07:31:17 +1000755 free(p);
Damien Miller49d795c2002-01-22 23:34:12 +1100756 if (ret != -1)
757 return ret;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000758 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000759}
760
Damien Miller0a80ca12010-02-27 07:55:05 +1100761static int
djm@openbsd.orgecac7e12018-09-20 03:30:44 +0000762check_host_cert(const char *host, const struct sshkey *key)
Damien Miller0a80ca12010-02-27 07:55:05 +1100763{
764 const char *reason;
djm@openbsd.orgecac7e12018-09-20 03:30:44 +0000765 int r;
Damien Miller0a80ca12010-02-27 07:55:05 +1100766
djm@openbsd.orgecac7e12018-09-20 03:30:44 +0000767 if (sshkey_cert_check_authority(key, 1, 0, host, &reason) != 0) {
Damien Miller0a80ca12010-02-27 07:55:05 +1100768 error("%s", reason);
769 return 0;
770 }
djm@openbsd.orgecac7e12018-09-20 03:30:44 +0000771 if (sshbuf_len(key->cert->critical) != 0) {
Damien Miller4e270b02010-04-16 15:56:21 +1000772 error("Certificate for %s contains unsupported "
773 "critical options(s)", host);
Damien Miller0a80ca12010-02-27 07:55:05 +1100774 return 0;
775 }
djm@openbsd.orgecac7e12018-09-20 03:30:44 +0000776 if ((r = sshkey_check_cert_sigtype(key,
777 options.ca_sign_algorithms)) != 0) {
778 logit("%s: certificate signature algorithm %s: %s", __func__,
779 (key->cert == NULL || key->cert->signature_type == NULL) ?
780 "(null)" : key->cert->signature_type, ssh_err(r));
781 return 0;
782 }
783
Damien Miller0a80ca12010-02-27 07:55:05 +1100784 return 1;
785}
786
Damien Millerd925dcd2010-12-01 12:21:51 +1100787static int
788sockaddr_is_local(struct sockaddr *hostaddr)
789{
790 switch (hostaddr->sa_family) {
791 case AF_INET:
792 return (ntohl(((struct sockaddr_in *)hostaddr)->
793 sin_addr.s_addr) >> 24) == IN_LOOPBACKNET;
794 case AF_INET6:
795 return IN6_IS_ADDR_LOOPBACK(
796 &(((struct sockaddr_in6 *)hostaddr)->sin6_addr));
797 default:
798 return 0;
799 }
800}
801
802/*
803 * Prepare the hostname and ip address strings that are used to lookup
804 * host keys in known_hosts files. These may have a port number appended.
805 */
806void
807get_hostfile_hostname_ipaddr(char *hostname, struct sockaddr *hostaddr,
808 u_short port, char **hostfile_hostname, char **hostfile_ipaddr)
809{
810 char ntop[NI_MAXHOST];
811 socklen_t addrlen;
812
813 switch (hostaddr == NULL ? -1 : hostaddr->sa_family) {
814 case -1:
815 addrlen = 0;
816 break;
817 case AF_INET:
818 addrlen = sizeof(struct sockaddr_in);
819 break;
820 case AF_INET6:
821 addrlen = sizeof(struct sockaddr_in6);
822 break;
823 default:
824 addrlen = sizeof(struct sockaddr);
825 break;
826 }
827
828 /*
829 * We don't have the remote ip-address for connections
830 * using a proxy command
831 */
832 if (hostfile_ipaddr != NULL) {
833 if (options.proxy_command == NULL) {
834 if (getnameinfo(hostaddr, addrlen,
835 ntop, sizeof(ntop), NULL, 0, NI_NUMERICHOST) != 0)
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000836 fatal("%s: getnameinfo failed", __func__);
Damien Millerd925dcd2010-12-01 12:21:51 +1100837 *hostfile_ipaddr = put_host_port(ntop, port);
838 } else {
839 *hostfile_ipaddr = xstrdup("<no hostip for proxy "
840 "command>");
841 }
842 }
843
844 /*
845 * Allow the user to record the key under a different name or
846 * differentiate a non-standard port. This is useful for ssh
847 * tunneling over forwarded connections or if you run multiple
848 * sshd's on different ports on the same machine.
849 */
850 if (hostfile_hostname != NULL) {
851 if (options.host_key_alias != NULL) {
852 *hostfile_hostname = xstrdup(options.host_key_alias);
853 debug("using hostkeyalias: %s", *hostfile_hostname);
854 } else {
855 *hostfile_hostname = put_host_port(hostname, port);
856 }
857 }
858}
859
Damien Miller95def091999-11-25 00:26:21 +1100860/*
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000861 * check whether the supplied host key is valid, return -1 if the key
Damien Miller295ee632011-05-29 21:42:31 +1000862 * is not valid. user_hostfile[0] will not be updated if 'readonly' is true.
Damien Miller95def091999-11-25 00:26:21 +1100863 */
Damien Millerda828392006-08-05 11:35:45 +1000864#define RDRW 0
865#define RDONLY 1
866#define ROQUIET 2
Ben Lindstrombba81212001-06-25 05:01:22 +0000867static int
Damien Millerda828392006-08-05 11:35:45 +1000868check_host_key(char *hostname, struct sockaddr *hostaddr, u_short port,
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000869 struct sshkey *host_key, int readonly,
Damien Miller295ee632011-05-29 21:42:31 +1000870 char **user_hostfiles, u_int num_user_hostfiles,
871 char **system_hostfiles, u_int num_system_hostfiles)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000872{
Damien Miller95def091999-11-25 00:26:21 +1100873 HostStatus host_status;
874 HostStatus ip_status;
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000875 struct sshkey *raw_key = NULL;
Damien Miller295ee632011-05-29 21:42:31 +1000876 char *ip = NULL, *host = NULL;
877 char hostline[1000], *hostp, *fp, *ra;
Damien Miller49d795c2002-01-22 23:34:12 +1100878 char msg[1024];
Damien Miller295ee632011-05-29 21:42:31 +1000879 const char *type;
Damien Millerd925dcd2010-12-01 12:21:51 +1100880 const struct hostkey_entry *host_found, *ip_found;
Damien Miller295ee632011-05-29 21:42:31 +1000881 int len, cancelled_forwarding = 0;
882 int local = sockaddr_is_local(hostaddr);
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +0000883 int r, want_cert = sshkey_is_cert(host_key), host_ip_differ = 0;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000884 int hostkey_trusted = 0; /* Known or explicitly accepted by user */
Damien Miller295ee632011-05-29 21:42:31 +1000885 struct hostkeys *host_hostkeys, *ip_hostkeys;
886 u_int i;
Damien Miller34132e52000-01-14 15:45:46 +1100887
888 /*
889 * Force accepting of the host key for loopback/localhost. The
890 * problem is that if the home directory is NFS-mounted to multiple
891 * machines, localhost will refer to a different machine in each of
892 * them, and the user will get bogus HOST_CHANGED warnings. This
893 * essentially disables host authentication for localhost; however,
894 * this is probably not a real problem.
895 */
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +0000896 if (options.no_host_authentication_for_localhost == 1 && local &&
897 options.host_key_alias == NULL) {
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000898 debug("Forcing accepting of host key for "
899 "loopback/localhost.");
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000900 return 0;
Damien Miller34132e52000-01-14 15:45:46 +1100901 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000902
Damien Milleraae6c611999-12-06 11:47:28 +1100903 /*
Damien Millerd925dcd2010-12-01 12:21:51 +1100904 * Prepare the hostname and address strings used for hostkey lookup.
905 * In some cases, these will have a port number appended.
Damien Milleraae6c611999-12-06 11:47:28 +1100906 */
Damien Millerd925dcd2010-12-01 12:21:51 +1100907 get_hostfile_hostname_ipaddr(hostname, hostaddr, port, &host, &ip);
Darren Tucker78913e02008-06-13 04:47:34 +1000908
909 /*
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000910 * Turn off check_host_ip if the connection is to localhost, via proxy
911 * command or if we don't have a hostname to compare with
912 */
Darren Tuckerda345532006-07-10 23:04:19 +1000913 if (options.check_host_ip && (local ||
914 strcmp(hostname, ip) == 0 || options.proxy_command != NULL))
Damien Milleraae6c611999-12-06 11:47:28 +1100915 options.check_host_ip = 0;
916
Damien Millerd925dcd2010-12-01 12:21:51 +1100917 host_hostkeys = init_hostkeys();
Damien Miller295ee632011-05-29 21:42:31 +1000918 for (i = 0; i < num_user_hostfiles; i++)
919 load_hostkeys(host_hostkeys, host, user_hostfiles[i]);
920 for (i = 0; i < num_system_hostfiles; i++)
921 load_hostkeys(host_hostkeys, host, system_hostfiles[i]);
Damien Millerd925dcd2010-12-01 12:21:51 +1100922
923 ip_hostkeys = NULL;
924 if (!want_cert && options.check_host_ip) {
925 ip_hostkeys = init_hostkeys();
Damien Miller295ee632011-05-29 21:42:31 +1000926 for (i = 0; i < num_user_hostfiles; i++)
927 load_hostkeys(ip_hostkeys, ip, user_hostfiles[i]);
928 for (i = 0; i < num_system_hostfiles; i++)
929 load_hostkeys(ip_hostkeys, ip, system_hostfiles[i]);
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000930 }
931
Damien Miller0a80ca12010-02-27 07:55:05 +1100932 retry:
Damien Millerd925dcd2010-12-01 12:21:51 +1100933 /* Reload these as they may have changed on cert->key downgrade */
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +0000934 want_cert = sshkey_is_cert(host_key);
935 type = sshkey_type(host_key);
Damien Miller0a80ca12010-02-27 07:55:05 +1100936
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000937 /*
Damien Miller788f2122005-11-05 15:14:59 +1100938 * Check if the host key is present in the user's list of known
Damien Miller5428f641999-11-25 11:54:57 +1100939 * hosts or in the systemwide list.
940 */
Damien Millerd925dcd2010-12-01 12:21:51 +1100941 host_status = check_key_in_hostkeys(host_hostkeys, host_key,
942 &host_found);
943
Damien Miller5428f641999-11-25 11:54:57 +1100944 /*
Damien Miller5428f641999-11-25 11:54:57 +1100945 * Also perform check for the ip address, skip the check if we are
Damien Miller0a80ca12010-02-27 07:55:05 +1100946 * localhost, looking for a certificate, or the hostname was an ip
947 * address to begin with.
Damien Miller5428f641999-11-25 11:54:57 +1100948 */
Damien Millerd925dcd2010-12-01 12:21:51 +1100949 if (!want_cert && ip_hostkeys != NULL) {
950 ip_status = check_key_in_hostkeys(ip_hostkeys, host_key,
951 &ip_found);
Damien Miller95def091999-11-25 00:26:21 +1100952 if (host_status == HOST_CHANGED &&
Damien Millerd925dcd2010-12-01 12:21:51 +1100953 (ip_status != HOST_CHANGED ||
954 (ip_found != NULL &&
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +0000955 !sshkey_equal(ip_found->key, host_found->key))))
Damien Miller95def091999-11-25 00:26:21 +1100956 host_ip_differ = 1;
Damien Miller95def091999-11-25 00:26:21 +1100957 } else
958 ip_status = host_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000959
Damien Miller95def091999-11-25 00:26:21 +1100960 switch (host_status) {
961 case HOST_OK:
962 /* The host is known and the key matches. */
Damien Miller0a80ca12010-02-27 07:55:05 +1100963 debug("Host '%.200s' is known and matches the %s host %s.",
964 host, type, want_cert ? "certificate" : "key");
Damien Millerd925dcd2010-12-01 12:21:51 +1100965 debug("Found %s in %s:%lu", want_cert ? "CA key" : "key",
966 host_found->file, host_found->line);
djm@openbsd.org6f8ca3b2017-06-24 05:35:05 +0000967 if (want_cert &&
968 !check_host_cert(options.host_key_alias == NULL ?
969 hostname : options.host_key_alias, host_key))
Damien Miller0a80ca12010-02-27 07:55:05 +1100970 goto fail;
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000971 if (options.check_host_ip && ip_status == HOST_NEW) {
Damien Miller0a80ca12010-02-27 07:55:05 +1100972 if (readonly || want_cert)
Damien Miller996acd22003-04-09 20:59:48 +1000973 logit("%s host key for IP address "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000974 "'%.128s' not in list of known hosts.",
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000975 type, ip);
Damien Miller295ee632011-05-29 21:42:31 +1000976 else if (!add_host_to_hostfile(user_hostfiles[0], ip,
Damien Millere1776152005-03-01 21:47:37 +1100977 host_key, options.hash_known_hosts))
Damien Miller996acd22003-04-09 20:59:48 +1000978 logit("Failed to add the %s host key for IP "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000979 "address '%.128s' to the list of known "
dtucker@openbsd.org496aeb22015-05-28 05:41:29 +0000980 "hosts (%.500s).", type, ip,
Damien Miller295ee632011-05-29 21:42:31 +1000981 user_hostfiles[0]);
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000982 else
Damien Miller996acd22003-04-09 20:59:48 +1000983 logit("Warning: Permanently added the %s host "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000984 "key for IP address '%.128s' to the list "
985 "of known hosts.", type, ip);
Damien Miller10288242008-06-30 00:04:03 +1000986 } else if (options.visual_host_key) {
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000987 fp = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000988 options.fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000989 ra = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000990 options.fingerprint_hash, SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000991 if (fp == NULL || ra == NULL)
992 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.orgac3451d2015-09-04 03:57:38 +0000993 logit("Host key fingerprint is %s\n%s", fp, ra);
Darren Tuckera627d422013-06-02 07:31:17 +1000994 free(ra);
995 free(fp);
Damien Miller95def091999-11-25 00:26:21 +1100996 }
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000997 hostkey_trusted = 1;
Damien Miller95def091999-11-25 00:26:21 +1100998 break;
999 case HOST_NEW:
Damien Millerda828392006-08-05 11:35:45 +10001000 if (options.host_key_alias == NULL && port != 0 &&
1001 port != SSH_DEFAULT_PORT) {
1002 debug("checking without port identifier");
Damien Millerece92c82008-11-03 19:25:03 +11001003 if (check_host_key(hostname, hostaddr, 0, host_key,
Damien Miller295ee632011-05-29 21:42:31 +10001004 ROQUIET, user_hostfiles, num_user_hostfiles,
1005 system_hostfiles, num_system_hostfiles) == 0) {
Damien Millerda828392006-08-05 11:35:45 +10001006 debug("found matching key w/out port");
1007 break;
1008 }
1009 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001010 if (readonly || want_cert)
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001011 goto fail;
Damien Miller95def091999-11-25 00:26:21 +11001012 /* The host is new. */
djm@openbsd.org22376d22017-09-03 23:33:13 +00001013 if (options.strict_host_key_checking ==
1014 SSH_STRICT_HOSTKEY_YES) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001015 /*
1016 * User has requested strict host key checking. We
1017 * will not add the host key automatically. The only
1018 * alternative left is to abort.
1019 */
1020 error("No %s host key is known for %.200s and you "
1021 "have requested strict checking.", type, host);
1022 goto fail;
djm@openbsd.org22376d22017-09-03 23:33:13 +00001023 } else if (options.strict_host_key_checking ==
1024 SSH_STRICT_HOSTKEY_ASK) {
Damien Miller7392ae62003-06-11 22:05:25 +10001025 char msg1[1024], msg2[1024];
1026
Damien Millerd925dcd2010-12-01 12:21:51 +11001027 if (show_other_keys(host_hostkeys, host_key))
Damien Miller7392ae62003-06-11 22:05:25 +10001028 snprintf(msg1, sizeof(msg1),
Damien Miller0dc1bef2005-07-17 17:22:45 +10001029 "\nbut keys of different type are already"
1030 " known for this host.");
Damien Miller7392ae62003-06-11 22:05:25 +10001031 else
1032 snprintf(msg1, sizeof(msg1), ".");
Damien Miller95def091999-11-25 00:26:21 +11001033 /* The default */
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001034 fp = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001035 options.fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001036 ra = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001037 options.fingerprint_hash, SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001038 if (fp == NULL || ra == NULL)
1039 fatal("%s: sshkey_fingerprint fail", __func__);
Damien Miller7392ae62003-06-11 22:05:25 +10001040 msg2[0] = '\0';
Damien Miller7392ae62003-06-11 22:05:25 +10001041 if (options.verify_host_key_dns) {
Damien Miller150b5572003-11-17 21:19:29 +11001042 if (matching_host_key_dns)
Damien Miller7392ae62003-06-11 22:05:25 +10001043 snprintf(msg2, sizeof(msg2),
1044 "Matching host key fingerprint"
1045 " found in DNS.\n");
1046 else
1047 snprintf(msg2, sizeof(msg2),
1048 "No matching host key fingerprint"
1049 " found in DNS.\n");
1050 }
Damien Miller49d795c2002-01-22 23:34:12 +11001051 snprintf(msg, sizeof(msg),
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001052 "The authenticity of host '%.200s (%s)' can't be "
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001053 "established%s\n"
Damien Miller10288242008-06-30 00:04:03 +10001054 "%s key fingerprint is %s.%s%s\n%s"
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001055 "Are you sure you want to continue connecting "
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001056 "(yes/no)? ",
Damien Miller10288242008-06-30 00:04:03 +10001057 host, ip, msg1, type, fp,
1058 options.visual_host_key ? "\n" : "",
1059 options.visual_host_key ? ra : "",
1060 msg2);
Darren Tuckera627d422013-06-02 07:31:17 +10001061 free(ra);
1062 free(fp);
Damien Miller49d795c2002-01-22 23:34:12 +11001063 if (!confirm(msg))
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001064 goto fail;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00001065 hostkey_trusted = 1; /* user explicitly confirmed */
Damien Miller95def091999-11-25 00:26:21 +11001066 }
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001067 /*
djm@openbsd.org22376d22017-09-03 23:33:13 +00001068 * If in "new" or "off" strict mode, add the key automatically
1069 * to the local known_hosts file.
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001070 */
Damien Miller1227d4c2005-03-02 12:06:51 +11001071 if (options.check_host_ip && ip_status == HOST_NEW) {
Damien Millerd925dcd2010-12-01 12:21:51 +11001072 snprintf(hostline, sizeof(hostline), "%s,%s", host, ip);
Damien Miller1227d4c2005-03-02 12:06:51 +11001073 hostp = hostline;
1074 if (options.hash_known_hosts) {
1075 /* Add hash of host and IP separately */
Damien Miller295ee632011-05-29 21:42:31 +10001076 r = add_host_to_hostfile(user_hostfiles[0],
1077 host, host_key, options.hash_known_hosts) &&
1078 add_host_to_hostfile(user_hostfiles[0], ip,
Damien Miller1227d4c2005-03-02 12:06:51 +11001079 host_key, options.hash_known_hosts);
1080 } else {
1081 /* Add unhashed "host,ip" */
Damien Miller295ee632011-05-29 21:42:31 +10001082 r = add_host_to_hostfile(user_hostfiles[0],
Damien Miller1227d4c2005-03-02 12:06:51 +11001083 hostline, host_key,
1084 options.hash_known_hosts);
1085 }
1086 } else {
Damien Miller295ee632011-05-29 21:42:31 +10001087 r = add_host_to_hostfile(user_hostfiles[0], host,
1088 host_key, options.hash_known_hosts);
Damien Miller1227d4c2005-03-02 12:06:51 +11001089 hostp = host;
1090 }
1091
1092 if (!r)
Damien Miller996acd22003-04-09 20:59:48 +10001093 logit("Failed to add the host to the list of known "
Damien Miller295ee632011-05-29 21:42:31 +10001094 "hosts (%.500s).", user_hostfiles[0]);
Damien Miller95def091999-11-25 00:26:21 +11001095 else
Damien Miller996acd22003-04-09 20:59:48 +10001096 logit("Warning: Permanently added '%.200s' (%s) to the "
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001097 "list of known hosts.", hostp, type);
Damien Miller95def091999-11-25 00:26:21 +11001098 break;
Damien Miller1aed65e2010-03-04 21:53:35 +11001099 case HOST_REVOKED:
1100 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1101 error("@ WARNING: REVOKED HOST KEY DETECTED! @");
1102 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1103 error("The %s host key for %s is marked as revoked.", type, host);
1104 error("This could mean that a stolen key is being used to");
1105 error("impersonate this host.");
1106
1107 /*
1108 * If strict host key checking is in use, the user will have
1109 * to edit the key manually and we can only abort.
1110 */
djm@openbsd.org22376d22017-09-03 23:33:13 +00001111 if (options.strict_host_key_checking !=
1112 SSH_STRICT_HOSTKEY_OFF) {
Damien Miller1aed65e2010-03-04 21:53:35 +11001113 error("%s host key for %.200s was revoked and you have "
1114 "requested strict checking.", type, host);
1115 goto fail;
1116 }
1117 goto continue_unsafe;
1118
Damien Miller95def091999-11-25 00:26:21 +11001119 case HOST_CHANGED:
Damien Miller0a80ca12010-02-27 07:55:05 +11001120 if (want_cert) {
1121 /*
1122 * This is only a debug() since it is valid to have
1123 * CAs with wildcard DNS matches that don't match
1124 * all hosts that one might visit.
1125 */
1126 debug("Host certificate authority does not "
Damien Millerd925dcd2010-12-01 12:21:51 +11001127 "match %s in %s:%lu", CA_MARKER,
1128 host_found->file, host_found->line);
Damien Miller0a80ca12010-02-27 07:55:05 +11001129 goto fail;
1130 }
Damien Millerda828392006-08-05 11:35:45 +10001131 if (readonly == ROQUIET)
1132 goto fail;
Damien Miller95def091999-11-25 00:26:21 +11001133 if (options.check_host_ip && host_ip_differ) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001134 char *key_msg;
Damien Miller95def091999-11-25 00:26:21 +11001135 if (ip_status == HOST_NEW)
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001136 key_msg = "is unknown";
Damien Miller95def091999-11-25 00:26:21 +11001137 else if (ip_status == HOST_OK)
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001138 key_msg = "is unchanged";
Damien Miller95def091999-11-25 00:26:21 +11001139 else
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001140 key_msg = "has a different value";
Damien Miller95def091999-11-25 00:26:21 +11001141 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1142 error("@ WARNING: POSSIBLE DNS SPOOFING DETECTED! @");
1143 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
Damien Millere247cc42000-05-07 12:03:14 +10001144 error("The %s host key for %s has changed,", type, host);
Darren Tuckerff4454d2008-06-13 10:21:51 +10001145 error("and the key for the corresponding IP address %s", ip);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001146 error("%s. This could either mean that", key_msg);
Damien Miller95def091999-11-25 00:26:21 +11001147 error("DNS SPOOFING is happening or the IP address for the host");
Ben Lindstrom46c16222000-12-22 01:43:59 +00001148 error("and its host key have changed at the same time.");
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +00001149 if (ip_status != HOST_NEW)
Damien Millerd925dcd2010-12-01 12:21:51 +11001150 error("Offending key for IP in %s:%lu",
1151 ip_found->file, ip_found->line);
Damien Miller95def091999-11-25 00:26:21 +11001152 }
1153 /* The host key has changed. */
Damien Miller5a388972003-11-17 21:10:47 +11001154 warn_changed_key(host_key);
Damien Miller95def091999-11-25 00:26:21 +11001155 error("Add correct host key in %.100s to get rid of this message.",
Damien Miller295ee632011-05-29 21:42:31 +10001156 user_hostfiles[0]);
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +00001157 error("Offending %s key in %s:%lu",
1158 sshkey_type(host_found->key),
Damien Millerd925dcd2010-12-01 12:21:51 +11001159 host_found->file, host_found->line);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001160
Damien Miller5428f641999-11-25 11:54:57 +11001161 /*
1162 * If strict host key checking is in use, the user will have
1163 * to edit the key manually and we can only abort.
1164 */
djm@openbsd.org22376d22017-09-03 23:33:13 +00001165 if (options.strict_host_key_checking !=
1166 SSH_STRICT_HOSTKEY_OFF) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001167 error("%s host key for %.200s has changed and you have "
1168 "requested strict checking.", type, host);
1169 goto fail;
1170 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001171
Damien Miller1aed65e2010-03-04 21:53:35 +11001172 continue_unsafe:
Damien Miller5428f641999-11-25 11:54:57 +11001173 /*
1174 * If strict host key checking has not been requested, allow
Damien Miller941ac452003-06-04 20:31:53 +10001175 * the connection but without MITM-able authentication or
Damien Miller437edb92006-08-05 09:11:13 +10001176 * forwarding.
Damien Miller5428f641999-11-25 11:54:57 +11001177 */
Damien Miller95def091999-11-25 00:26:21 +11001178 if (options.password_authentication) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001179 error("Password authentication is disabled to avoid "
1180 "man-in-the-middle attacks.");
Damien Miller95def091999-11-25 00:26:21 +11001181 options.password_authentication = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001182 cancelled_forwarding = 1;
Damien Miller95def091999-11-25 00:26:21 +11001183 }
Damien Miller941ac452003-06-04 20:31:53 +10001184 if (options.kbd_interactive_authentication) {
1185 error("Keyboard-interactive authentication is disabled"
1186 " to avoid man-in-the-middle attacks.");
1187 options.kbd_interactive_authentication = 0;
1188 options.challenge_response_authentication = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001189 cancelled_forwarding = 1;
Damien Miller941ac452003-06-04 20:31:53 +10001190 }
1191 if (options.challenge_response_authentication) {
1192 error("Challenge/response authentication is disabled"
1193 " to avoid man-in-the-middle attacks.");
1194 options.challenge_response_authentication = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001195 cancelled_forwarding = 1;
Damien Miller941ac452003-06-04 20:31:53 +10001196 }
Damien Miller95def091999-11-25 00:26:21 +11001197 if (options.forward_agent) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001198 error("Agent forwarding is disabled to avoid "
1199 "man-in-the-middle attacks.");
Damien Miller95def091999-11-25 00:26:21 +11001200 options.forward_agent = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001201 cancelled_forwarding = 1;
Damien Miller95def091999-11-25 00:26:21 +11001202 }
Ben Lindstromc72745a2000-12-02 19:03:54 +00001203 if (options.forward_x11) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001204 error("X11 forwarding is disabled to avoid "
1205 "man-in-the-middle attacks.");
Ben Lindstromc72745a2000-12-02 19:03:54 +00001206 options.forward_x11 = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001207 cancelled_forwarding = 1;
Ben Lindstromc72745a2000-12-02 19:03:54 +00001208 }
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001209 if (options.num_local_forwards > 0 ||
1210 options.num_remote_forwards > 0) {
1211 error("Port forwarding is disabled to avoid "
1212 "man-in-the-middle attacks.");
1213 options.num_local_forwards =
Damien Miller9f0f5c62001-12-21 14:45:46 +11001214 options.num_remote_forwards = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001215 cancelled_forwarding = 1;
Ben Lindstromc72745a2000-12-02 19:03:54 +00001216 }
Damien Miller437edb92006-08-05 09:11:13 +10001217 if (options.tun_open != SSH_TUNMODE_NO) {
1218 error("Tunnel forwarding is disabled to avoid "
1219 "man-in-the-middle attacks.");
1220 options.tun_open = SSH_TUNMODE_NO;
Darren Tucker068e01f2008-07-02 22:33:55 +10001221 cancelled_forwarding = 1;
Damien Miller437edb92006-08-05 09:11:13 +10001222 }
Darren Tucker068e01f2008-07-02 22:33:55 +10001223 if (options.exit_on_forward_failure && cancelled_forwarding)
1224 fatal("Error: forwarding disabled due to host key "
1225 "check failure");
1226
Damien Miller5428f641999-11-25 11:54:57 +11001227 /*
1228 * XXX Should permit the user to change to use the new id.
1229 * This could be done by converting the host key to an
1230 * identifying sentence, tell that the host identifies itself
Darren Tuckere2b36742010-01-13 22:42:34 +11001231 * by that sentence, and ask the user if he/she wishes to
Damien Miller5428f641999-11-25 11:54:57 +11001232 * accept the authentication.
1233 */
Damien Miller95def091999-11-25 00:26:21 +11001234 break;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001235 case HOST_FOUND:
1236 fatal("internal error");
1237 break;
Damien Miller95def091999-11-25 00:26:21 +11001238 }
Ben Lindstromc72745a2000-12-02 19:03:54 +00001239
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +00001240 if (options.check_host_ip && host_status != HOST_CHANGED &&
1241 ip_status == HOST_CHANGED) {
Damien Miller49d795c2002-01-22 23:34:12 +11001242 snprintf(msg, sizeof(msg),
1243 "Warning: the %s host key for '%.200s' "
1244 "differs from the key for the IP address '%.128s'"
Damien Millerd925dcd2010-12-01 12:21:51 +11001245 "\nOffending key for IP in %s:%lu",
1246 type, host, ip, ip_found->file, ip_found->line);
Damien Miller49d795c2002-01-22 23:34:12 +11001247 if (host_status == HOST_OK) {
1248 len = strlen(msg);
1249 snprintf(msg + len, sizeof(msg) - len,
Damien Millerd925dcd2010-12-01 12:21:51 +11001250 "\nMatching host key in %s:%lu",
1251 host_found->file, host_found->line);
Damien Miller49d795c2002-01-22 23:34:12 +11001252 }
djm@openbsd.org22376d22017-09-03 23:33:13 +00001253 if (options.strict_host_key_checking ==
1254 SSH_STRICT_HOSTKEY_ASK) {
Damien Miller49d795c2002-01-22 23:34:12 +11001255 strlcat(msg, "\nAre you sure you want "
1256 "to continue connecting (yes/no)? ", sizeof(msg));
1257 if (!confirm(msg))
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001258 goto fail;
djm@openbsd.org22376d22017-09-03 23:33:13 +00001259 } else if (options.strict_host_key_checking !=
1260 SSH_STRICT_HOSTKEY_OFF) {
1261 logit("%s", msg);
1262 error("Exiting, you have requested strict checking.");
1263 goto fail;
Damien Miller49d795c2002-01-22 23:34:12 +11001264 } else {
Damien Millerab2db412003-06-02 19:09:13 +10001265 logit("%s", msg);
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +00001266 }
1267 }
1268
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00001269 if (!hostkey_trusted && options.update_hostkeys) {
1270 debug("%s: hostkey not known or explicitly trusted: "
1271 "disabling UpdateHostkeys", __func__);
1272 options.update_hostkeys = 0;
1273 }
1274
Darren Tuckera627d422013-06-02 07:31:17 +10001275 free(ip);
1276 free(host);
Damien Millerd925dcd2010-12-01 12:21:51 +11001277 if (host_hostkeys != NULL)
1278 free_hostkeys(host_hostkeys);
1279 if (ip_hostkeys != NULL)
1280 free_hostkeys(ip_hostkeys);
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001281 return 0;
1282
1283fail:
Damien Miller1aed65e2010-03-04 21:53:35 +11001284 if (want_cert && host_status != HOST_REVOKED) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001285 /*
1286 * No matching certificate. Downgrade cert to raw key and
1287 * search normally.
1288 */
1289 debug("No matching CA found. Retry with plain key");
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +00001290 if ((r = sshkey_from_private(host_key, &raw_key)) != 0)
1291 fatal("%s: sshkey_from_private: %s",
1292 __func__, ssh_err(r));
1293 if ((r = sshkey_drop_cert(raw_key)) != 0)
1294 fatal("Couldn't drop certificate: %s", ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001295 host_key = raw_key;
1296 goto retry;
1297 }
dtucker@openbsd.orgf1f047f2018-02-07 22:52:45 +00001298 sshkey_free(raw_key);
Darren Tuckera627d422013-06-02 07:31:17 +10001299 free(ip);
1300 free(host);
Damien Millerd925dcd2010-12-01 12:21:51 +11001301 if (host_hostkeys != NULL)
1302 free_hostkeys(host_hostkeys);
1303 if (ip_hostkeys != NULL)
1304 free_hostkeys(ip_hostkeys);
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001305 return -1;
1306}
1307
Damien Miller37876e92003-05-15 10:19:46 +10001308/* returns 0 if key verifies or -1 if key does NOT verify */
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001309int
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001310verify_host_key(char *host, struct sockaddr *hostaddr, struct sshkey *host_key)
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001311{
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001312 u_int i;
Damien Miller6b37fbb2014-07-04 08:59:24 +10001313 int r = -1, flags = 0;
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001314 char valid[64], *fp = NULL, *cafp = NULL;
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001315 struct sshkey *plain = NULL;
Damien Millerd925dcd2010-12-01 12:21:51 +11001316
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001317 if ((fp = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001318 options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL) {
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001319 error("%s: fingerprint host key: %s", __func__, ssh_err(r));
1320 r = -1;
1321 goto out;
1322 }
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001323
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001324 if (sshkey_is_cert(host_key)) {
1325 if ((cafp = sshkey_fingerprint(host_key->cert->signature_key,
1326 options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL) {
1327 error("%s: fingerprint CA key: %s",
1328 __func__, ssh_err(r));
1329 r = -1;
1330 goto out;
1331 }
1332 sshkey_format_cert_validity(host_key->cert,
1333 valid, sizeof(valid));
1334 debug("Server host certificate: %s %s, serial %llu "
1335 "ID \"%s\" CA %s %s valid %s",
1336 sshkey_ssh_name(host_key), fp,
djm@openbsd.org8ca915f2015-11-20 01:45:29 +00001337 (unsigned long long)host_key->cert->serial,
1338 host_key->cert->key_id,
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001339 sshkey_ssh_name(host_key->cert->signature_key), cafp,
1340 valid);
1341 for (i = 0; i < host_key->cert->nprincipals; i++) {
1342 debug2("Server host certificate hostname: %s",
1343 host_key->cert->principals[i]);
1344 }
1345 } else {
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001346 debug("Server host key: %s %s", sshkey_ssh_name(host_key), fp);
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001347 }
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001348
1349 if (sshkey_equal(previous_host_key, host_key)) {
1350 debug2("%s: server host key %s %s matches cached key",
1351 __func__, sshkey_type(host_key), fp);
1352 r = 0;
1353 goto out;
1354 }
1355
1356 /* Check in RevokedHostKeys file if specified */
1357 if (options.revoked_host_keys != NULL) {
1358 r = sshkey_check_revoked(host_key, options.revoked_host_keys);
1359 switch (r) {
1360 case 0:
1361 break; /* not revoked */
1362 case SSH_ERR_KEY_REVOKED:
1363 error("Host key %s %s revoked by file %s",
1364 sshkey_type(host_key), fp,
1365 options.revoked_host_keys);
1366 r = -1;
1367 goto out;
1368 default:
1369 error("Error checking host key %s %s in "
1370 "revoked keys file %s: %s", sshkey_type(host_key),
1371 fp, options.revoked_host_keys, ssh_err(r));
1372 r = -1;
1373 goto out;
1374 }
Damien Miller6b37fbb2014-07-04 08:59:24 +10001375 }
1376
Damien Miller7d6a9fb2014-04-20 13:23:43 +10001377 if (options.verify_host_key_dns) {
1378 /*
1379 * XXX certs are not yet supported for DNS, so downgrade
1380 * them and try the plain key.
1381 */
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001382 if ((r = sshkey_from_private(host_key, &plain)) != 0)
1383 goto out;
1384 if (sshkey_is_cert(plain))
1385 sshkey_drop_cert(plain);
Damien Miller7d6a9fb2014-04-20 13:23:43 +10001386 if (verify_host_key_dns(host, hostaddr, plain, &flags) == 0) {
1387 if (flags & DNS_VERIFY_FOUND) {
1388 if (options.verify_host_key_dns == 1 &&
1389 flags & DNS_VERIFY_MATCH &&
1390 flags & DNS_VERIFY_SECURE) {
Damien Miller6b37fbb2014-07-04 08:59:24 +10001391 r = 0;
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001392 goto out;
Damien Miller7d6a9fb2014-04-20 13:23:43 +10001393 }
1394 if (flags & DNS_VERIFY_MATCH) {
1395 matching_host_key_dns = 1;
1396 } else {
djm@openbsd.orgaea59a02017-09-14 04:32:21 +00001397 warn_changed_key(plain);
1398 error("Update the SSHFP RR in DNS "
1399 "with the new host key to get rid "
1400 "of this message.");
Damien Miller7d6a9fb2014-04-20 13:23:43 +10001401 }
Damien Miller150b5572003-11-17 21:19:29 +11001402 }
Damien Miller37876e92003-05-15 10:19:46 +10001403 }
1404 }
Damien Miller6b37fbb2014-07-04 08:59:24 +10001405 r = check_host_key(host, hostaddr, options.port, host_key, RDRW,
Damien Miller295ee632011-05-29 21:42:31 +10001406 options.user_hostfiles, options.num_user_hostfiles,
1407 options.system_hostfiles, options.num_system_hostfiles);
Damien Miller6b37fbb2014-07-04 08:59:24 +10001408
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001409out:
1410 sshkey_free(plain);
1411 free(fp);
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001412 free(cafp);
Damien Miller6b37fbb2014-07-04 08:59:24 +10001413 if (r == 0 && host_key != NULL) {
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +00001414 sshkey_free(previous_host_key);
1415 r = sshkey_from_private(host_key, &previous_host_key);
Damien Miller6b37fbb2014-07-04 08:59:24 +10001416 }
1417
1418 return r;
Damien Millera34a28b1999-12-14 10:47:15 +11001419}
Damien Miller037a0dc1999-12-07 15:38:31 +11001420
Damien Miller396691a2000-01-20 22:44:08 +11001421/*
1422 * Starts a dialog with the server, and authenticates the current user on the
1423 * server. This does not need any extra privileges. The basic connection
1424 * to the server must already have been established before this is called.
1425 * If login fails, this function prints an error and never returns.
1426 * This function does not require super-user privileges.
1427 */
1428void
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001429ssh_login(Sensitive *sensitive, const char *orighost,
Damien Millerd925dcd2010-12-01 12:21:51 +11001430 struct sockaddr *hostaddr, u_short port, struct passwd *pw, int timeout_ms)
Damien Miller396691a2000-01-20 22:44:08 +11001431{
Damien Miller0faf7472013-10-17 11:47:23 +11001432 char *host;
Damien Millereba71ba2000-04-29 23:57:08 +10001433 char *server_user, *local_user;
1434
Damien Millereba71ba2000-04-29 23:57:08 +10001435 local_user = xstrdup(pw->pw_name);
1436 server_user = options.user ? options.user : local_user;
Damien Miller396691a2000-01-20 22:44:08 +11001437
1438 /* Convert the user-supplied hostname into all lowercase. */
1439 host = xstrdup(orighost);
Damien Miller0faf7472013-10-17 11:47:23 +11001440 lowercase(host);
Damien Miller396691a2000-01-20 22:44:08 +11001441
1442 /* Exchange protocol version identification strings with the server. */
Damien Miller67bd0622007-09-17 12:06:57 +10001443 ssh_exchange_identification(timeout_ms);
Damien Miller396691a2000-01-20 22:44:08 +11001444
1445 /* Put the connection into non-blocking mode. */
1446 packet_set_nonblocking();
1447
Damien Miller396691a2000-01-20 22:44:08 +11001448 /* key exchange */
Damien Miller396691a2000-01-20 22:44:08 +11001449 /* authenticate user */
dtucker@openbsd.orgbb2289e2015-04-14 04:17:03 +00001450 debug("Authenticating to %s:%d as '%s'", host, port, server_user);
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001451 ssh_kex2(host, hostaddr, port);
1452 ssh_userauth2(local_user, server_user, host, sensitive);
Darren Tuckera627d422013-06-02 07:31:17 +10001453 free(local_user);
Damien Miller396691a2000-01-20 22:44:08 +11001454}
Damien Miller79438cc2001-02-16 12:34:57 +11001455
1456void
1457ssh_put_password(char *password)
1458{
1459 int size;
1460 char *padded;
1461
Ben Lindstromd20d0f32001-03-10 17:22:20 +00001462 if (datafellows & SSH_BUG_PASSWORDPAD) {
Ben Lindstrom664408d2001-06-09 01:42:01 +00001463 packet_put_cstring(password);
Ben Lindstromd20d0f32001-03-10 17:22:20 +00001464 return;
1465 }
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +00001466 size = ROUNDUP(strlen(password) + 1, 32);
Damien Miller07d86be2006-03-26 14:19:21 +11001467 padded = xcalloc(1, size);
Damien Miller79438cc2001-02-16 12:34:57 +11001468 strlcpy(padded, password, size);
1469 packet_put_string(padded, size);
Damien Millera5103f42014-02-04 11:20:14 +11001470 explicit_bzero(padded, size);
Darren Tuckera627d422013-06-02 07:31:17 +10001471 free(padded);
Damien Miller79438cc2001-02-16 12:34:57 +11001472}
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001473
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001474/* print all known host keys for a given host, but skip keys of given type */
1475static int
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001476show_other_keys(struct hostkeys *hostkeys, struct sshkey *key)
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001477{
Damien Miller106bf1c2013-12-29 17:54:03 +11001478 int type[] = {
Damien Miller106bf1c2013-12-29 17:54:03 +11001479 KEY_RSA,
1480 KEY_DSA,
1481 KEY_ECDSA,
1482 KEY_ED25519,
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00001483 KEY_XMSS,
Damien Miller106bf1c2013-12-29 17:54:03 +11001484 -1
1485 };
Damien Millerd925dcd2010-12-01 12:21:51 +11001486 int i, ret = 0;
1487 char *fp, *ra;
1488 const struct hostkey_entry *found;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001489
1490 for (i = 0; type[i] != -1; i++) {
1491 if (type[i] == key->type)
1492 continue;
Damien Millerd925dcd2010-12-01 12:21:51 +11001493 if (!lookup_key_in_hostkeys_by_type(hostkeys, type[i], &found))
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001494 continue;
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001495 fp = sshkey_fingerprint(found->key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001496 options.fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001497 ra = sshkey_fingerprint(found->key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001498 options.fingerprint_hash, SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001499 if (fp == NULL || ra == NULL)
1500 fatal("%s: sshkey_fingerprint fail", __func__);
Damien Millerd925dcd2010-12-01 12:21:51 +11001501 logit("WARNING: %s key found for host %s\n"
1502 "in %s:%lu\n"
1503 "%s key fingerprint %s.",
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001504 sshkey_type(found->key),
Damien Millerd925dcd2010-12-01 12:21:51 +11001505 found->host, found->file, found->line,
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001506 sshkey_type(found->key), fp);
Damien Millerd925dcd2010-12-01 12:21:51 +11001507 if (options.visual_host_key)
1508 logit("%s", ra);
Darren Tuckera627d422013-06-02 07:31:17 +10001509 free(ra);
1510 free(fp);
Damien Millerd925dcd2010-12-01 12:21:51 +11001511 ret = 1;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001512 }
Damien Millerd925dcd2010-12-01 12:21:51 +11001513 return ret;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001514}
Damien Miller5a388972003-11-17 21:10:47 +11001515
1516static void
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001517warn_changed_key(struct sshkey *host_key)
Damien Miller5a388972003-11-17 21:10:47 +11001518{
1519 char *fp;
Damien Miller5a388972003-11-17 21:10:47 +11001520
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001521 fp = sshkey_fingerprint(host_key, options.fingerprint_hash,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001522 SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001523 if (fp == NULL)
1524 fatal("%s: sshkey_fingerprint fail", __func__);
Damien Miller5a388972003-11-17 21:10:47 +11001525
1526 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1527 error("@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @");
1528 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1529 error("IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!");
1530 error("Someone could be eavesdropping on you right now (man-in-the-middle attack)!");
Damien Miller05c89972011-01-06 22:42:04 +11001531 error("It is also possible that a host key has just been changed.");
Damien Miller5a388972003-11-17 21:10:47 +11001532 error("The fingerprint for the %s key sent by the remote host is\n%s.",
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001533 sshkey_type(host_key), fp);
Damien Miller5a388972003-11-17 21:10:47 +11001534 error("Please contact your system administrator.");
1535
Darren Tuckera627d422013-06-02 07:31:17 +10001536 free(fp);
Damien Miller5a388972003-11-17 21:10:47 +11001537}
Damien Millerd27b9472005-12-13 19:29:02 +11001538
1539/*
1540 * Execute a local command
1541 */
1542int
1543ssh_local_cmd(const char *args)
1544{
1545 char *shell;
1546 pid_t pid;
1547 int status;
Damien Millered3a8eb2011-01-07 10:02:52 +11001548 void (*osighand)(int);
Damien Millerd27b9472005-12-13 19:29:02 +11001549
1550 if (!options.permit_local_command ||
1551 args == NULL || !*args)
1552 return (1);
1553
Damien Miller38d9a962010-10-07 22:07:11 +11001554 if ((shell = getenv("SHELL")) == NULL || *shell == '\0')
Damien Millerd27b9472005-12-13 19:29:02 +11001555 shell = _PATH_BSHELL;
1556
Damien Millered3a8eb2011-01-07 10:02:52 +11001557 osighand = signal(SIGCHLD, SIG_DFL);
Damien Millerd27b9472005-12-13 19:29:02 +11001558 pid = fork();
1559 if (pid == 0) {
Damien Miller6fb6fd52011-01-16 23:17:45 +11001560 signal(SIGPIPE, SIG_DFL);
Damien Millerd27b9472005-12-13 19:29:02 +11001561 debug3("Executing %s -c \"%s\"", shell, args);
1562 execl(shell, shell, "-c", args, (char *)NULL);
1563 error("Couldn't execute %s -c \"%s\": %s",
1564 shell, args, strerror(errno));
1565 _exit(1);
1566 } else if (pid == -1)
1567 fatal("fork failed: %.100s", strerror(errno));
1568 while (waitpid(pid, &status, 0) == -1)
1569 if (errno != EINTR)
1570 fatal("Couldn't wait for child: %s", strerror(errno));
Damien Millered3a8eb2011-01-07 10:02:52 +11001571 signal(SIGCHLD, osighand);
Damien Millerd27b9472005-12-13 19:29:02 +11001572
1573 if (!WIFEXITED(status))
1574 return (1);
1575
1576 return (WEXITSTATUS(status));
1577}
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001578
1579void
djm@openbsd.orgd9e5cf02018-02-10 09:25:34 +00001580maybe_add_key_to_agent(char *authfile, const struct sshkey *private,
1581 char *comment, char *passphrase)
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001582{
1583 int auth_sock = -1, r;
1584
1585 if (options.add_keys_to_agent == 0)
1586 return;
1587
1588 if ((r = ssh_get_authentication_socket(&auth_sock)) != 0) {
1589 debug3("no authentication agent, not adding key");
1590 return;
1591 }
1592
1593 if (options.add_keys_to_agent == 2 &&
1594 !ask_permission("Add key %s (%s) to agent?", authfile, comment)) {
1595 debug3("user denied adding this key");
dtucker@openbsd.org566b3a42017-03-10 03:22:40 +00001596 close(auth_sock);
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001597 return;
1598 }
1599
1600 if ((r = ssh_add_identity_constrained(auth_sock, private, comment, 0,
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00001601 (options.add_keys_to_agent == 3), 0)) == 0)
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001602 debug("identity added to agent: %s", authfile);
1603 else
1604 debug("could not add identity to agent: %s (%d)", authfile, r);
dtucker@openbsd.org566b3a42017-03-10 03:22:40 +00001605 close(auth_sock);
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001606}