blob: 5b4eb82d1fc058011731af658be12ec504d832e1 [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 Miller8e7fb332003-02-24 12:03:03 +110010RCSID("$OpenBSD: ssh-keyscan.c,v 1.41 2003/02/16 17:09:57 markus Exp $");
Ben Lindstromb6434ae2000-12-05 01:15:09 +000011
Damien Miller9b481512002-09-12 10:43:29 +100012#include "openbsd-compat/sys-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;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000175 void *p;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000176
177 lb->lineno++;
178 for (;;) {
179 /* Read a line */
180 if (!fgets(&lb->buf[n], lb->size - n, lb->stream)) {
181 if (ferror(lb->stream) && lb->errfun)
Ben Lindstrom965710f2002-07-07 22:17:22 +0000182 (*lb->errfun)("%s: %s\n", lb->filename,
Ben Lindstromb0a4cd82001-03-05 04:54:49 +0000183 strerror(errno));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000184 return (NULL);
185 }
186 n = strlen(lb->buf);
187
188 /* Return it or an error if it fits */
189 if (n > 0 && lb->buf[n - 1] == '\n') {
190 lb->buf[n - 1] = '\0';
191 return (lb->buf);
192 }
193 if (n != lb->size - 1) {
194 if (lb->errfun)
Ben Lindstrom965710f2002-07-07 22:17:22 +0000195 (*lb->errfun)("%s: skipping incomplete last line\n",
Ben Lindstromb0a4cd82001-03-05 04:54:49 +0000196 lb->filename);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000197 return (NULL);
198 }
199 /* Double the buffer if we need more space */
Ben Lindstrom965710f2002-07-07 22:17:22 +0000200 lb->size *= 2;
201 if ((p = realloc(lb->buf, lb->size)) == NULL) {
202 lb->size /= 2;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000203 if (lb->errfun)
Ben Lindstrom965710f2002-07-07 22:17:22 +0000204 (*lb->errfun)("linebuf (%s): realloc failed\n",
Ben Lindstromb0a4cd82001-03-05 04:54:49 +0000205 lb->filename);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000206 return (NULL);
207 }
Ben Lindstrom965710f2002-07-07 22:17:22 +0000208 lb->buf = p;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000209 }
210}
211
Ben Lindstrombba81212001-06-25 05:01:22 +0000212static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000213fdlim_get(int hard)
214{
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000215#if defined(HAVE_GETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000216 struct rlimit rlfd;
Ben Lindstromb0a4cd82001-03-05 04:54:49 +0000217
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000218 if (getrlimit(RLIMIT_NOFILE, &rlfd) < 0)
219 return (-1);
220 if ((hard ? rlfd.rlim_max : rlfd.rlim_cur) == RLIM_INFINITY)
221 return 10000;
222 else
223 return hard ? rlfd.rlim_max : rlfd.rlim_cur;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000224#elif defined (HAVE_SYSCONF)
225 return sysconf (_SC_OPEN_MAX);
226#else
227 return 10000;
228#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000229}
230
Ben Lindstrombba81212001-06-25 05:01:22 +0000231static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000232fdlim_set(int lim)
233{
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000234#if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000235 struct rlimit rlfd;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000236#endif
Ben Lindstrom5c98db52002-07-07 22:25:29 +0000237
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000238 if (lim <= 0)
239 return (-1);
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000240#if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000241 if (getrlimit(RLIMIT_NOFILE, &rlfd) < 0)
242 return (-1);
243 rlfd.rlim_cur = lim;
244 if (setrlimit(RLIMIT_NOFILE, &rlfd) < 0)
245 return (-1);
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000246#elif defined (HAVE_SETDTABLESIZE)
Kevin Steves28a7f262001-02-05 15:43:59 +0000247 setdtablesize(lim);
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000248#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000249 return (0);
250}
251
252/*
253 * This is an strsep function that returns a null field for adjacent
254 * separators. This is the same as the 4.4BSD strsep, but different from the
255 * one in the GNU libc.
256 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000257static char *
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000258xstrsep(char **str, const char *delim)
259{
260 char *s, *e;
261
262 if (!**str)
263 return (NULL);
264
265 s = *str;
266 e = s + strcspn(s, delim);
267
268 if (*e != '\0')
269 *e++ = '\0';
270 *str = e;
271
272 return (s);
273}
274
275/*
276 * Get the next non-null token (like GNU strsep). Strsep() will return a
277 * null token for two adjacent separators, so we may have to loop.
278 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000279static char *
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000280strnnsep(char **stringp, char *delim)
281{
282 char *tok;
283
284 do {
285 tok = xstrsep(stringp, delim);
286 } while (tok && *tok == '\0');
287 return (tok);
288}
289
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000290static Key *
291keygrab_ssh1(con *c)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000292{
293 static Key *rsa;
294 static Buffer msg;
295
296 if (rsa == NULL) {
297 buffer_init(&msg);
298 rsa = key_new(KEY_RSA1);
299 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000300 buffer_append(&msg, c->c_data, c->c_plen);
301 buffer_consume(&msg, 8 - (c->c_plen & 7)); /* padding */
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000302 if (buffer_get_char(&msg) != (int) SSH_SMSG_PUBLIC_KEY) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000303 error("%s: invalid packet type", c->c_name);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000304 buffer_clear(&msg);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000305 return NULL;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000306 }
307 buffer_consume(&msg, 8); /* cookie */
308
309 /* server key */
310 (void) buffer_get_int(&msg);
311 buffer_get_bignum(&msg, rsa->rsa->e);
312 buffer_get_bignum(&msg, rsa->rsa->n);
313
314 /* host key */
315 (void) buffer_get_int(&msg);
316 buffer_get_bignum(&msg, rsa->rsa->e);
317 buffer_get_bignum(&msg, rsa->rsa->n);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000318
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000319 buffer_clear(&msg);
320
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000321 return (rsa);
322}
323
324static int
325hostjump(Key *hostkey)
326{
Ben Lindstrom520b55c2001-09-12 18:05:05 +0000327 kexjmp_key = hostkey;
328 longjmp(kexjmp, 1);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000329}
330
331static int
332ssh2_capable(int remote_major, int remote_minor)
333{
334 switch (remote_major) {
335 case 1:
336 if (remote_minor == 99)
337 return 1;
338 break;
339 case 2:
340 return 1;
341 default:
342 break;
343 }
344 return 0;
345}
346
347static Key *
348keygrab_ssh2(con *c)
349{
350 int j;
351
352 packet_set_connection(c->c_fd, c->c_fd);
353 enable_compat20();
354 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = c->c_keytype == KT_DSA?
355 "ssh-dss": "ssh-rsa";
356 c->c_kex = kex_setup(myproposal);
Damien Miller8e7fb332003-02-24 12:03:03 +1100357 c->c_kex->kex[KEX_DH_GRP1_SHA1] = kexdh_client;
358 c->c_kex->kex[KEX_DH_GEX_SHA1] = kexgex_client;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000359 c->c_kex->verify_host_key = hostjump;
360
361 if (!(j = setjmp(kexjmp))) {
362 nonfatal_fatal = 1;
363 dispatch_run(DISPATCH_BLOCK, &c->c_kex->done, c->c_kex);
364 fprintf(stderr, "Impossible! dispatch_run() returned!\n");
365 exit(1);
366 }
367 nonfatal_fatal = 0;
368 xfree(c->c_kex);
369 c->c_kex = NULL;
370 packet_close();
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000371
Ben Lindstrom520b55c2001-09-12 18:05:05 +0000372 return j < 0? NULL : kexjmp_key;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000373}
374
375static void
376keyprint(con *c, Key *key)
377{
378 if (!key)
379 return;
380
381 fprintf(stdout, "%s ", c->c_output_name ? c->c_output_name : c->c_name);
382 key_write(key, stdout);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000383 fputs("\n", stdout);
384}
385
Ben Lindstrombba81212001-06-25 05:01:22 +0000386static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000387tcpconnect(char *host)
388{
389 struct addrinfo hints, *ai, *aitop;
390 char strport[NI_MAXSERV];
391 int gaierr, s = -1;
392
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000393 snprintf(strport, sizeof strport, "%d", ssh_port);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000394 memset(&hints, 0, sizeof(hints));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000395 hints.ai_family = IPv4or6;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000396 hints.ai_socktype = SOCK_STREAM;
397 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
398 fatal("getaddrinfo %s: %s", host, gai_strerror(gaierr));
399 for (ai = aitop; ai; ai = ai->ai_next) {
400 s = socket(ai->ai_family, SOCK_STREAM, 0);
401 if (s < 0) {
402 error("socket: %s", strerror(errno));
403 continue;
404 }
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000405 if (fcntl(s, F_SETFL, O_NONBLOCK) < 0)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000406 fatal("F_SETFL: %s", strerror(errno));
407 if (connect(s, ai->ai_addr, ai->ai_addrlen) < 0 &&
408 errno != EINPROGRESS)
409 error("connect (`%s'): %s", host, strerror(errno));
410 else
411 break;
412 close(s);
413 s = -1;
414 }
415 freeaddrinfo(aitop);
416 return s;
417}
418
Ben Lindstrombba81212001-06-25 05:01:22 +0000419static int
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000420conalloc(char *iname, char *oname, int keytype)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000421{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000422 char *namebase, *name, *namelist;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000423 int s;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000424
425 namebase = namelist = xstrdup(iname);
426
427 do {
428 name = xstrsep(&namelist, ",");
429 if (!name) {
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000430 xfree(namebase);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000431 return (-1);
432 }
433 } while ((s = tcpconnect(name)) < 0);
434
435 if (s >= maxfd)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000436 fatal("conalloc: fdno %d too high", s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000437 if (fdcon[s].c_status)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000438 fatal("conalloc: attempt to reuse fdno %d", s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000439
440 fdcon[s].c_fd = s;
441 fdcon[s].c_status = CS_CON;
442 fdcon[s].c_namebase = namebase;
443 fdcon[s].c_name = name;
444 fdcon[s].c_namelist = namelist;
445 fdcon[s].c_output_name = xstrdup(oname);
446 fdcon[s].c_data = (char *) &fdcon[s].c_plen;
447 fdcon[s].c_len = 4;
448 fdcon[s].c_off = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000449 fdcon[s].c_keytype = keytype;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000450 gettimeofday(&fdcon[s].c_tv, NULL);
451 fdcon[s].c_tv.tv_sec += timeout;
452 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000453 FD_SET(s, read_wait);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000454 ncon++;
455 return (s);
456}
457
Ben Lindstrombba81212001-06-25 05:01:22 +0000458static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000459confree(int s)
460{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000461 if (s >= maxfd || fdcon[s].c_status == CS_UNUSED)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000462 fatal("confree: attempt to free bad fdno %d", s);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000463 close(s);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000464 xfree(fdcon[s].c_namebase);
465 xfree(fdcon[s].c_output_name);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000466 if (fdcon[s].c_status == CS_KEYS)
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000467 xfree(fdcon[s].c_data);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000468 fdcon[s].c_status = CS_UNUSED;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000469 fdcon[s].c_keytype = 0;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000470 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000471 FD_CLR(s, read_wait);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000472 ncon--;
473}
474
Ben Lindstrombba81212001-06-25 05:01:22 +0000475static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000476contouch(int s)
477{
478 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
479 gettimeofday(&fdcon[s].c_tv, NULL);
480 fdcon[s].c_tv.tv_sec += timeout;
481 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
482}
483
Ben Lindstrombba81212001-06-25 05:01:22 +0000484static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000485conrecycle(int s)
486{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000487 con *c = &fdcon[s];
Ben Lindstrom965710f2002-07-07 22:17:22 +0000488 int ret;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000489
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000490 ret = conalloc(c->c_namelist, c->c_output_name, c->c_keytype);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000491 confree(s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000492 return (ret);
493}
494
Ben Lindstrombba81212001-06-25 05:01:22 +0000495static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000496congreet(int s)
497{
Ben Lindstrom965710f2002-07-07 22:17:22 +0000498 int remote_major, remote_minor, n = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000499 char buf[256], *cp;
Damien Miller83c02ef2001-12-21 12:45:43 +1100500 char remote_version[sizeof buf];
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000501 size_t bufsiz;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000502 con *c = &fdcon[s];
503
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000504 bufsiz = sizeof(buf);
505 cp = buf;
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000506 while (bufsiz-- && (n = read(s, cp, 1)) == 1 && *cp != '\n') {
507 if (*cp == '\r')
508 *cp = '\n';
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000509 cp++;
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000510 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000511 if (n < 0) {
512 if (errno != ECONNREFUSED)
513 error("read (%s): %s", c->c_name, strerror(errno));
514 conrecycle(s);
515 return;
516 }
Ben Lindstrom6b28c352002-03-05 01:54:52 +0000517 if (n == 0) {
518 error("%s: Connection closed by remote host", c->c_name);
519 conrecycle(s);
520 return;
521 }
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000522 if (*cp != '\n' && *cp != '\r') {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000523 error("%s: bad greeting", c->c_name);
524 confree(s);
525 return;
526 }
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000527 *cp = '\0';
Damien Miller83c02ef2001-12-21 12:45:43 +1100528 if (sscanf(buf, "SSH-%d.%d-%[^\n]\n",
529 &remote_major, &remote_minor, remote_version) == 3)
530 compat_datafellows(remote_version);
531 else
532 datafellows = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000533 if (c->c_keytype != KT_RSA1) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000534 if (!ssh2_capable(remote_major, remote_minor)) {
535 debug("%s doesn't support ssh2", c->c_name);
536 confree(s);
537 return;
538 }
Damien Miller83c02ef2001-12-21 12:45:43 +1100539 } else if (remote_major != 1) {
540 debug("%s doesn't support ssh1", c->c_name);
541 confree(s);
542 return;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000543 }
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000544 fprintf(stderr, "# %s %s\n", c->c_name, chop(buf));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000545 n = snprintf(buf, sizeof buf, "SSH-%d.%d-OpenSSH-keyscan\r\n",
546 c->c_keytype == KT_RSA1? PROTOCOL_MAJOR_1 : PROTOCOL_MAJOR_2,
547 c->c_keytype == KT_RSA1? PROTOCOL_MINOR_1 : PROTOCOL_MINOR_2);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000548 if (atomicio(write, s, buf, n) != n) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000549 error("write (%s): %s", c->c_name, strerror(errno));
550 confree(s);
551 return;
552 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000553 if (c->c_keytype != KT_RSA1) {
554 keyprint(c, keygrab_ssh2(c));
555 confree(s);
556 return;
557 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000558 c->c_status = CS_SIZE;
559 contouch(s);
560}
561
Ben Lindstrombba81212001-06-25 05:01:22 +0000562static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000563conread(int s)
564{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000565 con *c = &fdcon[s];
Ben Lindstrom965710f2002-07-07 22:17:22 +0000566 int n;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000567
568 if (c->c_status == CS_CON) {
569 congreet(s);
570 return;
571 }
572 n = read(s, c->c_data + c->c_off, c->c_len - c->c_off);
573 if (n < 0) {
574 error("read (%s): %s", c->c_name, strerror(errno));
575 confree(s);
576 return;
577 }
578 c->c_off += n;
579
580 if (c->c_off == c->c_len)
581 switch (c->c_status) {
582 case CS_SIZE:
583 c->c_plen = htonl(c->c_plen);
584 c->c_len = c->c_plen + 8 - (c->c_plen & 7);
585 c->c_off = 0;
586 c->c_data = xmalloc(c->c_len);
587 c->c_status = CS_KEYS;
588 break;
589 case CS_KEYS:
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000590 keyprint(c, keygrab_ssh1(c));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000591 confree(s);
592 return;
593 break;
594 default:
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000595 fatal("conread: invalid status %d", c->c_status);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000596 break;
597 }
598
599 contouch(s);
600}
601
Ben Lindstrombba81212001-06-25 05:01:22 +0000602static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000603conloop(void)
604{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000605 struct timeval seltime, now;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000606 fd_set *r, *e;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000607 con *c;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000608 int i;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000609
610 gettimeofday(&now, NULL);
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000611 c = TAILQ_FIRST(&tq);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000612
Ben Lindstromd20b8552001-03-05 07:01:18 +0000613 if (c && (c->c_tv.tv_sec > now.tv_sec ||
614 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec > now.tv_usec))) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000615 seltime = c->c_tv;
616 seltime.tv_sec -= now.tv_sec;
617 seltime.tv_usec -= now.tv_usec;
Ben Lindstromc791beb2001-02-10 23:18:11 +0000618 if (seltime.tv_usec < 0) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000619 seltime.tv_usec += 1000000;
620 seltime.tv_sec--;
621 }
622 } else
623 seltime.tv_sec = seltime.tv_usec = 0;
624
Ben Lindstromc1e04212001-03-05 07:04:38 +0000625 r = xmalloc(read_wait_size);
626 memcpy(r, read_wait, read_wait_size);
627 e = xmalloc(read_wait_size);
628 memcpy(e, read_wait, read_wait_size);
629
630 while (select(maxfd, r, NULL, e, &seltime) == -1 &&
Ben Lindstromf9452512001-02-15 03:12:08 +0000631 (errno == EAGAIN || errno == EINTR))
632 ;
633
Ben Lindstromd20b8552001-03-05 07:01:18 +0000634 for (i = 0; i < maxfd; i++) {
Ben Lindstromc1e04212001-03-05 07:04:38 +0000635 if (FD_ISSET(i, e)) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000636 error("%s: exception!", fdcon[i].c_name);
637 confree(i);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000638 } else if (FD_ISSET(i, r))
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000639 conread(i);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000640 }
Ben Lindstromc1e04212001-03-05 07:04:38 +0000641 xfree(r);
642 xfree(e);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000643
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000644 c = TAILQ_FIRST(&tq);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000645 while (c && (c->c_tv.tv_sec < now.tv_sec ||
646 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec < now.tv_usec))) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000647 int s = c->c_fd;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000648
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000649 c = TAILQ_NEXT(c, c_link);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000650 conrecycle(s);
651 }
652}
653
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000654static void
655do_host(char *host)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000656{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000657 char *name = strnnsep(&host, " \t\n");
658 int j;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000659
Ben Lindstromeaffb9d2001-12-06 16:28:19 +0000660 if (name == NULL)
661 return;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000662 for (j = KT_RSA1; j <= KT_RSA; j *= 2) {
663 if (get_keytypes & j) {
664 while (ncon >= MAXCON)
665 conloop();
666 conalloc(name, *host ? host : name, j);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000667 }
668 }
669}
670
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000671void
672fatal(const char *fmt,...)
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000673{
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000674 va_list args;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000675
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000676 va_start(args, fmt);
677 do_log(SYSLOG_LEVEL_FATAL, fmt, args);
678 va_end(args);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000679 if (nonfatal_fatal)
680 longjmp(kexjmp, -1);
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000681 else
682 fatal_cleanup();
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000683}
684
685static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000686usage(void)
687{
Ben Lindstrom965710f2002-07-07 22:17:22 +0000688 fprintf(stderr, "usage: %s [-v46] [-p port] [-T timeout] [-f file]\n"
689 "\t\t [host | addrlist namelist] [...]\n",
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000690 __progname);
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000691 exit(1);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000692}
693
694int
695main(int argc, char **argv)
696{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000697 int debug_flag = 0, log_level = SYSLOG_LEVEL_INFO;
698 int opt, fopt_count = 0;
699 char *tname;
Kevin Steves76e7d9b2001-09-20 20:30:09 +0000700
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000701 extern int optind;
702 extern char *optarg;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000703
Kevin Stevesec84dc12000-12-13 17:45:15 +0000704 __progname = get_progname(argv[0]);
Ben Lindstrom4e088e42001-10-10 20:45:43 +0000705 init_rng();
706 seed_rng();
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000707 TAILQ_INIT(&tq);
708
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000709 if (argc <= 1)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000710 usage();
711
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000712 while ((opt = getopt(argc, argv, "v46p:T:t:f:")) != -1) {
713 switch (opt) {
714 case 'p':
715 ssh_port = a2port(optarg);
716 if (ssh_port == 0) {
717 fprintf(stderr, "Bad port '%s'\n", optarg);
718 exit(1);
719 }
720 break;
721 case 'T':
Ben Lindstromedd098b2002-07-04 00:07:13 +0000722 timeout = convtime(optarg);
723 if (timeout == -1 || timeout == 0) {
724 fprintf(stderr, "Bad timeout '%s'\n", optarg);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000725 usage();
Ben Lindstromedd098b2002-07-04 00:07:13 +0000726 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000727 break;
728 case 'v':
729 if (!debug_flag) {
730 debug_flag = 1;
731 log_level = SYSLOG_LEVEL_DEBUG1;
732 }
733 else if (log_level < SYSLOG_LEVEL_DEBUG3)
734 log_level++;
735 else
736 fatal("Too high debugging level.");
737 break;
Kevin Steves76e7d9b2001-09-20 20:30:09 +0000738 case 'f':
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000739 if (strcmp(optarg, "-") == 0)
740 optarg = NULL;
741 argv[fopt_count++] = optarg;
742 break;
743 case 't':
744 get_keytypes = 0;
745 tname = strtok(optarg, ",");
746 while (tname) {
747 int type = key_type_from_name(tname);
748 switch (type) {
749 case KEY_RSA1:
750 get_keytypes |= KT_RSA1;
751 break;
752 case KEY_DSA:
753 get_keytypes |= KT_DSA;
754 break;
755 case KEY_RSA:
756 get_keytypes |= KT_RSA;
757 break;
758 case KEY_UNSPEC:
Ben Lindstrom28c603b2001-12-06 16:45:10 +0000759 fatal("unknown key type %s", tname);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000760 }
761 tname = strtok(NULL, ",");
762 }
763 break;
764 case '4':
765 IPv4or6 = AF_INET;
766 break;
767 case '6':
768 IPv4or6 = AF_INET6;
769 break;
770 case '?':
771 default:
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000772 usage();
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000773 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000774 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000775 if (optind == argc && !fopt_count)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000776 usage();
777
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000778 log_init("ssh-keyscan", log_level, SYSLOG_FACILITY_USER, 1);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000779
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000780 maxfd = fdlim_get(1);
781 if (maxfd < 0)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000782 fatal("%s: fdlim_get: bad value", __progname);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000783 if (maxfd > MAXMAXFD)
784 maxfd = MAXMAXFD;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000785 if (MAXCON <= 0)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000786 fatal("%s: not enough file descriptors", __progname);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000787 if (maxfd > fdlim_get(0))
788 fdlim_set(maxfd);
789 fdcon = xmalloc(maxfd * sizeof(con));
Ben Lindstromc791beb2001-02-10 23:18:11 +0000790 memset(fdcon, 0, maxfd * sizeof(con));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000791
Ben Lindstromc1e04212001-03-05 07:04:38 +0000792 read_wait_size = howmany(maxfd, NFDBITS) * sizeof(fd_mask);
793 read_wait = xmalloc(read_wait_size);
794 memset(read_wait, 0, read_wait_size);
795
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000796 if (fopt_count) {
797 Linebuf *lb;
798 char *line;
799 int j;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000800
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000801 for (j = 0; j < fopt_count; j++) {
802 lb = Linebuf_alloc(argv[j], error);
Ben Lindstrom78bbd9e2001-09-12 17:10:40 +0000803 if (!lb)
804 continue;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000805 while ((line = Linebuf_getline(lb)) != NULL)
806 do_host(line);
807 Linebuf_free(lb);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000808 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000809 }
810
811 while (optind < argc)
812 do_host(argv[optind++]);
813
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000814 while (ncon > 0)
815 conloop();
816
817 return (0);
818}