blob: cd8b63488c0942ce8a4705c23e9480baf3922856 [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"
Ben Lindstromedd098b2002-07-04 00:07:13 +000010RCSID("$OpenBSD: ssh-keyscan.c,v 1.38 2002/06/27 19:49:08 stevesk Exp $");
Ben Lindstromb6434ae2000-12-05 01:15:09 +000011
Kevin Steves54f15b62001-03-14 18:37:13 +000012#include "openbsd-compat/fake-queue.h"
Ben Lindstromb6434ae2000-12-05 01:15:09 +000013
14#include <openssl/bn.h>
Ben Lindstromb6434ae2000-12-05 01:15:09 +000015
Ben Lindstrom325e70c2001-08-06 22:41:30 +000016#include <setjmp.h>
Ben Lindstromb6434ae2000-12-05 01:15:09 +000017#include "xmalloc.h"
18#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000019#include "ssh1.h"
Ben Lindstromb6434ae2000-12-05 01:15:09 +000020#include "key.h"
Ben Lindstrom325e70c2001-08-06 22:41:30 +000021#include "kex.h"
22#include "compat.h"
23#include "myproposal.h"
24#include "packet.h"
25#include "dispatch.h"
Ben Lindstromb6434ae2000-12-05 01:15:09 +000026#include "buffer.h"
27#include "bufaux.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000028#include "log.h"
Ben Lindstromd20b8552001-03-05 07:01:18 +000029#include "atomicio.h"
Ben Lindstrom325e70c2001-08-06 22:41:30 +000030#include "misc.h"
Ben Lindstromb6434ae2000-12-05 01:15:09 +000031
Ben Lindstrom325e70c2001-08-06 22:41:30 +000032/* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
33 Default value is AF_UNSPEC means both IPv4 and IPv6. */
Damien Millerefdc1f12001-11-15 08:40:45 +110034#ifdef IPV4_DEFAULT
35int IPv4or6 = AF_INET;
36#else
Ben Lindstrom325e70c2001-08-06 22:41:30 +000037int IPv4or6 = AF_UNSPEC;
Damien Millerefdc1f12001-11-15 08:40:45 +110038#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +000039
Ben Lindstrom325e70c2001-08-06 22:41:30 +000040int ssh_port = SSH_DEFAULT_PORT;
Kevin Steves76e7d9b2001-09-20 20:30:09 +000041
42#define KT_RSA1 1
43#define KT_DSA 2
44#define KT_RSA 4
45
46int get_keytypes = KT_RSA1; /* Get only RSA1 keys by default */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000047
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 +000056#ifdef HAVE___PROGNAME
57extern char *__progname;
58#else
59char *__progname;
60#endif
Ben Lindstromc1e04212001-03-05 07:04:38 +000061fd_set *read_wait;
62size_t read_wait_size;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000063int ncon;
Ben Lindstrom325e70c2001-08-06 22:41:30 +000064int nonfatal_fatal = 0;
65jmp_buf kexjmp;
Ben Lindstrom520b55c2001-09-12 18:05:05 +000066Key *kexjmp_key;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000067
68/*
69 * Keep a connection structure for each file descriptor. The state
70 * associated with file descriptor n is held in fdcon[n].
71 */
72typedef struct Connection {
Ben Lindstrom46c16222000-12-22 01:43:59 +000073 u_char c_status; /* State of connection on this file desc. */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000074#define CS_UNUSED 0 /* File descriptor unused */
75#define CS_CON 1 /* Waiting to connect/read greeting */
76#define CS_SIZE 2 /* Waiting to read initial packet size */
77#define CS_KEYS 3 /* Waiting to read public key packet */
78 int c_fd; /* Quick lookup: c->c_fd == c - fdcon */
79 int c_plen; /* Packet length field for ssh packet */
80 int c_len; /* Total bytes which must be read. */
81 int c_off; /* Length of data read so far. */
Ben Lindstrom325e70c2001-08-06 22:41:30 +000082 int c_keytype; /* Only one of KT_RSA1, KT_DSA, or KT_RSA */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000083 char *c_namebase; /* Address to free for c_name and c_namelist */
84 char *c_name; /* Hostname of connection for errors */
85 char *c_namelist; /* Pointer to other possible addresses */
86 char *c_output_name; /* Hostname of connection for output */
87 char *c_data; /* Data read from this fd */
Ben Lindstrom325e70c2001-08-06 22:41:30 +000088 Kex *c_kex; /* The key-exchange struct for ssh2 */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000089 struct timeval c_tv; /* Time at which connection gets aborted */
90 TAILQ_ENTRY(Connection) c_link; /* List of connections in timeout order. */
91} con;
92
93TAILQ_HEAD(conlist, Connection) tq; /* Timeout Queue */
94con *fdcon;
95
96/*
97 * This is just a wrapper around fgets() to make it usable.
98 */
99
100/* Stress-test. Increase this later. */
101#define LINEBUF_SIZE 16
102
103typedef struct {
104 char *buf;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000105 u_int size;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000106 int lineno;
107 const char *filename;
108 FILE *stream;
109 void (*errfun) (const char *,...);
110} Linebuf;
111
Ben Lindstrombba81212001-06-25 05:01:22 +0000112static Linebuf *
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000113Linebuf_alloc(const char *filename, void (*errfun) (const char *,...))
114{
115 Linebuf *lb;
116
117 if (!(lb = malloc(sizeof(*lb)))) {
118 if (errfun)
Ben Lindstrom04f9af72002-07-04 00:03:56 +0000119 (*errfun) ("linebuf (%s): malloc failed\n",
120 filename ? filename : "(stdin)");
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000121 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;
Damien Miller83c02ef2001-12-21 12:45:43 +1100492 char remote_version[sizeof buf];
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000493 size_t bufsiz;
Damien Miller83c02ef2001-12-21 12:45:43 +1100494 int remote_major, remote_minor, n = 0;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000495 con *c = &fdcon[s];
496
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000497 bufsiz = sizeof(buf);
498 cp = buf;
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000499 while (bufsiz-- && (n = read(s, cp, 1)) == 1 && *cp != '\n') {
500 if (*cp == '\r')
501 *cp = '\n';
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000502 cp++;
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000503 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000504 if (n < 0) {
505 if (errno != ECONNREFUSED)
506 error("read (%s): %s", c->c_name, strerror(errno));
507 conrecycle(s);
508 return;
509 }
Ben Lindstrom6b28c352002-03-05 01:54:52 +0000510 if (n == 0) {
511 error("%s: Connection closed by remote host", c->c_name);
512 conrecycle(s);
513 return;
514 }
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000515 if (*cp != '\n' && *cp != '\r') {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000516 error("%s: bad greeting", c->c_name);
517 confree(s);
518 return;
519 }
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000520 *cp = '\0';
Damien Miller83c02ef2001-12-21 12:45:43 +1100521 if (sscanf(buf, "SSH-%d.%d-%[^\n]\n",
522 &remote_major, &remote_minor, remote_version) == 3)
523 compat_datafellows(remote_version);
524 else
525 datafellows = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000526 if (c->c_keytype != KT_RSA1) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000527 if (!ssh2_capable(remote_major, remote_minor)) {
528 debug("%s doesn't support ssh2", c->c_name);
529 confree(s);
530 return;
531 }
Damien Miller83c02ef2001-12-21 12:45:43 +1100532 } else if (remote_major != 1) {
533 debug("%s doesn't support ssh1", c->c_name);
534 confree(s);
535 return;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000536 }
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000537 fprintf(stderr, "# %s %s\n", c->c_name, chop(buf));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000538 n = snprintf(buf, sizeof buf, "SSH-%d.%d-OpenSSH-keyscan\r\n",
539 c->c_keytype == KT_RSA1? PROTOCOL_MAJOR_1 : PROTOCOL_MAJOR_2,
540 c->c_keytype == KT_RSA1? PROTOCOL_MINOR_1 : PROTOCOL_MINOR_2);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000541 if (atomicio(write, s, buf, n) != n) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000542 error("write (%s): %s", c->c_name, strerror(errno));
543 confree(s);
544 return;
545 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000546 if (c->c_keytype != KT_RSA1) {
547 keyprint(c, keygrab_ssh2(c));
548 confree(s);
549 return;
550 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000551 c->c_status = CS_SIZE;
552 contouch(s);
553}
554
Ben Lindstrombba81212001-06-25 05:01:22 +0000555static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000556conread(int s)
557{
558 int n;
559 con *c = &fdcon[s];
560
561 if (c->c_status == CS_CON) {
562 congreet(s);
563 return;
564 }
565 n = read(s, c->c_data + c->c_off, c->c_len - c->c_off);
566 if (n < 0) {
567 error("read (%s): %s", c->c_name, strerror(errno));
568 confree(s);
569 return;
570 }
571 c->c_off += n;
572
573 if (c->c_off == c->c_len)
574 switch (c->c_status) {
575 case CS_SIZE:
576 c->c_plen = htonl(c->c_plen);
577 c->c_len = c->c_plen + 8 - (c->c_plen & 7);
578 c->c_off = 0;
579 c->c_data = xmalloc(c->c_len);
580 c->c_status = CS_KEYS;
581 break;
582 case CS_KEYS:
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000583 keyprint(c, keygrab_ssh1(c));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000584 confree(s);
585 return;
586 break;
587 default:
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000588 fatal("conread: invalid status %d", c->c_status);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000589 break;
590 }
591
592 contouch(s);
593}
594
Ben Lindstrombba81212001-06-25 05:01:22 +0000595static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000596conloop(void)
597{
Ben Lindstromc1e04212001-03-05 07:04:38 +0000598 fd_set *r, *e;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000599 struct timeval seltime, now;
600 int i;
601 con *c;
602
603 gettimeofday(&now, NULL);
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000604 c = TAILQ_FIRST(&tq);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000605
Ben Lindstromd20b8552001-03-05 07:01:18 +0000606 if (c && (c->c_tv.tv_sec > now.tv_sec ||
607 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec > now.tv_usec))) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000608 seltime = c->c_tv;
609 seltime.tv_sec -= now.tv_sec;
610 seltime.tv_usec -= now.tv_usec;
Ben Lindstromc791beb2001-02-10 23:18:11 +0000611 if (seltime.tv_usec < 0) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000612 seltime.tv_usec += 1000000;
613 seltime.tv_sec--;
614 }
615 } else
616 seltime.tv_sec = seltime.tv_usec = 0;
617
Ben Lindstromc1e04212001-03-05 07:04:38 +0000618 r = xmalloc(read_wait_size);
619 memcpy(r, read_wait, read_wait_size);
620 e = xmalloc(read_wait_size);
621 memcpy(e, read_wait, read_wait_size);
622
623 while (select(maxfd, r, NULL, e, &seltime) == -1 &&
Ben Lindstromf9452512001-02-15 03:12:08 +0000624 (errno == EAGAIN || errno == EINTR))
625 ;
626
Ben Lindstromd20b8552001-03-05 07:01:18 +0000627 for (i = 0; i < maxfd; i++) {
Ben Lindstromc1e04212001-03-05 07:04:38 +0000628 if (FD_ISSET(i, e)) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000629 error("%s: exception!", fdcon[i].c_name);
630 confree(i);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000631 } else if (FD_ISSET(i, r))
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000632 conread(i);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000633 }
Ben Lindstromc1e04212001-03-05 07:04:38 +0000634 xfree(r);
635 xfree(e);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000636
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000637 c = TAILQ_FIRST(&tq);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000638 while (c && (c->c_tv.tv_sec < now.tv_sec ||
639 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec < now.tv_usec))) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000640 int s = c->c_fd;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000641
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000642 c = TAILQ_NEXT(c, c_link);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000643 conrecycle(s);
644 }
645}
646
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000647static void
648do_host(char *host)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000649{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000650 char *name = strnnsep(&host, " \t\n");
651 int j;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000652
Ben Lindstromeaffb9d2001-12-06 16:28:19 +0000653 if (name == NULL)
654 return;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000655 for (j = KT_RSA1; j <= KT_RSA; j *= 2) {
656 if (get_keytypes & j) {
657 while (ncon >= MAXCON)
658 conloop();
659 conalloc(name, *host ? host : name, j);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000660 }
661 }
662}
663
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000664void
665fatal(const char *fmt,...)
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000666{
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000667 va_list args;
668 va_start(args, fmt);
669 do_log(SYSLOG_LEVEL_FATAL, fmt, args);
670 va_end(args);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000671 if (nonfatal_fatal)
672 longjmp(kexjmp, -1);
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000673 else
674 fatal_cleanup();
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000675}
676
677static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000678usage(void)
679{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000680 fprintf(stderr, "Usage: %s [options] host ...\n",
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000681 __progname);
682 fprintf(stderr, "Options:\n");
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000683 fprintf(stderr, " -f file Read hosts or addresses from file.\n");
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000684 fprintf(stderr, " -p port Connect to the specified port.\n");
685 fprintf(stderr, " -t keytype Specify the host key type.\n");
686 fprintf(stderr, " -T timeout Set connection timeout.\n");
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000687 fprintf(stderr, " -v Verbose; display verbose debugging messages.\n");
688 fprintf(stderr, " -4 Use IPv4 only.\n");
689 fprintf(stderr, " -6 Use IPv6 only.\n");
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000690 exit(1);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000691}
692
693int
694main(int argc, char **argv)
695{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000696 int debug_flag = 0, log_level = SYSLOG_LEVEL_INFO;
697 int opt, fopt_count = 0;
698 char *tname;
Kevin Steves76e7d9b2001-09-20 20:30:09 +0000699
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000700 extern int optind;
701 extern char *optarg;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000702
Kevin Stevesec84dc12000-12-13 17:45:15 +0000703 __progname = get_progname(argv[0]);
Ben Lindstrom4e088e42001-10-10 20:45:43 +0000704 init_rng();
705 seed_rng();
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000706 TAILQ_INIT(&tq);
707
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000708 if (argc <= 1)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000709 usage();
710
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000711 while ((opt = getopt(argc, argv, "v46p:T:t:f:")) != -1) {
712 switch (opt) {
713 case 'p':
714 ssh_port = a2port(optarg);
715 if (ssh_port == 0) {
716 fprintf(stderr, "Bad port '%s'\n", optarg);
717 exit(1);
718 }
719 break;
720 case 'T':
Ben Lindstromedd098b2002-07-04 00:07:13 +0000721 timeout = convtime(optarg);
722 if (timeout == -1 || timeout == 0) {
723 fprintf(stderr, "Bad timeout '%s'\n", optarg);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000724 usage();
Ben Lindstromedd098b2002-07-04 00:07:13 +0000725 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000726 break;
727 case 'v':
728 if (!debug_flag) {
729 debug_flag = 1;
730 log_level = SYSLOG_LEVEL_DEBUG1;
731 }
732 else if (log_level < SYSLOG_LEVEL_DEBUG3)
733 log_level++;
734 else
735 fatal("Too high debugging level.");
736 break;
Kevin Steves76e7d9b2001-09-20 20:30:09 +0000737 case 'f':
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000738 if (strcmp(optarg, "-") == 0)
739 optarg = NULL;
740 argv[fopt_count++] = optarg;
741 break;
742 case 't':
743 get_keytypes = 0;
744 tname = strtok(optarg, ",");
745 while (tname) {
746 int type = key_type_from_name(tname);
747 switch (type) {
748 case KEY_RSA1:
749 get_keytypes |= KT_RSA1;
750 break;
751 case KEY_DSA:
752 get_keytypes |= KT_DSA;
753 break;
754 case KEY_RSA:
755 get_keytypes |= KT_RSA;
756 break;
757 case KEY_UNSPEC:
Ben Lindstrom28c603b2001-12-06 16:45:10 +0000758 fatal("unknown key type %s", tname);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000759 }
760 tname = strtok(NULL, ",");
761 }
762 break;
763 case '4':
764 IPv4or6 = AF_INET;
765 break;
766 case '6':
767 IPv4or6 = AF_INET6;
768 break;
769 case '?':
770 default:
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000771 usage();
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000772 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000773 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000774 if (optind == argc && !fopt_count)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000775 usage();
776
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000777 log_init("ssh-keyscan", log_level, SYSLOG_FACILITY_USER, 1);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000778
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000779 maxfd = fdlim_get(1);
780 if (maxfd < 0)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000781 fatal("%s: fdlim_get: bad value", __progname);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000782 if (maxfd > MAXMAXFD)
783 maxfd = MAXMAXFD;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000784 if (MAXCON <= 0)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000785 fatal("%s: not enough file descriptors", __progname);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000786 if (maxfd > fdlim_get(0))
787 fdlim_set(maxfd);
788 fdcon = xmalloc(maxfd * sizeof(con));
Ben Lindstromc791beb2001-02-10 23:18:11 +0000789 memset(fdcon, 0, maxfd * sizeof(con));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000790
Ben Lindstromc1e04212001-03-05 07:04:38 +0000791 read_wait_size = howmany(maxfd, NFDBITS) * sizeof(fd_mask);
792 read_wait = xmalloc(read_wait_size);
793 memset(read_wait, 0, read_wait_size);
794
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000795 if (fopt_count) {
796 Linebuf *lb;
797 char *line;
798 int j;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000799
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000800 for (j = 0; j < fopt_count; j++) {
801 lb = Linebuf_alloc(argv[j], error);
Ben Lindstrom78bbd9e2001-09-12 17:10:40 +0000802 if (!lb)
803 continue;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000804 while ((line = Linebuf_getline(lb)) != NULL)
805 do_host(line);
806 Linebuf_free(lb);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000807 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000808 }
809
810 while (optind < argc)
811 do_host(argv[optind++]);
812
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000813 while (ncon > 0)
814 conloop();
815
816 return (0);
817}