blob: 5d77dcfd226a92eaef79385b10d65124be5ef711 [file] [log] [blame]
Damien Miller1c7ef4b2014-04-20 12:59:46 +10001/* $OpenBSD: ssh-keyscan.c,v 1.90 2014/03/12 04:44:58 djm 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
Damien Miller9b481512002-09-12 10:43:29 +100012#include "openbsd-compat/sys-queue.h"
Damien Millercd4223c2006-03-15 11:22:47 +110013#include <sys/resource.h>
Damien Miller9aec9192006-08-05 10:57:45 +100014#ifdef HAVE_SYS_TIME_H
15# include <sys/time.h>
16#endif
Damien Millere3476ed2006-07-24 14:13:33 +100017
Darren Tucker46aa3e02006-09-02 15:32:40 +100018#include <netinet/in.h>
19#include <arpa/inet.h>
20
Damien Millere3476ed2006-07-24 14:13:33 +100021#include <openssl/bn.h>
22
Damien Millerb8fe89c2006-07-24 14:51:00 +100023#include <netdb.h>
Darren Tuckerdeecec92006-07-12 22:44:34 +100024#include <errno.h>
Damien Millerbe43ebf2006-07-24 13:51:51 +100025#include <setjmp.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"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000035#include "ssh1.h"
Damien Millerd7834352006-08-05 12:39:39 +100036#include "buffer.h"
Ben Lindstromb6434ae2000-12-05 01:15:09 +000037#include "key.h"
Damien Millerd7834352006-08-05 12:39:39 +100038#include "cipher.h"
Ben Lindstrom325e70c2001-08-06 22:41:30 +000039#include "kex.h"
40#include "compat.h"
41#include "myproposal.h"
42#include "packet.h"
43#include "dispatch.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000044#include "log.h"
Ben Lindstromd20b8552001-03-05 07:01:18 +000045#include "atomicio.h"
Ben Lindstrom325e70c2001-08-06 22:41:30 +000046#include "misc.h"
Damien Millerdb7b8172005-03-01 21:48:03 +110047#include "hostfile.h"
Ben Lindstromb6434ae2000-12-05 01:15:09 +000048
Ben Lindstrom325e70c2001-08-06 22:41:30 +000049/* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
50 Default value is AF_UNSPEC means both IPv4 and IPv6. */
Ben Lindstrom325e70c2001-08-06 22:41:30 +000051int IPv4or6 = AF_UNSPEC;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000052
Ben Lindstrom325e70c2001-08-06 22:41:30 +000053int ssh_port = SSH_DEFAULT_PORT;
Kevin Steves76e7d9b2001-09-20 20:30:09 +000054
Damien Millereb8b60e2010-08-31 22:41:14 +100055#define KT_RSA1 1
56#define KT_DSA 2
57#define KT_RSA 4
58#define KT_ECDSA 8
Damien Miller5be9d9e2013-12-07 11:24:01 +110059#define KT_ED25519 16
Kevin Steves76e7d9b2001-09-20 20:30:09 +000060
Damien Miller1c7ef4b2014-04-20 12:59:46 +100061int get_keytypes = KT_RSA|KT_ECDSA|KT_ED25519;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000062
Damien Millerdb7b8172005-03-01 21:48:03 +110063int hash_hosts = 0; /* Hash hostname on output */
64
Ben Lindstromb6434ae2000-12-05 01:15:09 +000065#define MAXMAXFD 256
66
67/* The number of seconds after which to give up on a TCP connection */
68int timeout = 5;
69
70int maxfd;
Ben Lindstromd20b8552001-03-05 07:01:18 +000071#define MAXCON (maxfd - 10)
Ben Lindstromb6434ae2000-12-05 01:15:09 +000072
Kevin Stevesec84dc12000-12-13 17:45:15 +000073extern char *__progname;
Ben Lindstromc1e04212001-03-05 07:04:38 +000074fd_set *read_wait;
Damien Miller07d86be2006-03-26 14:19:21 +110075size_t read_wait_nfdset;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000076int ncon;
Ben Lindstrom325e70c2001-08-06 22:41:30 +000077int nonfatal_fatal = 0;
78jmp_buf kexjmp;
Ben Lindstrom520b55c2001-09-12 18:05:05 +000079Key *kexjmp_key;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000080
81/*
82 * Keep a connection structure for each file descriptor. The state
83 * associated with file descriptor n is held in fdcon[n].
84 */
85typedef struct Connection {
Ben Lindstrom46c16222000-12-22 01:43:59 +000086 u_char c_status; /* State of connection on this file desc. */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000087#define CS_UNUSED 0 /* File descriptor unused */
88#define CS_CON 1 /* Waiting to connect/read greeting */
89#define CS_SIZE 2 /* Waiting to read initial packet size */
90#define CS_KEYS 3 /* Waiting to read public key packet */
91 int c_fd; /* Quick lookup: c->c_fd == c - fdcon */
92 int c_plen; /* Packet length field for ssh packet */
93 int c_len; /* Total bytes which must be read. */
94 int c_off; /* Length of data read so far. */
Ben Lindstrom325e70c2001-08-06 22:41:30 +000095 int c_keytype; /* Only one of KT_RSA1, KT_DSA, or KT_RSA */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000096 char *c_namebase; /* Address to free for c_name and c_namelist */
97 char *c_name; /* Hostname of connection for errors */
98 char *c_namelist; /* Pointer to other possible addresses */
99 char *c_output_name; /* Hostname of connection for output */
100 char *c_data; /* Data read from this fd */
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000101 Kex *c_kex; /* The key-exchange struct for ssh2 */
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000102 struct timeval c_tv; /* Time at which connection gets aborted */
103 TAILQ_ENTRY(Connection) c_link; /* List of connections in timeout order. */
104} con;
105
106TAILQ_HEAD(conlist, Connection) tq; /* Timeout Queue */
107con *fdcon;
108
Ben Lindstrombba81212001-06-25 05:01:22 +0000109static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000110fdlim_get(int hard)
111{
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000112#if defined(HAVE_GETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000113 struct rlimit rlfd;
Ben Lindstromb0a4cd82001-03-05 04:54:49 +0000114
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000115 if (getrlimit(RLIMIT_NOFILE, &rlfd) < 0)
116 return (-1);
117 if ((hard ? rlfd.rlim_max : rlfd.rlim_cur) == RLIM_INFINITY)
Damien Millere00074a2003-11-24 13:07:45 +1100118 return SSH_SYSFDMAX;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000119 else
120 return hard ? rlfd.rlim_max : rlfd.rlim_cur;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000121#else
Damien Millere00074a2003-11-24 13:07:45 +1100122 return SSH_SYSFDMAX;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000123#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000124}
125
Ben Lindstrombba81212001-06-25 05:01:22 +0000126static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000127fdlim_set(int lim)
128{
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000129#if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000130 struct rlimit rlfd;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000131#endif
Ben Lindstrom5c98db52002-07-07 22:25:29 +0000132
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000133 if (lim <= 0)
134 return (-1);
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000135#if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000136 if (getrlimit(RLIMIT_NOFILE, &rlfd) < 0)
137 return (-1);
138 rlfd.rlim_cur = lim;
139 if (setrlimit(RLIMIT_NOFILE, &rlfd) < 0)
140 return (-1);
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000141#elif defined (HAVE_SETDTABLESIZE)
Kevin Steves28a7f262001-02-05 15:43:59 +0000142 setdtablesize(lim);
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000143#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000144 return (0);
145}
146
147/*
148 * This is an strsep function that returns a null field for adjacent
149 * separators. This is the same as the 4.4BSD strsep, but different from the
150 * one in the GNU libc.
151 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000152static char *
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000153xstrsep(char **str, const char *delim)
154{
155 char *s, *e;
156
157 if (!**str)
158 return (NULL);
159
160 s = *str;
161 e = s + strcspn(s, delim);
162
163 if (*e != '\0')
164 *e++ = '\0';
165 *str = e;
166
167 return (s);
168}
169
170/*
171 * Get the next non-null token (like GNU strsep). Strsep() will return a
172 * null token for two adjacent separators, so we may have to loop.
173 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000174static char *
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000175strnnsep(char **stringp, char *delim)
176{
177 char *tok;
178
179 do {
180 tok = xstrsep(stringp, delim);
181 } while (tok && *tok == '\0');
182 return (tok);
183}
184
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000185static Key *
186keygrab_ssh1(con *c)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000187{
188 static Key *rsa;
189 static Buffer msg;
190
191 if (rsa == NULL) {
192 buffer_init(&msg);
193 rsa = key_new(KEY_RSA1);
194 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000195 buffer_append(&msg, c->c_data, c->c_plen);
196 buffer_consume(&msg, 8 - (c->c_plen & 7)); /* padding */
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000197 if (buffer_get_char(&msg) != (int) SSH_SMSG_PUBLIC_KEY) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000198 error("%s: invalid packet type", c->c_name);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000199 buffer_clear(&msg);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000200 return NULL;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000201 }
202 buffer_consume(&msg, 8); /* cookie */
203
204 /* server key */
205 (void) buffer_get_int(&msg);
206 buffer_get_bignum(&msg, rsa->rsa->e);
207 buffer_get_bignum(&msg, rsa->rsa->n);
208
209 /* host key */
210 (void) buffer_get_int(&msg);
211 buffer_get_bignum(&msg, rsa->rsa->e);
212 buffer_get_bignum(&msg, rsa->rsa->n);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000213
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000214 buffer_clear(&msg);
215
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000216 return (rsa);
217}
218
219static int
220hostjump(Key *hostkey)
221{
Ben Lindstrom520b55c2001-09-12 18:05:05 +0000222 kexjmp_key = hostkey;
223 longjmp(kexjmp, 1);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000224}
225
226static int
227ssh2_capable(int remote_major, int remote_minor)
228{
229 switch (remote_major) {
230 case 1:
231 if (remote_minor == 99)
232 return 1;
233 break;
234 case 2:
235 return 1;
236 default:
237 break;
238 }
239 return 0;
240}
241
242static Key *
243keygrab_ssh2(con *c)
244{
245 int j;
246
247 packet_set_connection(c->c_fd, c->c_fd);
248 enable_compat20();
Damien Miller5be9d9e2013-12-07 11:24:01 +1100249 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] =
250 c->c_keytype == KT_DSA ? "ssh-dss" :
251 (c->c_keytype == KT_RSA ? "ssh-rsa" :
252 (c->c_keytype == KT_ED25519 ? "ssh-ed25519" :
253 "ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521"));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000254 c->c_kex = kex_setup(myproposal);
Damien Miller8e7fb332003-02-24 12:03:03 +1100255 c->c_kex->kex[KEX_DH_GRP1_SHA1] = kexdh_client;
Damien Millerf675fc42004-06-15 10:30:09 +1000256 c->c_kex->kex[KEX_DH_GRP14_SHA1] = kexdh_client;
Damien Miller8e7fb332003-02-24 12:03:03 +1100257 c->c_kex->kex[KEX_DH_GEX_SHA1] = kexgex_client;
Damien Millera63128d2006-03-15 12:08:28 +1100258 c->c_kex->kex[KEX_DH_GEX_SHA256] = kexgex_client;
Damien Millereb8b60e2010-08-31 22:41:14 +1000259 c->c_kex->kex[KEX_ECDH_SHA2] = kexecdh_client;
Damien Miller1e124262013-11-04 08:26:52 +1100260 c->c_kex->kex[KEX_C25519_SHA256] = kexc25519_client;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000261 c->c_kex->verify_host_key = hostjump;
262
263 if (!(j = setjmp(kexjmp))) {
264 nonfatal_fatal = 1;
265 dispatch_run(DISPATCH_BLOCK, &c->c_kex->done, c->c_kex);
266 fprintf(stderr, "Impossible! dispatch_run() returned!\n");
267 exit(1);
268 }
269 nonfatal_fatal = 0;
Darren Tuckera627d422013-06-02 07:31:17 +1000270 free(c->c_kex);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000271 c->c_kex = NULL;
272 packet_close();
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000273
Ben Lindstrom520b55c2001-09-12 18:05:05 +0000274 return j < 0? NULL : kexjmp_key;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000275}
276
277static void
278keyprint(con *c, Key *key)
279{
Damien Millerdb7b8172005-03-01 21:48:03 +1100280 char *host = c->c_output_name ? c->c_output_name : c->c_name;
281
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000282 if (!key)
283 return;
Damien Millerdb7b8172005-03-01 21:48:03 +1100284 if (hash_hosts && (host = host_hash(host, NULL, 0)) == NULL)
285 fatal("host_hash failed");
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000286
Damien Millerdb7b8172005-03-01 21:48:03 +1100287 fprintf(stdout, "%s ", host);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000288 key_write(key, stdout);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000289 fputs("\n", stdout);
290}
291
Ben Lindstrombba81212001-06-25 05:01:22 +0000292static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000293tcpconnect(char *host)
294{
295 struct addrinfo hints, *ai, *aitop;
296 char strport[NI_MAXSERV];
297 int gaierr, s = -1;
298
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000299 snprintf(strport, sizeof strport, "%d", ssh_port);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000300 memset(&hints, 0, sizeof(hints));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000301 hints.ai_family = IPv4or6;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000302 hints.ai_socktype = SOCK_STREAM;
303 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
Darren Tucker4abde772007-12-29 02:43:51 +1100304 fatal("getaddrinfo %s: %s", host, ssh_gai_strerror(gaierr));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000305 for (ai = aitop; ai; ai = ai->ai_next) {
Darren Tucker7bd98e72010-01-10 10:31:12 +1100306 s = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000307 if (s < 0) {
308 error("socket: %s", strerror(errno));
309 continue;
310 }
Damien Miller232711f2004-06-15 10:35:30 +1000311 if (set_nonblock(s) == -1)
312 fatal("%s: set_nonblock(%d)", __func__, s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000313 if (connect(s, ai->ai_addr, ai->ai_addrlen) < 0 &&
314 errno != EINPROGRESS)
315 error("connect (`%s'): %s", host, strerror(errno));
316 else
317 break;
318 close(s);
319 s = -1;
320 }
321 freeaddrinfo(aitop);
322 return s;
323}
324
Ben Lindstrombba81212001-06-25 05:01:22 +0000325static int
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000326conalloc(char *iname, char *oname, int keytype)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000327{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000328 char *namebase, *name, *namelist;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000329 int s;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000330
331 namebase = namelist = xstrdup(iname);
332
333 do {
334 name = xstrsep(&namelist, ",");
335 if (!name) {
Darren Tuckera627d422013-06-02 07:31:17 +1000336 free(namebase);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000337 return (-1);
338 }
339 } while ((s = tcpconnect(name)) < 0);
340
341 if (s >= maxfd)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000342 fatal("conalloc: fdno %d too high", s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000343 if (fdcon[s].c_status)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000344 fatal("conalloc: attempt to reuse fdno %d", s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000345
346 fdcon[s].c_fd = s;
347 fdcon[s].c_status = CS_CON;
348 fdcon[s].c_namebase = namebase;
349 fdcon[s].c_name = name;
350 fdcon[s].c_namelist = namelist;
351 fdcon[s].c_output_name = xstrdup(oname);
352 fdcon[s].c_data = (char *) &fdcon[s].c_plen;
353 fdcon[s].c_len = 4;
354 fdcon[s].c_off = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000355 fdcon[s].c_keytype = keytype;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000356 gettimeofday(&fdcon[s].c_tv, NULL);
357 fdcon[s].c_tv.tv_sec += timeout;
358 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000359 FD_SET(s, read_wait);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000360 ncon++;
361 return (s);
362}
363
Ben Lindstrombba81212001-06-25 05:01:22 +0000364static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000365confree(int s)
366{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000367 if (s >= maxfd || fdcon[s].c_status == CS_UNUSED)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000368 fatal("confree: attempt to free bad fdno %d", s);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000369 close(s);
Darren Tuckera627d422013-06-02 07:31:17 +1000370 free(fdcon[s].c_namebase);
371 free(fdcon[s].c_output_name);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000372 if (fdcon[s].c_status == CS_KEYS)
Darren Tuckera627d422013-06-02 07:31:17 +1000373 free(fdcon[s].c_data);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000374 fdcon[s].c_status = CS_UNUSED;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000375 fdcon[s].c_keytype = 0;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000376 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000377 FD_CLR(s, read_wait);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000378 ncon--;
379}
380
Ben Lindstrombba81212001-06-25 05:01:22 +0000381static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000382contouch(int s)
383{
384 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
385 gettimeofday(&fdcon[s].c_tv, NULL);
386 fdcon[s].c_tv.tv_sec += timeout;
387 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
388}
389
Ben Lindstrombba81212001-06-25 05:01:22 +0000390static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000391conrecycle(int s)
392{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000393 con *c = &fdcon[s];
Ben Lindstrom965710f2002-07-07 22:17:22 +0000394 int ret;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000395
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000396 ret = conalloc(c->c_namelist, c->c_output_name, c->c_keytype);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000397 confree(s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000398 return (ret);
399}
400
Ben Lindstrombba81212001-06-25 05:01:22 +0000401static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000402congreet(int s)
403{
Damien Millereccb9de2005-06-17 12:59:34 +1000404 int n = 0, remote_major = 0, remote_minor = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000405 char buf[256], *cp;
Damien Miller83c02ef2001-12-21 12:45:43 +1100406 char remote_version[sizeof buf];
Damien Millereccb9de2005-06-17 12:59:34 +1000407 size_t bufsiz;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000408 con *c = &fdcon[s];
409
Damien Miller4bbacb72005-11-05 15:12:28 +1100410 for (;;) {
411 memset(buf, '\0', sizeof(buf));
412 bufsiz = sizeof(buf);
413 cp = buf;
414 while (bufsiz-- &&
415 (n = atomicio(read, s, cp, 1)) == 1 && *cp != '\n') {
416 if (*cp == '\r')
417 *cp = '\n';
418 cp++;
419 }
420 if (n != 1 || strncmp(buf, "SSH-", 4) == 0)
421 break;
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000422 }
Ben Lindstrom6b28c352002-03-05 01:54:52 +0000423 if (n == 0) {
Damien Millerb253cc42005-05-26 12:23:44 +1000424 switch (errno) {
425 case EPIPE:
426 error("%s: Connection closed by remote host", c->c_name);
427 break;
428 case ECONNREFUSED:
429 break;
430 default:
431 error("read (%s): %s", c->c_name, strerror(errno));
432 break;
433 }
Ben Lindstrom6b28c352002-03-05 01:54:52 +0000434 conrecycle(s);
435 return;
436 }
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000437 if (*cp != '\n' && *cp != '\r') {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000438 error("%s: bad greeting", c->c_name);
439 confree(s);
440 return;
441 }
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000442 *cp = '\0';
Damien Miller83c02ef2001-12-21 12:45:43 +1100443 if (sscanf(buf, "SSH-%d.%d-%[^\n]\n",
444 &remote_major, &remote_minor, remote_version) == 3)
445 compat_datafellows(remote_version);
446 else
447 datafellows = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000448 if (c->c_keytype != KT_RSA1) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000449 if (!ssh2_capable(remote_major, remote_minor)) {
450 debug("%s doesn't support ssh2", c->c_name);
451 confree(s);
452 return;
453 }
Damien Miller83c02ef2001-12-21 12:45:43 +1100454 } else if (remote_major != 1) {
455 debug("%s doesn't support ssh1", c->c_name);
456 confree(s);
457 return;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000458 }
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000459 fprintf(stderr, "# %s %s\n", c->c_name, chop(buf));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000460 n = snprintf(buf, sizeof buf, "SSH-%d.%d-OpenSSH-keyscan\r\n",
461 c->c_keytype == KT_RSA1? PROTOCOL_MAJOR_1 : PROTOCOL_MAJOR_2,
462 c->c_keytype == KT_RSA1? PROTOCOL_MINOR_1 : PROTOCOL_MINOR_2);
Damien Millereccb9de2005-06-17 12:59:34 +1000463 if (n < 0 || (size_t)n >= sizeof(buf)) {
Damien Miller41bfc292005-05-26 12:07:32 +1000464 error("snprintf: buffer too small");
465 confree(s);
466 return;
467 }
Damien Millereccb9de2005-06-17 12:59:34 +1000468 if (atomicio(vwrite, s, buf, n) != (size_t)n) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000469 error("write (%s): %s", c->c_name, strerror(errno));
470 confree(s);
471 return;
472 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000473 if (c->c_keytype != KT_RSA1) {
474 keyprint(c, keygrab_ssh2(c));
475 confree(s);
476 return;
477 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000478 c->c_status = CS_SIZE;
479 contouch(s);
480}
481
Ben Lindstrombba81212001-06-25 05:01:22 +0000482static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000483conread(int s)
484{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000485 con *c = &fdcon[s];
Damien Millerb253cc42005-05-26 12:23:44 +1000486 size_t n;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000487
488 if (c->c_status == CS_CON) {
489 congreet(s);
490 return;
491 }
Darren Tuckerfe6649d2004-08-13 21:19:37 +1000492 n = atomicio(read, s, c->c_data + c->c_off, c->c_len - c->c_off);
Damien Millerb253cc42005-05-26 12:23:44 +1000493 if (n == 0) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000494 error("read (%s): %s", c->c_name, strerror(errno));
495 confree(s);
496 return;
497 }
498 c->c_off += n;
499
500 if (c->c_off == c->c_len)
501 switch (c->c_status) {
502 case CS_SIZE:
503 c->c_plen = htonl(c->c_plen);
504 c->c_len = c->c_plen + 8 - (c->c_plen & 7);
505 c->c_off = 0;
506 c->c_data = xmalloc(c->c_len);
507 c->c_status = CS_KEYS;
508 break;
509 case CS_KEYS:
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000510 keyprint(c, keygrab_ssh1(c));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000511 confree(s);
512 return;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000513 default:
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000514 fatal("conread: invalid status %d", c->c_status);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000515 break;
516 }
517
518 contouch(s);
519}
520
Ben Lindstrombba81212001-06-25 05:01:22 +0000521static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000522conloop(void)
523{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000524 struct timeval seltime, now;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000525 fd_set *r, *e;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000526 con *c;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000527 int i;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000528
529 gettimeofday(&now, NULL);
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000530 c = TAILQ_FIRST(&tq);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000531
Ben Lindstromd20b8552001-03-05 07:01:18 +0000532 if (c && (c->c_tv.tv_sec > now.tv_sec ||
533 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec > now.tv_usec))) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000534 seltime = c->c_tv;
535 seltime.tv_sec -= now.tv_sec;
536 seltime.tv_usec -= now.tv_usec;
Ben Lindstromc791beb2001-02-10 23:18:11 +0000537 if (seltime.tv_usec < 0) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000538 seltime.tv_usec += 1000000;
539 seltime.tv_sec--;
540 }
541 } else
Damien Millerc5219e72011-05-05 14:05:12 +1000542 timerclear(&seltime);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000543
Damien Miller07d86be2006-03-26 14:19:21 +1100544 r = xcalloc(read_wait_nfdset, sizeof(fd_mask));
545 e = xcalloc(read_wait_nfdset, sizeof(fd_mask));
546 memcpy(r, read_wait, read_wait_nfdset * sizeof(fd_mask));
547 memcpy(e, read_wait, read_wait_nfdset * sizeof(fd_mask));
Ben Lindstromc1e04212001-03-05 07:04:38 +0000548
549 while (select(maxfd, r, NULL, e, &seltime) == -1 &&
Damien Millerd8968ad2008-07-04 23:10:49 +1000550 (errno == EAGAIN || errno == EINTR || errno == EWOULDBLOCK))
Ben Lindstromf9452512001-02-15 03:12:08 +0000551 ;
552
Ben Lindstromd20b8552001-03-05 07:01:18 +0000553 for (i = 0; i < maxfd; i++) {
Ben Lindstromc1e04212001-03-05 07:04:38 +0000554 if (FD_ISSET(i, e)) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000555 error("%s: exception!", fdcon[i].c_name);
556 confree(i);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000557 } else if (FD_ISSET(i, r))
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000558 conread(i);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000559 }
Darren Tuckera627d422013-06-02 07:31:17 +1000560 free(r);
561 free(e);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000562
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000563 c = TAILQ_FIRST(&tq);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000564 while (c && (c->c_tv.tv_sec < now.tv_sec ||
565 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec < now.tv_usec))) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000566 int s = c->c_fd;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000567
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000568 c = TAILQ_NEXT(c, c_link);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000569 conrecycle(s);
570 }
571}
572
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000573static void
574do_host(char *host)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000575{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000576 char *name = strnnsep(&host, " \t\n");
577 int j;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000578
Ben Lindstromeaffb9d2001-12-06 16:28:19 +0000579 if (name == NULL)
580 return;
Damien Miller5be9d9e2013-12-07 11:24:01 +1100581 for (j = KT_RSA1; j <= KT_ED25519; j *= 2) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000582 if (get_keytypes & j) {
583 while (ncon >= MAXCON)
584 conloop();
585 conalloc(name, *host ? host : name, j);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000586 }
587 }
588}
589
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000590void
591fatal(const char *fmt,...)
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000592{
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000593 va_list args;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000594
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000595 va_start(args, fmt);
596 do_log(SYSLOG_LEVEL_FATAL, fmt, args);
597 va_end(args);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000598 if (nonfatal_fatal)
599 longjmp(kexjmp, -1);
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000600 else
Darren Tucker3d326222003-09-22 21:11:20 +1000601 exit(255);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000602}
603
604static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000605usage(void)
606{
Damien Millerc1719f72008-11-03 19:27:07 +1100607 fprintf(stderr,
608 "usage: %s [-46Hv] [-f file] [-p port] [-T timeout] [-t type]\n"
Darren Tucker7bd98e72010-01-10 10:31:12 +1100609 "\t\t [host | addrlist namelist] ...\n",
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000610 __progname);
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000611 exit(1);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000612}
613
614int
615main(int argc, char **argv)
616{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000617 int debug_flag = 0, log_level = SYSLOG_LEVEL_INFO;
Damien Miller0e76c5e2010-06-26 09:39:59 +1000618 int opt, fopt_count = 0, j;
619 char *tname, *cp, line[NI_MAXHOST];
620 FILE *fp;
621 u_long linenum;
Kevin Steves76e7d9b2001-09-20 20:30:09 +0000622
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000623 extern int optind;
624 extern char *optarg;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000625
Damien Miller59d3d5b2003-08-22 09:34:41 +1000626 __progname = ssh_get_progname(argv[0]);
Ben Lindstrom4e088e42001-10-10 20:45:43 +0000627 seed_rng();
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000628 TAILQ_INIT(&tq);
629
Darren Tuckerce321d82005-10-03 18:11:24 +1000630 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
631 sanitise_stdfd();
632
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000633 if (argc <= 1)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000634 usage();
635
Darren Tucker7bd98e72010-01-10 10:31:12 +1100636 while ((opt = getopt(argc, argv, "Hv46p:T:t:f:")) != -1) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000637 switch (opt) {
Damien Millerdb7b8172005-03-01 21:48:03 +1100638 case 'H':
639 hash_hosts = 1;
640 break;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000641 case 'p':
642 ssh_port = a2port(optarg);
Damien Miller3dc71ad2009-01-28 16:31:22 +1100643 if (ssh_port <= 0) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000644 fprintf(stderr, "Bad port '%s'\n", optarg);
645 exit(1);
646 }
647 break;
648 case 'T':
Ben Lindstromedd098b2002-07-04 00:07:13 +0000649 timeout = convtime(optarg);
650 if (timeout == -1 || timeout == 0) {
651 fprintf(stderr, "Bad timeout '%s'\n", optarg);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000652 usage();
Ben Lindstromedd098b2002-07-04 00:07:13 +0000653 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000654 break;
655 case 'v':
656 if (!debug_flag) {
657 debug_flag = 1;
658 log_level = SYSLOG_LEVEL_DEBUG1;
659 }
660 else if (log_level < SYSLOG_LEVEL_DEBUG3)
661 log_level++;
662 else
663 fatal("Too high debugging level.");
664 break;
Kevin Steves76e7d9b2001-09-20 20:30:09 +0000665 case 'f':
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000666 if (strcmp(optarg, "-") == 0)
667 optarg = NULL;
668 argv[fopt_count++] = optarg;
669 break;
670 case 't':
671 get_keytypes = 0;
672 tname = strtok(optarg, ",");
673 while (tname) {
674 int type = key_type_from_name(tname);
675 switch (type) {
676 case KEY_RSA1:
677 get_keytypes |= KT_RSA1;
678 break;
679 case KEY_DSA:
680 get_keytypes |= KT_DSA;
681 break;
Damien Millereb8b60e2010-08-31 22:41:14 +1000682 case KEY_ECDSA:
683 get_keytypes |= KT_ECDSA;
684 break;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000685 case KEY_RSA:
686 get_keytypes |= KT_RSA;
687 break;
Damien Miller5be9d9e2013-12-07 11:24:01 +1100688 case KEY_ED25519:
689 get_keytypes |= KT_ED25519;
690 break;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000691 case KEY_UNSPEC:
Ben Lindstrom28c603b2001-12-06 16:45:10 +0000692 fatal("unknown key type %s", tname);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000693 }
694 tname = strtok(NULL, ",");
695 }
696 break;
697 case '4':
698 IPv4or6 = AF_INET;
699 break;
700 case '6':
701 IPv4or6 = AF_INET6;
702 break;
703 case '?':
704 default:
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000705 usage();
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000706 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000707 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000708 if (optind == argc && !fopt_count)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000709 usage();
710
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000711 log_init("ssh-keyscan", log_level, SYSLOG_FACILITY_USER, 1);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000712
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000713 maxfd = fdlim_get(1);
714 if (maxfd < 0)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000715 fatal("%s: fdlim_get: bad value", __progname);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000716 if (maxfd > MAXMAXFD)
717 maxfd = MAXMAXFD;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000718 if (MAXCON <= 0)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000719 fatal("%s: not enough file descriptors", __progname);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000720 if (maxfd > fdlim_get(0))
721 fdlim_set(maxfd);
Damien Miller07d86be2006-03-26 14:19:21 +1100722 fdcon = xcalloc(maxfd, sizeof(con));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000723
Damien Miller07d86be2006-03-26 14:19:21 +1100724 read_wait_nfdset = howmany(maxfd, NFDBITS);
725 read_wait = xcalloc(read_wait_nfdset, sizeof(fd_mask));
Ben Lindstromc1e04212001-03-05 07:04:38 +0000726
Damien Miller0e76c5e2010-06-26 09:39:59 +1000727 for (j = 0; j < fopt_count; j++) {
728 if (argv[j] == NULL)
729 fp = stdin;
730 else if ((fp = fopen(argv[j], "r")) == NULL)
731 fatal("%s: %s: %s", __progname, argv[j],
732 strerror(errno));
733 linenum = 0;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000734
Damien Miller0e76c5e2010-06-26 09:39:59 +1000735 while (read_keyfile_line(fp,
736 argv[j] == NULL ? "(stdin)" : argv[j], line, sizeof(line),
737 &linenum) != -1) {
738 /* Chomp off trailing whitespace and comments */
739 if ((cp = strchr(line, '#')) == NULL)
740 cp = line + strlen(line) - 1;
741 while (cp >= line) {
742 if (*cp == ' ' || *cp == '\t' ||
743 *cp == '\n' || *cp == '#')
744 *cp-- = '\0';
745 else
746 break;
747 }
748
749 /* Skip empty lines */
750 if (*line == '\0')
Ben Lindstrom78bbd9e2001-09-12 17:10:40 +0000751 continue;
Damien Miller0e76c5e2010-06-26 09:39:59 +1000752
753 do_host(line);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000754 }
Damien Miller0e76c5e2010-06-26 09:39:59 +1000755
756 if (ferror(fp))
757 fatal("%s: %s: %s", __progname, argv[j],
758 strerror(errno));
759
760 fclose(fp);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000761 }
762
763 while (optind < argc)
764 do_host(argv[optind++]);
765
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000766 while (ncon > 0)
767 conloop();
768
769 return (0);
770}