blob: 5204913925a7ac042cd121285b8fd023afc3695b [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 Miller139d4cd2001-10-10 15:07:44 +100010RCSID("$OpenBSD: ssh-keyscan.c,v 1.30 2001/10/08 19:05:05 markus Exp $");
Ben Lindstromb6434ae2000-12-05 01:15:09 +000011
Kevin Steves28a7f262001-02-05 15:43:59 +000012#if defined(HAVE_SYS_QUEUE_H) && !defined(HAVE_BOGUS_SYS_QUEUE_H)
Ben Lindstromb6434ae2000-12-05 01:15:09 +000013#include <sys/queue.h>
Kevin Steves2c65ada2000-12-06 22:25:40 +000014#else
Kevin Steves54f15b62001-03-14 18:37:13 +000015#include "openbsd-compat/fake-queue.h"
Kevin Steves2c65ada2000-12-06 22:25:40 +000016#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +000017#include <errno.h>
18
19#include <openssl/bn.h>
Ben Lindstromb6434ae2000-12-05 01:15:09 +000020
Ben Lindstrom325e70c2001-08-06 22:41:30 +000021#include <setjmp.h>
Ben Lindstromb6434ae2000-12-05 01:15:09 +000022#include "xmalloc.h"
23#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000024#include "ssh1.h"
Ben Lindstromb6434ae2000-12-05 01:15:09 +000025#include "key.h"
Ben Lindstrom325e70c2001-08-06 22:41:30 +000026#include "kex.h"
27#include "compat.h"
28#include "myproposal.h"
29#include "packet.h"
30#include "dispatch.h"
Ben Lindstromb6434ae2000-12-05 01:15:09 +000031#include "buffer.h"
32#include "bufaux.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000033#include "log.h"
Ben Lindstromd20b8552001-03-05 07:01:18 +000034#include "atomicio.h"
Ben Lindstrom325e70c2001-08-06 22:41:30 +000035#include "misc.h"
Ben Lindstromb6434ae2000-12-05 01:15:09 +000036
Ben Lindstrom325e70c2001-08-06 22:41:30 +000037/* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
38 Default value is AF_UNSPEC means both IPv4 and IPv6. */
Ben Lindstrom325e70c2001-08-06 22:41:30 +000039int IPv4or6 = AF_UNSPEC;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000040
Ben Lindstrom325e70c2001-08-06 22:41:30 +000041int ssh_port = SSH_DEFAULT_PORT;
Kevin Steves76e7d9b2001-09-20 20:30:09 +000042
43#define KT_RSA1 1
44#define KT_DSA 2
45#define KT_RSA 4
46
47int get_keytypes = KT_RSA1; /* Get only RSA1 keys by default */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000048
Ben Lindstromb6434ae2000-12-05 01:15:09 +000049#define MAXMAXFD 256
50
51/* The number of seconds after which to give up on a TCP connection */
52int timeout = 5;
53
54int maxfd;
Ben Lindstromd20b8552001-03-05 07:01:18 +000055#define MAXCON (maxfd - 10)
Ben Lindstromb6434ae2000-12-05 01:15:09 +000056
Kevin Stevesec84dc12000-12-13 17:45:15 +000057#ifdef HAVE___PROGNAME
58extern char *__progname;
59#else
60char *__progname;
61#endif
Ben Lindstromc1e04212001-03-05 07:04:38 +000062fd_set *read_wait;
63size_t read_wait_size;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000064int ncon;
Ben Lindstrom325e70c2001-08-06 22:41:30 +000065int nonfatal_fatal = 0;
66jmp_buf kexjmp;
Ben Lindstrom520b55c2001-09-12 18:05:05 +000067Key *kexjmp_key;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000068
69/*
70 * Keep a connection structure for each file descriptor. The state
71 * associated with file descriptor n is held in fdcon[n].
72 */
73typedef struct Connection {
Ben Lindstrom46c16222000-12-22 01:43:59 +000074 u_char c_status; /* State of connection on this file desc. */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000075#define CS_UNUSED 0 /* File descriptor unused */
76#define CS_CON 1 /* Waiting to connect/read greeting */
77#define CS_SIZE 2 /* Waiting to read initial packet size */
78#define CS_KEYS 3 /* Waiting to read public key packet */
79 int c_fd; /* Quick lookup: c->c_fd == c - fdcon */
80 int c_plen; /* Packet length field for ssh packet */
81 int c_len; /* Total bytes which must be read. */
82 int c_off; /* Length of data read so far. */
Ben Lindstrom325e70c2001-08-06 22:41:30 +000083 int c_keytype; /* Only one of KT_RSA1, KT_DSA, or KT_RSA */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000084 char *c_namebase; /* Address to free for c_name and c_namelist */
85 char *c_name; /* Hostname of connection for errors */
86 char *c_namelist; /* Pointer to other possible addresses */
87 char *c_output_name; /* Hostname of connection for output */
88 char *c_data; /* Data read from this fd */
Ben Lindstrom325e70c2001-08-06 22:41:30 +000089 Kex *c_kex; /* The key-exchange struct for ssh2 */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000090 struct timeval c_tv; /* Time at which connection gets aborted */
91 TAILQ_ENTRY(Connection) c_link; /* List of connections in timeout order. */
92} con;
93
94TAILQ_HEAD(conlist, Connection) tq; /* Timeout Queue */
95con *fdcon;
96
97/*
98 * This is just a wrapper around fgets() to make it usable.
99 */
100
101/* Stress-test. Increase this later. */
102#define LINEBUF_SIZE 16
103
104typedef struct {
105 char *buf;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000106 u_int size;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000107 int lineno;
108 const char *filename;
109 FILE *stream;
110 void (*errfun) (const char *,...);
111} Linebuf;
112
Ben Lindstrombba81212001-06-25 05:01:22 +0000113static Linebuf *
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000114Linebuf_alloc(const char *filename, void (*errfun) (const char *,...))
115{
116 Linebuf *lb;
117
118 if (!(lb = malloc(sizeof(*lb)))) {
119 if (errfun)
120 (*errfun) ("linebuf (%s): malloc failed\n", lb->filename);
121 return (NULL);
122 }
123 if (filename) {
124 lb->filename = filename;
125 if (!(lb->stream = fopen(filename, "r"))) {
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000126 xfree(lb);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000127 if (errfun)
128 (*errfun) ("%s: %s\n", filename, strerror(errno));
129 return (NULL);
130 }
131 } else {
132 lb->filename = "(stdin)";
133 lb->stream = stdin;
134 }
135
136 if (!(lb->buf = malloc(lb->size = LINEBUF_SIZE))) {
137 if (errfun)
138 (*errfun) ("linebuf (%s): malloc failed\n", lb->filename);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000139 xfree(lb);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000140 return (NULL);
141 }
142 lb->errfun = errfun;
143 lb->lineno = 0;
144 return (lb);
145}
146
Ben Lindstrombba81212001-06-25 05:01:22 +0000147static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000148Linebuf_free(Linebuf * lb)
149{
150 fclose(lb->stream);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000151 xfree(lb->buf);
152 xfree(lb);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000153}
154
Ben Lindstrombba81212001-06-25 05:01:22 +0000155#if 0
156static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000157Linebuf_restart(Linebuf * lb)
158{
159 clearerr(lb->stream);
160 rewind(lb->stream);
161 lb->lineno = 0;
162}
163
Ben Lindstrombba81212001-06-25 05:01:22 +0000164static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000165Linebuf_lineno(Linebuf * lb)
166{
167 return (lb->lineno);
168}
Ben Lindstrombba81212001-06-25 05:01:22 +0000169#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000170
Ben Lindstrombba81212001-06-25 05:01:22 +0000171static char *
Ben Lindstromc791beb2001-02-10 23:18:11 +0000172Linebuf_getline(Linebuf * lb)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000173{
174 int n = 0;
175
176 lb->lineno++;
177 for (;;) {
178 /* Read a line */
179 if (!fgets(&lb->buf[n], lb->size - n, lb->stream)) {
180 if (ferror(lb->stream) && lb->errfun)
Ben Lindstromb0a4cd82001-03-05 04:54:49 +0000181 (*lb->errfun) ("%s: %s\n", lb->filename,
182 strerror(errno));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000183 return (NULL);
184 }
185 n = strlen(lb->buf);
186
187 /* Return it or an error if it fits */
188 if (n > 0 && lb->buf[n - 1] == '\n') {
189 lb->buf[n - 1] = '\0';
190 return (lb->buf);
191 }
192 if (n != lb->size - 1) {
193 if (lb->errfun)
Ben Lindstromb0a4cd82001-03-05 04:54:49 +0000194 (*lb->errfun) ("%s: skipping incomplete last line\n",
195 lb->filename);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000196 return (NULL);
197 }
198 /* Double the buffer if we need more space */
199 if (!(lb->buf = realloc(lb->buf, (lb->size *= 2)))) {
200 if (lb->errfun)
Ben Lindstromb0a4cd82001-03-05 04:54:49 +0000201 (*lb->errfun) ("linebuf (%s): realloc failed\n",
202 lb->filename);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000203 return (NULL);
204 }
205 }
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)
217 return 10000;
218 else
219 return hard ? rlfd.rlim_max : rlfd.rlim_cur;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000220#elif defined (HAVE_SYSCONF)
221 return sysconf (_SC_OPEN_MAX);
222#else
223 return 10000;
224#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000225}
226
Ben Lindstrombba81212001-06-25 05:01:22 +0000227static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000228fdlim_set(int lim)
229{
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000230#if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000231 struct rlimit rlfd;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000232#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000233 if (lim <= 0)
234 return (-1);
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000235#if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000236 if (getrlimit(RLIMIT_NOFILE, &rlfd) < 0)
237 return (-1);
238 rlfd.rlim_cur = lim;
239 if (setrlimit(RLIMIT_NOFILE, &rlfd) < 0)
240 return (-1);
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000241#elif defined (HAVE_SETDTABLESIZE)
Kevin Steves28a7f262001-02-05 15:43:59 +0000242 setdtablesize(lim);
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000243#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000244 return (0);
245}
246
247/*
248 * This is an strsep function that returns a null field for adjacent
249 * separators. This is the same as the 4.4BSD strsep, but different from the
250 * one in the GNU libc.
251 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000252static char *
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000253xstrsep(char **str, const char *delim)
254{
255 char *s, *e;
256
257 if (!**str)
258 return (NULL);
259
260 s = *str;
261 e = s + strcspn(s, delim);
262
263 if (*e != '\0')
264 *e++ = '\0';
265 *str = e;
266
267 return (s);
268}
269
270/*
271 * Get the next non-null token (like GNU strsep). Strsep() will return a
272 * null token for two adjacent separators, so we may have to loop.
273 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000274static char *
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000275strnnsep(char **stringp, char *delim)
276{
277 char *tok;
278
279 do {
280 tok = xstrsep(stringp, delim);
281 } while (tok && *tok == '\0');
282 return (tok);
283}
284
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000285static Key *
286keygrab_ssh1(con *c)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000287{
288 static Key *rsa;
289 static Buffer msg;
290
291 if (rsa == NULL) {
292 buffer_init(&msg);
293 rsa = key_new(KEY_RSA1);
294 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000295 buffer_append(&msg, c->c_data, c->c_plen);
296 buffer_consume(&msg, 8 - (c->c_plen & 7)); /* padding */
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000297 if (buffer_get_char(&msg) != (int) SSH_SMSG_PUBLIC_KEY) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000298 error("%s: invalid packet type", c->c_name);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000299 buffer_clear(&msg);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000300 return NULL;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000301 }
302 buffer_consume(&msg, 8); /* cookie */
303
304 /* server key */
305 (void) buffer_get_int(&msg);
306 buffer_get_bignum(&msg, rsa->rsa->e);
307 buffer_get_bignum(&msg, rsa->rsa->n);
308
309 /* host key */
310 (void) buffer_get_int(&msg);
311 buffer_get_bignum(&msg, rsa->rsa->e);
312 buffer_get_bignum(&msg, rsa->rsa->n);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000313
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000314 buffer_clear(&msg);
315
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000316 return (rsa);
317}
318
319static int
320hostjump(Key *hostkey)
321{
Ben Lindstrom520b55c2001-09-12 18:05:05 +0000322 kexjmp_key = hostkey;
323 longjmp(kexjmp, 1);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000324}
325
326static int
327ssh2_capable(int remote_major, int remote_minor)
328{
329 switch (remote_major) {
330 case 1:
331 if (remote_minor == 99)
332 return 1;
333 break;
334 case 2:
335 return 1;
336 default:
337 break;
338 }
339 return 0;
340}
341
342static Key *
343keygrab_ssh2(con *c)
344{
345 int j;
346
347 packet_set_connection(c->c_fd, c->c_fd);
348 enable_compat20();
349 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = c->c_keytype == KT_DSA?
350 "ssh-dss": "ssh-rsa";
351 c->c_kex = kex_setup(myproposal);
352 c->c_kex->verify_host_key = hostjump;
353
354 if (!(j = setjmp(kexjmp))) {
355 nonfatal_fatal = 1;
356 dispatch_run(DISPATCH_BLOCK, &c->c_kex->done, c->c_kex);
357 fprintf(stderr, "Impossible! dispatch_run() returned!\n");
358 exit(1);
359 }
360 nonfatal_fatal = 0;
361 xfree(c->c_kex);
362 c->c_kex = NULL;
363 packet_close();
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000364
Ben Lindstrom520b55c2001-09-12 18:05:05 +0000365 return j < 0? NULL : kexjmp_key;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000366}
367
368static void
369keyprint(con *c, Key *key)
370{
371 if (!key)
372 return;
373
374 fprintf(stdout, "%s ", c->c_output_name ? c->c_output_name : c->c_name);
375 key_write(key, stdout);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000376 fputs("\n", stdout);
377}
378
Ben Lindstrombba81212001-06-25 05:01:22 +0000379static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000380tcpconnect(char *host)
381{
382 struct addrinfo hints, *ai, *aitop;
383 char strport[NI_MAXSERV];
384 int gaierr, s = -1;
385
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000386 snprintf(strport, sizeof strport, "%d", ssh_port);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000387 memset(&hints, 0, sizeof(hints));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000388 hints.ai_family = IPv4or6;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000389 hints.ai_socktype = SOCK_STREAM;
390 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
391 fatal("getaddrinfo %s: %s", host, gai_strerror(gaierr));
392 for (ai = aitop; ai; ai = ai->ai_next) {
393 s = socket(ai->ai_family, SOCK_STREAM, 0);
394 if (s < 0) {
395 error("socket: %s", strerror(errno));
396 continue;
397 }
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000398 if (fcntl(s, F_SETFL, O_NONBLOCK) < 0)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000399 fatal("F_SETFL: %s", strerror(errno));
400 if (connect(s, ai->ai_addr, ai->ai_addrlen) < 0 &&
401 errno != EINPROGRESS)
402 error("connect (`%s'): %s", host, strerror(errno));
403 else
404 break;
405 close(s);
406 s = -1;
407 }
408 freeaddrinfo(aitop);
409 return s;
410}
411
Ben Lindstrombba81212001-06-25 05:01:22 +0000412static int
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000413conalloc(char *iname, char *oname, int keytype)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000414{
415 int s;
416 char *namebase, *name, *namelist;
417
418 namebase = namelist = xstrdup(iname);
419
420 do {
421 name = xstrsep(&namelist, ",");
422 if (!name) {
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000423 xfree(namebase);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000424 return (-1);
425 }
426 } while ((s = tcpconnect(name)) < 0);
427
428 if (s >= maxfd)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000429 fatal("conalloc: fdno %d too high", s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000430 if (fdcon[s].c_status)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000431 fatal("conalloc: attempt to reuse fdno %d", s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000432
433 fdcon[s].c_fd = s;
434 fdcon[s].c_status = CS_CON;
435 fdcon[s].c_namebase = namebase;
436 fdcon[s].c_name = name;
437 fdcon[s].c_namelist = namelist;
438 fdcon[s].c_output_name = xstrdup(oname);
439 fdcon[s].c_data = (char *) &fdcon[s].c_plen;
440 fdcon[s].c_len = 4;
441 fdcon[s].c_off = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000442 fdcon[s].c_keytype = keytype;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000443 gettimeofday(&fdcon[s].c_tv, NULL);
444 fdcon[s].c_tv.tv_sec += timeout;
445 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000446 FD_SET(s, read_wait);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000447 ncon++;
448 return (s);
449}
450
Ben Lindstrombba81212001-06-25 05:01:22 +0000451static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000452confree(int s)
453{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000454 if (s >= maxfd || fdcon[s].c_status == CS_UNUSED)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000455 fatal("confree: attempt to free bad fdno %d", s);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000456 close(s);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000457 xfree(fdcon[s].c_namebase);
458 xfree(fdcon[s].c_output_name);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000459 if (fdcon[s].c_status == CS_KEYS)
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000460 xfree(fdcon[s].c_data);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000461 fdcon[s].c_status = CS_UNUSED;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000462 fdcon[s].c_keytype = 0;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000463 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000464 FD_CLR(s, read_wait);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000465 ncon--;
466}
467
Ben Lindstrombba81212001-06-25 05:01:22 +0000468static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000469contouch(int s)
470{
471 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
472 gettimeofday(&fdcon[s].c_tv, NULL);
473 fdcon[s].c_tv.tv_sec += timeout;
474 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
475}
476
Ben Lindstrombba81212001-06-25 05:01:22 +0000477static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000478conrecycle(int s)
479{
480 int ret;
481 con *c = &fdcon[s];
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000482
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000483 ret = conalloc(c->c_namelist, c->c_output_name, c->c_keytype);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000484 confree(s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000485 return (ret);
486}
487
Ben Lindstrombba81212001-06-25 05:01:22 +0000488static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000489congreet(int s)
490{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000491 char buf[256], *cp;
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000492 size_t bufsiz;
Ben Lindstrome21c4ad2001-03-07 01:23:30 +0000493 int n = 0;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000494 con *c = &fdcon[s];
495
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000496 bufsiz = sizeof(buf);
497 cp = buf;
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000498 while (bufsiz-- && (n = read(s, cp, 1)) == 1 && *cp != '\n') {
499 if (*cp == '\r')
500 *cp = '\n';
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000501 cp++;
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000502 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000503 if (n < 0) {
504 if (errno != ECONNREFUSED)
505 error("read (%s): %s", c->c_name, strerror(errno));
506 conrecycle(s);
507 return;
508 }
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000509 if (*cp != '\n' && *cp != '\r') {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000510 error("%s: bad greeting", c->c_name);
511 confree(s);
512 return;
513 }
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000514 *cp = '\0';
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000515 if (c->c_keytype != KT_RSA1) {
516 int remote_major, remote_minor;
517 char remote_version[sizeof buf];
518
519 if (sscanf(buf, "SSH-%d.%d-%[^\n]\n",
520 &remote_major, &remote_minor, remote_version) == 3)
521 compat_datafellows(remote_version);
522 else
523 datafellows = 0;
524 if (!ssh2_capable(remote_major, remote_minor)) {
525 debug("%s doesn't support ssh2", c->c_name);
526 confree(s);
527 return;
528 }
529 }
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000530 fprintf(stderr, "# %s %s\n", c->c_name, chop(buf));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000531 n = snprintf(buf, sizeof buf, "SSH-%d.%d-OpenSSH-keyscan\r\n",
532 c->c_keytype == KT_RSA1? PROTOCOL_MAJOR_1 : PROTOCOL_MAJOR_2,
533 c->c_keytype == KT_RSA1? PROTOCOL_MINOR_1 : PROTOCOL_MINOR_2);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000534 if (atomicio(write, s, buf, n) != n) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000535 error("write (%s): %s", c->c_name, strerror(errno));
536 confree(s);
537 return;
538 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000539 if (c->c_keytype != KT_RSA1) {
540 keyprint(c, keygrab_ssh2(c));
541 confree(s);
542 return;
543 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000544 c->c_status = CS_SIZE;
545 contouch(s);
546}
547
Ben Lindstrombba81212001-06-25 05:01:22 +0000548static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000549conread(int s)
550{
551 int n;
552 con *c = &fdcon[s];
553
554 if (c->c_status == CS_CON) {
555 congreet(s);
556 return;
557 }
558 n = read(s, c->c_data + c->c_off, c->c_len - c->c_off);
559 if (n < 0) {
560 error("read (%s): %s", c->c_name, strerror(errno));
561 confree(s);
562 return;
563 }
564 c->c_off += n;
565
566 if (c->c_off == c->c_len)
567 switch (c->c_status) {
568 case CS_SIZE:
569 c->c_plen = htonl(c->c_plen);
570 c->c_len = c->c_plen + 8 - (c->c_plen & 7);
571 c->c_off = 0;
572 c->c_data = xmalloc(c->c_len);
573 c->c_status = CS_KEYS;
574 break;
575 case CS_KEYS:
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000576 keyprint(c, keygrab_ssh1(c));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000577 confree(s);
578 return;
579 break;
580 default:
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000581 fatal("conread: invalid status %d", c->c_status);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000582 break;
583 }
584
585 contouch(s);
586}
587
Ben Lindstrombba81212001-06-25 05:01:22 +0000588static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000589conloop(void)
590{
Ben Lindstromc1e04212001-03-05 07:04:38 +0000591 fd_set *r, *e;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000592 struct timeval seltime, now;
593 int i;
594 con *c;
595
596 gettimeofday(&now, NULL);
597 c = tq.tqh_first;
598
Ben Lindstromd20b8552001-03-05 07:01:18 +0000599 if (c && (c->c_tv.tv_sec > now.tv_sec ||
600 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec > now.tv_usec))) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000601 seltime = c->c_tv;
602 seltime.tv_sec -= now.tv_sec;
603 seltime.tv_usec -= now.tv_usec;
Ben Lindstromc791beb2001-02-10 23:18:11 +0000604 if (seltime.tv_usec < 0) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000605 seltime.tv_usec += 1000000;
606 seltime.tv_sec--;
607 }
608 } else
609 seltime.tv_sec = seltime.tv_usec = 0;
610
Ben Lindstromc1e04212001-03-05 07:04:38 +0000611 r = xmalloc(read_wait_size);
612 memcpy(r, read_wait, read_wait_size);
613 e = xmalloc(read_wait_size);
614 memcpy(e, read_wait, read_wait_size);
615
616 while (select(maxfd, r, NULL, e, &seltime) == -1 &&
Ben Lindstromf9452512001-02-15 03:12:08 +0000617 (errno == EAGAIN || errno == EINTR))
618 ;
619
Ben Lindstromd20b8552001-03-05 07:01:18 +0000620 for (i = 0; i < maxfd; i++) {
Ben Lindstromc1e04212001-03-05 07:04:38 +0000621 if (FD_ISSET(i, e)) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000622 error("%s: exception!", fdcon[i].c_name);
623 confree(i);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000624 } else if (FD_ISSET(i, r))
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000625 conread(i);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000626 }
Ben Lindstromc1e04212001-03-05 07:04:38 +0000627 xfree(r);
628 xfree(e);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000629
630 c = tq.tqh_first;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000631 while (c && (c->c_tv.tv_sec < now.tv_sec ||
632 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec < now.tv_usec))) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000633 int s = c->c_fd;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000634
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000635 c = c->c_link.tqe_next;
636 conrecycle(s);
637 }
638}
639
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000640static void
641do_host(char *host)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000642{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000643 char *name = strnnsep(&host, " \t\n");
644 int j;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000645
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000646 for (j = KT_RSA1; j <= KT_RSA; j *= 2) {
647 if (get_keytypes & j) {
648 while (ncon >= MAXCON)
649 conloop();
650 conalloc(name, *host ? host : name, j);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000651 }
652 }
653}
654
Ben Lindstrombba81212001-06-25 05:01:22 +0000655static void
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000656fatal_callback(void *arg)
657{
658 if (nonfatal_fatal)
659 longjmp(kexjmp, -1);
660}
661
662static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000663usage(void)
664{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000665 fprintf(stderr, "Usage: %s [options] host ...\n",
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000666 __progname);
667 fprintf(stderr, "Options:\n");
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000668 fprintf(stderr, " -f file Read hosts or addresses from file.\n");
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000669 fprintf(stderr, " -p port Connect to the specified port.\n");
670 fprintf(stderr, " -t keytype Specify the host key type.\n");
671 fprintf(stderr, " -T timeout Set connection timeout.\n");
Kevin Steves76e7d9b2001-09-20 20:30:09 +0000672 fprintf(stderr, " -v Verbose; display verbose debugging messages.\n");
673 fprintf(stderr, " -4 Use IPv4 only.\n");
674 fprintf(stderr, " -6 Use IPv6 only.\n");
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000675 exit(1);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000676}
677
678int
679main(int argc, char **argv)
680{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000681 int debug_flag = 0, log_level = SYSLOG_LEVEL_INFO;
682 int opt, fopt_count = 0;
683 char *tname;
Kevin Steves76e7d9b2001-09-20 20:30:09 +0000684
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000685 extern int optind;
686 extern char *optarg;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000687
Kevin Stevesec84dc12000-12-13 17:45:15 +0000688 __progname = get_progname(argv[0]);
Ben Lindstrom4e088e42001-10-10 20:45:43 +0000689 init_rng();
690 seed_rng();
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000691 TAILQ_INIT(&tq);
692
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000693 if (argc <= 1)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000694 usage();
695
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000696 while ((opt = getopt(argc, argv, "v46p:T:t:f:")) != -1) {
697 switch (opt) {
698 case 'p':
699 ssh_port = a2port(optarg);
700 if (ssh_port == 0) {
701 fprintf(stderr, "Bad port '%s'\n", optarg);
702 exit(1);
703 }
704 break;
705 case 'T':
706 timeout = atoi(optarg);
707 if (timeout <= 0)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000708 usage();
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000709 break;
710 case 'v':
711 if (!debug_flag) {
712 debug_flag = 1;
713 log_level = SYSLOG_LEVEL_DEBUG1;
714 }
715 else if (log_level < SYSLOG_LEVEL_DEBUG3)
716 log_level++;
717 else
718 fatal("Too high debugging level.");
719 break;
Kevin Steves76e7d9b2001-09-20 20:30:09 +0000720 case 'f':
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000721 if (strcmp(optarg, "-") == 0)
722 optarg = NULL;
723 argv[fopt_count++] = optarg;
724 break;
725 case 't':
726 get_keytypes = 0;
727 tname = strtok(optarg, ",");
728 while (tname) {
729 int type = key_type_from_name(tname);
730 switch (type) {
731 case KEY_RSA1:
732 get_keytypes |= KT_RSA1;
733 break;
734 case KEY_DSA:
735 get_keytypes |= KT_DSA;
736 break;
737 case KEY_RSA:
738 get_keytypes |= KT_RSA;
739 break;
740 case KEY_UNSPEC:
741 fatal("unknown key type %s\n", tname);
742 }
743 tname = strtok(NULL, ",");
744 }
745 break;
746 case '4':
747 IPv4or6 = AF_INET;
748 break;
749 case '6':
750 IPv4or6 = AF_INET6;
751 break;
752 case '?':
753 default:
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000754 usage();
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000755 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000756 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000757 if (optind == argc && !fopt_count)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000758 usage();
759
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000760 log_init("ssh-keyscan", log_level, SYSLOG_FACILITY_USER, 1);
761 fatal_add_cleanup(fatal_callback, NULL);
762
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000763 maxfd = fdlim_get(1);
764 if (maxfd < 0)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000765 fatal("%s: fdlim_get: bad value", __progname);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000766 if (maxfd > MAXMAXFD)
767 maxfd = MAXMAXFD;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000768 if (MAXCON <= 0)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000769 fatal("%s: not enough file descriptors", __progname);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000770 if (maxfd > fdlim_get(0))
771 fdlim_set(maxfd);
772 fdcon = xmalloc(maxfd * sizeof(con));
Ben Lindstromc791beb2001-02-10 23:18:11 +0000773 memset(fdcon, 0, maxfd * sizeof(con));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000774
Ben Lindstromc1e04212001-03-05 07:04:38 +0000775 read_wait_size = howmany(maxfd, NFDBITS) * sizeof(fd_mask);
776 read_wait = xmalloc(read_wait_size);
777 memset(read_wait, 0, read_wait_size);
778
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000779 if (fopt_count) {
780 Linebuf *lb;
781 char *line;
782 int j;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000783
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000784 for (j = 0; j < fopt_count; j++) {
785 lb = Linebuf_alloc(argv[j], error);
Ben Lindstrom78bbd9e2001-09-12 17:10:40 +0000786 if (!lb)
787 continue;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000788 while ((line = Linebuf_getline(lb)) != NULL)
789 do_host(line);
790 Linebuf_free(lb);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000791 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000792 }
793
794 while (optind < argc)
795 do_host(argv[optind++]);
796
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000797 while (ncon > 0)
798 conloop();
799
800 return (0);
801}