blob: 2767e7d5fe286d5882b923b3b05c92eef3f461c9 [file] [log] [blame]
markus@openbsd.org92e9fe62017-05-31 07:00:13 +00001/* $OpenBSD: ssh-keyscan.c,v 1.114 2017/05/31 07:00:13 markus Exp $ */
Ben Lindstromb6434ae2000-12-05 01:15:09 +00002/*
3 * Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>.
4 *
5 * Modification and redistribution in source and binary forms is
6 * permitted provided that due credit is given to the author and the
Ben Lindstroma238f6e2001-06-09 01:30:39 +00007 * OpenBSD project by leaving this copyright notice intact.
Ben Lindstromb6434ae2000-12-05 01:15:09 +00008 */
9
10#include "includes.h"
Damien Millercd4223c2006-03-15 11:22:47 +110011
djm@openbsd.org48b68ce2014-12-11 08:20:09 +000012#include <sys/types.h>
Damien Miller9b481512002-09-12 10:43:29 +100013#include "openbsd-compat/sys-queue.h"
Damien Millercd4223c2006-03-15 11:22:47 +110014#include <sys/resource.h>
Damien Miller9aec9192006-08-05 10:57:45 +100015#ifdef HAVE_SYS_TIME_H
16# include <sys/time.h>
17#endif
Damien Millere3476ed2006-07-24 14:13:33 +100018
Darren Tucker46aa3e02006-09-02 15:32:40 +100019#include <netinet/in.h>
20#include <arpa/inet.h>
21
Damien Millere3476ed2006-07-24 14:13:33 +100022#include <openssl/bn.h>
23
Damien Millerb8fe89c2006-07-24 14:51:00 +100024#include <netdb.h>
Darren Tuckerdeecec92006-07-12 22:44:34 +100025#include <errno.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100026#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100027#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100028#include <stdlib.h>
Damien Millerd7834352006-08-05 12:39:39 +100029#include <signal.h>
Damien Millere3476ed2006-07-24 14:13:33 +100030#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100031#include <unistd.h>
Ben Lindstromb6434ae2000-12-05 01:15:09 +000032
Ben Lindstromb6434ae2000-12-05 01:15:09 +000033#include "xmalloc.h"
34#include "ssh.h"
markus@openbsd.org3f797652015-01-19 20:32:39 +000035#include "sshbuf.h"
36#include "sshkey.h"
Damien Millerd7834352006-08-05 12:39:39 +100037#include "cipher.h"
Ben Lindstrom325e70c2001-08-06 22:41:30 +000038#include "kex.h"
39#include "compat.h"
40#include "myproposal.h"
41#include "packet.h"
42#include "dispatch.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000043#include "log.h"
Ben Lindstromd20b8552001-03-05 07:01:18 +000044#include "atomicio.h"
Ben Lindstrom325e70c2001-08-06 22:41:30 +000045#include "misc.h"
Damien Millerdb7b8172005-03-01 21:48:03 +110046#include "hostfile.h"
markus@openbsd.org3f797652015-01-19 20:32:39 +000047#include "ssherr.h"
48#include "ssh_api.h"
Ben Lindstromb6434ae2000-12-05 01:15:09 +000049
Ben Lindstrom325e70c2001-08-06 22:41:30 +000050/* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
51 Default value is AF_UNSPEC means both IPv4 and IPv6. */
Ben Lindstrom325e70c2001-08-06 22:41:30 +000052int IPv4or6 = AF_UNSPEC;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000053
Ben Lindstrom325e70c2001-08-06 22:41:30 +000054int ssh_port = SSH_DEFAULT_PORT;
Kevin Steves76e7d9b2001-09-20 20:30:09 +000055
djm@openbsd.org873d3e72017-04-30 23:18:44 +000056#define KT_DSA (1)
57#define KT_RSA (1<<1)
58#define KT_ECDSA (1<<2)
59#define KT_ED25519 (1<<3)
60
61#define KT_MIN KT_DSA
62#define KT_MAX KT_ED25519
Kevin Steves76e7d9b2001-09-20 20:30:09 +000063
djm@openbsd.org3a424cd2015-11-08 22:30:20 +000064int get_cert = 0;
Damien Miller1c7ef4b2014-04-20 12:59:46 +100065int get_keytypes = KT_RSA|KT_ECDSA|KT_ED25519;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000066
Damien Millerdb7b8172005-03-01 21:48:03 +110067int hash_hosts = 0; /* Hash hostname on output */
68
Ben Lindstromb6434ae2000-12-05 01:15:09 +000069#define MAXMAXFD 256
70
71/* The number of seconds after which to give up on a TCP connection */
72int timeout = 5;
73
74int maxfd;
Ben Lindstromd20b8552001-03-05 07:01:18 +000075#define MAXCON (maxfd - 10)
Ben Lindstromb6434ae2000-12-05 01:15:09 +000076
Kevin Stevesec84dc12000-12-13 17:45:15 +000077extern char *__progname;
Ben Lindstromc1e04212001-03-05 07:04:38 +000078fd_set *read_wait;
Damien Miller07d86be2006-03-26 14:19:21 +110079size_t read_wait_nfdset;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000080int ncon;
81
Damien Millerade31d72015-01-27 23:06:23 +110082struct ssh *active_state = NULL; /* XXX needed for linking */
83
Ben Lindstromb6434ae2000-12-05 01:15:09 +000084/*
85 * Keep a connection structure for each file descriptor. The state
86 * associated with file descriptor n is held in fdcon[n].
87 */
88typedef struct Connection {
Ben Lindstrom46c16222000-12-22 01:43:59 +000089 u_char c_status; /* State of connection on this file desc. */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000090#define CS_UNUSED 0 /* File descriptor unused */
91#define CS_CON 1 /* Waiting to connect/read greeting */
92#define CS_SIZE 2 /* Waiting to read initial packet size */
93#define CS_KEYS 3 /* Waiting to read public key packet */
94 int c_fd; /* Quick lookup: c->c_fd == c - fdcon */
95 int c_plen; /* Packet length field for ssh packet */
96 int c_len; /* Total bytes which must be read. */
97 int c_off; /* Length of data read so far. */
djm@openbsd.org873d3e72017-04-30 23:18:44 +000098 int c_keytype; /* Only one of KT_* */
miod@openbsd.orgc265e2e2015-04-05 15:43:43 +000099 sig_atomic_t c_done; /* SSH2 done */
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000100 char *c_namebase; /* Address to free for c_name and c_namelist */
101 char *c_name; /* Hostname of connection for errors */
102 char *c_namelist; /* Pointer to other possible addresses */
103 char *c_output_name; /* Hostname of connection for output */
104 char *c_data; /* Data read from this fd */
markus@openbsd.org3f797652015-01-19 20:32:39 +0000105 struct ssh *c_ssh; /* SSH-connection */
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000106 struct timeval c_tv; /* Time at which connection gets aborted */
107 TAILQ_ENTRY(Connection) c_link; /* List of connections in timeout order. */
108} con;
109
110TAILQ_HEAD(conlist, Connection) tq; /* Timeout Queue */
111con *fdcon;
112
markus@openbsd.org3f797652015-01-19 20:32:39 +0000113static void keyprint(con *c, struct sshkey *key);
114
Ben Lindstrombba81212001-06-25 05:01:22 +0000115static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000116fdlim_get(int hard)
117{
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000118#if defined(HAVE_GETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000119 struct rlimit rlfd;
Ben Lindstromb0a4cd82001-03-05 04:54:49 +0000120
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000121 if (getrlimit(RLIMIT_NOFILE, &rlfd) < 0)
122 return (-1);
123 if ((hard ? rlfd.rlim_max : rlfd.rlim_cur) == RLIM_INFINITY)
Damien Millere00074a2003-11-24 13:07:45 +1100124 return SSH_SYSFDMAX;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000125 else
126 return hard ? rlfd.rlim_max : rlfd.rlim_cur;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000127#else
Damien Millere00074a2003-11-24 13:07:45 +1100128 return SSH_SYSFDMAX;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000129#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000130}
131
Ben Lindstrombba81212001-06-25 05:01:22 +0000132static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000133fdlim_set(int lim)
134{
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000135#if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000136 struct rlimit rlfd;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000137#endif
Ben Lindstrom5c98db52002-07-07 22:25:29 +0000138
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000139 if (lim <= 0)
140 return (-1);
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000141#if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000142 if (getrlimit(RLIMIT_NOFILE, &rlfd) < 0)
143 return (-1);
144 rlfd.rlim_cur = lim;
145 if (setrlimit(RLIMIT_NOFILE, &rlfd) < 0)
146 return (-1);
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000147#elif defined (HAVE_SETDTABLESIZE)
Kevin Steves28a7f262001-02-05 15:43:59 +0000148 setdtablesize(lim);
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000149#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000150 return (0);
151}
152
153/*
154 * This is an strsep function that returns a null field for adjacent
155 * separators. This is the same as the 4.4BSD strsep, but different from the
156 * one in the GNU libc.
157 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000158static char *
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000159xstrsep(char **str, const char *delim)
160{
161 char *s, *e;
162
163 if (!**str)
164 return (NULL);
165
166 s = *str;
167 e = s + strcspn(s, delim);
168
169 if (*e != '\0')
170 *e++ = '\0';
171 *str = e;
172
173 return (s);
174}
175
176/*
177 * Get the next non-null token (like GNU strsep). Strsep() will return a
178 * null token for two adjacent separators, so we may have to loop.
179 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000180static char *
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000181strnnsep(char **stringp, char *delim)
182{
183 char *tok;
184
185 do {
186 tok = xstrsep(stringp, delim);
187 } while (tok && *tok == '\0');
188 return (tok);
189}
190
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000191
192static int
markus@openbsd.org3f797652015-01-19 20:32:39 +0000193key_print_wrapper(struct sshkey *hostkey, struct ssh *ssh)
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000194{
markus@openbsd.org3f797652015-01-19 20:32:39 +0000195 con *c;
196
197 if ((c = ssh_get_app_data(ssh)) != NULL)
198 keyprint(c, hostkey);
199 /* always abort key exchange */
200 return -1;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000201}
202
203static int
204ssh2_capable(int remote_major, int remote_minor)
205{
206 switch (remote_major) {
207 case 1:
208 if (remote_minor == 99)
209 return 1;
210 break;
211 case 2:
212 return 1;
213 default:
214 break;
215 }
216 return 0;
217}
218
markus@openbsd.org3f797652015-01-19 20:32:39 +0000219static void
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000220keygrab_ssh2(con *c)
221{
Damien Miller9235a032014-04-20 13:17:20 +1000222 char *myproposal[PROPOSAL_MAX] = { KEX_CLIENT };
markus@openbsd.org3f797652015-01-19 20:32:39 +0000223 int r;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000224
djm@openbsd.org3a424cd2015-11-08 22:30:20 +0000225 switch (c->c_keytype) {
226 case KT_DSA:
227 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = get_cert ?
228 "ssh-dss-cert-v01@openssh.com" : "ssh-dss";
229 break;
230 case KT_RSA:
231 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = get_cert ?
232 "ssh-rsa-cert-v01@openssh.com" : "ssh-rsa";
233 break;
234 case KT_ED25519:
235 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = get_cert ?
236 "ssh-ed25519-cert-v01@openssh.com" : "ssh-ed25519";
237 break;
238 case KT_ECDSA:
239 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = get_cert ?
240 "ecdsa-sha2-nistp256-cert-v01@openssh.com,"
241 "ecdsa-sha2-nistp384-cert-v01@openssh.com,"
242 "ecdsa-sha2-nistp521-cert-v01@openssh.com" :
243 "ecdsa-sha2-nistp256,"
244 "ecdsa-sha2-nistp384,"
245 "ecdsa-sha2-nistp521";
246 break;
247 default:
248 fatal("unknown key type %d", c->c_keytype);
249 break;
250 }
markus@openbsd.org3f797652015-01-19 20:32:39 +0000251 if ((r = kex_setup(c->c_ssh, myproposal)) != 0) {
252 free(c->c_ssh);
253 fprintf(stderr, "kex_setup: %s\n", ssh_err(r));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000254 exit(1);
255 }
markus@openbsd.org3f797652015-01-19 20:32:39 +0000256#ifdef WITH_OPENSSL
257 c->c_ssh->kex->kex[KEX_DH_GRP1_SHA1] = kexdh_client;
258 c->c_ssh->kex->kex[KEX_DH_GRP14_SHA1] = kexdh_client;
djm@openbsd.org0e8eeec2016-05-02 10:26:04 +0000259 c->c_ssh->kex->kex[KEX_DH_GRP14_SHA256] = kexdh_client;
260 c->c_ssh->kex->kex[KEX_DH_GRP16_SHA512] = kexdh_client;
261 c->c_ssh->kex->kex[KEX_DH_GRP18_SHA512] = kexdh_client;
markus@openbsd.org3f797652015-01-19 20:32:39 +0000262 c->c_ssh->kex->kex[KEX_DH_GEX_SHA1] = kexgex_client;
263 c->c_ssh->kex->kex[KEX_DH_GEX_SHA256] = kexgex_client;
Darren Tuckerf2004cd2015-02-23 05:04:21 +1100264# ifdef OPENSSL_HAS_ECC
markus@openbsd.org3f797652015-01-19 20:32:39 +0000265 c->c_ssh->kex->kex[KEX_ECDH_SHA2] = kexecdh_client;
Darren Tuckerf2004cd2015-02-23 05:04:21 +1100266# endif
markus@openbsd.org3f797652015-01-19 20:32:39 +0000267#endif
268 c->c_ssh->kex->kex[KEX_C25519_SHA256] = kexc25519_client;
269 ssh_set_verify_host_key_callback(c->c_ssh, key_print_wrapper);
270 /*
271 * do the key-exchange until an error occurs or until
272 * the key_print_wrapper() callback sets c_done.
273 */
markus@openbsd.org92e9fe62017-05-31 07:00:13 +0000274 ssh_dispatch_run(c->c_ssh, DISPATCH_BLOCK, &c->c_done);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000275}
276
277static void
djm@openbsd.org8a283442017-03-10 03:18:24 +0000278keyprint_one(const char *host, struct sshkey *key)
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000279{
djm@openbsd.org9ada37d2015-10-24 22:56:19 +0000280 char *hostport;
djm@openbsd.org8a283442017-03-10 03:18:24 +0000281 const char *known_host, *hashed;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000282
djm@openbsd.org2c2cfe12015-04-10 00:08:55 +0000283 hostport = put_host_port(host, ssh_port);
djm@openbsd.orgdb259722017-03-10 04:26:06 +0000284 lowercase(hostport);
djm@openbsd.org8a283442017-03-10 03:18:24 +0000285 if (hash_hosts && (hashed = host_hash(host, NULL, 0)) == NULL)
286 fatal("host_hash failed");
287 known_host = hash_hosts ? hashed : hostport;
djm@openbsd.org3a424cd2015-11-08 22:30:20 +0000288 if (!get_cert)
djm@openbsd.org8a283442017-03-10 03:18:24 +0000289 fprintf(stdout, "%s ", known_host);
markus@openbsd.org3f797652015-01-19 20:32:39 +0000290 sshkey_write(key, stdout);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000291 fputs("\n", stdout);
djm@openbsd.org2c2cfe12015-04-10 00:08:55 +0000292 free(hostport);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000293}
294
djm@openbsd.org9ada37d2015-10-24 22:56:19 +0000295static void
296keyprint(con *c, struct sshkey *key)
297{
298 char *hosts = c->c_output_name ? c->c_output_name : c->c_name;
299 char *host, *ohosts;
300
301 if (key == NULL)
302 return;
djm@openbsd.org3a424cd2015-11-08 22:30:20 +0000303 if (get_cert || (!hash_hosts && ssh_port == SSH_DEFAULT_PORT)) {
djm@openbsd.org9ada37d2015-10-24 22:56:19 +0000304 keyprint_one(hosts, key);
305 return;
306 }
307 ohosts = hosts = xstrdup(hosts);
308 while ((host = strsep(&hosts, ",")) != NULL)
309 keyprint_one(host, key);
310 free(ohosts);
311}
312
Ben Lindstrombba81212001-06-25 05:01:22 +0000313static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000314tcpconnect(char *host)
315{
316 struct addrinfo hints, *ai, *aitop;
317 char strport[NI_MAXSERV];
318 int gaierr, s = -1;
319
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000320 snprintf(strport, sizeof strport, "%d", ssh_port);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000321 memset(&hints, 0, sizeof(hints));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000322 hints.ai_family = IPv4or6;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000323 hints.ai_socktype = SOCK_STREAM;
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +0000324 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0) {
325 error("getaddrinfo %s: %s", host, ssh_gai_strerror(gaierr));
326 return -1;
327 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000328 for (ai = aitop; ai; ai = ai->ai_next) {
Darren Tucker7bd98e72010-01-10 10:31:12 +1100329 s = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000330 if (s < 0) {
331 error("socket: %s", strerror(errno));
332 continue;
333 }
Damien Miller232711f2004-06-15 10:35:30 +1000334 if (set_nonblock(s) == -1)
335 fatal("%s: set_nonblock(%d)", __func__, s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000336 if (connect(s, ai->ai_addr, ai->ai_addrlen) < 0 &&
337 errno != EINPROGRESS)
338 error("connect (`%s'): %s", host, strerror(errno));
339 else
340 break;
341 close(s);
342 s = -1;
343 }
344 freeaddrinfo(aitop);
345 return s;
346}
347
Ben Lindstrombba81212001-06-25 05:01:22 +0000348static int
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000349conalloc(char *iname, char *oname, int keytype)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000350{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000351 char *namebase, *name, *namelist;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000352 int s;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000353
354 namebase = namelist = xstrdup(iname);
355
356 do {
357 name = xstrsep(&namelist, ",");
358 if (!name) {
Darren Tuckera627d422013-06-02 07:31:17 +1000359 free(namebase);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000360 return (-1);
361 }
362 } while ((s = tcpconnect(name)) < 0);
363
364 if (s >= maxfd)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000365 fatal("conalloc: fdno %d too high", s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000366 if (fdcon[s].c_status)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000367 fatal("conalloc: attempt to reuse fdno %d", s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000368
djm@openbsd.org3a424cd2015-11-08 22:30:20 +0000369 debug3("%s: oname %s kt %d", __func__, oname, keytype);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000370 fdcon[s].c_fd = s;
371 fdcon[s].c_status = CS_CON;
372 fdcon[s].c_namebase = namebase;
373 fdcon[s].c_name = name;
374 fdcon[s].c_namelist = namelist;
375 fdcon[s].c_output_name = xstrdup(oname);
376 fdcon[s].c_data = (char *) &fdcon[s].c_plen;
377 fdcon[s].c_len = 4;
378 fdcon[s].c_off = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000379 fdcon[s].c_keytype = keytype;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000380 gettimeofday(&fdcon[s].c_tv, NULL);
381 fdcon[s].c_tv.tv_sec += timeout;
382 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000383 FD_SET(s, read_wait);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000384 ncon++;
385 return (s);
386}
387
Ben Lindstrombba81212001-06-25 05:01:22 +0000388static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000389confree(int s)
390{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000391 if (s >= maxfd || fdcon[s].c_status == CS_UNUSED)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000392 fatal("confree: attempt to free bad fdno %d", s);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000393 close(s);
Darren Tuckera627d422013-06-02 07:31:17 +1000394 free(fdcon[s].c_namebase);
395 free(fdcon[s].c_output_name);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000396 if (fdcon[s].c_status == CS_KEYS)
Darren Tuckera627d422013-06-02 07:31:17 +1000397 free(fdcon[s].c_data);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000398 fdcon[s].c_status = CS_UNUSED;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000399 fdcon[s].c_keytype = 0;
markus@openbsd.org3f797652015-01-19 20:32:39 +0000400 if (fdcon[s].c_ssh) {
401 ssh_packet_close(fdcon[s].c_ssh);
402 free(fdcon[s].c_ssh);
403 fdcon[s].c_ssh = NULL;
404 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000405 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000406 FD_CLR(s, read_wait);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000407 ncon--;
408}
409
Ben Lindstrombba81212001-06-25 05:01:22 +0000410static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000411contouch(int s)
412{
413 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
414 gettimeofday(&fdcon[s].c_tv, NULL);
415 fdcon[s].c_tv.tv_sec += timeout;
416 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
417}
418
Ben Lindstrombba81212001-06-25 05:01:22 +0000419static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000420conrecycle(int s)
421{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000422 con *c = &fdcon[s];
Ben Lindstrom965710f2002-07-07 22:17:22 +0000423 int ret;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000424
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000425 ret = conalloc(c->c_namelist, c->c_output_name, c->c_keytype);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000426 confree(s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000427 return (ret);
428}
429
Ben Lindstrombba81212001-06-25 05:01:22 +0000430static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000431congreet(int s)
432{
Damien Millereccb9de2005-06-17 12:59:34 +1000433 int n = 0, remote_major = 0, remote_minor = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000434 char buf[256], *cp;
Damien Miller83c02ef2001-12-21 12:45:43 +1100435 char remote_version[sizeof buf];
Damien Millereccb9de2005-06-17 12:59:34 +1000436 size_t bufsiz;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000437 con *c = &fdcon[s];
438
djm@openbsd.org873d3e72017-04-30 23:18:44 +0000439 /* send client banner */
440 n = snprintf(buf, sizeof buf, "SSH-%d.%d-OpenSSH-keyscan\r\n",
441 PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2);
442 if (n < 0 || (size_t)n >= sizeof(buf)) {
443 error("snprintf: buffer too small");
444 confree(s);
445 return;
446 }
447 if (atomicio(vwrite, s, buf, n) != (size_t)n) {
448 error("write (%s): %s", c->c_name, strerror(errno));
449 confree(s);
450 return;
451 }
452
Damien Miller4bbacb72005-11-05 15:12:28 +1100453 for (;;) {
454 memset(buf, '\0', sizeof(buf));
455 bufsiz = sizeof(buf);
456 cp = buf;
457 while (bufsiz-- &&
458 (n = atomicio(read, s, cp, 1)) == 1 && *cp != '\n') {
459 if (*cp == '\r')
460 *cp = '\n';
461 cp++;
462 }
463 if (n != 1 || strncmp(buf, "SSH-", 4) == 0)
464 break;
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000465 }
Ben Lindstrom6b28c352002-03-05 01:54:52 +0000466 if (n == 0) {
Damien Millerb253cc42005-05-26 12:23:44 +1000467 switch (errno) {
468 case EPIPE:
469 error("%s: Connection closed by remote host", c->c_name);
470 break;
471 case ECONNREFUSED:
472 break;
473 default:
474 error("read (%s): %s", c->c_name, strerror(errno));
475 break;
476 }
Ben Lindstrom6b28c352002-03-05 01:54:52 +0000477 conrecycle(s);
478 return;
479 }
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000480 if (*cp != '\n' && *cp != '\r') {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000481 error("%s: bad greeting", c->c_name);
482 confree(s);
483 return;
484 }
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000485 *cp = '\0';
djm@openbsd.org4509b5d2015-01-30 01:13:33 +0000486 if ((c->c_ssh = ssh_packet_set_connection(NULL, s, s)) == NULL)
487 fatal("ssh_packet_set_connection failed");
djm@openbsd.org802660c2015-01-30 10:44:49 +0000488 ssh_packet_set_timeout(c->c_ssh, timeout, 1);
markus@openbsd.org3f797652015-01-19 20:32:39 +0000489 ssh_set_app_data(c->c_ssh, c); /* back link */
Damien Miller83c02ef2001-12-21 12:45:43 +1100490 if (sscanf(buf, "SSH-%d.%d-%[^\n]\n",
491 &remote_major, &remote_minor, remote_version) == 3)
markus@openbsd.org3f797652015-01-19 20:32:39 +0000492 c->c_ssh->compat = compat_datafellows(remote_version);
Damien Miller83c02ef2001-12-21 12:45:43 +1100493 else
markus@openbsd.org3f797652015-01-19 20:32:39 +0000494 c->c_ssh->compat = 0;
djm@openbsd.org873d3e72017-04-30 23:18:44 +0000495 if (!ssh2_capable(remote_major, remote_minor)) {
496 debug("%s doesn't support ssh2", c->c_name);
Damien Miller83c02ef2001-12-21 12:45:43 +1100497 confree(s);
498 return;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000499 }
djm@openbsd.org2c2cfe12015-04-10 00:08:55 +0000500 fprintf(stderr, "# %s:%d %s\n", c->c_name, ssh_port, chop(buf));
djm@openbsd.org873d3e72017-04-30 23:18:44 +0000501 keygrab_ssh2(c);
502 confree(s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000503}
504
Ben Lindstrombba81212001-06-25 05:01:22 +0000505static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000506conread(int s)
507{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000508 con *c = &fdcon[s];
Damien Millerb253cc42005-05-26 12:23:44 +1000509 size_t n;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000510
511 if (c->c_status == CS_CON) {
512 congreet(s);
513 return;
514 }
Darren Tuckerfe6649d2004-08-13 21:19:37 +1000515 n = atomicio(read, s, c->c_data + c->c_off, c->c_len - c->c_off);
Damien Millerb253cc42005-05-26 12:23:44 +1000516 if (n == 0) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000517 error("read (%s): %s", c->c_name, strerror(errno));
518 confree(s);
519 return;
520 }
521 c->c_off += n;
522
523 if (c->c_off == c->c_len)
524 switch (c->c_status) {
525 case CS_SIZE:
526 c->c_plen = htonl(c->c_plen);
527 c->c_len = c->c_plen + 8 - (c->c_plen & 7);
528 c->c_off = 0;
529 c->c_data = xmalloc(c->c_len);
530 c->c_status = CS_KEYS;
531 break;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000532 default:
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000533 fatal("conread: invalid status %d", c->c_status);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000534 break;
535 }
536
537 contouch(s);
538}
539
Ben Lindstrombba81212001-06-25 05:01:22 +0000540static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000541conloop(void)
542{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000543 struct timeval seltime, now;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000544 fd_set *r, *e;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000545 con *c;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000546 int i;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000547
548 gettimeofday(&now, NULL);
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000549 c = TAILQ_FIRST(&tq);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000550
Ben Lindstromd20b8552001-03-05 07:01:18 +0000551 if (c && (c->c_tv.tv_sec > now.tv_sec ||
552 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec > now.tv_usec))) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000553 seltime = c->c_tv;
554 seltime.tv_sec -= now.tv_sec;
555 seltime.tv_usec -= now.tv_usec;
Ben Lindstromc791beb2001-02-10 23:18:11 +0000556 if (seltime.tv_usec < 0) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000557 seltime.tv_usec += 1000000;
558 seltime.tv_sec--;
559 }
560 } else
Damien Millerc5219e72011-05-05 14:05:12 +1000561 timerclear(&seltime);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000562
Damien Miller07d86be2006-03-26 14:19:21 +1100563 r = xcalloc(read_wait_nfdset, sizeof(fd_mask));
564 e = xcalloc(read_wait_nfdset, sizeof(fd_mask));
565 memcpy(r, read_wait, read_wait_nfdset * sizeof(fd_mask));
566 memcpy(e, read_wait, read_wait_nfdset * sizeof(fd_mask));
Ben Lindstromc1e04212001-03-05 07:04:38 +0000567
568 while (select(maxfd, r, NULL, e, &seltime) == -1 &&
Damien Millerd8968ad2008-07-04 23:10:49 +1000569 (errno == EAGAIN || errno == EINTR || errno == EWOULDBLOCK))
Ben Lindstromf9452512001-02-15 03:12:08 +0000570 ;
571
Ben Lindstromd20b8552001-03-05 07:01:18 +0000572 for (i = 0; i < maxfd; i++) {
Ben Lindstromc1e04212001-03-05 07:04:38 +0000573 if (FD_ISSET(i, e)) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000574 error("%s: exception!", fdcon[i].c_name);
575 confree(i);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000576 } else if (FD_ISSET(i, r))
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000577 conread(i);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000578 }
Darren Tuckera627d422013-06-02 07:31:17 +1000579 free(r);
580 free(e);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000581
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000582 c = TAILQ_FIRST(&tq);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000583 while (c && (c->c_tv.tv_sec < now.tv_sec ||
584 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec < now.tv_usec))) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000585 int s = c->c_fd;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000586
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000587 c = TAILQ_NEXT(c, c_link);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000588 conrecycle(s);
589 }
590}
591
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000592static void
593do_host(char *host)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000594{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000595 char *name = strnnsep(&host, " \t\n");
596 int j;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000597
Ben Lindstromeaffb9d2001-12-06 16:28:19 +0000598 if (name == NULL)
599 return;
djm@openbsd.org873d3e72017-04-30 23:18:44 +0000600 for (j = KT_MIN; j <= KT_MAX; j *= 2) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000601 if (get_keytypes & j) {
602 while (ncon >= MAXCON)
603 conloop();
604 conalloc(name, *host ? host : name, j);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000605 }
606 }
607}
608
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000609void
610fatal(const char *fmt,...)
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000611{
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000612 va_list args;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000613
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000614 va_start(args, fmt);
615 do_log(SYSLOG_LEVEL_FATAL, fmt, args);
616 va_end(args);
markus@openbsd.org3f797652015-01-19 20:32:39 +0000617 exit(255);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000618}
619
620static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000621usage(void)
622{
Damien Millerc1719f72008-11-03 19:27:07 +1100623 fprintf(stderr,
jmc@openbsd.orge72a8572015-11-08 23:24:03 +0000624 "usage: %s [-46cHv] [-f file] [-p port] [-T timeout] [-t type]\n"
Darren Tucker7bd98e72010-01-10 10:31:12 +1100625 "\t\t [host | addrlist namelist] ...\n",
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000626 __progname);
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000627 exit(1);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000628}
629
630int
631main(int argc, char **argv)
632{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000633 int debug_flag = 0, log_level = SYSLOG_LEVEL_INFO;
Damien Miller0e76c5e2010-06-26 09:39:59 +1000634 int opt, fopt_count = 0, j;
635 char *tname, *cp, line[NI_MAXHOST];
636 FILE *fp;
637 u_long linenum;
Kevin Steves76e7d9b2001-09-20 20:30:09 +0000638
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000639 extern int optind;
640 extern char *optarg;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000641
dtucker@openbsd.orgffb1e7e2016-02-15 09:47:49 +0000642 ssh_malloc_init(); /* must be called before any mallocs */
Damien Miller59d3d5b2003-08-22 09:34:41 +1000643 __progname = ssh_get_progname(argv[0]);
Ben Lindstrom4e088e42001-10-10 20:45:43 +0000644 seed_rng();
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000645 TAILQ_INIT(&tq);
646
Darren Tuckerce321d82005-10-03 18:11:24 +1000647 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
648 sanitise_stdfd();
649
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000650 if (argc <= 1)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000651 usage();
652
djm@openbsd.org3a424cd2015-11-08 22:30:20 +0000653 while ((opt = getopt(argc, argv, "cHv46p:T:t:f:")) != -1) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000654 switch (opt) {
Damien Millerdb7b8172005-03-01 21:48:03 +1100655 case 'H':
656 hash_hosts = 1;
657 break;
djm@openbsd.org3a424cd2015-11-08 22:30:20 +0000658 case 'c':
659 get_cert = 1;
660 break;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000661 case 'p':
662 ssh_port = a2port(optarg);
Damien Miller3dc71ad2009-01-28 16:31:22 +1100663 if (ssh_port <= 0) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000664 fprintf(stderr, "Bad port '%s'\n", optarg);
665 exit(1);
666 }
667 break;
668 case 'T':
Ben Lindstromedd098b2002-07-04 00:07:13 +0000669 timeout = convtime(optarg);
670 if (timeout == -1 || timeout == 0) {
671 fprintf(stderr, "Bad timeout '%s'\n", optarg);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000672 usage();
Ben Lindstromedd098b2002-07-04 00:07:13 +0000673 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000674 break;
675 case 'v':
676 if (!debug_flag) {
677 debug_flag = 1;
678 log_level = SYSLOG_LEVEL_DEBUG1;
679 }
680 else if (log_level < SYSLOG_LEVEL_DEBUG3)
681 log_level++;
682 else
683 fatal("Too high debugging level.");
684 break;
Kevin Steves76e7d9b2001-09-20 20:30:09 +0000685 case 'f':
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000686 if (strcmp(optarg, "-") == 0)
687 optarg = NULL;
688 argv[fopt_count++] = optarg;
689 break;
690 case 't':
691 get_keytypes = 0;
692 tname = strtok(optarg, ",");
693 while (tname) {
markus@openbsd.org3f797652015-01-19 20:32:39 +0000694 int type = sshkey_type_from_name(tname);
djm@openbsd.orgf89b9282017-01-06 03:41:58 +0000695
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000696 switch (type) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000697 case KEY_DSA:
698 get_keytypes |= KT_DSA;
699 break;
Damien Millereb8b60e2010-08-31 22:41:14 +1000700 case KEY_ECDSA:
701 get_keytypes |= KT_ECDSA;
702 break;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000703 case KEY_RSA:
704 get_keytypes |= KT_RSA;
705 break;
Damien Miller5be9d9e2013-12-07 11:24:01 +1100706 case KEY_ED25519:
707 get_keytypes |= KT_ED25519;
708 break;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000709 case KEY_UNSPEC:
djm@openbsd.orgf89b9282017-01-06 03:41:58 +0000710 default:
711 fatal("Unknown key type \"%s\"", tname);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000712 }
713 tname = strtok(NULL, ",");
714 }
715 break;
716 case '4':
717 IPv4or6 = AF_INET;
718 break;
719 case '6':
720 IPv4or6 = AF_INET6;
721 break;
722 case '?':
723 default:
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000724 usage();
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000725 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000726 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000727 if (optind == argc && !fopt_count)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000728 usage();
729
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000730 log_init("ssh-keyscan", log_level, SYSLOG_FACILITY_USER, 1);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000731
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000732 maxfd = fdlim_get(1);
733 if (maxfd < 0)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000734 fatal("%s: fdlim_get: bad value", __progname);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000735 if (maxfd > MAXMAXFD)
736 maxfd = MAXMAXFD;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000737 if (MAXCON <= 0)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000738 fatal("%s: not enough file descriptors", __progname);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000739 if (maxfd > fdlim_get(0))
740 fdlim_set(maxfd);
Damien Miller07d86be2006-03-26 14:19:21 +1100741 fdcon = xcalloc(maxfd, sizeof(con));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000742
Damien Miller07d86be2006-03-26 14:19:21 +1100743 read_wait_nfdset = howmany(maxfd, NFDBITS);
744 read_wait = xcalloc(read_wait_nfdset, sizeof(fd_mask));
Ben Lindstromc1e04212001-03-05 07:04:38 +0000745
Damien Miller0e76c5e2010-06-26 09:39:59 +1000746 for (j = 0; j < fopt_count; j++) {
747 if (argv[j] == NULL)
748 fp = stdin;
749 else if ((fp = fopen(argv[j], "r")) == NULL)
750 fatal("%s: %s: %s", __progname, argv[j],
751 strerror(errno));
752 linenum = 0;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000753
Damien Miller0e76c5e2010-06-26 09:39:59 +1000754 while (read_keyfile_line(fp,
755 argv[j] == NULL ? "(stdin)" : argv[j], line, sizeof(line),
756 &linenum) != -1) {
757 /* Chomp off trailing whitespace and comments */
758 if ((cp = strchr(line, '#')) == NULL)
759 cp = line + strlen(line) - 1;
760 while (cp >= line) {
761 if (*cp == ' ' || *cp == '\t' ||
762 *cp == '\n' || *cp == '#')
763 *cp-- = '\0';
764 else
765 break;
766 }
767
768 /* Skip empty lines */
769 if (*line == '\0')
Ben Lindstrom78bbd9e2001-09-12 17:10:40 +0000770 continue;
Damien Miller0e76c5e2010-06-26 09:39:59 +1000771
772 do_host(line);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000773 }
Damien Miller0e76c5e2010-06-26 09:39:59 +1000774
775 if (ferror(fp))
776 fatal("%s: %s: %s", __progname, argv[j],
777 strerror(errno));
778
779 fclose(fp);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000780 }
781
782 while (optind < argc)
783 do_host(argv[optind++]);
784
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000785 while (ncon > 0)
786 conloop();
787
788 return (0);
789}