blob: 04d43da354b2b3712df78bb63ce98686fc35e0d1 [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"
Darren Tucker3d326222003-09-22 21:11:20 +100010RCSID("$OpenBSD: ssh-keyscan.c,v 1.45 2003/09/19 11:30:39 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. */
Ben Lindstrom325e70c2001-08-06 22:41:30 +000034int IPv4or6 = AF_UNSPEC;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000035
Ben Lindstrom325e70c2001-08-06 22:41:30 +000036int ssh_port = SSH_DEFAULT_PORT;
Kevin Steves76e7d9b2001-09-20 20:30:09 +000037
38#define KT_RSA1 1
39#define KT_DSA 2
40#define KT_RSA 4
41
42int get_keytypes = KT_RSA1; /* Get only RSA1 keys by default */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000043
Ben Lindstromb6434ae2000-12-05 01:15:09 +000044#define MAXMAXFD 256
45
46/* The number of seconds after which to give up on a TCP connection */
47int timeout = 5;
48
49int maxfd;
Ben Lindstromd20b8552001-03-05 07:01:18 +000050#define MAXCON (maxfd - 10)
Ben Lindstromb6434ae2000-12-05 01:15:09 +000051
Kevin Stevesec84dc12000-12-13 17:45:15 +000052#ifdef HAVE___PROGNAME
53extern char *__progname;
54#else
55char *__progname;
56#endif
Ben Lindstromc1e04212001-03-05 07:04:38 +000057fd_set *read_wait;
58size_t read_wait_size;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000059int ncon;
Ben Lindstrom325e70c2001-08-06 22:41:30 +000060int nonfatal_fatal = 0;
61jmp_buf kexjmp;
Ben Lindstrom520b55c2001-09-12 18:05:05 +000062Key *kexjmp_key;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000063
64/*
65 * Keep a connection structure for each file descriptor. The state
66 * associated with file descriptor n is held in fdcon[n].
67 */
68typedef struct Connection {
Ben Lindstrom46c16222000-12-22 01:43:59 +000069 u_char c_status; /* State of connection on this file desc. */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000070#define CS_UNUSED 0 /* File descriptor unused */
71#define CS_CON 1 /* Waiting to connect/read greeting */
72#define CS_SIZE 2 /* Waiting to read initial packet size */
73#define CS_KEYS 3 /* Waiting to read public key packet */
74 int c_fd; /* Quick lookup: c->c_fd == c - fdcon */
75 int c_plen; /* Packet length field for ssh packet */
76 int c_len; /* Total bytes which must be read. */
77 int c_off; /* Length of data read so far. */
Ben Lindstrom325e70c2001-08-06 22:41:30 +000078 int c_keytype; /* Only one of KT_RSA1, KT_DSA, or KT_RSA */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000079 char *c_namebase; /* Address to free for c_name and c_namelist */
80 char *c_name; /* Hostname of connection for errors */
81 char *c_namelist; /* Pointer to other possible addresses */
82 char *c_output_name; /* Hostname of connection for output */
83 char *c_data; /* Data read from this fd */
Ben Lindstrom325e70c2001-08-06 22:41:30 +000084 Kex *c_kex; /* The key-exchange struct for ssh2 */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000085 struct timeval c_tv; /* Time at which connection gets aborted */
86 TAILQ_ENTRY(Connection) c_link; /* List of connections in timeout order. */
87} con;
88
89TAILQ_HEAD(conlist, Connection) tq; /* Timeout Queue */
90con *fdcon;
91
92/*
93 * This is just a wrapper around fgets() to make it usable.
94 */
95
96/* Stress-test. Increase this later. */
97#define LINEBUF_SIZE 16
98
99typedef struct {
100 char *buf;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000101 u_int size;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000102 int lineno;
103 const char *filename;
104 FILE *stream;
105 void (*errfun) (const char *,...);
106} Linebuf;
107
Ben Lindstrombba81212001-06-25 05:01:22 +0000108static Linebuf *
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000109Linebuf_alloc(const char *filename, void (*errfun) (const char *,...))
110{
111 Linebuf *lb;
112
113 if (!(lb = malloc(sizeof(*lb)))) {
114 if (errfun)
Ben Lindstrom04f9af72002-07-04 00:03:56 +0000115 (*errfun) ("linebuf (%s): malloc failed\n",
116 filename ? filename : "(stdin)");
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000117 return (NULL);
118 }
119 if (filename) {
120 lb->filename = filename;
121 if (!(lb->stream = fopen(filename, "r"))) {
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000122 xfree(lb);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000123 if (errfun)
124 (*errfun) ("%s: %s\n", filename, strerror(errno));
125 return (NULL);
126 }
127 } else {
128 lb->filename = "(stdin)";
129 lb->stream = stdin;
130 }
131
132 if (!(lb->buf = malloc(lb->size = LINEBUF_SIZE))) {
133 if (errfun)
134 (*errfun) ("linebuf (%s): malloc failed\n", lb->filename);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000135 xfree(lb);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000136 return (NULL);
137 }
138 lb->errfun = errfun;
139 lb->lineno = 0;
140 return (lb);
141}
142
Ben Lindstrombba81212001-06-25 05:01:22 +0000143static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000144Linebuf_free(Linebuf * lb)
145{
146 fclose(lb->stream);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000147 xfree(lb->buf);
148 xfree(lb);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000149}
150
Ben Lindstrombba81212001-06-25 05:01:22 +0000151#if 0
152static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000153Linebuf_restart(Linebuf * lb)
154{
155 clearerr(lb->stream);
156 rewind(lb->stream);
157 lb->lineno = 0;
158}
159
Ben Lindstrombba81212001-06-25 05:01:22 +0000160static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000161Linebuf_lineno(Linebuf * lb)
162{
163 return (lb->lineno);
164}
Ben Lindstrombba81212001-06-25 05:01:22 +0000165#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000166
Ben Lindstrombba81212001-06-25 05:01:22 +0000167static char *
Ben Lindstromc791beb2001-02-10 23:18:11 +0000168Linebuf_getline(Linebuf * lb)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000169{
170 int n = 0;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000171 void *p;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000172
173 lb->lineno++;
174 for (;;) {
175 /* Read a line */
176 if (!fgets(&lb->buf[n], lb->size - n, lb->stream)) {
177 if (ferror(lb->stream) && lb->errfun)
Ben Lindstrom965710f2002-07-07 22:17:22 +0000178 (*lb->errfun)("%s: %s\n", lb->filename,
Ben Lindstromb0a4cd82001-03-05 04:54:49 +0000179 strerror(errno));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000180 return (NULL);
181 }
182 n = strlen(lb->buf);
183
184 /* Return it or an error if it fits */
185 if (n > 0 && lb->buf[n - 1] == '\n') {
186 lb->buf[n - 1] = '\0';
187 return (lb->buf);
188 }
189 if (n != lb->size - 1) {
190 if (lb->errfun)
Ben Lindstrom965710f2002-07-07 22:17:22 +0000191 (*lb->errfun)("%s: skipping incomplete last line\n",
Ben Lindstromb0a4cd82001-03-05 04:54:49 +0000192 lb->filename);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000193 return (NULL);
194 }
195 /* Double the buffer if we need more space */
Ben Lindstrom965710f2002-07-07 22:17:22 +0000196 lb->size *= 2;
197 if ((p = realloc(lb->buf, lb->size)) == NULL) {
198 lb->size /= 2;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000199 if (lb->errfun)
Ben Lindstrom965710f2002-07-07 22:17:22 +0000200 (*lb->errfun)("linebuf (%s): realloc failed\n",
Ben Lindstromb0a4cd82001-03-05 04:54:49 +0000201 lb->filename);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000202 return (NULL);
203 }
Ben Lindstrom965710f2002-07-07 22:17:22 +0000204 lb->buf = p;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000205 }
206}
207
Ben Lindstrombba81212001-06-25 05:01:22 +0000208static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000209fdlim_get(int hard)
210{
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000211#if defined(HAVE_GETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000212 struct rlimit rlfd;
Ben Lindstromb0a4cd82001-03-05 04:54:49 +0000213
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000214 if (getrlimit(RLIMIT_NOFILE, &rlfd) < 0)
215 return (-1);
216 if ((hard ? rlfd.rlim_max : rlfd.rlim_cur) == RLIM_INFINITY)
Damien Millere00074a2003-11-24 13:07:45 +1100217 return SSH_SYSFDMAX;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000218 else
219 return hard ? rlfd.rlim_max : rlfd.rlim_cur;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000220#else
Damien Millere00074a2003-11-24 13:07:45 +1100221 return SSH_SYSFDMAX;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000222#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000223}
224
Ben Lindstrombba81212001-06-25 05:01:22 +0000225static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000226fdlim_set(int lim)
227{
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000228#if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000229 struct rlimit rlfd;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000230#endif
Ben Lindstrom5c98db52002-07-07 22:25:29 +0000231
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000232 if (lim <= 0)
233 return (-1);
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000234#if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000235 if (getrlimit(RLIMIT_NOFILE, &rlfd) < 0)
236 return (-1);
237 rlfd.rlim_cur = lim;
238 if (setrlimit(RLIMIT_NOFILE, &rlfd) < 0)
239 return (-1);
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000240#elif defined (HAVE_SETDTABLESIZE)
Kevin Steves28a7f262001-02-05 15:43:59 +0000241 setdtablesize(lim);
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000242#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000243 return (0);
244}
245
246/*
247 * This is an strsep function that returns a null field for adjacent
248 * separators. This is the same as the 4.4BSD strsep, but different from the
249 * one in the GNU libc.
250 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000251static char *
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000252xstrsep(char **str, const char *delim)
253{
254 char *s, *e;
255
256 if (!**str)
257 return (NULL);
258
259 s = *str;
260 e = s + strcspn(s, delim);
261
262 if (*e != '\0')
263 *e++ = '\0';
264 *str = e;
265
266 return (s);
267}
268
269/*
270 * Get the next non-null token (like GNU strsep). Strsep() will return a
271 * null token for two adjacent separators, so we may have to loop.
272 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000273static char *
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000274strnnsep(char **stringp, char *delim)
275{
276 char *tok;
277
278 do {
279 tok = xstrsep(stringp, delim);
280 } while (tok && *tok == '\0');
281 return (tok);
282}
283
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000284static Key *
285keygrab_ssh1(con *c)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000286{
287 static Key *rsa;
288 static Buffer msg;
289
290 if (rsa == NULL) {
291 buffer_init(&msg);
292 rsa = key_new(KEY_RSA1);
293 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000294 buffer_append(&msg, c->c_data, c->c_plen);
295 buffer_consume(&msg, 8 - (c->c_plen & 7)); /* padding */
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000296 if (buffer_get_char(&msg) != (int) SSH_SMSG_PUBLIC_KEY) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000297 error("%s: invalid packet type", c->c_name);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000298 buffer_clear(&msg);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000299 return NULL;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000300 }
301 buffer_consume(&msg, 8); /* cookie */
302
303 /* server key */
304 (void) buffer_get_int(&msg);
305 buffer_get_bignum(&msg, rsa->rsa->e);
306 buffer_get_bignum(&msg, rsa->rsa->n);
307
308 /* host key */
309 (void) buffer_get_int(&msg);
310 buffer_get_bignum(&msg, rsa->rsa->e);
311 buffer_get_bignum(&msg, rsa->rsa->n);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000312
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000313 buffer_clear(&msg);
314
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000315 return (rsa);
316}
317
318static int
319hostjump(Key *hostkey)
320{
Ben Lindstrom520b55c2001-09-12 18:05:05 +0000321 kexjmp_key = hostkey;
322 longjmp(kexjmp, 1);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000323}
324
325static int
326ssh2_capable(int remote_major, int remote_minor)
327{
328 switch (remote_major) {
329 case 1:
330 if (remote_minor == 99)
331 return 1;
332 break;
333 case 2:
334 return 1;
335 default:
336 break;
337 }
338 return 0;
339}
340
341static Key *
342keygrab_ssh2(con *c)
343{
344 int j;
345
346 packet_set_connection(c->c_fd, c->c_fd);
347 enable_compat20();
348 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = c->c_keytype == KT_DSA?
349 "ssh-dss": "ssh-rsa";
350 c->c_kex = kex_setup(myproposal);
Damien Miller8e7fb332003-02-24 12:03:03 +1100351 c->c_kex->kex[KEX_DH_GRP1_SHA1] = kexdh_client;
352 c->c_kex->kex[KEX_DH_GEX_SHA1] = kexgex_client;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000353 c->c_kex->verify_host_key = hostjump;
354
355 if (!(j = setjmp(kexjmp))) {
356 nonfatal_fatal = 1;
357 dispatch_run(DISPATCH_BLOCK, &c->c_kex->done, c->c_kex);
358 fprintf(stderr, "Impossible! dispatch_run() returned!\n");
359 exit(1);
360 }
361 nonfatal_fatal = 0;
362 xfree(c->c_kex);
363 c->c_kex = NULL;
364 packet_close();
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000365
Ben Lindstrom520b55c2001-09-12 18:05:05 +0000366 return j < 0? NULL : kexjmp_key;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000367}
368
369static void
370keyprint(con *c, Key *key)
371{
372 if (!key)
373 return;
374
375 fprintf(stdout, "%s ", c->c_output_name ? c->c_output_name : c->c_name);
376 key_write(key, stdout);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000377 fputs("\n", stdout);
378}
379
Ben Lindstrombba81212001-06-25 05:01:22 +0000380static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000381tcpconnect(char *host)
382{
383 struct addrinfo hints, *ai, *aitop;
384 char strport[NI_MAXSERV];
385 int gaierr, s = -1;
386
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000387 snprintf(strport, sizeof strport, "%d", ssh_port);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000388 memset(&hints, 0, sizeof(hints));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000389 hints.ai_family = IPv4or6;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000390 hints.ai_socktype = SOCK_STREAM;
391 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
392 fatal("getaddrinfo %s: %s", host, gai_strerror(gaierr));
393 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller2372ace2003-05-14 13:42:23 +1000394 s = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000395 if (s < 0) {
396 error("socket: %s", strerror(errno));
397 continue;
398 }
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000399 if (fcntl(s, F_SETFL, O_NONBLOCK) < 0)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000400 fatal("F_SETFL: %s", strerror(errno));
401 if (connect(s, ai->ai_addr, ai->ai_addrlen) < 0 &&
402 errno != EINPROGRESS)
403 error("connect (`%s'): %s", host, strerror(errno));
404 else
405 break;
406 close(s);
407 s = -1;
408 }
409 freeaddrinfo(aitop);
410 return s;
411}
412
Ben Lindstrombba81212001-06-25 05:01:22 +0000413static int
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000414conalloc(char *iname, char *oname, int keytype)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000415{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000416 char *namebase, *name, *namelist;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000417 int s;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000418
419 namebase = namelist = xstrdup(iname);
420
421 do {
422 name = xstrsep(&namelist, ",");
423 if (!name) {
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000424 xfree(namebase);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000425 return (-1);
426 }
427 } while ((s = tcpconnect(name)) < 0);
428
429 if (s >= maxfd)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000430 fatal("conalloc: fdno %d too high", s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000431 if (fdcon[s].c_status)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000432 fatal("conalloc: attempt to reuse fdno %d", s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000433
434 fdcon[s].c_fd = s;
435 fdcon[s].c_status = CS_CON;
436 fdcon[s].c_namebase = namebase;
437 fdcon[s].c_name = name;
438 fdcon[s].c_namelist = namelist;
439 fdcon[s].c_output_name = xstrdup(oname);
440 fdcon[s].c_data = (char *) &fdcon[s].c_plen;
441 fdcon[s].c_len = 4;
442 fdcon[s].c_off = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000443 fdcon[s].c_keytype = keytype;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000444 gettimeofday(&fdcon[s].c_tv, NULL);
445 fdcon[s].c_tv.tv_sec += timeout;
446 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000447 FD_SET(s, read_wait);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000448 ncon++;
449 return (s);
450}
451
Ben Lindstrombba81212001-06-25 05:01:22 +0000452static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000453confree(int s)
454{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000455 if (s >= maxfd || fdcon[s].c_status == CS_UNUSED)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000456 fatal("confree: attempt to free bad fdno %d", s);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000457 close(s);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000458 xfree(fdcon[s].c_namebase);
459 xfree(fdcon[s].c_output_name);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000460 if (fdcon[s].c_status == CS_KEYS)
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000461 xfree(fdcon[s].c_data);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000462 fdcon[s].c_status = CS_UNUSED;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000463 fdcon[s].c_keytype = 0;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000464 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000465 FD_CLR(s, read_wait);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000466 ncon--;
467}
468
Ben Lindstrombba81212001-06-25 05:01:22 +0000469static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000470contouch(int s)
471{
472 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
473 gettimeofday(&fdcon[s].c_tv, NULL);
474 fdcon[s].c_tv.tv_sec += timeout;
475 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
476}
477
Ben Lindstrombba81212001-06-25 05:01:22 +0000478static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000479conrecycle(int s)
480{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000481 con *c = &fdcon[s];
Ben Lindstrom965710f2002-07-07 22:17:22 +0000482 int ret;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000483
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000484 ret = conalloc(c->c_namelist, c->c_output_name, c->c_keytype);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000485 confree(s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000486 return (ret);
487}
488
Ben Lindstrombba81212001-06-25 05:01:22 +0000489static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000490congreet(int s)
491{
Ben Lindstrom965710f2002-07-07 22:17:22 +0000492 int remote_major, remote_minor, n = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000493 char buf[256], *cp;
Damien Miller83c02ef2001-12-21 12:45:43 +1100494 char remote_version[sizeof buf];
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000495 size_t bufsiz;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000496 con *c = &fdcon[s];
497
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000498 bufsiz = sizeof(buf);
499 cp = buf;
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000500 while (bufsiz-- && (n = read(s, cp, 1)) == 1 && *cp != '\n') {
501 if (*cp == '\r')
502 *cp = '\n';
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000503 cp++;
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000504 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000505 if (n < 0) {
506 if (errno != ECONNREFUSED)
507 error("read (%s): %s", c->c_name, strerror(errno));
508 conrecycle(s);
509 return;
510 }
Ben Lindstrom6b28c352002-03-05 01:54:52 +0000511 if (n == 0) {
512 error("%s: Connection closed by remote host", c->c_name);
513 conrecycle(s);
514 return;
515 }
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000516 if (*cp != '\n' && *cp != '\r') {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000517 error("%s: bad greeting", c->c_name);
518 confree(s);
519 return;
520 }
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000521 *cp = '\0';
Damien Miller83c02ef2001-12-21 12:45:43 +1100522 if (sscanf(buf, "SSH-%d.%d-%[^\n]\n",
523 &remote_major, &remote_minor, remote_version) == 3)
524 compat_datafellows(remote_version);
525 else
526 datafellows = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000527 if (c->c_keytype != KT_RSA1) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000528 if (!ssh2_capable(remote_major, remote_minor)) {
529 debug("%s doesn't support ssh2", c->c_name);
530 confree(s);
531 return;
532 }
Damien Miller83c02ef2001-12-21 12:45:43 +1100533 } else if (remote_major != 1) {
534 debug("%s doesn't support ssh1", c->c_name);
535 confree(s);
536 return;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000537 }
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000538 fprintf(stderr, "# %s %s\n", c->c_name, chop(buf));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000539 n = snprintf(buf, sizeof buf, "SSH-%d.%d-OpenSSH-keyscan\r\n",
540 c->c_keytype == KT_RSA1? PROTOCOL_MAJOR_1 : PROTOCOL_MAJOR_2,
541 c->c_keytype == KT_RSA1? PROTOCOL_MINOR_1 : PROTOCOL_MINOR_2);
Darren Tucker9f63f222003-07-03 13:46:56 +1000542 if (atomicio(vwrite, s, buf, n) != n) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000543 error("write (%s): %s", c->c_name, strerror(errno));
544 confree(s);
545 return;
546 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000547 if (c->c_keytype != KT_RSA1) {
548 keyprint(c, keygrab_ssh2(c));
549 confree(s);
550 return;
551 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000552 c->c_status = CS_SIZE;
553 contouch(s);
554}
555
Ben Lindstrombba81212001-06-25 05:01:22 +0000556static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000557conread(int s)
558{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000559 con *c = &fdcon[s];
Ben Lindstrom965710f2002-07-07 22:17:22 +0000560 int n;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000561
562 if (c->c_status == CS_CON) {
563 congreet(s);
564 return;
565 }
566 n = read(s, c->c_data + c->c_off, c->c_len - c->c_off);
567 if (n < 0) {
568 error("read (%s): %s", c->c_name, strerror(errno));
569 confree(s);
570 return;
571 }
572 c->c_off += n;
573
574 if (c->c_off == c->c_len)
575 switch (c->c_status) {
576 case CS_SIZE:
577 c->c_plen = htonl(c->c_plen);
578 c->c_len = c->c_plen + 8 - (c->c_plen & 7);
579 c->c_off = 0;
580 c->c_data = xmalloc(c->c_len);
581 c->c_status = CS_KEYS;
582 break;
583 case CS_KEYS:
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000584 keyprint(c, keygrab_ssh1(c));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000585 confree(s);
586 return;
587 break;
588 default:
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000589 fatal("conread: invalid status %d", c->c_status);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000590 break;
591 }
592
593 contouch(s);
594}
595
Ben Lindstrombba81212001-06-25 05:01:22 +0000596static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000597conloop(void)
598{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000599 struct timeval seltime, now;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000600 fd_set *r, *e;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000601 con *c;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000602 int i;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000603
604 gettimeofday(&now, NULL);
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000605 c = TAILQ_FIRST(&tq);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000606
Ben Lindstromd20b8552001-03-05 07:01:18 +0000607 if (c && (c->c_tv.tv_sec > now.tv_sec ||
608 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec > now.tv_usec))) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000609 seltime = c->c_tv;
610 seltime.tv_sec -= now.tv_sec;
611 seltime.tv_usec -= now.tv_usec;
Ben Lindstromc791beb2001-02-10 23:18:11 +0000612 if (seltime.tv_usec < 0) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000613 seltime.tv_usec += 1000000;
614 seltime.tv_sec--;
615 }
616 } else
617 seltime.tv_sec = seltime.tv_usec = 0;
618
Ben Lindstromc1e04212001-03-05 07:04:38 +0000619 r = xmalloc(read_wait_size);
620 memcpy(r, read_wait, read_wait_size);
621 e = xmalloc(read_wait_size);
622 memcpy(e, read_wait, read_wait_size);
623
624 while (select(maxfd, r, NULL, e, &seltime) == -1 &&
Ben Lindstromf9452512001-02-15 03:12:08 +0000625 (errno == EAGAIN || errno == EINTR))
626 ;
627
Ben Lindstromd20b8552001-03-05 07:01:18 +0000628 for (i = 0; i < maxfd; i++) {
Ben Lindstromc1e04212001-03-05 07:04:38 +0000629 if (FD_ISSET(i, e)) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000630 error("%s: exception!", fdcon[i].c_name);
631 confree(i);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000632 } else if (FD_ISSET(i, r))
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000633 conread(i);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000634 }
Ben Lindstromc1e04212001-03-05 07:04:38 +0000635 xfree(r);
636 xfree(e);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000637
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000638 c = TAILQ_FIRST(&tq);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000639 while (c && (c->c_tv.tv_sec < now.tv_sec ||
640 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec < now.tv_usec))) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000641 int s = c->c_fd;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000642
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000643 c = TAILQ_NEXT(c, c_link);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000644 conrecycle(s);
645 }
646}
647
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000648static void
649do_host(char *host)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000650{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000651 char *name = strnnsep(&host, " \t\n");
652 int j;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000653
Ben Lindstromeaffb9d2001-12-06 16:28:19 +0000654 if (name == NULL)
655 return;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000656 for (j = KT_RSA1; j <= KT_RSA; j *= 2) {
657 if (get_keytypes & j) {
658 while (ncon >= MAXCON)
659 conloop();
660 conalloc(name, *host ? host : name, j);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000661 }
662 }
663}
664
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000665void
666fatal(const char *fmt,...)
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000667{
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000668 va_list args;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000669
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000670 va_start(args, fmt);
671 do_log(SYSLOG_LEVEL_FATAL, fmt, args);
672 va_end(args);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000673 if (nonfatal_fatal)
674 longjmp(kexjmp, -1);
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000675 else
Darren Tucker3d326222003-09-22 21:11:20 +1000676 exit(255);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000677}
678
679static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000680usage(void)
681{
Damien Millerea5ade22003-05-14 13:43:53 +1000682 fprintf(stderr, "usage: %s [-v46] [-p port] [-T timeout] [-t type] [-f file]\n"
Ben Lindstrom965710f2002-07-07 22:17:22 +0000683 "\t\t [host | addrlist namelist] [...]\n",
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000684 __progname);
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000685 exit(1);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000686}
687
688int
689main(int argc, char **argv)
690{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000691 int debug_flag = 0, log_level = SYSLOG_LEVEL_INFO;
692 int opt, fopt_count = 0;
693 char *tname;
Kevin Steves76e7d9b2001-09-20 20:30:09 +0000694
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000695 extern int optind;
696 extern char *optarg;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000697
Damien Miller59d3d5b2003-08-22 09:34:41 +1000698 __progname = ssh_get_progname(argv[0]);
Ben Lindstrom4e088e42001-10-10 20:45:43 +0000699 init_rng();
700 seed_rng();
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000701 TAILQ_INIT(&tq);
702
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000703 if (argc <= 1)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000704 usage();
705
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000706 while ((opt = getopt(argc, argv, "v46p:T:t:f:")) != -1) {
707 switch (opt) {
708 case 'p':
709 ssh_port = a2port(optarg);
710 if (ssh_port == 0) {
711 fprintf(stderr, "Bad port '%s'\n", optarg);
712 exit(1);
713 }
714 break;
715 case 'T':
Ben Lindstromedd098b2002-07-04 00:07:13 +0000716 timeout = convtime(optarg);
717 if (timeout == -1 || timeout == 0) {
718 fprintf(stderr, "Bad timeout '%s'\n", optarg);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000719 usage();
Ben Lindstromedd098b2002-07-04 00:07:13 +0000720 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000721 break;
722 case 'v':
723 if (!debug_flag) {
724 debug_flag = 1;
725 log_level = SYSLOG_LEVEL_DEBUG1;
726 }
727 else if (log_level < SYSLOG_LEVEL_DEBUG3)
728 log_level++;
729 else
730 fatal("Too high debugging level.");
731 break;
Kevin Steves76e7d9b2001-09-20 20:30:09 +0000732 case 'f':
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000733 if (strcmp(optarg, "-") == 0)
734 optarg = NULL;
735 argv[fopt_count++] = optarg;
736 break;
737 case 't':
738 get_keytypes = 0;
739 tname = strtok(optarg, ",");
740 while (tname) {
741 int type = key_type_from_name(tname);
742 switch (type) {
743 case KEY_RSA1:
744 get_keytypes |= KT_RSA1;
745 break;
746 case KEY_DSA:
747 get_keytypes |= KT_DSA;
748 break;
749 case KEY_RSA:
750 get_keytypes |= KT_RSA;
751 break;
752 case KEY_UNSPEC:
Ben Lindstrom28c603b2001-12-06 16:45:10 +0000753 fatal("unknown key type %s", tname);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000754 }
755 tname = strtok(NULL, ",");
756 }
757 break;
758 case '4':
759 IPv4or6 = AF_INET;
760 break;
761 case '6':
762 IPv4or6 = AF_INET6;
763 break;
764 case '?':
765 default:
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000766 usage();
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000767 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000768 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000769 if (optind == argc && !fopt_count)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000770 usage();
771
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000772 log_init("ssh-keyscan", log_level, SYSLOG_FACILITY_USER, 1);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000773
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000774 maxfd = fdlim_get(1);
775 if (maxfd < 0)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000776 fatal("%s: fdlim_get: bad value", __progname);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000777 if (maxfd > MAXMAXFD)
778 maxfd = MAXMAXFD;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000779 if (MAXCON <= 0)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000780 fatal("%s: not enough file descriptors", __progname);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000781 if (maxfd > fdlim_get(0))
782 fdlim_set(maxfd);
783 fdcon = xmalloc(maxfd * sizeof(con));
Ben Lindstromc791beb2001-02-10 23:18:11 +0000784 memset(fdcon, 0, maxfd * sizeof(con));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000785
Ben Lindstromc1e04212001-03-05 07:04:38 +0000786 read_wait_size = howmany(maxfd, NFDBITS) * sizeof(fd_mask);
787 read_wait = xmalloc(read_wait_size);
788 memset(read_wait, 0, read_wait_size);
789
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000790 if (fopt_count) {
791 Linebuf *lb;
792 char *line;
793 int j;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000794
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000795 for (j = 0; j < fopt_count; j++) {
796 lb = Linebuf_alloc(argv[j], error);
Ben Lindstrom78bbd9e2001-09-12 17:10:40 +0000797 if (!lb)
798 continue;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000799 while ((line = Linebuf_getline(lb)) != NULL)
800 do_host(line);
801 Linebuf_free(lb);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000802 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000803 }
804
805 while (optind < argc)
806 do_host(argv[optind++]);
807
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000808 while (ncon > 0)
809 conloop();
810
811 return (0);
812}