blob: 13e7c721cc578517db2be679d8a8b6bbf46f7c46 [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 Millercd4223c2006-03-15 11:22:47 +110010RCSID("$OpenBSD: ssh-keyscan.c,v 1.59 2006/02/08 14:31:30 stevesk Exp $");
11
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;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000354 c->c_kex->verify_host_key = hostjump;
355
356 if (!(j = setjmp(kexjmp))) {
357 nonfatal_fatal = 1;
358 dispatch_run(DISPATCH_BLOCK, &c->c_kex->done, c->c_kex);
359 fprintf(stderr, "Impossible! dispatch_run() returned!\n");
360 exit(1);
361 }
362 nonfatal_fatal = 0;
363 xfree(c->c_kex);
364 c->c_kex = NULL;
365 packet_close();
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000366
Ben Lindstrom520b55c2001-09-12 18:05:05 +0000367 return j < 0? NULL : kexjmp_key;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000368}
369
370static void
371keyprint(con *c, Key *key)
372{
Damien Millerdb7b8172005-03-01 21:48:03 +1100373 char *host = c->c_output_name ? c->c_output_name : c->c_name;
374
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000375 if (!key)
376 return;
Damien Millerdb7b8172005-03-01 21:48:03 +1100377 if (hash_hosts && (host = host_hash(host, NULL, 0)) == NULL)
378 fatal("host_hash failed");
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000379
Damien Millerdb7b8172005-03-01 21:48:03 +1100380 fprintf(stdout, "%s ", host);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000381 key_write(key, stdout);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000382 fputs("\n", stdout);
383}
384
Ben Lindstrombba81212001-06-25 05:01:22 +0000385static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000386tcpconnect(char *host)
387{
388 struct addrinfo hints, *ai, *aitop;
389 char strport[NI_MAXSERV];
390 int gaierr, s = -1;
391
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000392 snprintf(strport, sizeof strport, "%d", ssh_port);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000393 memset(&hints, 0, sizeof(hints));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000394 hints.ai_family = IPv4or6;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000395 hints.ai_socktype = SOCK_STREAM;
396 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
397 fatal("getaddrinfo %s: %s", host, gai_strerror(gaierr));
398 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller2372ace2003-05-14 13:42:23 +1000399 s = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000400 if (s < 0) {
401 error("socket: %s", strerror(errno));
402 continue;
403 }
Damien Miller232711f2004-06-15 10:35:30 +1000404 if (set_nonblock(s) == -1)
405 fatal("%s: set_nonblock(%d)", __func__, s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000406 if (connect(s, ai->ai_addr, ai->ai_addrlen) < 0 &&
407 errno != EINPROGRESS)
408 error("connect (`%s'): %s", host, strerror(errno));
409 else
410 break;
411 close(s);
412 s = -1;
413 }
414 freeaddrinfo(aitop);
415 return s;
416}
417
Ben Lindstrombba81212001-06-25 05:01:22 +0000418static int
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000419conalloc(char *iname, char *oname, int keytype)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000420{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000421 char *namebase, *name, *namelist;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000422 int s;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000423
424 namebase = namelist = xstrdup(iname);
425
426 do {
427 name = xstrsep(&namelist, ",");
428 if (!name) {
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000429 xfree(namebase);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000430 return (-1);
431 }
432 } while ((s = tcpconnect(name)) < 0);
433
434 if (s >= maxfd)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000435 fatal("conalloc: fdno %d too high", s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000436 if (fdcon[s].c_status)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000437 fatal("conalloc: attempt to reuse fdno %d", s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000438
439 fdcon[s].c_fd = s;
440 fdcon[s].c_status = CS_CON;
441 fdcon[s].c_namebase = namebase;
442 fdcon[s].c_name = name;
443 fdcon[s].c_namelist = namelist;
444 fdcon[s].c_output_name = xstrdup(oname);
445 fdcon[s].c_data = (char *) &fdcon[s].c_plen;
446 fdcon[s].c_len = 4;
447 fdcon[s].c_off = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000448 fdcon[s].c_keytype = keytype;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000449 gettimeofday(&fdcon[s].c_tv, NULL);
450 fdcon[s].c_tv.tv_sec += timeout;
451 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000452 FD_SET(s, read_wait);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000453 ncon++;
454 return (s);
455}
456
Ben Lindstrombba81212001-06-25 05:01:22 +0000457static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000458confree(int s)
459{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000460 if (s >= maxfd || fdcon[s].c_status == CS_UNUSED)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000461 fatal("confree: attempt to free bad fdno %d", s);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000462 close(s);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000463 xfree(fdcon[s].c_namebase);
464 xfree(fdcon[s].c_output_name);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000465 if (fdcon[s].c_status == CS_KEYS)
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000466 xfree(fdcon[s].c_data);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000467 fdcon[s].c_status = CS_UNUSED;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000468 fdcon[s].c_keytype = 0;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000469 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000470 FD_CLR(s, read_wait);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000471 ncon--;
472}
473
Ben Lindstrombba81212001-06-25 05:01:22 +0000474static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000475contouch(int s)
476{
477 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
478 gettimeofday(&fdcon[s].c_tv, NULL);
479 fdcon[s].c_tv.tv_sec += timeout;
480 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
481}
482
Ben Lindstrombba81212001-06-25 05:01:22 +0000483static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000484conrecycle(int s)
485{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000486 con *c = &fdcon[s];
Ben Lindstrom965710f2002-07-07 22:17:22 +0000487 int ret;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000488
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000489 ret = conalloc(c->c_namelist, c->c_output_name, c->c_keytype);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000490 confree(s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000491 return (ret);
492}
493
Ben Lindstrombba81212001-06-25 05:01:22 +0000494static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000495congreet(int s)
496{
Damien Millereccb9de2005-06-17 12:59:34 +1000497 int n = 0, remote_major = 0, remote_minor = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000498 char buf[256], *cp;
Damien Miller83c02ef2001-12-21 12:45:43 +1100499 char remote_version[sizeof buf];
Damien Millereccb9de2005-06-17 12:59:34 +1000500 size_t bufsiz;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000501 con *c = &fdcon[s];
502
Damien Miller4bbacb72005-11-05 15:12:28 +1100503 for (;;) {
504 memset(buf, '\0', sizeof(buf));
505 bufsiz = sizeof(buf);
506 cp = buf;
507 while (bufsiz-- &&
508 (n = atomicio(read, s, cp, 1)) == 1 && *cp != '\n') {
509 if (*cp == '\r')
510 *cp = '\n';
511 cp++;
512 }
513 if (n != 1 || strncmp(buf, "SSH-", 4) == 0)
514 break;
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000515 }
Ben Lindstrom6b28c352002-03-05 01:54:52 +0000516 if (n == 0) {
Damien Millerb253cc42005-05-26 12:23:44 +1000517 switch (errno) {
518 case EPIPE:
519 error("%s: Connection closed by remote host", c->c_name);
520 break;
521 case ECONNREFUSED:
522 break;
523 default:
524 error("read (%s): %s", c->c_name, strerror(errno));
525 break;
526 }
Ben Lindstrom6b28c352002-03-05 01:54:52 +0000527 conrecycle(s);
528 return;
529 }
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000530 if (*cp != '\n' && *cp != '\r') {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000531 error("%s: bad greeting", c->c_name);
532 confree(s);
533 return;
534 }
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000535 *cp = '\0';
Damien Miller83c02ef2001-12-21 12:45:43 +1100536 if (sscanf(buf, "SSH-%d.%d-%[^\n]\n",
537 &remote_major, &remote_minor, remote_version) == 3)
538 compat_datafellows(remote_version);
539 else
540 datafellows = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000541 if (c->c_keytype != KT_RSA1) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000542 if (!ssh2_capable(remote_major, remote_minor)) {
543 debug("%s doesn't support ssh2", c->c_name);
544 confree(s);
545 return;
546 }
Damien Miller83c02ef2001-12-21 12:45:43 +1100547 } else if (remote_major != 1) {
548 debug("%s doesn't support ssh1", c->c_name);
549 confree(s);
550 return;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000551 }
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000552 fprintf(stderr, "# %s %s\n", c->c_name, chop(buf));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000553 n = snprintf(buf, sizeof buf, "SSH-%d.%d-OpenSSH-keyscan\r\n",
554 c->c_keytype == KT_RSA1? PROTOCOL_MAJOR_1 : PROTOCOL_MAJOR_2,
555 c->c_keytype == KT_RSA1? PROTOCOL_MINOR_1 : PROTOCOL_MINOR_2);
Damien Millereccb9de2005-06-17 12:59:34 +1000556 if (n < 0 || (size_t)n >= sizeof(buf)) {
Damien Miller41bfc292005-05-26 12:07:32 +1000557 error("snprintf: buffer too small");
558 confree(s);
559 return;
560 }
Damien Millereccb9de2005-06-17 12:59:34 +1000561 if (atomicio(vwrite, s, buf, n) != (size_t)n) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000562 error("write (%s): %s", c->c_name, strerror(errno));
563 confree(s);
564 return;
565 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000566 if (c->c_keytype != KT_RSA1) {
567 keyprint(c, keygrab_ssh2(c));
568 confree(s);
569 return;
570 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000571 c->c_status = CS_SIZE;
572 contouch(s);
573}
574
Ben Lindstrombba81212001-06-25 05:01:22 +0000575static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000576conread(int s)
577{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000578 con *c = &fdcon[s];
Damien Millerb253cc42005-05-26 12:23:44 +1000579 size_t n;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000580
581 if (c->c_status == CS_CON) {
582 congreet(s);
583 return;
584 }
Darren Tuckerfe6649d2004-08-13 21:19:37 +1000585 n = atomicio(read, s, c->c_data + c->c_off, c->c_len - c->c_off);
Damien Millerb253cc42005-05-26 12:23:44 +1000586 if (n == 0) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000587 error("read (%s): %s", c->c_name, strerror(errno));
588 confree(s);
589 return;
590 }
591 c->c_off += n;
592
593 if (c->c_off == c->c_len)
594 switch (c->c_status) {
595 case CS_SIZE:
596 c->c_plen = htonl(c->c_plen);
597 c->c_len = c->c_plen + 8 - (c->c_plen & 7);
598 c->c_off = 0;
599 c->c_data = xmalloc(c->c_len);
600 c->c_status = CS_KEYS;
601 break;
602 case CS_KEYS:
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000603 keyprint(c, keygrab_ssh1(c));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000604 confree(s);
605 return;
606 break;
607 default:
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000608 fatal("conread: invalid status %d", c->c_status);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000609 break;
610 }
611
612 contouch(s);
613}
614
Ben Lindstrombba81212001-06-25 05:01:22 +0000615static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000616conloop(void)
617{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000618 struct timeval seltime, now;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000619 fd_set *r, *e;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000620 con *c;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000621 int i;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000622
623 gettimeofday(&now, NULL);
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000624 c = TAILQ_FIRST(&tq);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000625
Ben Lindstromd20b8552001-03-05 07:01:18 +0000626 if (c && (c->c_tv.tv_sec > now.tv_sec ||
627 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec > now.tv_usec))) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000628 seltime = c->c_tv;
629 seltime.tv_sec -= now.tv_sec;
630 seltime.tv_usec -= now.tv_usec;
Ben Lindstromc791beb2001-02-10 23:18:11 +0000631 if (seltime.tv_usec < 0) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000632 seltime.tv_usec += 1000000;
633 seltime.tv_sec--;
634 }
635 } else
636 seltime.tv_sec = seltime.tv_usec = 0;
637
Ben Lindstromc1e04212001-03-05 07:04:38 +0000638 r = xmalloc(read_wait_size);
639 memcpy(r, read_wait, read_wait_size);
640 e = xmalloc(read_wait_size);
641 memcpy(e, read_wait, read_wait_size);
642
643 while (select(maxfd, r, NULL, e, &seltime) == -1 &&
Ben Lindstromf9452512001-02-15 03:12:08 +0000644 (errno == EAGAIN || errno == EINTR))
645 ;
646
Ben Lindstromd20b8552001-03-05 07:01:18 +0000647 for (i = 0; i < maxfd; i++) {
Ben Lindstromc1e04212001-03-05 07:04:38 +0000648 if (FD_ISSET(i, e)) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000649 error("%s: exception!", fdcon[i].c_name);
650 confree(i);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000651 } else if (FD_ISSET(i, r))
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000652 conread(i);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000653 }
Ben Lindstromc1e04212001-03-05 07:04:38 +0000654 xfree(r);
655 xfree(e);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000656
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000657 c = TAILQ_FIRST(&tq);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000658 while (c && (c->c_tv.tv_sec < now.tv_sec ||
659 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec < now.tv_usec))) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000660 int s = c->c_fd;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000661
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000662 c = TAILQ_NEXT(c, c_link);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000663 conrecycle(s);
664 }
665}
666
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000667static void
668do_host(char *host)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000669{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000670 char *name = strnnsep(&host, " \t\n");
671 int j;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000672
Ben Lindstromeaffb9d2001-12-06 16:28:19 +0000673 if (name == NULL)
674 return;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000675 for (j = KT_RSA1; j <= KT_RSA; j *= 2) {
676 if (get_keytypes & j) {
677 while (ncon >= MAXCON)
678 conloop();
679 conalloc(name, *host ? host : name, j);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000680 }
681 }
682}
683
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000684void
685fatal(const char *fmt,...)
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000686{
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000687 va_list args;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000688
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000689 va_start(args, fmt);
690 do_log(SYSLOG_LEVEL_FATAL, fmt, args);
691 va_end(args);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000692 if (nonfatal_fatal)
693 longjmp(kexjmp, -1);
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000694 else
Darren Tucker3d326222003-09-22 21:11:20 +1000695 exit(255);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000696}
697
698static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000699usage(void)
700{
Damien Miller9a2fdbd2005-03-02 12:04:01 +1100701 fprintf(stderr, "usage: %s [-46Hv] [-f file] [-p port] [-T timeout] [-t type]\n"
Ben Lindstrom965710f2002-07-07 22:17:22 +0000702 "\t\t [host | addrlist namelist] [...]\n",
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000703 __progname);
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000704 exit(1);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000705}
706
707int
708main(int argc, char **argv)
709{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000710 int debug_flag = 0, log_level = SYSLOG_LEVEL_INFO;
711 int opt, fopt_count = 0;
712 char *tname;
Kevin Steves76e7d9b2001-09-20 20:30:09 +0000713
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000714 extern int optind;
715 extern char *optarg;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000716
Damien Miller59d3d5b2003-08-22 09:34:41 +1000717 __progname = ssh_get_progname(argv[0]);
Ben Lindstrom4e088e42001-10-10 20:45:43 +0000718 init_rng();
719 seed_rng();
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000720 TAILQ_INIT(&tq);
721
Darren Tuckerce321d82005-10-03 18:11:24 +1000722 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
723 sanitise_stdfd();
724
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000725 if (argc <= 1)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000726 usage();
727
Damien Millerdb7b8172005-03-01 21:48:03 +1100728 while ((opt = getopt(argc, argv, "Hv46p:T:t:f:")) != -1) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000729 switch (opt) {
Damien Millerdb7b8172005-03-01 21:48:03 +1100730 case 'H':
731 hash_hosts = 1;
732 break;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000733 case 'p':
734 ssh_port = a2port(optarg);
735 if (ssh_port == 0) {
736 fprintf(stderr, "Bad port '%s'\n", optarg);
737 exit(1);
738 }
739 break;
740 case 'T':
Ben Lindstromedd098b2002-07-04 00:07:13 +0000741 timeout = convtime(optarg);
742 if (timeout == -1 || timeout == 0) {
743 fprintf(stderr, "Bad timeout '%s'\n", optarg);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000744 usage();
Ben Lindstromedd098b2002-07-04 00:07:13 +0000745 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000746 break;
747 case 'v':
748 if (!debug_flag) {
749 debug_flag = 1;
750 log_level = SYSLOG_LEVEL_DEBUG1;
751 }
752 else if (log_level < SYSLOG_LEVEL_DEBUG3)
753 log_level++;
754 else
755 fatal("Too high debugging level.");
756 break;
Kevin Steves76e7d9b2001-09-20 20:30:09 +0000757 case 'f':
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000758 if (strcmp(optarg, "-") == 0)
759 optarg = NULL;
760 argv[fopt_count++] = optarg;
761 break;
762 case 't':
763 get_keytypes = 0;
764 tname = strtok(optarg, ",");
765 while (tname) {
766 int type = key_type_from_name(tname);
767 switch (type) {
768 case KEY_RSA1:
769 get_keytypes |= KT_RSA1;
770 break;
771 case KEY_DSA:
772 get_keytypes |= KT_DSA;
773 break;
774 case KEY_RSA:
775 get_keytypes |= KT_RSA;
776 break;
777 case KEY_UNSPEC:
Ben Lindstrom28c603b2001-12-06 16:45:10 +0000778 fatal("unknown key type %s", tname);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000779 }
780 tname = strtok(NULL, ",");
781 }
782 break;
783 case '4':
784 IPv4or6 = AF_INET;
785 break;
786 case '6':
787 IPv4or6 = AF_INET6;
788 break;
789 case '?':
790 default:
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000791 usage();
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000792 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000793 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000794 if (optind == argc && !fopt_count)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000795 usage();
796
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000797 log_init("ssh-keyscan", log_level, SYSLOG_FACILITY_USER, 1);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000798
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000799 maxfd = fdlim_get(1);
800 if (maxfd < 0)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000801 fatal("%s: fdlim_get: bad value", __progname);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000802 if (maxfd > MAXMAXFD)
803 maxfd = MAXMAXFD;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000804 if (MAXCON <= 0)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000805 fatal("%s: not enough file descriptors", __progname);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000806 if (maxfd > fdlim_get(0))
807 fdlim_set(maxfd);
808 fdcon = xmalloc(maxfd * sizeof(con));
Ben Lindstromc791beb2001-02-10 23:18:11 +0000809 memset(fdcon, 0, maxfd * sizeof(con));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000810
Ben Lindstromc1e04212001-03-05 07:04:38 +0000811 read_wait_size = howmany(maxfd, NFDBITS) * sizeof(fd_mask);
812 read_wait = xmalloc(read_wait_size);
813 memset(read_wait, 0, read_wait_size);
814
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000815 if (fopt_count) {
816 Linebuf *lb;
817 char *line;
818 int j;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000819
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000820 for (j = 0; j < fopt_count; j++) {
821 lb = Linebuf_alloc(argv[j], error);
Ben Lindstrom78bbd9e2001-09-12 17:10:40 +0000822 if (!lb)
823 continue;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000824 while ((line = Linebuf_getline(lb)) != NULL)
825 do_host(line);
826 Linebuf_free(lb);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000827 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000828 }
829
830 while (optind < argc)
831 do_host(argv[optind++]);
832
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000833 while (ncon > 0)
834 conloop();
835
836 return (0);
837}