blob: 6d819279ee66eee8305ddf4f8693250daf742f6f [file] [log] [blame]
djm@openbsd.orgecac7e12018-09-20 03:30:44 +00001/* $OpenBSD: sshconnect.c,v 1.305 2018/09/20 03:30:44 djm Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * Code to connect to a remote host, and to perform the client side of the
7 * login (authentication) dialog.
Damien Millere4340be2000-09-16 13:29:08 +11008 *
9 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110014 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100015
16#include "includes.h"
Damien Miller9cf6d072006-03-15 11:29:24 +110017
18#include <sys/types.h>
19#include <sys/wait.h>
Damien Millerf17883e2006-03-15 11:45:54 +110020#include <sys/stat.h>
Damien Miller8ec8c3e2006-07-10 20:35:38 +100021#include <sys/socket.h>
Damien Miller9aec9192006-08-05 10:57:45 +100022#ifdef HAVE_SYS_TIME_H
23# include <sys/time.h>
24#endif
Damien Miller8ec8c3e2006-07-10 20:35:38 +100025
djm@openbsd.orgac2e3022018-02-23 02:34:33 +000026#include <net/if.h>
Damien Miller8ec8c3e2006-07-10 20:35:38 +100027#include <netinet/in.h>
Darren Tucker46aa3e02006-09-02 15:32:40 +100028#include <arpa/inet.h>
Damien Miller03e20032006-03-15 11:16:59 +110029
Damien Millerc7b06362006-03-15 11:53:45 +110030#include <ctype.h>
Darren Tucker39972492006-07-12 22:22:46 +100031#include <errno.h>
Darren Tucker6e7fe1c2010-01-08 17:07:22 +110032#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100033#include <netdb.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110034#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110035#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110036#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100037#include <pwd.h>
djm@openbsd.org45404282017-06-24 05:37:44 +000038#ifdef HAVE_POLL_H
39#include <poll.h>
40#endif
Damien Miller9c0c31d2010-10-12 13:30:44 +110041#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100042#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100043#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100044#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100045#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100046#include <unistd.h>
Darren Tuckerb59162d2018-02-23 15:20:42 +110047#ifdef HAVE_IFADDRS_H
48# include <ifaddrs.h>
49#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +100050
Damien Millerd4a8b7e1999-10-27 13:42:43 +100051#include "xmalloc.h"
Damien Millerd7834352006-08-05 12:39:39 +100052#include "hostfile.h"
53#include "ssh.h"
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +000054#include "sshbuf.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100055#include "packet.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100056#include "compat.h"
markus@openbsd.org5467fbc2018-07-11 18:53:29 +000057#include "sshkey.h"
Damien Millereba71ba2000-04-29 23:57:08 +100058#include "sshconnect.h"
Damien Miller450a7a12000-03-26 13:04:51 +100059#include "hostfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000060#include "log.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100061#include "misc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000062#include "readconf.h"
63#include "atomicio.h"
Damien Miller37876e92003-05-15 10:19:46 +100064#include "dns.h"
Damien Miller1262b662013-08-21 02:44:24 +100065#include "monitor_fdpass.h"
Damien Miller0a80ca12010-02-27 07:55:05 +110066#include "ssh2.h"
Damien Millerb7576772006-07-10 20:23:39 +100067#include "version.h"
djm@openbsd.org5e39a492014-12-04 02:24:32 +000068#include "authfile.h"
69#include "ssherr.h"
jcs@openbsd.orgf361df42015-11-15 22:26:49 +000070#include "authfd.h"
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 */
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
102/*
103 * Connect to the given ssh server using a proxy command that passes a
104 * a connected fd back to us.
105 */
106static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000107ssh_proxy_fdpass_connect(struct ssh *ssh, const char *host, u_short port,
Damien Miller1262b662013-08-21 02:44:24 +1000108 const char *proxy_command)
109{
110 char *command_string;
111 int sp[2], sock;
112 pid_t pid;
113 char *shell;
114
115 if ((shell = getenv("SHELL")) == NULL)
116 shell = _PATH_BSHELL;
117
118 if (socketpair(AF_UNIX, SOCK_STREAM, 0, sp) < 0)
119 fatal("Could not create socketpair to communicate with "
120 "proxy dialer: %.100s", strerror(errno));
121
122 command_string = expand_proxy_command(proxy_command, options.user,
123 host, port);
124 debug("Executing proxy dialer command: %.500s", command_string);
125
126 /* Fork and execute the proxy command. */
127 if ((pid = fork()) == 0) {
128 char *argv[10];
129
Damien Miller1262b662013-08-21 02:44:24 +1000130 close(sp[1]);
131 /* Redirect stdin and stdout. */
132 if (sp[0] != 0) {
133 if (dup2(sp[0], 0) < 0)
134 perror("dup2 stdin");
135 }
136 if (sp[0] != 1) {
137 if (dup2(sp[0], 1) < 0)
138 perror("dup2 stdout");
139 }
140 if (sp[0] >= 2)
141 close(sp[0]);
142
143 /*
144 * Stderr is left as it is so that error messages get
145 * printed on the user's terminal.
146 */
147 argv[0] = shell;
148 argv[1] = "-c";
149 argv[2] = command_string;
150 argv[3] = NULL;
151
152 /*
153 * Execute the proxy command.
154 * Note that we gave up any extra privileges above.
155 */
156 execv(argv[0], argv);
157 perror(argv[0]);
158 exit(1);
159 }
160 /* Parent. */
161 if (pid < 0)
162 fatal("fork failed: %.100s", strerror(errno));
163 close(sp[0]);
164 free(command_string);
165
166 if ((sock = mm_receive_fd(sp[1])) == -1)
167 fatal("proxy dialer did not pass back a connection");
markus@openbsd.orgfc77ccd2016-01-14 22:56:56 +0000168 close(sp[1]);
Damien Miller1262b662013-08-21 02:44:24 +1000169
170 while (waitpid(pid, NULL, 0) == -1)
171 if (errno != EINTR)
172 fatal("Couldn't wait for child: %s", strerror(errno));
173
174 /* Set the connection file descriptors. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000175 if (ssh_packet_set_connection(ssh, sock, sock) == NULL)
176 return -1; /* ssh_packet_set_connection logs error */
Damien Miller1262b662013-08-21 02:44:24 +1000177
178 return 0;
179}
180
Damien Miller95def091999-11-25 00:26:21 +1100181/*
182 * Connect to the given ssh server using a proxy command.
183 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000184static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000185ssh_proxy_connect(struct ssh *ssh, const char *host, u_short port,
186 const char *proxy_command)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000187{
Damien Miller1262b662013-08-21 02:44:24 +1000188 char *command_string;
Damien Miller95def091999-11-25 00:26:21 +1100189 int pin[2], pout[2];
Damien Miller166fca82000-04-20 07:42:21 +1000190 pid_t pid;
Damien Miller1262b662013-08-21 02:44:24 +1000191 char *shell;
Damien Miller1d824ab2007-09-17 11:58:04 +1000192
Damien Miller38d9a962010-10-07 22:07:11 +1100193 if ((shell = getenv("SHELL")) == NULL || *shell == '\0')
Damien Miller1d824ab2007-09-17 11:58:04 +1000194 shell = _PATH_BSHELL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000195
Damien Miller95def091999-11-25 00:26:21 +1100196 /* Create pipes for communicating with the proxy. */
197 if (pipe(pin) < 0 || pipe(pout) < 0)
198 fatal("Could not create pipes to communicate with the proxy: %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100199 strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000200
Damien Miller1262b662013-08-21 02:44:24 +1000201 command_string = expand_proxy_command(proxy_command, options.user,
202 host, port);
Damien Miller95def091999-11-25 00:26:21 +1100203 debug("Executing proxy command: %.500s", command_string);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000204
Damien Miller95def091999-11-25 00:26:21 +1100205 /* Fork and execute the proxy command. */
206 if ((pid = fork()) == 0) {
207 char *argv[10];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000208
Damien Miller95def091999-11-25 00:26:21 +1100209 /* Redirect stdin and stdout. */
210 close(pin[1]);
211 if (pin[0] != 0) {
212 if (dup2(pin[0], 0) < 0)
213 perror("dup2 stdin");
214 close(pin[0]);
215 }
216 close(pout[0]);
217 if (dup2(pout[1], 1) < 0)
218 perror("dup2 stdout");
219 /* Cannot be 1 because pin allocated two descriptors. */
220 close(pout[1]);
221
222 /* Stderr is left as it is so that error messages get
223 printed on the user's terminal. */
Damien Miller1d824ab2007-09-17 11:58:04 +1000224 argv[0] = shell;
Damien Miller95def091999-11-25 00:26:21 +1100225 argv[1] = "-c";
226 argv[2] = command_string;
227 argv[3] = NULL;
228
229 /* Execute the proxy command. Note that we gave up any
230 extra privileges above. */
Damien Miller6fb6fd52011-01-16 23:17:45 +1100231 signal(SIGPIPE, SIG_DFL);
Kevin Stevesfcd5d602001-01-07 11:45:22 +0000232 execv(argv[0], argv);
233 perror(argv[0]);
Damien Miller95def091999-11-25 00:26:21 +1100234 exit(1);
235 }
236 /* Parent. */
237 if (pid < 0)
238 fatal("fork failed: %.100s", strerror(errno));
Damien Miller8c4e18a2002-09-19 12:05:02 +1000239 else
240 proxy_command_pid = pid; /* save pid to clean up later */
Damien Miller95def091999-11-25 00:26:21 +1100241
242 /* Close child side of the descriptors. */
243 close(pin[0]);
244 close(pout[1]);
245
246 /* Free the command name. */
Darren Tuckera627d422013-06-02 07:31:17 +1000247 free(command_string);
Damien Miller95def091999-11-25 00:26:21 +1100248
249 /* Set the connection file descriptors. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000250 if (ssh_packet_set_connection(ssh, pout[0], pin[1]) == NULL)
251 return -1; /* ssh_packet_set_connection logs error */
Damien Miller95def091999-11-25 00:26:21 +1100252
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000253 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000254}
255
Damien Millera41ccca2010-10-07 22:07:32 +1100256void
257ssh_kill_proxy_command(void)
258{
259 /*
260 * Send SIGHUP to proxy command if used. We don't wait() in
261 * case it hangs and instead rely on init to reap the child
262 */
263 if (proxy_command_pid > 1)
Damien Miller45fcdaa2010-10-07 22:07:58 +1100264 kill(proxy_command_pid, SIGHUP);
Damien Millera41ccca2010-10-07 22:07:32 +1100265}
266
Darren Tuckerb59162d2018-02-23 15:20:42 +1100267#ifdef HAVE_IFADDRS_H
Damien Miller95def091999-11-25 00:26:21 +1100268/*
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000269 * Search a interface address list (returned from getifaddrs(3)) for an
djm@openbsd.org001aa552018-04-10 00:10:49 +0000270 * address that matches the desired address family on the specified interface.
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000271 * Returns 0 and fills in *resultp and *rlenp on success. Returns -1 on failure.
272 */
273static int
274check_ifaddrs(const char *ifname, int af, const struct ifaddrs *ifaddrs,
275 struct sockaddr_storage *resultp, socklen_t *rlenp)
276{
277 struct sockaddr_in6 *sa6;
278 struct sockaddr_in *sa;
279 struct in6_addr *v6addr;
280 const struct ifaddrs *ifa;
281 int allow_local;
282
283 /*
284 * Prefer addresses that are not loopback or linklocal, but use them
285 * if nothing else matches.
286 */
287 for (allow_local = 0; allow_local < 2; allow_local++) {
288 for (ifa = ifaddrs; ifa != NULL; ifa = ifa->ifa_next) {
289 if (ifa->ifa_addr == NULL || ifa->ifa_name == NULL ||
290 (ifa->ifa_flags & IFF_UP) == 0 ||
291 ifa->ifa_addr->sa_family != af ||
292 strcmp(ifa->ifa_name, options.bind_interface) != 0)
293 continue;
294 switch (ifa->ifa_addr->sa_family) {
295 case AF_INET:
296 sa = (struct sockaddr_in *)ifa->ifa_addr;
297 if (!allow_local && sa->sin_addr.s_addr ==
298 htonl(INADDR_LOOPBACK))
299 continue;
300 if (*rlenp < sizeof(struct sockaddr_in)) {
301 error("%s: v4 addr doesn't fit",
302 __func__);
303 return -1;
304 }
305 *rlenp = sizeof(struct sockaddr_in);
306 memcpy(resultp, sa, *rlenp);
307 return 0;
308 case AF_INET6:
309 sa6 = (struct sockaddr_in6 *)ifa->ifa_addr;
310 v6addr = &sa6->sin6_addr;
311 if (!allow_local &&
312 (IN6_IS_ADDR_LINKLOCAL(v6addr) ||
313 IN6_IS_ADDR_LOOPBACK(v6addr)))
314 continue;
315 if (*rlenp < sizeof(struct sockaddr_in6)) {
316 error("%s: v6 addr doesn't fit",
317 __func__);
318 return -1;
319 }
320 *rlenp = sizeof(struct sockaddr_in6);
321 memcpy(resultp, sa6, *rlenp);
322 return 0;
323 }
324 }
325 }
326 return -1;
327}
Darren Tuckerb59162d2018-02-23 15:20:42 +1100328#endif
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000329
330/*
dtucker@openbsd.org3ba6e682018-07-19 23:03:16 +0000331 * Creates a socket for use as the ssh connection.
Damien Miller95def091999-11-25 00:26:21 +1100332 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000333static int
dtucker@openbsd.org95d41e92018-07-19 10:28:47 +0000334ssh_create_socket(struct addrinfo *ai)
Damien Miller95def091999-11-25 00:26:21 +1100335{
dtucker@openbsd.org258dc8b2018-07-18 11:34:04 +0000336 int sock, r;
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000337 struct sockaddr_storage bindaddr;
338 socklen_t bindaddrlen = 0;
Damien Millerd1a7a9c2014-02-07 09:24:33 +1100339 struct addrinfo hints, *res = NULL;
Darren Tuckerb59162d2018-02-23 15:20:42 +1100340#ifdef HAVE_IFADDRS_H
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000341 struct ifaddrs *ifaddrs = NULL;
Darren Tuckerb59162d2018-02-23 15:20:42 +1100342#endif
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000343 char ntop[NI_MAXHOST];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000344
Darren Tucker7bd98e72010-01-10 10:31:12 +1100345 sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Darren Tucker6e7fe1c2010-01-08 17:07:22 +1100346 if (sock < 0) {
Darren Tuckere6e52f82013-10-10 10:28:07 +1100347 error("socket: %s", strerror(errno));
Darren Tucker6e7fe1c2010-01-08 17:07:22 +1100348 return -1;
349 }
350 fcntl(sock, F_SETFD, FD_CLOEXEC);
Ben Lindstrome0f88042001-04-30 13:06:24 +0000351
352 /* Bind the socket to an alternative local IP address */
dtucker@openbsd.org95d41e92018-07-19 10:28:47 +0000353 if (options.bind_address == NULL && options.bind_interface == NULL)
Ben Lindstrome0f88042001-04-30 13:06:24 +0000354 return sock;
355
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000356 if (options.bind_address != NULL) {
Damien Millerd1a7a9c2014-02-07 09:24:33 +1100357 memset(&hints, 0, sizeof(hints));
358 hints.ai_family = ai->ai_family;
359 hints.ai_socktype = ai->ai_socktype;
360 hints.ai_protocol = ai->ai_protocol;
361 hints.ai_flags = AI_PASSIVE;
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000362 if ((r = getaddrinfo(options.bind_address, NULL,
363 &hints, &res)) != 0) {
Damien Millerd1a7a9c2014-02-07 09:24:33 +1100364 error("getaddrinfo: %s: %s", options.bind_address,
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000365 ssh_gai_strerror(r));
366 goto fail;
Damien Millerd1a7a9c2014-02-07 09:24:33 +1100367 }
dtucker@openbsd.org3e19fb92018-02-23 04:18:46 +0000368 if (res == NULL) {
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000369 error("getaddrinfo: no addrs");
370 goto fail;
dtucker@openbsd.org3e19fb92018-02-23 04:18:46 +0000371 }
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000372 if (res->ai_addrlen > sizeof(bindaddr)) {
373 error("%s: addr doesn't fit", __func__);
374 goto fail;
375 }
376 memcpy(&bindaddr, res->ai_addr, res->ai_addrlen);
377 bindaddrlen = res->ai_addrlen;
378 } else if (options.bind_interface != NULL) {
Darren Tuckerb59162d2018-02-23 15:20:42 +1100379#ifdef HAVE_IFADDRS_H
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000380 if ((r = getifaddrs(&ifaddrs)) != 0) {
381 error("getifaddrs: %s: %s", options.bind_interface,
382 strerror(errno));
383 goto fail;
384 }
385 bindaddrlen = sizeof(bindaddr);
386 if (check_ifaddrs(options.bind_interface, ai->ai_family,
387 ifaddrs, &bindaddr, &bindaddrlen) != 0) {
388 logit("getifaddrs: %s: no suitable addresses",
389 options.bind_interface);
390 goto fail;
391 }
Darren Tuckerb59162d2018-02-23 15:20:42 +1100392#else
393 error("BindInterface not supported on this platform.");
394#endif
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000395 }
396 if ((r = getnameinfo((struct sockaddr *)&bindaddr, bindaddrlen,
397 ntop, sizeof(ntop), NULL, 0, NI_NUMERICHOST)) != 0) {
398 error("%s: getnameinfo failed: %s", __func__,
399 ssh_gai_strerror(r));
400 goto fail;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000401 }
dtucker@openbsd.org258dc8b2018-07-18 11:34:04 +0000402 if (bind(sock, (struct sockaddr *)&bindaddr, bindaddrlen) != 0) {
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000403 error("bind %s: %s", ntop, strerror(errno));
404 goto fail;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000405 }
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000406 debug("%s: bound to %s", __func__, ntop);
407 /* success */
408 goto out;
409fail:
410 close(sock);
411 sock = -1;
412 out:
Damien Millerd1a7a9c2014-02-07 09:24:33 +1100413 if (res != NULL)
414 freeaddrinfo(res);
Darren Tuckerb59162d2018-02-23 15:20:42 +1100415#ifdef HAVE_IFADDRS_H
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000416 if (ifaddrs != NULL)
417 freeifaddrs(ifaddrs);
Darren Tuckerb59162d2018-02-23 15:20:42 +1100418#endif
Damien Miller95def091999-11-25 00:26:21 +1100419 return sock;
420}
421
djm@openbsd.org45404282017-06-24 05:37:44 +0000422/*
423 * Wait up to *timeoutp milliseconds for fd to be readable. Updates
424 * *timeoutp with time remaining.
425 * Returns 0 if fd ready or -1 on timeout or error (see errno).
426 */
427static int
428waitrfd(int fd, int *timeoutp)
429{
430 struct pollfd pfd;
431 struct timeval t_start;
432 int oerrno, r;
433
dtucker@openbsd.org@openbsd.org5db6fbf2017-11-25 06:46:22 +0000434 monotime_tv(&t_start);
djm@openbsd.org45404282017-06-24 05:37:44 +0000435 pfd.fd = fd;
436 pfd.events = POLLIN;
437 for (; *timeoutp >= 0;) {
438 r = poll(&pfd, 1, *timeoutp);
439 oerrno = errno;
440 ms_subtract_diff(&t_start, timeoutp);
441 errno = oerrno;
442 if (r > 0)
443 return 0;
444 else if (r == -1 && errno != EAGAIN)
445 return -1;
446 else if (r == 0)
447 break;
448 }
449 /* timeout */
450 errno = ETIMEDOUT;
451 return -1;
452}
453
Damien Millerb78d5eb2003-05-16 11:39:04 +1000454static int
455timeout_connect(int sockfd, const struct sockaddr *serv_addr,
Damien Miller67bd0622007-09-17 12:06:57 +1000456 socklen_t addrlen, int *timeoutp)
Damien Millerb78d5eb2003-05-16 11:39:04 +1000457{
djm@openbsd.org45404282017-06-24 05:37:44 +0000458 int optval = 0;
459 socklen_t optlen = sizeof(optval);
Damien Millerb78d5eb2003-05-16 11:39:04 +1000460
djm@openbsd.org45404282017-06-24 05:37:44 +0000461 /* No timeout: just do a blocking connect() */
462 if (*timeoutp <= 0)
463 return connect(sockfd, serv_addr, addrlen);
Damien Millerb78d5eb2003-05-16 11:39:04 +1000464
Damien Millerf6723f02004-01-27 21:21:27 +1100465 set_nonblock(sockfd);
djm@openbsd.org45404282017-06-24 05:37:44 +0000466 if (connect(sockfd, serv_addr, addrlen) == 0) {
467 /* Succeeded already? */
Damien Millerf6723f02004-01-27 21:21:27 +1100468 unset_nonblock(sockfd);
djm@openbsd.org45404282017-06-24 05:37:44 +0000469 return 0;
470 } else if (errno != EINPROGRESS)
471 return -1;
472
473 if (waitrfd(sockfd, timeoutp) == -1)
474 return -1;
475
476 /* Completed or failed */
477 if (getsockopt(sockfd, SOL_SOCKET, SO_ERROR, &optval, &optlen) == -1) {
478 debug("getsockopt: %s", strerror(errno));
479 return -1;
Damien Millerf6723f02004-01-27 21:21:27 +1100480 }
djm@openbsd.org45404282017-06-24 05:37:44 +0000481 if (optval != 0) {
482 errno = optval;
483 return -1;
Damien Miller67bd0622007-09-17 12:06:57 +1000484 }
djm@openbsd.org45404282017-06-24 05:37:44 +0000485 unset_nonblock(sockfd);
486 return 0;
Damien Millerb78d5eb2003-05-16 11:39:04 +1000487}
488
Damien Miller95def091999-11-25 00:26:21 +1100489/*
Damien Miller34132e52000-01-14 15:45:46 +1100490 * Opens a TCP/IP connection to the remote server on the given host.
491 * The address of the remote host will be returned in hostaddr.
dtucker@openbsd.org95d41e92018-07-19 10:28:47 +0000492 * If port is 0, the default port will be used.
Damien Miller95def091999-11-25 00:26:21 +1100493 * Connection_attempts specifies the maximum number of tries (one per
494 * second). If proxy_command is non-NULL, it specifies the command (with %h
495 * and %p substituted for host and port, respectively) to use to contact
496 * the daemon.
497 */
Damien Miller0faf7472013-10-17 11:47:23 +1100498static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000499ssh_connect_direct(struct ssh *ssh, const char *host, struct addrinfo *aitop,
Damien Miller0faf7472013-10-17 11:47:23 +1100500 struct sockaddr_storage *hostaddr, u_short port, int family,
dtucker@openbsd.org95d41e92018-07-19 10:28:47 +0000501 int connection_attempts, int *timeout_ms, int want_keepalive)
Damien Miller95def091999-11-25 00:26:21 +1100502{
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000503 int on = 1;
djm@openbsd.org7c779912018-01-23 05:17:04 +0000504 int oerrno, sock = -1, attempt;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000505 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Miller0faf7472013-10-17 11:47:23 +1100506 struct addrinfo *ai;
Damien Miller95def091999-11-25 00:26:21 +1100507
dtucker@openbsd.org95d41e92018-07-19 10:28:47 +0000508 debug2("%s", __func__);
djm@openbsd.org88b6fcd2015-11-19 08:23:27 +0000509 memset(ntop, 0, sizeof(ntop));
510 memset(strport, 0, sizeof(strport));
Damien Miller95def091999-11-25 00:26:21 +1100511
Damien Miller56e5e6a2006-04-23 12:08:59 +1000512 for (attempt = 0; attempt < connection_attempts; attempt++) {
Damien Millerf4bcd102006-10-24 03:02:23 +1000513 if (attempt > 0) {
514 /* Sleep a moment before retrying. */
515 sleep(1);
Damien Miller95def091999-11-25 00:26:21 +1100516 debug("Trying again...");
Damien Millerf4bcd102006-10-24 03:02:23 +1000517 }
Damien Miller56e5e6a2006-04-23 12:08:59 +1000518 /*
519 * Loop through addresses for this host, and try each one in
520 * sequence until the connection succeeds.
521 */
Damien Miller34132e52000-01-14 15:45:46 +1100522 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller0faf7472013-10-17 11:47:23 +1100523 if (ai->ai_family != AF_INET &&
djm@openbsd.org7c779912018-01-23 05:17:04 +0000524 ai->ai_family != AF_INET6) {
525 errno = EAFNOSUPPORT;
Damien Miller34132e52000-01-14 15:45:46 +1100526 continue;
djm@openbsd.org7c779912018-01-23 05:17:04 +0000527 }
Damien Miller34132e52000-01-14 15:45:46 +1100528 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
529 ntop, sizeof(ntop), strport, sizeof(strport),
530 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
djm@openbsd.org7c779912018-01-23 05:17:04 +0000531 oerrno = errno;
djm@openbsd.org46152af2015-09-04 04:55:24 +0000532 error("%s: getnameinfo failed", __func__);
djm@openbsd.org7c779912018-01-23 05:17:04 +0000533 errno = oerrno;
Damien Miller34132e52000-01-14 15:45:46 +1100534 continue;
535 }
536 debug("Connecting to %.200s [%.100s] port %s.",
537 host, ntop, strport);
Damien Miller95def091999-11-25 00:26:21 +1100538
Damien Miller34132e52000-01-14 15:45:46 +1100539 /* Create a socket for connecting. */
dtucker@openbsd.org95d41e92018-07-19 10:28:47 +0000540 sock = ssh_create_socket(ai);
stsp@openbsd.orga60c5dc2018-01-23 18:33:49 +0000541 if (sock < 0) {
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000542 /* Any error is already output */
djm@openbsd.org7c779912018-01-23 05:17:04 +0000543 errno = 0;
Damien Miller34132e52000-01-14 15:45:46 +1100544 continue;
stsp@openbsd.orga60c5dc2018-01-23 18:33:49 +0000545 }
Damien Miller95def091999-11-25 00:26:21 +1100546
Damien Millerb78d5eb2003-05-16 11:39:04 +1000547 if (timeout_connect(sock, ai->ai_addr, ai->ai_addrlen,
Damien Miller67bd0622007-09-17 12:06:57 +1000548 timeout_ms) >= 0) {
Damien Miller34132e52000-01-14 15:45:46 +1100549 /* Successful connection. */
Ben Lindstroma3700052001-04-05 23:26:32 +0000550 memcpy(hostaddr, ai->ai_addr, ai->ai_addrlen);
Damien Miller95def091999-11-25 00:26:21 +1100551 break;
Damien Miller34132e52000-01-14 15:45:46 +1100552 } else {
djm@openbsd.org7c779912018-01-23 05:17:04 +0000553 oerrno = errno;
Ben Lindstrom728aa7e2002-07-15 17:48:11 +0000554 debug("connect to address %s port %s: %s",
555 ntop, strport, strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100556 close(sock);
Damien Miller56e5e6a2006-04-23 12:08:59 +1000557 sock = -1;
djm@openbsd.org7c779912018-01-23 05:17:04 +0000558 errno = oerrno;
Damien Miller95def091999-11-25 00:26:21 +1100559 }
Damien Miller95def091999-11-25 00:26:21 +1100560 }
Damien Miller56e5e6a2006-04-23 12:08:59 +1000561 if (sock != -1)
Damien Miller34132e52000-01-14 15:45:46 +1100562 break; /* Successful connection. */
Damien Miller95def091999-11-25 00:26:21 +1100563 }
Damien Miller34132e52000-01-14 15:45:46 +1100564
Damien Miller95def091999-11-25 00:26:21 +1100565 /* Return failure if we didn't get a successful connection. */
Damien Miller56e5e6a2006-04-23 12:08:59 +1000566 if (sock == -1) {
Darren Tuckerb2161e32005-01-20 11:00:46 +1100567 error("ssh: connect to host %s port %s: %s",
djm@openbsd.org7c779912018-01-23 05:17:04 +0000568 host, strport, errno == 0 ? "failure" : strerror(errno));
569 return -1;
Ben Lindstroma6cd75c2002-07-11 04:00:19 +0000570 }
Damien Miller95def091999-11-25 00:26:21 +1100571
572 debug("Connection established.");
573
Damien Miller12c150e2003-12-17 16:31:10 +1100574 /* Set SO_KEEPALIVE if requested. */
Damien Miller67bd0622007-09-17 12:06:57 +1000575 if (want_keepalive &&
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000576 setsockopt(sock, SOL_SOCKET, SO_KEEPALIVE, (void *)&on,
577 sizeof(on)) < 0)
578 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100579
580 /* Set the connection. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000581 if (ssh_packet_set_connection(ssh, sock, sock) == NULL)
582 return -1; /* ssh_packet_set_connection logs error */
Damien Miller95def091999-11-25 00:26:21 +1100583
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000584 return 0;
Damien Miller95def091999-11-25 00:26:21 +1100585}
586
Damien Miller0faf7472013-10-17 11:47:23 +1100587int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000588ssh_connect(struct ssh *ssh, const char *host, struct addrinfo *addrs,
Damien Miller0faf7472013-10-17 11:47:23 +1100589 struct sockaddr_storage *hostaddr, u_short port, int family,
dtucker@openbsd.org95d41e92018-07-19 10:28:47 +0000590 int connection_attempts, int *timeout_ms, int want_keepalive)
Damien Miller0faf7472013-10-17 11:47:23 +1100591{
592 if (options.proxy_command == NULL) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000593 return ssh_connect_direct(ssh, host, addrs, hostaddr, port,
dtucker@openbsd.org95d41e92018-07-19 10:28:47 +0000594 family, connection_attempts, timeout_ms, want_keepalive);
Damien Miller0faf7472013-10-17 11:47:23 +1100595 } else if (strcmp(options.proxy_command, "-") == 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000596 if ((ssh_packet_set_connection(ssh,
597 STDIN_FILENO, STDOUT_FILENO)) == NULL)
598 return -1; /* ssh_packet_set_connection logs error */
599 return 0;
Damien Miller0faf7472013-10-17 11:47:23 +1100600 } else if (options.proxy_use_fdpass) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000601 return ssh_proxy_fdpass_connect(ssh, host, port,
Damien Miller0faf7472013-10-17 11:47:23 +1100602 options.proxy_command);
603 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000604 return ssh_proxy_connect(ssh, host, port, options.proxy_command);
Damien Miller0faf7472013-10-17 11:47:23 +1100605}
606
Darren Tucker00c15182012-09-06 21:21:56 +1000607static void
608send_client_banner(int connection_out, int minor1)
609{
Darren Tucker00c15182012-09-06 21:21:56 +1000610 /* Send our own protocol version identification. */
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000611 xasprintf(&client_version_string, "SSH-%d.%d-%.100s\r\n",
612 PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2, SSH_VERSION);
markus@openbsd.orga3068632016-01-14 16:17:39 +0000613 if (atomicio(vwrite, connection_out, client_version_string,
Darren Tucker00c15182012-09-06 21:21:56 +1000614 strlen(client_version_string)) != strlen(client_version_string))
615 fatal("write: %.100s", strerror(errno));
616 chop(client_version_string);
617 debug("Local version string %.100s", client_version_string);
618}
619
Damien Milleraae6c611999-12-06 11:47:28 +1100620/*
Damien Miller95def091999-11-25 00:26:21 +1100621 * Waits for the server identification string, and sends our own
622 * identification string.
623 */
Darren Tucker1cc55d72009-06-21 18:17:19 +1000624void
Damien Miller67bd0622007-09-17 12:06:57 +1000625ssh_exchange_identification(int timeout_ms)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000626{
Damien Miller95def091999-11-25 00:26:21 +1100627 char buf[256], remote_version[256]; /* must be same size! */
Damien Millereccb9de2005-06-17 12:59:34 +1000628 int remote_major, remote_minor, mismatch;
Damien Miller95def091999-11-25 00:26:21 +1100629 int connection_in = packet_get_connection_in();
630 int connection_out = packet_get_connection_out();
Damien Miller1e88ea62006-07-10 20:15:56 +1000631 u_int i, n;
Damien Miller67bd0622007-09-17 12:06:57 +1000632 size_t len;
djm@openbsd.org45404282017-06-24 05:37:44 +0000633 int rc;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000634
djm@openbsd.org99f95ba2017-04-30 23:11:45 +0000635 send_client_banner(connection_out, 0);
Darren Tucker00c15182012-09-06 21:21:56 +1000636
Damien Millerb253cc42005-05-26 12:23:44 +1000637 /* Read other side's version identification. */
Damien Miller1e88ea62006-07-10 20:15:56 +1000638 for (n = 0;;) {
Damien Millerf6d9e222000-06-18 14:50:44 +1000639 for (i = 0; i < sizeof(buf) - 1; i++) {
Damien Miller67bd0622007-09-17 12:06:57 +1000640 if (timeout_ms > 0) {
djm@openbsd.org45404282017-06-24 05:37:44 +0000641 rc = waitrfd(connection_in, &timeout_ms);
642 if (rc == -1 && errno == ETIMEDOUT) {
Damien Miller67bd0622007-09-17 12:06:57 +1000643 fatal("Connection timed out during "
644 "banner exchange");
djm@openbsd.org45404282017-06-24 05:37:44 +0000645 } else if (rc == -1) {
646 fatal("%s: %s",
647 __func__, strerror(errno));
Damien Miller67bd0622007-09-17 12:06:57 +1000648 }
649 }
650
markus@openbsd.orga3068632016-01-14 16:17:39 +0000651 len = atomicio(read, connection_in, &buf[i], 1);
Damien Miller46d38de2005-07-17 17:02:09 +1000652 if (len != 1 && errno == EPIPE)
Damien Miller67bd0622007-09-17 12:06:57 +1000653 fatal("ssh_exchange_identification: "
654 "Connection closed by remote host");
Damien Millerb253cc42005-05-26 12:23:44 +1000655 else if (len != 1)
Damien Miller67bd0622007-09-17 12:06:57 +1000656 fatal("ssh_exchange_identification: "
657 "read: %.100s", strerror(errno));
Damien Millerf6d9e222000-06-18 14:50:44 +1000658 if (buf[i] == '\r') {
659 buf[i] = '\n';
660 buf[i + 1] = 0;
661 continue; /**XXX wait for \n */
662 }
663 if (buf[i] == '\n') {
664 buf[i + 1] = 0;
665 break;
666 }
Damien Miller1e88ea62006-07-10 20:15:56 +1000667 if (++n > 65536)
Damien Miller67bd0622007-09-17 12:06:57 +1000668 fatal("ssh_exchange_identification: "
669 "No banner received");
Damien Miller95def091999-11-25 00:26:21 +1100670 }
Damien Millerf6d9e222000-06-18 14:50:44 +1000671 buf[sizeof(buf) - 1] = 0;
672 if (strncmp(buf, "SSH-", 4) == 0)
Damien Miller95def091999-11-25 00:26:21 +1100673 break;
Damien Millerf6d9e222000-06-18 14:50:44 +1000674 debug("ssh_exchange_identification: %s", buf);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000675 }
Damien Miller1383bd82000-04-06 12:32:37 +1000676 server_version_string = xstrdup(buf);
Damien Miller95def091999-11-25 00:26:21 +1100677
Damien Miller5428f641999-11-25 11:54:57 +1100678 /*
679 * Check that the versions match. In future this might accept
680 * several versions and set appropriate flags to handle them.
681 */
Damien Miller1383bd82000-04-06 12:32:37 +1000682 if (sscanf(server_version_string, "SSH-%d.%d-%[^\n]\n",
683 &remote_major, &remote_minor, remote_version) != 3)
Damien Miller95def091999-11-25 00:26:21 +1100684 fatal("Bad remote protocol version identification: '%.100s'", buf);
685 debug("Remote protocol version %d.%d, remote software version %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100686 remote_major, remote_minor, remote_version);
Damien Miller95def091999-11-25 00:26:21 +1100687
markus@openbsd.org48b3b2b2015-01-19 20:20:20 +0000688 active_state->compat = compat_datafellows(remote_version);
Damien Miller78928792000-04-12 20:17:38 +1000689 mismatch = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000690
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000691 switch (remote_major) {
Damien Miller78928792000-04-12 20:17:38 +1000692 case 2:
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000693 break;
694 case 1:
695 if (remote_minor != 99)
696 mismatch = 1;
djm@openbsd.org99f95ba2017-04-30 23:11:45 +0000697 break;
Damien Miller4af51302000-04-16 11:18:38 +1000698 default:
Damien Miller78928792000-04-12 20:17:38 +1000699 mismatch = 1;
700 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000701 }
Damien Miller78928792000-04-12 20:17:38 +1000702 if (mismatch)
Damien Miller95def091999-11-25 00:26:21 +1100703 fatal("Protocol major versions differ: %d vs. %d",
djm@openbsd.org99f95ba2017-04-30 23:11:45 +0000704 PROTOCOL_MAJOR_2, remote_major);
Damien Miller324541e2013-12-31 12:25:40 +1100705 if ((datafellows & SSH_BUG_RSASIGMD5) != 0)
706 logit("Server version \"%.100s\" uses unsafe RSA signature "
707 "scheme; disabling use of RSA keys", remote_version);
Damien Miller1383bd82000-04-06 12:32:37 +1000708 chop(server_version_string);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000709}
710
Ben Lindstromb6c06d92001-02-10 23:21:09 +0000711/* defaults to 'no' */
Ben Lindstrombba81212001-06-25 05:01:22 +0000712static int
Damien Millere3980042001-10-10 15:02:03 +1000713confirm(const char *prompt)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000714{
Damien Miller49d795c2002-01-22 23:34:12 +1100715 const char *msg, *again = "Please type 'yes' or 'no': ";
716 char *p;
717 int ret = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000718
Ben Lindstromb6c06d92001-02-10 23:21:09 +0000719 if (options.batch_mode)
720 return 0;
Damien Miller49d795c2002-01-22 23:34:12 +1100721 for (msg = prompt;;msg = again) {
722 p = read_passphrase(msg, RP_ECHO);
djm@openbsd.orge0ce54c2017-12-06 05:06:21 +0000723 if (p == NULL)
724 return 0;
725 p[strcspn(p, "\n")] = '\0';
726 if (p[0] == '\0' || strcasecmp(p, "no") == 0)
Damien Miller49d795c2002-01-22 23:34:12 +1100727 ret = 0;
djm@openbsd.orge0ce54c2017-12-06 05:06:21 +0000728 else if (strcasecmp(p, "yes") == 0)
Damien Miller49d795c2002-01-22 23:34:12 +1100729 ret = 1;
Darren Tuckera627d422013-06-02 07:31:17 +1000730 free(p);
Damien Miller49d795c2002-01-22 23:34:12 +1100731 if (ret != -1)
732 return ret;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000733 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000734}
735
Damien Miller0a80ca12010-02-27 07:55:05 +1100736static int
djm@openbsd.orgecac7e12018-09-20 03:30:44 +0000737check_host_cert(const char *host, const struct sshkey *key)
Damien Miller0a80ca12010-02-27 07:55:05 +1100738{
739 const char *reason;
djm@openbsd.orgecac7e12018-09-20 03:30:44 +0000740 int r;
Damien Miller0a80ca12010-02-27 07:55:05 +1100741
djm@openbsd.orgecac7e12018-09-20 03:30:44 +0000742 if (sshkey_cert_check_authority(key, 1, 0, host, &reason) != 0) {
Damien Miller0a80ca12010-02-27 07:55:05 +1100743 error("%s", reason);
744 return 0;
745 }
djm@openbsd.orgecac7e12018-09-20 03:30:44 +0000746 if (sshbuf_len(key->cert->critical) != 0) {
Damien Miller4e270b02010-04-16 15:56:21 +1000747 error("Certificate for %s contains unsupported "
748 "critical options(s)", host);
Damien Miller0a80ca12010-02-27 07:55:05 +1100749 return 0;
750 }
djm@openbsd.orgecac7e12018-09-20 03:30:44 +0000751 if ((r = sshkey_check_cert_sigtype(key,
752 options.ca_sign_algorithms)) != 0) {
753 logit("%s: certificate signature algorithm %s: %s", __func__,
754 (key->cert == NULL || key->cert->signature_type == NULL) ?
755 "(null)" : key->cert->signature_type, ssh_err(r));
756 return 0;
757 }
758
Damien Miller0a80ca12010-02-27 07:55:05 +1100759 return 1;
760}
761
Damien Millerd925dcd2010-12-01 12:21:51 +1100762static int
763sockaddr_is_local(struct sockaddr *hostaddr)
764{
765 switch (hostaddr->sa_family) {
766 case AF_INET:
767 return (ntohl(((struct sockaddr_in *)hostaddr)->
768 sin_addr.s_addr) >> 24) == IN_LOOPBACKNET;
769 case AF_INET6:
770 return IN6_IS_ADDR_LOOPBACK(
771 &(((struct sockaddr_in6 *)hostaddr)->sin6_addr));
772 default:
773 return 0;
774 }
775}
776
777/*
778 * Prepare the hostname and ip address strings that are used to lookup
779 * host keys in known_hosts files. These may have a port number appended.
780 */
781void
782get_hostfile_hostname_ipaddr(char *hostname, struct sockaddr *hostaddr,
783 u_short port, char **hostfile_hostname, char **hostfile_ipaddr)
784{
785 char ntop[NI_MAXHOST];
786 socklen_t addrlen;
787
788 switch (hostaddr == NULL ? -1 : hostaddr->sa_family) {
789 case -1:
790 addrlen = 0;
791 break;
792 case AF_INET:
793 addrlen = sizeof(struct sockaddr_in);
794 break;
795 case AF_INET6:
796 addrlen = sizeof(struct sockaddr_in6);
797 break;
798 default:
799 addrlen = sizeof(struct sockaddr);
800 break;
801 }
802
803 /*
804 * We don't have the remote ip-address for connections
805 * using a proxy command
806 */
807 if (hostfile_ipaddr != NULL) {
808 if (options.proxy_command == NULL) {
809 if (getnameinfo(hostaddr, addrlen,
810 ntop, sizeof(ntop), NULL, 0, NI_NUMERICHOST) != 0)
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000811 fatal("%s: getnameinfo failed", __func__);
Damien Millerd925dcd2010-12-01 12:21:51 +1100812 *hostfile_ipaddr = put_host_port(ntop, port);
813 } else {
814 *hostfile_ipaddr = xstrdup("<no hostip for proxy "
815 "command>");
816 }
817 }
818
819 /*
820 * Allow the user to record the key under a different name or
821 * differentiate a non-standard port. This is useful for ssh
822 * tunneling over forwarded connections or if you run multiple
823 * sshd's on different ports on the same machine.
824 */
825 if (hostfile_hostname != NULL) {
826 if (options.host_key_alias != NULL) {
827 *hostfile_hostname = xstrdup(options.host_key_alias);
828 debug("using hostkeyalias: %s", *hostfile_hostname);
829 } else {
830 *hostfile_hostname = put_host_port(hostname, port);
831 }
832 }
833}
834
Damien Miller95def091999-11-25 00:26:21 +1100835/*
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000836 * check whether the supplied host key is valid, return -1 if the key
Damien Miller295ee632011-05-29 21:42:31 +1000837 * is not valid. user_hostfile[0] will not be updated if 'readonly' is true.
Damien Miller95def091999-11-25 00:26:21 +1100838 */
Damien Millerda828392006-08-05 11:35:45 +1000839#define RDRW 0
840#define RDONLY 1
841#define ROQUIET 2
Ben Lindstrombba81212001-06-25 05:01:22 +0000842static int
Damien Millerda828392006-08-05 11:35:45 +1000843check_host_key(char *hostname, struct sockaddr *hostaddr, u_short port,
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000844 struct sshkey *host_key, int readonly,
Damien Miller295ee632011-05-29 21:42:31 +1000845 char **user_hostfiles, u_int num_user_hostfiles,
846 char **system_hostfiles, u_int num_system_hostfiles)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000847{
Damien Miller95def091999-11-25 00:26:21 +1100848 HostStatus host_status;
849 HostStatus ip_status;
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000850 struct sshkey *raw_key = NULL;
Damien Miller295ee632011-05-29 21:42:31 +1000851 char *ip = NULL, *host = NULL;
852 char hostline[1000], *hostp, *fp, *ra;
Damien Miller49d795c2002-01-22 23:34:12 +1100853 char msg[1024];
Damien Miller295ee632011-05-29 21:42:31 +1000854 const char *type;
Damien Millerd925dcd2010-12-01 12:21:51 +1100855 const struct hostkey_entry *host_found, *ip_found;
Damien Miller295ee632011-05-29 21:42:31 +1000856 int len, cancelled_forwarding = 0;
857 int local = sockaddr_is_local(hostaddr);
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +0000858 int r, want_cert = sshkey_is_cert(host_key), host_ip_differ = 0;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000859 int hostkey_trusted = 0; /* Known or explicitly accepted by user */
Damien Miller295ee632011-05-29 21:42:31 +1000860 struct hostkeys *host_hostkeys, *ip_hostkeys;
861 u_int i;
Damien Miller34132e52000-01-14 15:45:46 +1100862
863 /*
864 * Force accepting of the host key for loopback/localhost. The
865 * problem is that if the home directory is NFS-mounted to multiple
866 * machines, localhost will refer to a different machine in each of
867 * them, and the user will get bogus HOST_CHANGED warnings. This
868 * essentially disables host authentication for localhost; however,
869 * this is probably not a real problem.
870 */
Ben Lindstrom3cecc9a2001-10-03 17:39:38 +0000871 if (options.no_host_authentication_for_localhost == 1 && local &&
872 options.host_key_alias == NULL) {
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000873 debug("Forcing accepting of host key for "
874 "loopback/localhost.");
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000875 return 0;
Damien Miller34132e52000-01-14 15:45:46 +1100876 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000877
Damien Milleraae6c611999-12-06 11:47:28 +1100878 /*
Damien Millerd925dcd2010-12-01 12:21:51 +1100879 * Prepare the hostname and address strings used for hostkey lookup.
880 * In some cases, these will have a port number appended.
Damien Milleraae6c611999-12-06 11:47:28 +1100881 */
Damien Millerd925dcd2010-12-01 12:21:51 +1100882 get_hostfile_hostname_ipaddr(hostname, hostaddr, port, &host, &ip);
Darren Tucker78913e02008-06-13 04:47:34 +1000883
884 /*
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000885 * Turn off check_host_ip if the connection is to localhost, via proxy
886 * command or if we don't have a hostname to compare with
887 */
Darren Tuckerda345532006-07-10 23:04:19 +1000888 if (options.check_host_ip && (local ||
889 strcmp(hostname, ip) == 0 || options.proxy_command != NULL))
Damien Milleraae6c611999-12-06 11:47:28 +1100890 options.check_host_ip = 0;
891
Damien Millerd925dcd2010-12-01 12:21:51 +1100892 host_hostkeys = init_hostkeys();
Damien Miller295ee632011-05-29 21:42:31 +1000893 for (i = 0; i < num_user_hostfiles; i++)
894 load_hostkeys(host_hostkeys, host, user_hostfiles[i]);
895 for (i = 0; i < num_system_hostfiles; i++)
896 load_hostkeys(host_hostkeys, host, system_hostfiles[i]);
Damien Millerd925dcd2010-12-01 12:21:51 +1100897
898 ip_hostkeys = NULL;
899 if (!want_cert && options.check_host_ip) {
900 ip_hostkeys = init_hostkeys();
Damien Miller295ee632011-05-29 21:42:31 +1000901 for (i = 0; i < num_user_hostfiles; i++)
902 load_hostkeys(ip_hostkeys, ip, user_hostfiles[i]);
903 for (i = 0; i < num_system_hostfiles; i++)
904 load_hostkeys(ip_hostkeys, ip, system_hostfiles[i]);
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000905 }
906
Damien Miller0a80ca12010-02-27 07:55:05 +1100907 retry:
Damien Millerd925dcd2010-12-01 12:21:51 +1100908 /* Reload these as they may have changed on cert->key downgrade */
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +0000909 want_cert = sshkey_is_cert(host_key);
910 type = sshkey_type(host_key);
Damien Miller0a80ca12010-02-27 07:55:05 +1100911
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000912 /*
Damien Miller788f2122005-11-05 15:14:59 +1100913 * Check if the host key is present in the user's list of known
Damien Miller5428f641999-11-25 11:54:57 +1100914 * hosts or in the systemwide list.
915 */
Damien Millerd925dcd2010-12-01 12:21:51 +1100916 host_status = check_key_in_hostkeys(host_hostkeys, host_key,
917 &host_found);
918
Damien Miller5428f641999-11-25 11:54:57 +1100919 /*
Damien Miller5428f641999-11-25 11:54:57 +1100920 * Also perform check for the ip address, skip the check if we are
Damien Miller0a80ca12010-02-27 07:55:05 +1100921 * localhost, looking for a certificate, or the hostname was an ip
922 * address to begin with.
Damien Miller5428f641999-11-25 11:54:57 +1100923 */
Damien Millerd925dcd2010-12-01 12:21:51 +1100924 if (!want_cert && ip_hostkeys != NULL) {
925 ip_status = check_key_in_hostkeys(ip_hostkeys, host_key,
926 &ip_found);
Damien Miller95def091999-11-25 00:26:21 +1100927 if (host_status == HOST_CHANGED &&
Damien Millerd925dcd2010-12-01 12:21:51 +1100928 (ip_status != HOST_CHANGED ||
929 (ip_found != NULL &&
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +0000930 !sshkey_equal(ip_found->key, host_found->key))))
Damien Miller95def091999-11-25 00:26:21 +1100931 host_ip_differ = 1;
Damien Miller95def091999-11-25 00:26:21 +1100932 } else
933 ip_status = host_status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000934
Damien Miller95def091999-11-25 00:26:21 +1100935 switch (host_status) {
936 case HOST_OK:
937 /* The host is known and the key matches. */
Damien Miller0a80ca12010-02-27 07:55:05 +1100938 debug("Host '%.200s' is known and matches the %s host %s.",
939 host, type, want_cert ? "certificate" : "key");
Damien Millerd925dcd2010-12-01 12:21:51 +1100940 debug("Found %s in %s:%lu", want_cert ? "CA key" : "key",
941 host_found->file, host_found->line);
djm@openbsd.org6f8ca3b2017-06-24 05:35:05 +0000942 if (want_cert &&
943 !check_host_cert(options.host_key_alias == NULL ?
944 hostname : options.host_key_alias, host_key))
Damien Miller0a80ca12010-02-27 07:55:05 +1100945 goto fail;
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000946 if (options.check_host_ip && ip_status == HOST_NEW) {
Damien Miller0a80ca12010-02-27 07:55:05 +1100947 if (readonly || want_cert)
Damien Miller996acd22003-04-09 20:59:48 +1000948 logit("%s host key for IP address "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000949 "'%.128s' not in list of known hosts.",
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000950 type, ip);
Damien Miller295ee632011-05-29 21:42:31 +1000951 else if (!add_host_to_hostfile(user_hostfiles[0], ip,
Damien Millere1776152005-03-01 21:47:37 +1100952 host_key, options.hash_known_hosts))
Damien Miller996acd22003-04-09 20:59:48 +1000953 logit("Failed to add the %s host key for IP "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000954 "address '%.128s' to the list of known "
dtucker@openbsd.org496aeb22015-05-28 05:41:29 +0000955 "hosts (%.500s).", type, ip,
Damien Miller295ee632011-05-29 21:42:31 +1000956 user_hostfiles[0]);
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000957 else
Damien Miller996acd22003-04-09 20:59:48 +1000958 logit("Warning: Permanently added the %s host "
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000959 "key for IP address '%.128s' to the list "
960 "of known hosts.", type, ip);
Damien Miller10288242008-06-30 00:04:03 +1000961 } else if (options.visual_host_key) {
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000962 fp = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000963 options.fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000964 ra = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +0000965 options.fingerprint_hash, SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +0000966 if (fp == NULL || ra == NULL)
967 fatal("%s: sshkey_fingerprint fail", __func__);
djm@openbsd.orgac3451d2015-09-04 03:57:38 +0000968 logit("Host key fingerprint is %s\n%s", fp, ra);
Darren Tuckera627d422013-06-02 07:31:17 +1000969 free(ra);
970 free(fp);
Damien Miller95def091999-11-25 00:26:21 +1100971 }
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000972 hostkey_trusted = 1;
Damien Miller95def091999-11-25 00:26:21 +1100973 break;
974 case HOST_NEW:
Damien Millerda828392006-08-05 11:35:45 +1000975 if (options.host_key_alias == NULL && port != 0 &&
976 port != SSH_DEFAULT_PORT) {
977 debug("checking without port identifier");
Damien Millerece92c82008-11-03 19:25:03 +1100978 if (check_host_key(hostname, hostaddr, 0, host_key,
Damien Miller295ee632011-05-29 21:42:31 +1000979 ROQUIET, user_hostfiles, num_user_hostfiles,
980 system_hostfiles, num_system_hostfiles) == 0) {
Damien Millerda828392006-08-05 11:35:45 +1000981 debug("found matching key w/out port");
982 break;
983 }
984 }
Damien Miller0a80ca12010-02-27 07:55:05 +1100985 if (readonly || want_cert)
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000986 goto fail;
Damien Miller95def091999-11-25 00:26:21 +1100987 /* The host is new. */
djm@openbsd.org22376d22017-09-03 23:33:13 +0000988 if (options.strict_host_key_checking ==
989 SSH_STRICT_HOSTKEY_YES) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +0000990 /*
991 * User has requested strict host key checking. We
992 * will not add the host key automatically. The only
993 * alternative left is to abort.
994 */
995 error("No %s host key is known for %.200s and you "
996 "have requested strict checking.", type, host);
997 goto fail;
djm@openbsd.org22376d22017-09-03 23:33:13 +0000998 } else if (options.strict_host_key_checking ==
999 SSH_STRICT_HOSTKEY_ASK) {
Damien Miller7392ae62003-06-11 22:05:25 +10001000 char msg1[1024], msg2[1024];
1001
Damien Millerd925dcd2010-12-01 12:21:51 +11001002 if (show_other_keys(host_hostkeys, host_key))
Damien Miller7392ae62003-06-11 22:05:25 +10001003 snprintf(msg1, sizeof(msg1),
Damien Miller0dc1bef2005-07-17 17:22:45 +10001004 "\nbut keys of different type are already"
1005 " known for this host.");
Damien Miller7392ae62003-06-11 22:05:25 +10001006 else
1007 snprintf(msg1, sizeof(msg1), ".");
Damien Miller95def091999-11-25 00:26:21 +11001008 /* The default */
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001009 fp = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001010 options.fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001011 ra = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001012 options.fingerprint_hash, SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001013 if (fp == NULL || ra == NULL)
1014 fatal("%s: sshkey_fingerprint fail", __func__);
Damien Miller7392ae62003-06-11 22:05:25 +10001015 msg2[0] = '\0';
Damien Miller7392ae62003-06-11 22:05:25 +10001016 if (options.verify_host_key_dns) {
Damien Miller150b5572003-11-17 21:19:29 +11001017 if (matching_host_key_dns)
Damien Miller7392ae62003-06-11 22:05:25 +10001018 snprintf(msg2, sizeof(msg2),
1019 "Matching host key fingerprint"
1020 " found in DNS.\n");
1021 else
1022 snprintf(msg2, sizeof(msg2),
1023 "No matching host key fingerprint"
1024 " found in DNS.\n");
1025 }
Damien Miller49d795c2002-01-22 23:34:12 +11001026 snprintf(msg, sizeof(msg),
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001027 "The authenticity of host '%.200s (%s)' can't be "
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001028 "established%s\n"
Damien Miller10288242008-06-30 00:04:03 +10001029 "%s key fingerprint is %s.%s%s\n%s"
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001030 "Are you sure you want to continue connecting "
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001031 "(yes/no)? ",
Damien Miller10288242008-06-30 00:04:03 +10001032 host, ip, msg1, type, fp,
1033 options.visual_host_key ? "\n" : "",
1034 options.visual_host_key ? ra : "",
1035 msg2);
Darren Tuckera627d422013-06-02 07:31:17 +10001036 free(ra);
1037 free(fp);
Damien Miller49d795c2002-01-22 23:34:12 +11001038 if (!confirm(msg))
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001039 goto fail;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00001040 hostkey_trusted = 1; /* user explicitly confirmed */
Damien Miller95def091999-11-25 00:26:21 +11001041 }
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001042 /*
djm@openbsd.org22376d22017-09-03 23:33:13 +00001043 * If in "new" or "off" strict mode, add the key automatically
1044 * to the local known_hosts file.
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001045 */
Damien Miller1227d4c2005-03-02 12:06:51 +11001046 if (options.check_host_ip && ip_status == HOST_NEW) {
Damien Millerd925dcd2010-12-01 12:21:51 +11001047 snprintf(hostline, sizeof(hostline), "%s,%s", host, ip);
Damien Miller1227d4c2005-03-02 12:06:51 +11001048 hostp = hostline;
1049 if (options.hash_known_hosts) {
1050 /* Add hash of host and IP separately */
Damien Miller295ee632011-05-29 21:42:31 +10001051 r = add_host_to_hostfile(user_hostfiles[0],
1052 host, host_key, options.hash_known_hosts) &&
1053 add_host_to_hostfile(user_hostfiles[0], ip,
Damien Miller1227d4c2005-03-02 12:06:51 +11001054 host_key, options.hash_known_hosts);
1055 } else {
1056 /* Add unhashed "host,ip" */
Damien Miller295ee632011-05-29 21:42:31 +10001057 r = add_host_to_hostfile(user_hostfiles[0],
Damien Miller1227d4c2005-03-02 12:06:51 +11001058 hostline, host_key,
1059 options.hash_known_hosts);
1060 }
1061 } else {
Damien Miller295ee632011-05-29 21:42:31 +10001062 r = add_host_to_hostfile(user_hostfiles[0], host,
1063 host_key, options.hash_known_hosts);
Damien Miller1227d4c2005-03-02 12:06:51 +11001064 hostp = host;
1065 }
1066
1067 if (!r)
Damien Miller996acd22003-04-09 20:59:48 +10001068 logit("Failed to add the host to the list of known "
Damien Miller295ee632011-05-29 21:42:31 +10001069 "hosts (%.500s).", user_hostfiles[0]);
Damien Miller95def091999-11-25 00:26:21 +11001070 else
Damien Miller996acd22003-04-09 20:59:48 +10001071 logit("Warning: Permanently added '%.200s' (%s) to the "
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001072 "list of known hosts.", hostp, type);
Damien Miller95def091999-11-25 00:26:21 +11001073 break;
Damien Miller1aed65e2010-03-04 21:53:35 +11001074 case HOST_REVOKED:
1075 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1076 error("@ WARNING: REVOKED HOST KEY DETECTED! @");
1077 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1078 error("The %s host key for %s is marked as revoked.", type, host);
1079 error("This could mean that a stolen key is being used to");
1080 error("impersonate this host.");
1081
1082 /*
1083 * If strict host key checking is in use, the user will have
1084 * to edit the key manually and we can only abort.
1085 */
djm@openbsd.org22376d22017-09-03 23:33:13 +00001086 if (options.strict_host_key_checking !=
1087 SSH_STRICT_HOSTKEY_OFF) {
Damien Miller1aed65e2010-03-04 21:53:35 +11001088 error("%s host key for %.200s was revoked and you have "
1089 "requested strict checking.", type, host);
1090 goto fail;
1091 }
1092 goto continue_unsafe;
1093
Damien Miller95def091999-11-25 00:26:21 +11001094 case HOST_CHANGED:
Damien Miller0a80ca12010-02-27 07:55:05 +11001095 if (want_cert) {
1096 /*
1097 * This is only a debug() since it is valid to have
1098 * CAs with wildcard DNS matches that don't match
1099 * all hosts that one might visit.
1100 */
1101 debug("Host certificate authority does not "
Damien Millerd925dcd2010-12-01 12:21:51 +11001102 "match %s in %s:%lu", CA_MARKER,
1103 host_found->file, host_found->line);
Damien Miller0a80ca12010-02-27 07:55:05 +11001104 goto fail;
1105 }
Damien Millerda828392006-08-05 11:35:45 +10001106 if (readonly == ROQUIET)
1107 goto fail;
Damien Miller95def091999-11-25 00:26:21 +11001108 if (options.check_host_ip && host_ip_differ) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001109 char *key_msg;
Damien Miller95def091999-11-25 00:26:21 +11001110 if (ip_status == HOST_NEW)
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001111 key_msg = "is unknown";
Damien Miller95def091999-11-25 00:26:21 +11001112 else if (ip_status == HOST_OK)
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001113 key_msg = "is unchanged";
Damien Miller95def091999-11-25 00:26:21 +11001114 else
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001115 key_msg = "has a different value";
Damien Miller95def091999-11-25 00:26:21 +11001116 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1117 error("@ WARNING: POSSIBLE DNS SPOOFING DETECTED! @");
1118 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
Damien Millere247cc42000-05-07 12:03:14 +10001119 error("The %s host key for %s has changed,", type, host);
Darren Tuckerff4454d2008-06-13 10:21:51 +10001120 error("and the key for the corresponding IP address %s", ip);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001121 error("%s. This could either mean that", key_msg);
Damien Miller95def091999-11-25 00:26:21 +11001122 error("DNS SPOOFING is happening or the IP address for the host");
Ben Lindstrom46c16222000-12-22 01:43:59 +00001123 error("and its host key have changed at the same time.");
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +00001124 if (ip_status != HOST_NEW)
Damien Millerd925dcd2010-12-01 12:21:51 +11001125 error("Offending key for IP in %s:%lu",
1126 ip_found->file, ip_found->line);
Damien Miller95def091999-11-25 00:26:21 +11001127 }
1128 /* The host key has changed. */
Damien Miller5a388972003-11-17 21:10:47 +11001129 warn_changed_key(host_key);
Damien Miller95def091999-11-25 00:26:21 +11001130 error("Add correct host key in %.100s to get rid of this message.",
Damien Miller295ee632011-05-29 21:42:31 +10001131 user_hostfiles[0]);
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +00001132 error("Offending %s key in %s:%lu",
1133 sshkey_type(host_found->key),
Damien Millerd925dcd2010-12-01 12:21:51 +11001134 host_found->file, host_found->line);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001135
Damien Miller5428f641999-11-25 11:54:57 +11001136 /*
1137 * If strict host key checking is in use, the user will have
1138 * to edit the key manually and we can only abort.
1139 */
djm@openbsd.org22376d22017-09-03 23:33:13 +00001140 if (options.strict_host_key_checking !=
1141 SSH_STRICT_HOSTKEY_OFF) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001142 error("%s host key for %.200s has changed and you have "
1143 "requested strict checking.", type, host);
1144 goto fail;
1145 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001146
Damien Miller1aed65e2010-03-04 21:53:35 +11001147 continue_unsafe:
Damien Miller5428f641999-11-25 11:54:57 +11001148 /*
1149 * If strict host key checking has not been requested, allow
Damien Miller941ac452003-06-04 20:31:53 +10001150 * the connection but without MITM-able authentication or
Damien Miller437edb92006-08-05 09:11:13 +10001151 * forwarding.
Damien Miller5428f641999-11-25 11:54:57 +11001152 */
Damien Miller95def091999-11-25 00:26:21 +11001153 if (options.password_authentication) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001154 error("Password authentication is disabled to avoid "
1155 "man-in-the-middle attacks.");
Damien Miller95def091999-11-25 00:26:21 +11001156 options.password_authentication = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001157 cancelled_forwarding = 1;
Damien Miller95def091999-11-25 00:26:21 +11001158 }
Damien Miller941ac452003-06-04 20:31:53 +10001159 if (options.kbd_interactive_authentication) {
1160 error("Keyboard-interactive authentication is disabled"
1161 " to avoid man-in-the-middle attacks.");
1162 options.kbd_interactive_authentication = 0;
1163 options.challenge_response_authentication = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001164 cancelled_forwarding = 1;
Damien Miller941ac452003-06-04 20:31:53 +10001165 }
1166 if (options.challenge_response_authentication) {
1167 error("Challenge/response authentication is disabled"
1168 " to avoid man-in-the-middle attacks.");
1169 options.challenge_response_authentication = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001170 cancelled_forwarding = 1;
Damien Miller941ac452003-06-04 20:31:53 +10001171 }
Damien Miller95def091999-11-25 00:26:21 +11001172 if (options.forward_agent) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001173 error("Agent forwarding is disabled to avoid "
1174 "man-in-the-middle attacks.");
Damien Miller95def091999-11-25 00:26:21 +11001175 options.forward_agent = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001176 cancelled_forwarding = 1;
Damien Miller95def091999-11-25 00:26:21 +11001177 }
Ben Lindstromc72745a2000-12-02 19:03:54 +00001178 if (options.forward_x11) {
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001179 error("X11 forwarding is disabled to avoid "
1180 "man-in-the-middle attacks.");
Ben Lindstromc72745a2000-12-02 19:03:54 +00001181 options.forward_x11 = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001182 cancelled_forwarding = 1;
Ben Lindstromc72745a2000-12-02 19:03:54 +00001183 }
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001184 if (options.num_local_forwards > 0 ||
1185 options.num_remote_forwards > 0) {
1186 error("Port forwarding is disabled to avoid "
1187 "man-in-the-middle attacks.");
1188 options.num_local_forwards =
Damien Miller9f0f5c62001-12-21 14:45:46 +11001189 options.num_remote_forwards = 0;
Darren Tucker068e01f2008-07-02 22:33:55 +10001190 cancelled_forwarding = 1;
Ben Lindstromc72745a2000-12-02 19:03:54 +00001191 }
Damien Miller437edb92006-08-05 09:11:13 +10001192 if (options.tun_open != SSH_TUNMODE_NO) {
1193 error("Tunnel forwarding is disabled to avoid "
1194 "man-in-the-middle attacks.");
1195 options.tun_open = SSH_TUNMODE_NO;
Darren Tucker068e01f2008-07-02 22:33:55 +10001196 cancelled_forwarding = 1;
Damien Miller437edb92006-08-05 09:11:13 +10001197 }
Darren Tucker068e01f2008-07-02 22:33:55 +10001198 if (options.exit_on_forward_failure && cancelled_forwarding)
1199 fatal("Error: forwarding disabled due to host key "
1200 "check failure");
1201
Damien Miller5428f641999-11-25 11:54:57 +11001202 /*
1203 * XXX Should permit the user to change to use the new id.
1204 * This could be done by converting the host key to an
1205 * identifying sentence, tell that the host identifies itself
Darren Tuckere2b36742010-01-13 22:42:34 +11001206 * by that sentence, and ask the user if he/she wishes to
Damien Miller5428f641999-11-25 11:54:57 +11001207 * accept the authentication.
1208 */
Damien Miller95def091999-11-25 00:26:21 +11001209 break;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001210 case HOST_FOUND:
1211 fatal("internal error");
1212 break;
Damien Miller95def091999-11-25 00:26:21 +11001213 }
Ben Lindstromc72745a2000-12-02 19:03:54 +00001214
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +00001215 if (options.check_host_ip && host_status != HOST_CHANGED &&
1216 ip_status == HOST_CHANGED) {
Damien Miller49d795c2002-01-22 23:34:12 +11001217 snprintf(msg, sizeof(msg),
1218 "Warning: the %s host key for '%.200s' "
1219 "differs from the key for the IP address '%.128s'"
Damien Millerd925dcd2010-12-01 12:21:51 +11001220 "\nOffending key for IP in %s:%lu",
1221 type, host, ip, ip_found->file, ip_found->line);
Damien Miller49d795c2002-01-22 23:34:12 +11001222 if (host_status == HOST_OK) {
1223 len = strlen(msg);
1224 snprintf(msg + len, sizeof(msg) - len,
Damien Millerd925dcd2010-12-01 12:21:51 +11001225 "\nMatching host key in %s:%lu",
1226 host_found->file, host_found->line);
Damien Miller49d795c2002-01-22 23:34:12 +11001227 }
djm@openbsd.org22376d22017-09-03 23:33:13 +00001228 if (options.strict_host_key_checking ==
1229 SSH_STRICT_HOSTKEY_ASK) {
Damien Miller49d795c2002-01-22 23:34:12 +11001230 strlcat(msg, "\nAre you sure you want "
1231 "to continue connecting (yes/no)? ", sizeof(msg));
1232 if (!confirm(msg))
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001233 goto fail;
djm@openbsd.org22376d22017-09-03 23:33:13 +00001234 } else if (options.strict_host_key_checking !=
1235 SSH_STRICT_HOSTKEY_OFF) {
1236 logit("%s", msg);
1237 error("Exiting, you have requested strict checking.");
1238 goto fail;
Damien Miller49d795c2002-01-22 23:34:12 +11001239 } else {
Damien Millerab2db412003-06-02 19:09:13 +10001240 logit("%s", msg);
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +00001241 }
1242 }
1243
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00001244 if (!hostkey_trusted && options.update_hostkeys) {
1245 debug("%s: hostkey not known or explicitly trusted: "
1246 "disabling UpdateHostkeys", __func__);
1247 options.update_hostkeys = 0;
1248 }
1249
Darren Tuckera627d422013-06-02 07:31:17 +10001250 free(ip);
1251 free(host);
Damien Millerd925dcd2010-12-01 12:21:51 +11001252 if (host_hostkeys != NULL)
1253 free_hostkeys(host_hostkeys);
1254 if (ip_hostkeys != NULL)
1255 free_hostkeys(ip_hostkeys);
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001256 return 0;
1257
1258fail:
Damien Miller1aed65e2010-03-04 21:53:35 +11001259 if (want_cert && host_status != HOST_REVOKED) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001260 /*
1261 * No matching certificate. Downgrade cert to raw key and
1262 * search normally.
1263 */
1264 debug("No matching CA found. Retry with plain key");
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +00001265 if ((r = sshkey_from_private(host_key, &raw_key)) != 0)
1266 fatal("%s: sshkey_from_private: %s",
1267 __func__, ssh_err(r));
1268 if ((r = sshkey_drop_cert(raw_key)) != 0)
1269 fatal("Couldn't drop certificate: %s", ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001270 host_key = raw_key;
1271 goto retry;
1272 }
dtucker@openbsd.orgf1f047f2018-02-07 22:52:45 +00001273 sshkey_free(raw_key);
Darren Tuckera627d422013-06-02 07:31:17 +10001274 free(ip);
1275 free(host);
Damien Millerd925dcd2010-12-01 12:21:51 +11001276 if (host_hostkeys != NULL)
1277 free_hostkeys(host_hostkeys);
1278 if (ip_hostkeys != NULL)
1279 free_hostkeys(ip_hostkeys);
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001280 return -1;
1281}
1282
Damien Miller37876e92003-05-15 10:19:46 +10001283/* returns 0 if key verifies or -1 if key does NOT verify */
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001284int
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001285verify_host_key(char *host, struct sockaddr *hostaddr, struct sshkey *host_key)
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001286{
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001287 u_int i;
Damien Miller6b37fbb2014-07-04 08:59:24 +10001288 int r = -1, flags = 0;
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001289 char valid[64], *fp = NULL, *cafp = NULL;
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001290 struct sshkey *plain = NULL;
Damien Millerd925dcd2010-12-01 12:21:51 +11001291
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001292 if ((fp = sshkey_fingerprint(host_key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001293 options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL) {
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001294 error("%s: fingerprint host key: %s", __func__, ssh_err(r));
1295 r = -1;
1296 goto out;
1297 }
Ben Lindstromd6481ea2001-06-25 04:37:41 +00001298
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001299 if (sshkey_is_cert(host_key)) {
1300 if ((cafp = sshkey_fingerprint(host_key->cert->signature_key,
1301 options.fingerprint_hash, SSH_FP_DEFAULT)) == NULL) {
1302 error("%s: fingerprint CA key: %s",
1303 __func__, ssh_err(r));
1304 r = -1;
1305 goto out;
1306 }
1307 sshkey_format_cert_validity(host_key->cert,
1308 valid, sizeof(valid));
1309 debug("Server host certificate: %s %s, serial %llu "
1310 "ID \"%s\" CA %s %s valid %s",
1311 sshkey_ssh_name(host_key), fp,
djm@openbsd.org8ca915f2015-11-20 01:45:29 +00001312 (unsigned long long)host_key->cert->serial,
1313 host_key->cert->key_id,
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001314 sshkey_ssh_name(host_key->cert->signature_key), cafp,
1315 valid);
1316 for (i = 0; i < host_key->cert->nprincipals; i++) {
1317 debug2("Server host certificate hostname: %s",
1318 host_key->cert->principals[i]);
1319 }
1320 } else {
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001321 debug("Server host key: %s %s", sshkey_ssh_name(host_key), fp);
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001322 }
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001323
1324 if (sshkey_equal(previous_host_key, host_key)) {
1325 debug2("%s: server host key %s %s matches cached key",
1326 __func__, sshkey_type(host_key), fp);
1327 r = 0;
1328 goto out;
1329 }
1330
1331 /* Check in RevokedHostKeys file if specified */
1332 if (options.revoked_host_keys != NULL) {
1333 r = sshkey_check_revoked(host_key, options.revoked_host_keys);
1334 switch (r) {
1335 case 0:
1336 break; /* not revoked */
1337 case SSH_ERR_KEY_REVOKED:
1338 error("Host key %s %s revoked by file %s",
1339 sshkey_type(host_key), fp,
1340 options.revoked_host_keys);
1341 r = -1;
1342 goto out;
1343 default:
1344 error("Error checking host key %s %s in "
1345 "revoked keys file %s: %s", sshkey_type(host_key),
1346 fp, options.revoked_host_keys, ssh_err(r));
1347 r = -1;
1348 goto out;
1349 }
Damien Miller6b37fbb2014-07-04 08:59:24 +10001350 }
1351
Damien Miller7d6a9fb2014-04-20 13:23:43 +10001352 if (options.verify_host_key_dns) {
1353 /*
1354 * XXX certs are not yet supported for DNS, so downgrade
1355 * them and try the plain key.
1356 */
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001357 if ((r = sshkey_from_private(host_key, &plain)) != 0)
1358 goto out;
1359 if (sshkey_is_cert(plain))
1360 sshkey_drop_cert(plain);
Damien Miller7d6a9fb2014-04-20 13:23:43 +10001361 if (verify_host_key_dns(host, hostaddr, plain, &flags) == 0) {
1362 if (flags & DNS_VERIFY_FOUND) {
1363 if (options.verify_host_key_dns == 1 &&
1364 flags & DNS_VERIFY_MATCH &&
1365 flags & DNS_VERIFY_SECURE) {
Damien Miller6b37fbb2014-07-04 08:59:24 +10001366 r = 0;
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001367 goto out;
Damien Miller7d6a9fb2014-04-20 13:23:43 +10001368 }
1369 if (flags & DNS_VERIFY_MATCH) {
1370 matching_host_key_dns = 1;
1371 } else {
djm@openbsd.orgaea59a02017-09-14 04:32:21 +00001372 warn_changed_key(plain);
1373 error("Update the SSHFP RR in DNS "
1374 "with the new host key to get rid "
1375 "of this message.");
Damien Miller7d6a9fb2014-04-20 13:23:43 +10001376 }
Damien Miller150b5572003-11-17 21:19:29 +11001377 }
Damien Miller37876e92003-05-15 10:19:46 +10001378 }
1379 }
Damien Miller6b37fbb2014-07-04 08:59:24 +10001380 r = check_host_key(host, hostaddr, options.port, host_key, RDRW,
Damien Miller295ee632011-05-29 21:42:31 +10001381 options.user_hostfiles, options.num_user_hostfiles,
1382 options.system_hostfiles, options.num_system_hostfiles);
Damien Miller6b37fbb2014-07-04 08:59:24 +10001383
djm@openbsd.org5e39a492014-12-04 02:24:32 +00001384out:
1385 sshkey_free(plain);
1386 free(fp);
djm@openbsd.orgf96516d2015-11-19 01:09:38 +00001387 free(cafp);
Damien Miller6b37fbb2014-07-04 08:59:24 +10001388 if (r == 0 && host_key != NULL) {
markus@openbsd.orgbeb965b2017-05-30 14:13:40 +00001389 sshkey_free(previous_host_key);
1390 r = sshkey_from_private(host_key, &previous_host_key);
Damien Miller6b37fbb2014-07-04 08:59:24 +10001391 }
1392
1393 return r;
Damien Millera34a28b1999-12-14 10:47:15 +11001394}
Damien Miller037a0dc1999-12-07 15:38:31 +11001395
Damien Miller396691a2000-01-20 22:44:08 +11001396/*
1397 * Starts a dialog with the server, and authenticates the current user on the
1398 * server. This does not need any extra privileges. The basic connection
1399 * to the server must already have been established before this is called.
1400 * If login fails, this function prints an error and never returns.
1401 * This function does not require super-user privileges.
1402 */
1403void
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001404ssh_login(Sensitive *sensitive, const char *orighost,
Damien Millerd925dcd2010-12-01 12:21:51 +11001405 struct sockaddr *hostaddr, u_short port, struct passwd *pw, int timeout_ms)
Damien Miller396691a2000-01-20 22:44:08 +11001406{
Damien Miller0faf7472013-10-17 11:47:23 +11001407 char *host;
Damien Millereba71ba2000-04-29 23:57:08 +10001408 char *server_user, *local_user;
1409
Damien Millereba71ba2000-04-29 23:57:08 +10001410 local_user = xstrdup(pw->pw_name);
1411 server_user = options.user ? options.user : local_user;
Damien Miller396691a2000-01-20 22:44:08 +11001412
1413 /* Convert the user-supplied hostname into all lowercase. */
1414 host = xstrdup(orighost);
Damien Miller0faf7472013-10-17 11:47:23 +11001415 lowercase(host);
Damien Miller396691a2000-01-20 22:44:08 +11001416
1417 /* Exchange protocol version identification strings with the server. */
Damien Miller67bd0622007-09-17 12:06:57 +10001418 ssh_exchange_identification(timeout_ms);
Damien Miller396691a2000-01-20 22:44:08 +11001419
1420 /* Put the connection into non-blocking mode. */
1421 packet_set_nonblocking();
1422
Damien Miller396691a2000-01-20 22:44:08 +11001423 /* key exchange */
Damien Miller396691a2000-01-20 22:44:08 +11001424 /* authenticate user */
dtucker@openbsd.orgbb2289e2015-04-14 04:17:03 +00001425 debug("Authenticating to %s:%d as '%s'", host, port, server_user);
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001426 ssh_kex2(host, hostaddr, port);
1427 ssh_userauth2(local_user, server_user, host, sensitive);
Darren Tuckera627d422013-06-02 07:31:17 +10001428 free(local_user);
Damien Miller396691a2000-01-20 22:44:08 +11001429}
Damien Miller79438cc2001-02-16 12:34:57 +11001430
1431void
1432ssh_put_password(char *password)
1433{
1434 int size;
1435 char *padded;
1436
Ben Lindstromd20d0f32001-03-10 17:22:20 +00001437 if (datafellows & SSH_BUG_PASSWORDPAD) {
Ben Lindstrom664408d2001-06-09 01:42:01 +00001438 packet_put_cstring(password);
Ben Lindstromd20d0f32001-03-10 17:22:20 +00001439 return;
1440 }
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +00001441 size = ROUNDUP(strlen(password) + 1, 32);
Damien Miller07d86be2006-03-26 14:19:21 +11001442 padded = xcalloc(1, size);
Damien Miller79438cc2001-02-16 12:34:57 +11001443 strlcpy(padded, password, size);
1444 packet_put_string(padded, size);
Damien Millera5103f42014-02-04 11:20:14 +11001445 explicit_bzero(padded, size);
Darren Tuckera627d422013-06-02 07:31:17 +10001446 free(padded);
Damien Miller79438cc2001-02-16 12:34:57 +11001447}
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001448
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001449/* print all known host keys for a given host, but skip keys of given type */
1450static int
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001451show_other_keys(struct hostkeys *hostkeys, struct sshkey *key)
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001452{
Damien Miller106bf1c2013-12-29 17:54:03 +11001453 int type[] = {
Damien Miller106bf1c2013-12-29 17:54:03 +11001454 KEY_RSA,
1455 KEY_DSA,
1456 KEY_ECDSA,
1457 KEY_ED25519,
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00001458 KEY_XMSS,
Damien Miller106bf1c2013-12-29 17:54:03 +11001459 -1
1460 };
Damien Millerd925dcd2010-12-01 12:21:51 +11001461 int i, ret = 0;
1462 char *fp, *ra;
1463 const struct hostkey_entry *found;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001464
1465 for (i = 0; type[i] != -1; i++) {
1466 if (type[i] == key->type)
1467 continue;
Damien Millerd925dcd2010-12-01 12:21:51 +11001468 if (!lookup_key_in_hostkeys_by_type(hostkeys, type[i], &found))
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001469 continue;
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001470 fp = sshkey_fingerprint(found->key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001471 options.fingerprint_hash, SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001472 ra = sshkey_fingerprint(found->key,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001473 options.fingerprint_hash, SSH_FP_RANDOMART);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001474 if (fp == NULL || ra == NULL)
1475 fatal("%s: sshkey_fingerprint fail", __func__);
Damien Millerd925dcd2010-12-01 12:21:51 +11001476 logit("WARNING: %s key found for host %s\n"
1477 "in %s:%lu\n"
1478 "%s key fingerprint %s.",
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001479 sshkey_type(found->key),
Damien Millerd925dcd2010-12-01 12:21:51 +11001480 found->host, found->file, found->line,
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001481 sshkey_type(found->key), fp);
Damien Millerd925dcd2010-12-01 12:21:51 +11001482 if (options.visual_host_key)
1483 logit("%s", ra);
Darren Tuckera627d422013-06-02 07:31:17 +10001484 free(ra);
1485 free(fp);
Damien Millerd925dcd2010-12-01 12:21:51 +11001486 ret = 1;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001487 }
Damien Millerd925dcd2010-12-01 12:21:51 +11001488 return ret;
Ben Lindstrom3ed66402002-08-01 01:21:56 +00001489}
Damien Miller5a388972003-11-17 21:10:47 +11001490
1491static void
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001492warn_changed_key(struct sshkey *host_key)
Damien Miller5a388972003-11-17 21:10:47 +11001493{
1494 char *fp;
Damien Miller5a388972003-11-17 21:10:47 +11001495
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001496 fp = sshkey_fingerprint(host_key, options.fingerprint_hash,
djm@openbsd.org56d1c832014-12-21 22:27:55 +00001497 SSH_FP_DEFAULT);
djm@openbsd.org9ce86c92015-01-28 22:36:00 +00001498 if (fp == NULL)
1499 fatal("%s: sshkey_fingerprint fail", __func__);
Damien Miller5a388972003-11-17 21:10:47 +11001500
1501 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1502 error("@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @");
1503 error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@");
1504 error("IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!");
1505 error("Someone could be eavesdropping on you right now (man-in-the-middle attack)!");
Damien Miller05c89972011-01-06 22:42:04 +11001506 error("It is also possible that a host key has just been changed.");
Damien Miller5a388972003-11-17 21:10:47 +11001507 error("The fingerprint for the %s key sent by the remote host is\n%s.",
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001508 sshkey_type(host_key), fp);
Damien Miller5a388972003-11-17 21:10:47 +11001509 error("Please contact your system administrator.");
1510
Darren Tuckera627d422013-06-02 07:31:17 +10001511 free(fp);
Damien Miller5a388972003-11-17 21:10:47 +11001512}
Damien Millerd27b9472005-12-13 19:29:02 +11001513
1514/*
1515 * Execute a local command
1516 */
1517int
1518ssh_local_cmd(const char *args)
1519{
1520 char *shell;
1521 pid_t pid;
1522 int status;
Damien Millered3a8eb2011-01-07 10:02:52 +11001523 void (*osighand)(int);
Damien Millerd27b9472005-12-13 19:29:02 +11001524
1525 if (!options.permit_local_command ||
1526 args == NULL || !*args)
1527 return (1);
1528
Damien Miller38d9a962010-10-07 22:07:11 +11001529 if ((shell = getenv("SHELL")) == NULL || *shell == '\0')
Damien Millerd27b9472005-12-13 19:29:02 +11001530 shell = _PATH_BSHELL;
1531
Damien Millered3a8eb2011-01-07 10:02:52 +11001532 osighand = signal(SIGCHLD, SIG_DFL);
Damien Millerd27b9472005-12-13 19:29:02 +11001533 pid = fork();
1534 if (pid == 0) {
Damien Miller6fb6fd52011-01-16 23:17:45 +11001535 signal(SIGPIPE, SIG_DFL);
Damien Millerd27b9472005-12-13 19:29:02 +11001536 debug3("Executing %s -c \"%s\"", shell, args);
1537 execl(shell, shell, "-c", args, (char *)NULL);
1538 error("Couldn't execute %s -c \"%s\": %s",
1539 shell, args, strerror(errno));
1540 _exit(1);
1541 } else if (pid == -1)
1542 fatal("fork failed: %.100s", strerror(errno));
1543 while (waitpid(pid, &status, 0) == -1)
1544 if (errno != EINTR)
1545 fatal("Couldn't wait for child: %s", strerror(errno));
Damien Millered3a8eb2011-01-07 10:02:52 +11001546 signal(SIGCHLD, osighand);
Damien Millerd27b9472005-12-13 19:29:02 +11001547
1548 if (!WIFEXITED(status))
1549 return (1);
1550
1551 return (WEXITSTATUS(status));
1552}
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001553
1554void
djm@openbsd.orgd9e5cf02018-02-10 09:25:34 +00001555maybe_add_key_to_agent(char *authfile, const struct sshkey *private,
1556 char *comment, char *passphrase)
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001557{
1558 int auth_sock = -1, r;
1559
1560 if (options.add_keys_to_agent == 0)
1561 return;
1562
1563 if ((r = ssh_get_authentication_socket(&auth_sock)) != 0) {
1564 debug3("no authentication agent, not adding key");
1565 return;
1566 }
1567
1568 if (options.add_keys_to_agent == 2 &&
1569 !ask_permission("Add key %s (%s) to agent?", authfile, comment)) {
1570 debug3("user denied adding this key");
dtucker@openbsd.org566b3a42017-03-10 03:22:40 +00001571 close(auth_sock);
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001572 return;
1573 }
1574
1575 if ((r = ssh_add_identity_constrained(auth_sock, private, comment, 0,
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00001576 (options.add_keys_to_agent == 3), 0)) == 0)
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001577 debug("identity added to agent: %s", authfile);
1578 else
1579 debug("could not add identity to agent: %s (%d)", authfile, r);
dtucker@openbsd.org566b3a42017-03-10 03:22:40 +00001580 close(auth_sock);
jcs@openbsd.orgf361df42015-11-15 22:26:49 +00001581}