blob: f05c4697c10adf79e7c2ad36ce34284c9200d1ed [file] [log] [blame]
Ben Lindstromb6434ae2000-12-05 01:15:09 +00001/*
2 * Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>.
3 *
4 * Modification and redistribution in source and binary forms is
5 * permitted provided that due credit is given to the author and the
Ben Lindstroma238f6e2001-06-09 01:30:39 +00006 * OpenBSD project by leaving this copyright notice intact.
Ben Lindstromb6434ae2000-12-05 01:15:09 +00007 */
8
9#include "includes.h"
Damien Millera63128d2006-03-15 12:08:28 +110010RCSID("$OpenBSD: ssh-keyscan.c,v 1.60 2006/03/07 09:07:40 djm Exp $");
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>
Ben Lindstromb6434ae2000-12-05 01:15:09 +000014
15#include <openssl/bn.h>
Ben Lindstromb6434ae2000-12-05 01:15:09 +000016
Ben Lindstrom325e70c2001-08-06 22:41:30 +000017#include <setjmp.h>
Ben Lindstromb6434ae2000-12-05 01:15:09 +000018#include "xmalloc.h"
19#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000020#include "ssh1.h"
Ben Lindstromb6434ae2000-12-05 01:15:09 +000021#include "key.h"
Ben Lindstrom325e70c2001-08-06 22:41:30 +000022#include "kex.h"
23#include "compat.h"
24#include "myproposal.h"
25#include "packet.h"
26#include "dispatch.h"
Ben Lindstromb6434ae2000-12-05 01:15:09 +000027#include "buffer.h"
28#include "bufaux.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000029#include "log.h"
Ben Lindstromd20b8552001-03-05 07:01:18 +000030#include "atomicio.h"
Ben Lindstrom325e70c2001-08-06 22:41:30 +000031#include "misc.h"
Damien Millerdb7b8172005-03-01 21:48:03 +110032#include "hostfile.h"
Ben Lindstromb6434ae2000-12-05 01:15:09 +000033
Ben Lindstrom325e70c2001-08-06 22:41:30 +000034/* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
35 Default value is AF_UNSPEC means both IPv4 and IPv6. */
Ben Lindstrom325e70c2001-08-06 22:41:30 +000036int IPv4or6 = AF_UNSPEC;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000037
Ben Lindstrom325e70c2001-08-06 22:41:30 +000038int ssh_port = SSH_DEFAULT_PORT;
Kevin Steves76e7d9b2001-09-20 20:30:09 +000039
40#define KT_RSA1 1
41#define KT_DSA 2
42#define KT_RSA 4
43
44int get_keytypes = KT_RSA1; /* Get only RSA1 keys by default */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000045
Damien Millerdb7b8172005-03-01 21:48:03 +110046int hash_hosts = 0; /* Hash hostname on output */
47
Ben Lindstromb6434ae2000-12-05 01:15:09 +000048#define MAXMAXFD 256
49
50/* The number of seconds after which to give up on a TCP connection */
51int timeout = 5;
52
53int maxfd;
Ben Lindstromd20b8552001-03-05 07:01:18 +000054#define MAXCON (maxfd - 10)
Ben Lindstromb6434ae2000-12-05 01:15:09 +000055
Kevin Stevesec84dc12000-12-13 17:45:15 +000056extern char *__progname;
Ben Lindstromc1e04212001-03-05 07:04:38 +000057fd_set *read_wait;
58size_t read_wait_size;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000059int ncon;
Ben Lindstrom325e70c2001-08-06 22:41:30 +000060int nonfatal_fatal = 0;
61jmp_buf kexjmp;
Ben Lindstrom520b55c2001-09-12 18:05:05 +000062Key *kexjmp_key;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000063
64/*
65 * Keep a connection structure for each file descriptor. The state
66 * associated with file descriptor n is held in fdcon[n].
67 */
68typedef struct Connection {
Ben Lindstrom46c16222000-12-22 01:43:59 +000069 u_char c_status; /* State of connection on this file desc. */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000070#define CS_UNUSED 0 /* File descriptor unused */
71#define CS_CON 1 /* Waiting to connect/read greeting */
72#define CS_SIZE 2 /* Waiting to read initial packet size */
73#define CS_KEYS 3 /* Waiting to read public key packet */
74 int c_fd; /* Quick lookup: c->c_fd == c - fdcon */
75 int c_plen; /* Packet length field for ssh packet */
76 int c_len; /* Total bytes which must be read. */
77 int c_off; /* Length of data read so far. */
Ben Lindstrom325e70c2001-08-06 22:41:30 +000078 int c_keytype; /* Only one of KT_RSA1, KT_DSA, or KT_RSA */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000079 char *c_namebase; /* Address to free for c_name and c_namelist */
80 char *c_name; /* Hostname of connection for errors */
81 char *c_namelist; /* Pointer to other possible addresses */
82 char *c_output_name; /* Hostname of connection for output */
83 char *c_data; /* Data read from this fd */
Ben Lindstrom325e70c2001-08-06 22:41:30 +000084 Kex *c_kex; /* The key-exchange struct for ssh2 */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000085 struct timeval c_tv; /* Time at which connection gets aborted */
86 TAILQ_ENTRY(Connection) c_link; /* List of connections in timeout order. */
87} con;
88
89TAILQ_HEAD(conlist, Connection) tq; /* Timeout Queue */
90con *fdcon;
91
92/*
93 * This is just a wrapper around fgets() to make it usable.
94 */
95
96/* Stress-test. Increase this later. */
97#define LINEBUF_SIZE 16
98
99typedef struct {
100 char *buf;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000101 u_int size;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000102 int lineno;
103 const char *filename;
104 FILE *stream;
105 void (*errfun) (const char *,...);
106} Linebuf;
107
Ben Lindstrombba81212001-06-25 05:01:22 +0000108static Linebuf *
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000109Linebuf_alloc(const char *filename, void (*errfun) (const char *,...))
110{
111 Linebuf *lb;
112
113 if (!(lb = malloc(sizeof(*lb)))) {
114 if (errfun)
Ben Lindstrom04f9af72002-07-04 00:03:56 +0000115 (*errfun) ("linebuf (%s): malloc failed\n",
116 filename ? filename : "(stdin)");
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000117 return (NULL);
118 }
119 if (filename) {
120 lb->filename = filename;
121 if (!(lb->stream = fopen(filename, "r"))) {
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000122 xfree(lb);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000123 if (errfun)
124 (*errfun) ("%s: %s\n", filename, strerror(errno));
125 return (NULL);
126 }
127 } else {
128 lb->filename = "(stdin)";
129 lb->stream = stdin;
130 }
131
132 if (!(lb->buf = malloc(lb->size = LINEBUF_SIZE))) {
133 if (errfun)
134 (*errfun) ("linebuf (%s): malloc failed\n", lb->filename);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000135 xfree(lb);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000136 return (NULL);
137 }
138 lb->errfun = errfun;
139 lb->lineno = 0;
140 return (lb);
141}
142
Ben Lindstrombba81212001-06-25 05:01:22 +0000143static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000144Linebuf_free(Linebuf * lb)
145{
146 fclose(lb->stream);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000147 xfree(lb->buf);
148 xfree(lb);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000149}
150
Ben Lindstrombba81212001-06-25 05:01:22 +0000151#if 0
152static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000153Linebuf_restart(Linebuf * lb)
154{
155 clearerr(lb->stream);
156 rewind(lb->stream);
157 lb->lineno = 0;
158}
159
Ben Lindstrombba81212001-06-25 05:01:22 +0000160static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000161Linebuf_lineno(Linebuf * lb)
162{
163 return (lb->lineno);
164}
Ben Lindstrombba81212001-06-25 05:01:22 +0000165#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000166
Ben Lindstrombba81212001-06-25 05:01:22 +0000167static char *
Ben Lindstromc791beb2001-02-10 23:18:11 +0000168Linebuf_getline(Linebuf * lb)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000169{
Damien Millereccb9de2005-06-17 12:59:34 +1000170 size_t n = 0;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000171 void *p;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000172
173 lb->lineno++;
174 for (;;) {
175 /* Read a line */
176 if (!fgets(&lb->buf[n], lb->size - n, lb->stream)) {
177 if (ferror(lb->stream) && lb->errfun)
Ben Lindstrom965710f2002-07-07 22:17:22 +0000178 (*lb->errfun)("%s: %s\n", lb->filename,
Ben Lindstromb0a4cd82001-03-05 04:54:49 +0000179 strerror(errno));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000180 return (NULL);
181 }
182 n = strlen(lb->buf);
183
184 /* Return it or an error if it fits */
185 if (n > 0 && lb->buf[n - 1] == '\n') {
186 lb->buf[n - 1] = '\0';
187 return (lb->buf);
188 }
189 if (n != lb->size - 1) {
190 if (lb->errfun)
Ben Lindstrom965710f2002-07-07 22:17:22 +0000191 (*lb->errfun)("%s: skipping incomplete last line\n",
Ben Lindstromb0a4cd82001-03-05 04:54:49 +0000192 lb->filename);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000193 return (NULL);
194 }
195 /* Double the buffer if we need more space */
Ben Lindstrom965710f2002-07-07 22:17:22 +0000196 lb->size *= 2;
197 if ((p = realloc(lb->buf, lb->size)) == NULL) {
198 lb->size /= 2;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000199 if (lb->errfun)
Ben Lindstrom965710f2002-07-07 22:17:22 +0000200 (*lb->errfun)("linebuf (%s): realloc failed\n",
Ben Lindstromb0a4cd82001-03-05 04:54:49 +0000201 lb->filename);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000202 return (NULL);
203 }
Ben Lindstrom965710f2002-07-07 22:17:22 +0000204 lb->buf = p;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000205 }
206}
207
Ben Lindstrombba81212001-06-25 05:01:22 +0000208static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000209fdlim_get(int hard)
210{
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000211#if defined(HAVE_GETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000212 struct rlimit rlfd;
Ben Lindstromb0a4cd82001-03-05 04:54:49 +0000213
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000214 if (getrlimit(RLIMIT_NOFILE, &rlfd) < 0)
215 return (-1);
216 if ((hard ? rlfd.rlim_max : rlfd.rlim_cur) == RLIM_INFINITY)
Damien Millere00074a2003-11-24 13:07:45 +1100217 return SSH_SYSFDMAX;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000218 else
219 return hard ? rlfd.rlim_max : rlfd.rlim_cur;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000220#else
Damien Millere00074a2003-11-24 13:07:45 +1100221 return SSH_SYSFDMAX;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000222#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000223}
224
Ben Lindstrombba81212001-06-25 05:01:22 +0000225static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000226fdlim_set(int lim)
227{
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000228#if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000229 struct rlimit rlfd;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000230#endif
Ben Lindstrom5c98db52002-07-07 22:25:29 +0000231
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000232 if (lim <= 0)
233 return (-1);
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000234#if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000235 if (getrlimit(RLIMIT_NOFILE, &rlfd) < 0)
236 return (-1);
237 rlfd.rlim_cur = lim;
238 if (setrlimit(RLIMIT_NOFILE, &rlfd) < 0)
239 return (-1);
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000240#elif defined (HAVE_SETDTABLESIZE)
Kevin Steves28a7f262001-02-05 15:43:59 +0000241 setdtablesize(lim);
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000242#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000243 return (0);
244}
245
246/*
247 * This is an strsep function that returns a null field for adjacent
248 * separators. This is the same as the 4.4BSD strsep, but different from the
249 * one in the GNU libc.
250 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000251static char *
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000252xstrsep(char **str, const char *delim)
253{
254 char *s, *e;
255
256 if (!**str)
257 return (NULL);
258
259 s = *str;
260 e = s + strcspn(s, delim);
261
262 if (*e != '\0')
263 *e++ = '\0';
264 *str = e;
265
266 return (s);
267}
268
269/*
270 * Get the next non-null token (like GNU strsep). Strsep() will return a
271 * null token for two adjacent separators, so we may have to loop.
272 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000273static char *
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000274strnnsep(char **stringp, char *delim)
275{
276 char *tok;
277
278 do {
279 tok = xstrsep(stringp, delim);
280 } while (tok && *tok == '\0');
281 return (tok);
282}
283
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000284static Key *
285keygrab_ssh1(con *c)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000286{
287 static Key *rsa;
288 static Buffer msg;
289
290 if (rsa == NULL) {
291 buffer_init(&msg);
292 rsa = key_new(KEY_RSA1);
293 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000294 buffer_append(&msg, c->c_data, c->c_plen);
295 buffer_consume(&msg, 8 - (c->c_plen & 7)); /* padding */
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000296 if (buffer_get_char(&msg) != (int) SSH_SMSG_PUBLIC_KEY) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000297 error("%s: invalid packet type", c->c_name);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000298 buffer_clear(&msg);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000299 return NULL;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000300 }
301 buffer_consume(&msg, 8); /* cookie */
302
303 /* server key */
304 (void) buffer_get_int(&msg);
305 buffer_get_bignum(&msg, rsa->rsa->e);
306 buffer_get_bignum(&msg, rsa->rsa->n);
307
308 /* host key */
309 (void) buffer_get_int(&msg);
310 buffer_get_bignum(&msg, rsa->rsa->e);
311 buffer_get_bignum(&msg, rsa->rsa->n);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000312
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000313 buffer_clear(&msg);
314
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000315 return (rsa);
316}
317
318static int
319hostjump(Key *hostkey)
320{
Ben Lindstrom520b55c2001-09-12 18:05:05 +0000321 kexjmp_key = hostkey;
322 longjmp(kexjmp, 1);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000323}
324
325static int
326ssh2_capable(int remote_major, int remote_minor)
327{
328 switch (remote_major) {
329 case 1:
330 if (remote_minor == 99)
331 return 1;
332 break;
333 case 2:
334 return 1;
335 default:
336 break;
337 }
338 return 0;
339}
340
341static Key *
342keygrab_ssh2(con *c)
343{
344 int j;
345
346 packet_set_connection(c->c_fd, c->c_fd);
347 enable_compat20();
348 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = c->c_keytype == KT_DSA?
349 "ssh-dss": "ssh-rsa";
350 c->c_kex = kex_setup(myproposal);
Damien Miller8e7fb332003-02-24 12:03:03 +1100351 c->c_kex->kex[KEX_DH_GRP1_SHA1] = kexdh_client;
Damien Millerf675fc42004-06-15 10:30:09 +1000352 c->c_kex->kex[KEX_DH_GRP14_SHA1] = kexdh_client;
Damien Miller8e7fb332003-02-24 12:03:03 +1100353 c->c_kex->kex[KEX_DH_GEX_SHA1] = kexgex_client;
Damien Millera63128d2006-03-15 12:08:28 +1100354 c->c_kex->kex[KEX_DH_GEX_SHA256] = kexgex_client;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000355 c->c_kex->verify_host_key = hostjump;
356
357 if (!(j = setjmp(kexjmp))) {
358 nonfatal_fatal = 1;
359 dispatch_run(DISPATCH_BLOCK, &c->c_kex->done, c->c_kex);
360 fprintf(stderr, "Impossible! dispatch_run() returned!\n");
361 exit(1);
362 }
363 nonfatal_fatal = 0;
364 xfree(c->c_kex);
365 c->c_kex = NULL;
366 packet_close();
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000367
Ben Lindstrom520b55c2001-09-12 18:05:05 +0000368 return j < 0? NULL : kexjmp_key;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000369}
370
371static void
372keyprint(con *c, Key *key)
373{
Damien Millerdb7b8172005-03-01 21:48:03 +1100374 char *host = c->c_output_name ? c->c_output_name : c->c_name;
375
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000376 if (!key)
377 return;
Damien Millerdb7b8172005-03-01 21:48:03 +1100378 if (hash_hosts && (host = host_hash(host, NULL, 0)) == NULL)
379 fatal("host_hash failed");
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000380
Damien Millerdb7b8172005-03-01 21:48:03 +1100381 fprintf(stdout, "%s ", host);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000382 key_write(key, stdout);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000383 fputs("\n", stdout);
384}
385
Ben Lindstrombba81212001-06-25 05:01:22 +0000386static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000387tcpconnect(char *host)
388{
389 struct addrinfo hints, *ai, *aitop;
390 char strport[NI_MAXSERV];
391 int gaierr, s = -1;
392
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000393 snprintf(strport, sizeof strport, "%d", ssh_port);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000394 memset(&hints, 0, sizeof(hints));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000395 hints.ai_family = IPv4or6;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000396 hints.ai_socktype = SOCK_STREAM;
397 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
398 fatal("getaddrinfo %s: %s", host, gai_strerror(gaierr));
399 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller2372ace2003-05-14 13:42:23 +1000400 s = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000401 if (s < 0) {
402 error("socket: %s", strerror(errno));
403 continue;
404 }
Damien Miller232711f2004-06-15 10:35:30 +1000405 if (set_nonblock(s) == -1)
406 fatal("%s: set_nonblock(%d)", __func__, s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000407 if (connect(s, ai->ai_addr, ai->ai_addrlen) < 0 &&
408 errno != EINPROGRESS)
409 error("connect (`%s'): %s", host, strerror(errno));
410 else
411 break;
412 close(s);
413 s = -1;
414 }
415 freeaddrinfo(aitop);
416 return s;
417}
418
Ben Lindstrombba81212001-06-25 05:01:22 +0000419static int
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000420conalloc(char *iname, char *oname, int keytype)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000421{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000422 char *namebase, *name, *namelist;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000423 int s;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000424
425 namebase = namelist = xstrdup(iname);
426
427 do {
428 name = xstrsep(&namelist, ",");
429 if (!name) {
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000430 xfree(namebase);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000431 return (-1);
432 }
433 } while ((s = tcpconnect(name)) < 0);
434
435 if (s >= maxfd)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000436 fatal("conalloc: fdno %d too high", s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000437 if (fdcon[s].c_status)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000438 fatal("conalloc: attempt to reuse fdno %d", s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000439
440 fdcon[s].c_fd = s;
441 fdcon[s].c_status = CS_CON;
442 fdcon[s].c_namebase = namebase;
443 fdcon[s].c_name = name;
444 fdcon[s].c_namelist = namelist;
445 fdcon[s].c_output_name = xstrdup(oname);
446 fdcon[s].c_data = (char *) &fdcon[s].c_plen;
447 fdcon[s].c_len = 4;
448 fdcon[s].c_off = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000449 fdcon[s].c_keytype = keytype;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000450 gettimeofday(&fdcon[s].c_tv, NULL);
451 fdcon[s].c_tv.tv_sec += timeout;
452 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000453 FD_SET(s, read_wait);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000454 ncon++;
455 return (s);
456}
457
Ben Lindstrombba81212001-06-25 05:01:22 +0000458static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000459confree(int s)
460{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000461 if (s >= maxfd || fdcon[s].c_status == CS_UNUSED)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000462 fatal("confree: attempt to free bad fdno %d", s);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000463 close(s);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000464 xfree(fdcon[s].c_namebase);
465 xfree(fdcon[s].c_output_name);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000466 if (fdcon[s].c_status == CS_KEYS)
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000467 xfree(fdcon[s].c_data);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000468 fdcon[s].c_status = CS_UNUSED;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000469 fdcon[s].c_keytype = 0;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000470 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000471 FD_CLR(s, read_wait);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000472 ncon--;
473}
474
Ben Lindstrombba81212001-06-25 05:01:22 +0000475static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000476contouch(int s)
477{
478 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
479 gettimeofday(&fdcon[s].c_tv, NULL);
480 fdcon[s].c_tv.tv_sec += timeout;
481 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
482}
483
Ben Lindstrombba81212001-06-25 05:01:22 +0000484static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000485conrecycle(int s)
486{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000487 con *c = &fdcon[s];
Ben Lindstrom965710f2002-07-07 22:17:22 +0000488 int ret;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000489
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000490 ret = conalloc(c->c_namelist, c->c_output_name, c->c_keytype);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000491 confree(s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000492 return (ret);
493}
494
Ben Lindstrombba81212001-06-25 05:01:22 +0000495static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000496congreet(int s)
497{
Damien Millereccb9de2005-06-17 12:59:34 +1000498 int n = 0, remote_major = 0, remote_minor = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000499 char buf[256], *cp;
Damien Miller83c02ef2001-12-21 12:45:43 +1100500 char remote_version[sizeof buf];
Damien Millereccb9de2005-06-17 12:59:34 +1000501 size_t bufsiz;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000502 con *c = &fdcon[s];
503
Damien Miller4bbacb72005-11-05 15:12:28 +1100504 for (;;) {
505 memset(buf, '\0', sizeof(buf));
506 bufsiz = sizeof(buf);
507 cp = buf;
508 while (bufsiz-- &&
509 (n = atomicio(read, s, cp, 1)) == 1 && *cp != '\n') {
510 if (*cp == '\r')
511 *cp = '\n';
512 cp++;
513 }
514 if (n != 1 || strncmp(buf, "SSH-", 4) == 0)
515 break;
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000516 }
Ben Lindstrom6b28c352002-03-05 01:54:52 +0000517 if (n == 0) {
Damien Millerb253cc42005-05-26 12:23:44 +1000518 switch (errno) {
519 case EPIPE:
520 error("%s: Connection closed by remote host", c->c_name);
521 break;
522 case ECONNREFUSED:
523 break;
524 default:
525 error("read (%s): %s", c->c_name, strerror(errno));
526 break;
527 }
Ben Lindstrom6b28c352002-03-05 01:54:52 +0000528 conrecycle(s);
529 return;
530 }
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000531 if (*cp != '\n' && *cp != '\r') {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000532 error("%s: bad greeting", c->c_name);
533 confree(s);
534 return;
535 }
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000536 *cp = '\0';
Damien Miller83c02ef2001-12-21 12:45:43 +1100537 if (sscanf(buf, "SSH-%d.%d-%[^\n]\n",
538 &remote_major, &remote_minor, remote_version) == 3)
539 compat_datafellows(remote_version);
540 else
541 datafellows = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000542 if (c->c_keytype != KT_RSA1) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000543 if (!ssh2_capable(remote_major, remote_minor)) {
544 debug("%s doesn't support ssh2", c->c_name);
545 confree(s);
546 return;
547 }
Damien Miller83c02ef2001-12-21 12:45:43 +1100548 } else if (remote_major != 1) {
549 debug("%s doesn't support ssh1", c->c_name);
550 confree(s);
551 return;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000552 }
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000553 fprintf(stderr, "# %s %s\n", c->c_name, chop(buf));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000554 n = snprintf(buf, sizeof buf, "SSH-%d.%d-OpenSSH-keyscan\r\n",
555 c->c_keytype == KT_RSA1? PROTOCOL_MAJOR_1 : PROTOCOL_MAJOR_2,
556 c->c_keytype == KT_RSA1? PROTOCOL_MINOR_1 : PROTOCOL_MINOR_2);
Damien Millereccb9de2005-06-17 12:59:34 +1000557 if (n < 0 || (size_t)n >= sizeof(buf)) {
Damien Miller41bfc292005-05-26 12:07:32 +1000558 error("snprintf: buffer too small");
559 confree(s);
560 return;
561 }
Damien Millereccb9de2005-06-17 12:59:34 +1000562 if (atomicio(vwrite, s, buf, n) != (size_t)n) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000563 error("write (%s): %s", c->c_name, strerror(errno));
564 confree(s);
565 return;
566 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000567 if (c->c_keytype != KT_RSA1) {
568 keyprint(c, keygrab_ssh2(c));
569 confree(s);
570 return;
571 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000572 c->c_status = CS_SIZE;
573 contouch(s);
574}
575
Ben Lindstrombba81212001-06-25 05:01:22 +0000576static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000577conread(int s)
578{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000579 con *c = &fdcon[s];
Damien Millerb253cc42005-05-26 12:23:44 +1000580 size_t n;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000581
582 if (c->c_status == CS_CON) {
583 congreet(s);
584 return;
585 }
Darren Tuckerfe6649d2004-08-13 21:19:37 +1000586 n = atomicio(read, s, c->c_data + c->c_off, c->c_len - c->c_off);
Damien Millerb253cc42005-05-26 12:23:44 +1000587 if (n == 0) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000588 error("read (%s): %s", c->c_name, strerror(errno));
589 confree(s);
590 return;
591 }
592 c->c_off += n;
593
594 if (c->c_off == c->c_len)
595 switch (c->c_status) {
596 case CS_SIZE:
597 c->c_plen = htonl(c->c_plen);
598 c->c_len = c->c_plen + 8 - (c->c_plen & 7);
599 c->c_off = 0;
600 c->c_data = xmalloc(c->c_len);
601 c->c_status = CS_KEYS;
602 break;
603 case CS_KEYS:
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000604 keyprint(c, keygrab_ssh1(c));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000605 confree(s);
606 return;
607 break;
608 default:
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000609 fatal("conread: invalid status %d", c->c_status);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000610 break;
611 }
612
613 contouch(s);
614}
615
Ben Lindstrombba81212001-06-25 05:01:22 +0000616static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000617conloop(void)
618{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000619 struct timeval seltime, now;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000620 fd_set *r, *e;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000621 con *c;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000622 int i;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000623
624 gettimeofday(&now, NULL);
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000625 c = TAILQ_FIRST(&tq);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000626
Ben Lindstromd20b8552001-03-05 07:01:18 +0000627 if (c && (c->c_tv.tv_sec > now.tv_sec ||
628 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec > now.tv_usec))) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000629 seltime = c->c_tv;
630 seltime.tv_sec -= now.tv_sec;
631 seltime.tv_usec -= now.tv_usec;
Ben Lindstromc791beb2001-02-10 23:18:11 +0000632 if (seltime.tv_usec < 0) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000633 seltime.tv_usec += 1000000;
634 seltime.tv_sec--;
635 }
636 } else
637 seltime.tv_sec = seltime.tv_usec = 0;
638
Ben Lindstromc1e04212001-03-05 07:04:38 +0000639 r = xmalloc(read_wait_size);
640 memcpy(r, read_wait, read_wait_size);
641 e = xmalloc(read_wait_size);
642 memcpy(e, read_wait, read_wait_size);
643
644 while (select(maxfd, r, NULL, e, &seltime) == -1 &&
Ben Lindstromf9452512001-02-15 03:12:08 +0000645 (errno == EAGAIN || errno == EINTR))
646 ;
647
Ben Lindstromd20b8552001-03-05 07:01:18 +0000648 for (i = 0; i < maxfd; i++) {
Ben Lindstromc1e04212001-03-05 07:04:38 +0000649 if (FD_ISSET(i, e)) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000650 error("%s: exception!", fdcon[i].c_name);
651 confree(i);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000652 } else if (FD_ISSET(i, r))
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000653 conread(i);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000654 }
Ben Lindstromc1e04212001-03-05 07:04:38 +0000655 xfree(r);
656 xfree(e);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000657
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000658 c = TAILQ_FIRST(&tq);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000659 while (c && (c->c_tv.tv_sec < now.tv_sec ||
660 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec < now.tv_usec))) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000661 int s = c->c_fd;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000662
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000663 c = TAILQ_NEXT(c, c_link);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000664 conrecycle(s);
665 }
666}
667
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000668static void
669do_host(char *host)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000670{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000671 char *name = strnnsep(&host, " \t\n");
672 int j;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000673
Ben Lindstromeaffb9d2001-12-06 16:28:19 +0000674 if (name == NULL)
675 return;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000676 for (j = KT_RSA1; j <= KT_RSA; j *= 2) {
677 if (get_keytypes & j) {
678 while (ncon >= MAXCON)
679 conloop();
680 conalloc(name, *host ? host : name, j);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000681 }
682 }
683}
684
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000685void
686fatal(const char *fmt,...)
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000687{
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000688 va_list args;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000689
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000690 va_start(args, fmt);
691 do_log(SYSLOG_LEVEL_FATAL, fmt, args);
692 va_end(args);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000693 if (nonfatal_fatal)
694 longjmp(kexjmp, -1);
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000695 else
Darren Tucker3d326222003-09-22 21:11:20 +1000696 exit(255);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000697}
698
699static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000700usage(void)
701{
Damien Miller9a2fdbd2005-03-02 12:04:01 +1100702 fprintf(stderr, "usage: %s [-46Hv] [-f file] [-p port] [-T timeout] [-t type]\n"
Ben Lindstrom965710f2002-07-07 22:17:22 +0000703 "\t\t [host | addrlist namelist] [...]\n",
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000704 __progname);
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000705 exit(1);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000706}
707
708int
709main(int argc, char **argv)
710{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000711 int debug_flag = 0, log_level = SYSLOG_LEVEL_INFO;
712 int opt, fopt_count = 0;
713 char *tname;
Kevin Steves76e7d9b2001-09-20 20:30:09 +0000714
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000715 extern int optind;
716 extern char *optarg;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000717
Damien Miller59d3d5b2003-08-22 09:34:41 +1000718 __progname = ssh_get_progname(argv[0]);
Ben Lindstrom4e088e42001-10-10 20:45:43 +0000719 init_rng();
720 seed_rng();
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000721 TAILQ_INIT(&tq);
722
Darren Tuckerce321d82005-10-03 18:11:24 +1000723 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
724 sanitise_stdfd();
725
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000726 if (argc <= 1)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000727 usage();
728
Damien Millerdb7b8172005-03-01 21:48:03 +1100729 while ((opt = getopt(argc, argv, "Hv46p:T:t:f:")) != -1) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000730 switch (opt) {
Damien Millerdb7b8172005-03-01 21:48:03 +1100731 case 'H':
732 hash_hosts = 1;
733 break;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000734 case 'p':
735 ssh_port = a2port(optarg);
736 if (ssh_port == 0) {
737 fprintf(stderr, "Bad port '%s'\n", optarg);
738 exit(1);
739 }
740 break;
741 case 'T':
Ben Lindstromedd098b2002-07-04 00:07:13 +0000742 timeout = convtime(optarg);
743 if (timeout == -1 || timeout == 0) {
744 fprintf(stderr, "Bad timeout '%s'\n", optarg);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000745 usage();
Ben Lindstromedd098b2002-07-04 00:07:13 +0000746 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000747 break;
748 case 'v':
749 if (!debug_flag) {
750 debug_flag = 1;
751 log_level = SYSLOG_LEVEL_DEBUG1;
752 }
753 else if (log_level < SYSLOG_LEVEL_DEBUG3)
754 log_level++;
755 else
756 fatal("Too high debugging level.");
757 break;
Kevin Steves76e7d9b2001-09-20 20:30:09 +0000758 case 'f':
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000759 if (strcmp(optarg, "-") == 0)
760 optarg = NULL;
761 argv[fopt_count++] = optarg;
762 break;
763 case 't':
764 get_keytypes = 0;
765 tname = strtok(optarg, ",");
766 while (tname) {
767 int type = key_type_from_name(tname);
768 switch (type) {
769 case KEY_RSA1:
770 get_keytypes |= KT_RSA1;
771 break;
772 case KEY_DSA:
773 get_keytypes |= KT_DSA;
774 break;
775 case KEY_RSA:
776 get_keytypes |= KT_RSA;
777 break;
778 case KEY_UNSPEC:
Ben Lindstrom28c603b2001-12-06 16:45:10 +0000779 fatal("unknown key type %s", tname);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000780 }
781 tname = strtok(NULL, ",");
782 }
783 break;
784 case '4':
785 IPv4or6 = AF_INET;
786 break;
787 case '6':
788 IPv4or6 = AF_INET6;
789 break;
790 case '?':
791 default:
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000792 usage();
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000793 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000794 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000795 if (optind == argc && !fopt_count)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000796 usage();
797
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000798 log_init("ssh-keyscan", log_level, SYSLOG_FACILITY_USER, 1);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000799
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000800 maxfd = fdlim_get(1);
801 if (maxfd < 0)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000802 fatal("%s: fdlim_get: bad value", __progname);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000803 if (maxfd > MAXMAXFD)
804 maxfd = MAXMAXFD;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000805 if (MAXCON <= 0)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000806 fatal("%s: not enough file descriptors", __progname);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000807 if (maxfd > fdlim_get(0))
808 fdlim_set(maxfd);
809 fdcon = xmalloc(maxfd * sizeof(con));
Ben Lindstromc791beb2001-02-10 23:18:11 +0000810 memset(fdcon, 0, maxfd * sizeof(con));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000811
Ben Lindstromc1e04212001-03-05 07:04:38 +0000812 read_wait_size = howmany(maxfd, NFDBITS) * sizeof(fd_mask);
813 read_wait = xmalloc(read_wait_size);
814 memset(read_wait, 0, read_wait_size);
815
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000816 if (fopt_count) {
817 Linebuf *lb;
818 char *line;
819 int j;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000820
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000821 for (j = 0; j < fopt_count; j++) {
822 lb = Linebuf_alloc(argv[j], error);
Ben Lindstrom78bbd9e2001-09-12 17:10:40 +0000823 if (!lb)
824 continue;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000825 while ((line = Linebuf_getline(lb)) != NULL)
826 do_host(line);
827 Linebuf_free(lb);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000828 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000829 }
830
831 while (optind < argc)
832 do_host(argv[optind++]);
833
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000834 while (ncon > 0)
835 conloop();
836
837 return (0);
838}