blob: a612dd1b94357cd4dc43b247d51934d51bf345df [file] [log] [blame]
Darren Tucker5d196262006-07-12 22:15:16 +10001/* $OpenBSD: ssh-keyscan.c,v 1.66 2006/07/10 16:37:36 stevesk Exp $ */
Ben Lindstromb6434ae2000-12-05 01:15:09 +00002/*
3 * Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>.
4 *
5 * Modification and redistribution in source and binary forms is
6 * permitted provided that due credit is given to the author and the
Ben Lindstroma238f6e2001-06-09 01:30:39 +00007 * OpenBSD project by leaving this copyright notice intact.
Ben Lindstromb6434ae2000-12-05 01:15:09 +00008 */
9
10#include "includes.h"
Damien Millercd4223c2006-03-15 11:22:47 +110011
Damien Miller9b481512002-09-12 10:43:29 +100012#include "openbsd-compat/sys-queue.h"
Damien Millercd4223c2006-03-15 11:22:47 +110013#include <sys/resource.h>
Darren Tuckerdeecec92006-07-12 22:44:34 +100014#include <errno.h>
Darren Tucker5d196262006-07-12 22:15:16 +100015#include <stdarg.h>
Ben Lindstromb6434ae2000-12-05 01:15:09 +000016
17#include <openssl/bn.h>
Ben Lindstromb6434ae2000-12-05 01:15:09 +000018
Ben Lindstrom325e70c2001-08-06 22:41:30 +000019#include <setjmp.h>
Ben Lindstromb6434ae2000-12-05 01:15:09 +000020#include "xmalloc.h"
21#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000022#include "ssh1.h"
Ben Lindstromb6434ae2000-12-05 01:15:09 +000023#include "key.h"
Ben Lindstrom325e70c2001-08-06 22:41:30 +000024#include "kex.h"
25#include "compat.h"
26#include "myproposal.h"
27#include "packet.h"
28#include "dispatch.h"
Ben Lindstromb6434ae2000-12-05 01:15:09 +000029#include "buffer.h"
30#include "bufaux.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000031#include "log.h"
Ben Lindstromd20b8552001-03-05 07:01:18 +000032#include "atomicio.h"
Ben Lindstrom325e70c2001-08-06 22:41:30 +000033#include "misc.h"
Damien Millerdb7b8172005-03-01 21:48:03 +110034#include "hostfile.h"
Ben Lindstromb6434ae2000-12-05 01:15:09 +000035
Ben Lindstrom325e70c2001-08-06 22:41:30 +000036/* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
37 Default value is AF_UNSPEC means both IPv4 and IPv6. */
Ben Lindstrom325e70c2001-08-06 22:41:30 +000038int IPv4or6 = AF_UNSPEC;
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
Damien Millerdb7b8172005-03-01 21:48:03 +110048int hash_hosts = 0; /* Hash hostname on output */
49
Ben Lindstromb6434ae2000-12-05 01:15:09 +000050#define MAXMAXFD 256
51
52/* The number of seconds after which to give up on a TCP connection */
53int timeout = 5;
54
55int maxfd;
Ben Lindstromd20b8552001-03-05 07:01:18 +000056#define MAXCON (maxfd - 10)
Ben Lindstromb6434ae2000-12-05 01:15:09 +000057
Kevin Stevesec84dc12000-12-13 17:45:15 +000058extern char *__progname;
Ben Lindstromc1e04212001-03-05 07:04:38 +000059fd_set *read_wait;
Damien Miller07d86be2006-03-26 14:19:21 +110060size_t read_wait_nfdset;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000061int ncon;
Ben Lindstrom325e70c2001-08-06 22:41:30 +000062int nonfatal_fatal = 0;
63jmp_buf kexjmp;
Ben Lindstrom520b55c2001-09-12 18:05:05 +000064Key *kexjmp_key;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000065
66/*
67 * Keep a connection structure for each file descriptor. The state
68 * associated with file descriptor n is held in fdcon[n].
69 */
70typedef struct Connection {
Ben Lindstrom46c16222000-12-22 01:43:59 +000071 u_char c_status; /* State of connection on this file desc. */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000072#define CS_UNUSED 0 /* File descriptor unused */
73#define CS_CON 1 /* Waiting to connect/read greeting */
74#define CS_SIZE 2 /* Waiting to read initial packet size */
75#define CS_KEYS 3 /* Waiting to read public key packet */
76 int c_fd; /* Quick lookup: c->c_fd == c - fdcon */
77 int c_plen; /* Packet length field for ssh packet */
78 int c_len; /* Total bytes which must be read. */
79 int c_off; /* Length of data read so far. */
Ben Lindstrom325e70c2001-08-06 22:41:30 +000080 int c_keytype; /* Only one of KT_RSA1, KT_DSA, or KT_RSA */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000081 char *c_namebase; /* Address to free for c_name and c_namelist */
82 char *c_name; /* Hostname of connection for errors */
83 char *c_namelist; /* Pointer to other possible addresses */
84 char *c_output_name; /* Hostname of connection for output */
85 char *c_data; /* Data read from this fd */
Ben Lindstrom325e70c2001-08-06 22:41:30 +000086 Kex *c_kex; /* The key-exchange struct for ssh2 */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000087 struct timeval c_tv; /* Time at which connection gets aborted */
88 TAILQ_ENTRY(Connection) c_link; /* List of connections in timeout order. */
89} con;
90
91TAILQ_HEAD(conlist, Connection) tq; /* Timeout Queue */
92con *fdcon;
93
94/*
95 * This is just a wrapper around fgets() to make it usable.
96 */
97
98/* Stress-test. Increase this later. */
99#define LINEBUF_SIZE 16
100
101typedef struct {
102 char *buf;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000103 u_int size;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000104 int lineno;
105 const char *filename;
106 FILE *stream;
107 void (*errfun) (const char *,...);
108} Linebuf;
109
Ben Lindstrombba81212001-06-25 05:01:22 +0000110static Linebuf *
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000111Linebuf_alloc(const char *filename, void (*errfun) (const char *,...))
112{
113 Linebuf *lb;
114
115 if (!(lb = malloc(sizeof(*lb)))) {
116 if (errfun)
Ben Lindstrom04f9af72002-07-04 00:03:56 +0000117 (*errfun) ("linebuf (%s): malloc failed\n",
118 filename ? filename : "(stdin)");
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000119 return (NULL);
120 }
121 if (filename) {
122 lb->filename = filename;
123 if (!(lb->stream = fopen(filename, "r"))) {
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000124 xfree(lb);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000125 if (errfun)
126 (*errfun) ("%s: %s\n", filename, strerror(errno));
127 return (NULL);
128 }
129 } else {
130 lb->filename = "(stdin)";
131 lb->stream = stdin;
132 }
133
Damien Miller3bbaba62006-03-26 13:59:38 +1100134 if (!(lb->buf = malloc((lb->size = LINEBUF_SIZE)))) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000135 if (errfun)
136 (*errfun) ("linebuf (%s): malloc failed\n", lb->filename);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000137 xfree(lb);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000138 return (NULL);
139 }
140 lb->errfun = errfun;
141 lb->lineno = 0;
142 return (lb);
143}
144
Ben Lindstrombba81212001-06-25 05:01:22 +0000145static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000146Linebuf_free(Linebuf * lb)
147{
148 fclose(lb->stream);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000149 xfree(lb->buf);
150 xfree(lb);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000151}
152
Ben Lindstrombba81212001-06-25 05:01:22 +0000153#if 0
154static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000155Linebuf_restart(Linebuf * lb)
156{
157 clearerr(lb->stream);
158 rewind(lb->stream);
159 lb->lineno = 0;
160}
161
Ben Lindstrombba81212001-06-25 05:01:22 +0000162static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000163Linebuf_lineno(Linebuf * lb)
164{
165 return (lb->lineno);
166}
Ben Lindstrombba81212001-06-25 05:01:22 +0000167#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000168
Ben Lindstrombba81212001-06-25 05:01:22 +0000169static char *
Ben Lindstromc791beb2001-02-10 23:18:11 +0000170Linebuf_getline(Linebuf * lb)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000171{
Damien Millereccb9de2005-06-17 12:59:34 +1000172 size_t n = 0;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000173 void *p;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000174
175 lb->lineno++;
176 for (;;) {
177 /* Read a line */
178 if (!fgets(&lb->buf[n], lb->size - n, lb->stream)) {
179 if (ferror(lb->stream) && lb->errfun)
Ben Lindstrom965710f2002-07-07 22:17:22 +0000180 (*lb->errfun)("%s: %s\n", lb->filename,
Ben Lindstromb0a4cd82001-03-05 04:54:49 +0000181 strerror(errno));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000182 return (NULL);
183 }
184 n = strlen(lb->buf);
185
186 /* Return it or an error if it fits */
187 if (n > 0 && lb->buf[n - 1] == '\n') {
188 lb->buf[n - 1] = '\0';
189 return (lb->buf);
190 }
191 if (n != lb->size - 1) {
192 if (lb->errfun)
Ben Lindstrom965710f2002-07-07 22:17:22 +0000193 (*lb->errfun)("%s: skipping incomplete last line\n",
Ben Lindstromb0a4cd82001-03-05 04:54:49 +0000194 lb->filename);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000195 return (NULL);
196 }
197 /* Double the buffer if we need more space */
Ben Lindstrom965710f2002-07-07 22:17:22 +0000198 lb->size *= 2;
199 if ((p = realloc(lb->buf, lb->size)) == NULL) {
200 lb->size /= 2;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000201 if (lb->errfun)
Ben Lindstrom965710f2002-07-07 22:17:22 +0000202 (*lb->errfun)("linebuf (%s): realloc failed\n",
Ben Lindstromb0a4cd82001-03-05 04:54:49 +0000203 lb->filename);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000204 return (NULL);
205 }
Ben Lindstrom965710f2002-07-07 22:17:22 +0000206 lb->buf = p;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000207 }
208}
209
Ben Lindstrombba81212001-06-25 05:01:22 +0000210static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000211fdlim_get(int hard)
212{
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000213#if defined(HAVE_GETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000214 struct rlimit rlfd;
Ben Lindstromb0a4cd82001-03-05 04:54:49 +0000215
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000216 if (getrlimit(RLIMIT_NOFILE, &rlfd) < 0)
217 return (-1);
218 if ((hard ? rlfd.rlim_max : rlfd.rlim_cur) == RLIM_INFINITY)
Damien Millere00074a2003-11-24 13:07:45 +1100219 return SSH_SYSFDMAX;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000220 else
221 return hard ? rlfd.rlim_max : rlfd.rlim_cur;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000222#else
Damien Millere00074a2003-11-24 13:07:45 +1100223 return SSH_SYSFDMAX;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000224#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 Lindstrom5c98db52002-07-07 22:25:29 +0000233
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000234 if (lim <= 0)
235 return (-1);
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000236#if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000237 if (getrlimit(RLIMIT_NOFILE, &rlfd) < 0)
238 return (-1);
239 rlfd.rlim_cur = lim;
240 if (setrlimit(RLIMIT_NOFILE, &rlfd) < 0)
241 return (-1);
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000242#elif defined (HAVE_SETDTABLESIZE)
Kevin Steves28a7f262001-02-05 15:43:59 +0000243 setdtablesize(lim);
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000244#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000245 return (0);
246}
247
248/*
249 * This is an strsep function that returns a null field for adjacent
250 * separators. This is the same as the 4.4BSD strsep, but different from the
251 * one in the GNU libc.
252 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000253static char *
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000254xstrsep(char **str, const char *delim)
255{
256 char *s, *e;
257
258 if (!**str)
259 return (NULL);
260
261 s = *str;
262 e = s + strcspn(s, delim);
263
264 if (*e != '\0')
265 *e++ = '\0';
266 *str = e;
267
268 return (s);
269}
270
271/*
272 * Get the next non-null token (like GNU strsep). Strsep() will return a
273 * null token for two adjacent separators, so we may have to loop.
274 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000275static char *
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000276strnnsep(char **stringp, char *delim)
277{
278 char *tok;
279
280 do {
281 tok = xstrsep(stringp, delim);
282 } while (tok && *tok == '\0');
283 return (tok);
284}
285
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000286static Key *
287keygrab_ssh1(con *c)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000288{
289 static Key *rsa;
290 static Buffer msg;
291
292 if (rsa == NULL) {
293 buffer_init(&msg);
294 rsa = key_new(KEY_RSA1);
295 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000296 buffer_append(&msg, c->c_data, c->c_plen);
297 buffer_consume(&msg, 8 - (c->c_plen & 7)); /* padding */
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000298 if (buffer_get_char(&msg) != (int) SSH_SMSG_PUBLIC_KEY) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000299 error("%s: invalid packet type", c->c_name);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000300 buffer_clear(&msg);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000301 return NULL;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000302 }
303 buffer_consume(&msg, 8); /* cookie */
304
305 /* server key */
306 (void) buffer_get_int(&msg);
307 buffer_get_bignum(&msg, rsa->rsa->e);
308 buffer_get_bignum(&msg, rsa->rsa->n);
309
310 /* host key */
311 (void) buffer_get_int(&msg);
312 buffer_get_bignum(&msg, rsa->rsa->e);
313 buffer_get_bignum(&msg, rsa->rsa->n);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000314
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000315 buffer_clear(&msg);
316
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000317 return (rsa);
318}
319
320static int
321hostjump(Key *hostkey)
322{
Ben Lindstrom520b55c2001-09-12 18:05:05 +0000323 kexjmp_key = hostkey;
324 longjmp(kexjmp, 1);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000325}
326
327static int
328ssh2_capable(int remote_major, int remote_minor)
329{
330 switch (remote_major) {
331 case 1:
332 if (remote_minor == 99)
333 return 1;
334 break;
335 case 2:
336 return 1;
337 default:
338 break;
339 }
340 return 0;
341}
342
343static Key *
344keygrab_ssh2(con *c)
345{
346 int j;
347
348 packet_set_connection(c->c_fd, c->c_fd);
349 enable_compat20();
350 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = c->c_keytype == KT_DSA?
351 "ssh-dss": "ssh-rsa";
352 c->c_kex = kex_setup(myproposal);
Damien Miller8e7fb332003-02-24 12:03:03 +1100353 c->c_kex->kex[KEX_DH_GRP1_SHA1] = kexdh_client;
Damien Millerf675fc42004-06-15 10:30:09 +1000354 c->c_kex->kex[KEX_DH_GRP14_SHA1] = kexdh_client;
Damien Miller8e7fb332003-02-24 12:03:03 +1100355 c->c_kex->kex[KEX_DH_GEX_SHA1] = kexgex_client;
Damien Millera63128d2006-03-15 12:08:28 +1100356 c->c_kex->kex[KEX_DH_GEX_SHA256] = kexgex_client;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000357 c->c_kex->verify_host_key = hostjump;
358
359 if (!(j = setjmp(kexjmp))) {
360 nonfatal_fatal = 1;
361 dispatch_run(DISPATCH_BLOCK, &c->c_kex->done, c->c_kex);
362 fprintf(stderr, "Impossible! dispatch_run() returned!\n");
363 exit(1);
364 }
365 nonfatal_fatal = 0;
366 xfree(c->c_kex);
367 c->c_kex = NULL;
368 packet_close();
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000369
Ben Lindstrom520b55c2001-09-12 18:05:05 +0000370 return j < 0? NULL : kexjmp_key;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000371}
372
373static void
374keyprint(con *c, Key *key)
375{
Damien Millerdb7b8172005-03-01 21:48:03 +1100376 char *host = c->c_output_name ? c->c_output_name : c->c_name;
377
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000378 if (!key)
379 return;
Damien Millerdb7b8172005-03-01 21:48:03 +1100380 if (hash_hosts && (host = host_hash(host, NULL, 0)) == NULL)
381 fatal("host_hash failed");
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000382
Damien Millerdb7b8172005-03-01 21:48:03 +1100383 fprintf(stdout, "%s ", host);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000384 key_write(key, stdout);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000385 fputs("\n", stdout);
386}
387
Ben Lindstrombba81212001-06-25 05:01:22 +0000388static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000389tcpconnect(char *host)
390{
391 struct addrinfo hints, *ai, *aitop;
392 char strport[NI_MAXSERV];
393 int gaierr, s = -1;
394
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000395 snprintf(strport, sizeof strport, "%d", ssh_port);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000396 memset(&hints, 0, sizeof(hints));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000397 hints.ai_family = IPv4or6;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000398 hints.ai_socktype = SOCK_STREAM;
399 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
400 fatal("getaddrinfo %s: %s", host, gai_strerror(gaierr));
401 for (ai = aitop; ai; ai = ai->ai_next) {
Damien Miller2372ace2003-05-14 13:42:23 +1000402 s = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000403 if (s < 0) {
404 error("socket: %s", strerror(errno));
405 continue;
406 }
Damien Miller232711f2004-06-15 10:35:30 +1000407 if (set_nonblock(s) == -1)
408 fatal("%s: set_nonblock(%d)", __func__, s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000409 if (connect(s, ai->ai_addr, ai->ai_addrlen) < 0 &&
410 errno != EINPROGRESS)
411 error("connect (`%s'): %s", host, strerror(errno));
412 else
413 break;
414 close(s);
415 s = -1;
416 }
417 freeaddrinfo(aitop);
418 return s;
419}
420
Ben Lindstrombba81212001-06-25 05:01:22 +0000421static int
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000422conalloc(char *iname, char *oname, int keytype)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000423{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000424 char *namebase, *name, *namelist;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000425 int s;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000426
427 namebase = namelist = xstrdup(iname);
428
429 do {
430 name = xstrsep(&namelist, ",");
431 if (!name) {
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000432 xfree(namebase);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000433 return (-1);
434 }
435 } while ((s = tcpconnect(name)) < 0);
436
437 if (s >= maxfd)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000438 fatal("conalloc: fdno %d too high", s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000439 if (fdcon[s].c_status)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000440 fatal("conalloc: attempt to reuse fdno %d", s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000441
442 fdcon[s].c_fd = s;
443 fdcon[s].c_status = CS_CON;
444 fdcon[s].c_namebase = namebase;
445 fdcon[s].c_name = name;
446 fdcon[s].c_namelist = namelist;
447 fdcon[s].c_output_name = xstrdup(oname);
448 fdcon[s].c_data = (char *) &fdcon[s].c_plen;
449 fdcon[s].c_len = 4;
450 fdcon[s].c_off = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000451 fdcon[s].c_keytype = keytype;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000452 gettimeofday(&fdcon[s].c_tv, NULL);
453 fdcon[s].c_tv.tv_sec += timeout;
454 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000455 FD_SET(s, read_wait);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000456 ncon++;
457 return (s);
458}
459
Ben Lindstrombba81212001-06-25 05:01:22 +0000460static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000461confree(int s)
462{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000463 if (s >= maxfd || fdcon[s].c_status == CS_UNUSED)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000464 fatal("confree: attempt to free bad fdno %d", s);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000465 close(s);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000466 xfree(fdcon[s].c_namebase);
467 xfree(fdcon[s].c_output_name);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000468 if (fdcon[s].c_status == CS_KEYS)
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000469 xfree(fdcon[s].c_data);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000470 fdcon[s].c_status = CS_UNUSED;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000471 fdcon[s].c_keytype = 0;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000472 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000473 FD_CLR(s, read_wait);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000474 ncon--;
475}
476
Ben Lindstrombba81212001-06-25 05:01:22 +0000477static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000478contouch(int s)
479{
480 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
481 gettimeofday(&fdcon[s].c_tv, NULL);
482 fdcon[s].c_tv.tv_sec += timeout;
483 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
484}
485
Ben Lindstrombba81212001-06-25 05:01:22 +0000486static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000487conrecycle(int s)
488{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000489 con *c = &fdcon[s];
Ben Lindstrom965710f2002-07-07 22:17:22 +0000490 int ret;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000491
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000492 ret = conalloc(c->c_namelist, c->c_output_name, c->c_keytype);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000493 confree(s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000494 return (ret);
495}
496
Ben Lindstrombba81212001-06-25 05:01:22 +0000497static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000498congreet(int s)
499{
Damien Millereccb9de2005-06-17 12:59:34 +1000500 int n = 0, remote_major = 0, remote_minor = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000501 char buf[256], *cp;
Damien Miller83c02ef2001-12-21 12:45:43 +1100502 char remote_version[sizeof buf];
Damien Millereccb9de2005-06-17 12:59:34 +1000503 size_t bufsiz;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000504 con *c = &fdcon[s];
505
Damien Miller4bbacb72005-11-05 15:12:28 +1100506 for (;;) {
507 memset(buf, '\0', sizeof(buf));
508 bufsiz = sizeof(buf);
509 cp = buf;
510 while (bufsiz-- &&
511 (n = atomicio(read, s, cp, 1)) == 1 && *cp != '\n') {
512 if (*cp == '\r')
513 *cp = '\n';
514 cp++;
515 }
516 if (n != 1 || strncmp(buf, "SSH-", 4) == 0)
517 break;
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000518 }
Ben Lindstrom6b28c352002-03-05 01:54:52 +0000519 if (n == 0) {
Damien Millerb253cc42005-05-26 12:23:44 +1000520 switch (errno) {
521 case EPIPE:
522 error("%s: Connection closed by remote host", c->c_name);
523 break;
524 case ECONNREFUSED:
525 break;
526 default:
527 error("read (%s): %s", c->c_name, strerror(errno));
528 break;
529 }
Ben Lindstrom6b28c352002-03-05 01:54:52 +0000530 conrecycle(s);
531 return;
532 }
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000533 if (*cp != '\n' && *cp != '\r') {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000534 error("%s: bad greeting", c->c_name);
535 confree(s);
536 return;
537 }
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000538 *cp = '\0';
Damien Miller83c02ef2001-12-21 12:45:43 +1100539 if (sscanf(buf, "SSH-%d.%d-%[^\n]\n",
540 &remote_major, &remote_minor, remote_version) == 3)
541 compat_datafellows(remote_version);
542 else
543 datafellows = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000544 if (c->c_keytype != KT_RSA1) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000545 if (!ssh2_capable(remote_major, remote_minor)) {
546 debug("%s doesn't support ssh2", c->c_name);
547 confree(s);
548 return;
549 }
Damien Miller83c02ef2001-12-21 12:45:43 +1100550 } else if (remote_major != 1) {
551 debug("%s doesn't support ssh1", c->c_name);
552 confree(s);
553 return;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000554 }
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000555 fprintf(stderr, "# %s %s\n", c->c_name, chop(buf));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000556 n = snprintf(buf, sizeof buf, "SSH-%d.%d-OpenSSH-keyscan\r\n",
557 c->c_keytype == KT_RSA1? PROTOCOL_MAJOR_1 : PROTOCOL_MAJOR_2,
558 c->c_keytype == KT_RSA1? PROTOCOL_MINOR_1 : PROTOCOL_MINOR_2);
Damien Millereccb9de2005-06-17 12:59:34 +1000559 if (n < 0 || (size_t)n >= sizeof(buf)) {
Damien Miller41bfc292005-05-26 12:07:32 +1000560 error("snprintf: buffer too small");
561 confree(s);
562 return;
563 }
Damien Millereccb9de2005-06-17 12:59:34 +1000564 if (atomicio(vwrite, s, buf, n) != (size_t)n) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000565 error("write (%s): %s", c->c_name, strerror(errno));
566 confree(s);
567 return;
568 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000569 if (c->c_keytype != KT_RSA1) {
570 keyprint(c, keygrab_ssh2(c));
571 confree(s);
572 return;
573 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000574 c->c_status = CS_SIZE;
575 contouch(s);
576}
577
Ben Lindstrombba81212001-06-25 05:01:22 +0000578static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000579conread(int s)
580{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000581 con *c = &fdcon[s];
Damien Millerb253cc42005-05-26 12:23:44 +1000582 size_t n;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000583
584 if (c->c_status == CS_CON) {
585 congreet(s);
586 return;
587 }
Darren Tuckerfe6649d2004-08-13 21:19:37 +1000588 n = atomicio(read, s, c->c_data + c->c_off, c->c_len - c->c_off);
Damien Millerb253cc42005-05-26 12:23:44 +1000589 if (n == 0) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000590 error("read (%s): %s", c->c_name, strerror(errno));
591 confree(s);
592 return;
593 }
594 c->c_off += n;
595
596 if (c->c_off == c->c_len)
597 switch (c->c_status) {
598 case CS_SIZE:
599 c->c_plen = htonl(c->c_plen);
600 c->c_len = c->c_plen + 8 - (c->c_plen & 7);
601 c->c_off = 0;
602 c->c_data = xmalloc(c->c_len);
603 c->c_status = CS_KEYS;
604 break;
605 case CS_KEYS:
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000606 keyprint(c, keygrab_ssh1(c));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000607 confree(s);
608 return;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000609 default:
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000610 fatal("conread: invalid status %d", c->c_status);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000611 break;
612 }
613
614 contouch(s);
615}
616
Ben Lindstrombba81212001-06-25 05:01:22 +0000617static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000618conloop(void)
619{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000620 struct timeval seltime, now;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000621 fd_set *r, *e;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000622 con *c;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000623 int i;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000624
625 gettimeofday(&now, NULL);
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000626 c = TAILQ_FIRST(&tq);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000627
Ben Lindstromd20b8552001-03-05 07:01:18 +0000628 if (c && (c->c_tv.tv_sec > now.tv_sec ||
629 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec > now.tv_usec))) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000630 seltime = c->c_tv;
631 seltime.tv_sec -= now.tv_sec;
632 seltime.tv_usec -= now.tv_usec;
Ben Lindstromc791beb2001-02-10 23:18:11 +0000633 if (seltime.tv_usec < 0) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000634 seltime.tv_usec += 1000000;
635 seltime.tv_sec--;
636 }
637 } else
638 seltime.tv_sec = seltime.tv_usec = 0;
639
Damien Miller07d86be2006-03-26 14:19:21 +1100640 r = xcalloc(read_wait_nfdset, sizeof(fd_mask));
641 e = xcalloc(read_wait_nfdset, sizeof(fd_mask));
642 memcpy(r, read_wait, read_wait_nfdset * sizeof(fd_mask));
643 memcpy(e, read_wait, read_wait_nfdset * sizeof(fd_mask));
Ben Lindstromc1e04212001-03-05 07:04:38 +0000644
645 while (select(maxfd, r, NULL, e, &seltime) == -1 &&
Ben Lindstromf9452512001-02-15 03:12:08 +0000646 (errno == EAGAIN || errno == EINTR))
647 ;
648
Ben Lindstromd20b8552001-03-05 07:01:18 +0000649 for (i = 0; i < maxfd; i++) {
Ben Lindstromc1e04212001-03-05 07:04:38 +0000650 if (FD_ISSET(i, e)) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000651 error("%s: exception!", fdcon[i].c_name);
652 confree(i);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000653 } else if (FD_ISSET(i, r))
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000654 conread(i);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000655 }
Ben Lindstromc1e04212001-03-05 07:04:38 +0000656 xfree(r);
657 xfree(e);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000658
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000659 c = TAILQ_FIRST(&tq);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000660 while (c && (c->c_tv.tv_sec < now.tv_sec ||
661 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec < now.tv_usec))) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000662 int s = c->c_fd;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000663
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000664 c = TAILQ_NEXT(c, c_link);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000665 conrecycle(s);
666 }
667}
668
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000669static void
670do_host(char *host)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000671{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000672 char *name = strnnsep(&host, " \t\n");
673 int j;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000674
Ben Lindstromeaffb9d2001-12-06 16:28:19 +0000675 if (name == NULL)
676 return;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000677 for (j = KT_RSA1; j <= KT_RSA; j *= 2) {
678 if (get_keytypes & j) {
679 while (ncon >= MAXCON)
680 conloop();
681 conalloc(name, *host ? host : name, j);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000682 }
683 }
684}
685
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000686void
687fatal(const char *fmt,...)
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000688{
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000689 va_list args;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000690
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000691 va_start(args, fmt);
692 do_log(SYSLOG_LEVEL_FATAL, fmt, args);
693 va_end(args);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000694 if (nonfatal_fatal)
695 longjmp(kexjmp, -1);
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000696 else
Darren Tucker3d326222003-09-22 21:11:20 +1000697 exit(255);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000698}
699
700static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000701usage(void)
702{
Damien Miller9a2fdbd2005-03-02 12:04:01 +1100703 fprintf(stderr, "usage: %s [-46Hv] [-f file] [-p port] [-T timeout] [-t type]\n"
Ben Lindstrom965710f2002-07-07 22:17:22 +0000704 "\t\t [host | addrlist namelist] [...]\n",
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000705 __progname);
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000706 exit(1);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000707}
708
709int
710main(int argc, char **argv)
711{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000712 int debug_flag = 0, log_level = SYSLOG_LEVEL_INFO;
713 int opt, fopt_count = 0;
714 char *tname;
Kevin Steves76e7d9b2001-09-20 20:30:09 +0000715
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000716 extern int optind;
717 extern char *optarg;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000718
Damien Miller59d3d5b2003-08-22 09:34:41 +1000719 __progname = ssh_get_progname(argv[0]);
Ben Lindstrom4e088e42001-10-10 20:45:43 +0000720 init_rng();
721 seed_rng();
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000722 TAILQ_INIT(&tq);
723
Darren Tuckerce321d82005-10-03 18:11:24 +1000724 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
725 sanitise_stdfd();
726
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000727 if (argc <= 1)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000728 usage();
729
Damien Millerdb7b8172005-03-01 21:48:03 +1100730 while ((opt = getopt(argc, argv, "Hv46p:T:t:f:")) != -1) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000731 switch (opt) {
Damien Millerdb7b8172005-03-01 21:48:03 +1100732 case 'H':
733 hash_hosts = 1;
734 break;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000735 case 'p':
736 ssh_port = a2port(optarg);
737 if (ssh_port == 0) {
738 fprintf(stderr, "Bad port '%s'\n", optarg);
739 exit(1);
740 }
741 break;
742 case 'T':
Ben Lindstromedd098b2002-07-04 00:07:13 +0000743 timeout = convtime(optarg);
744 if (timeout == -1 || timeout == 0) {
745 fprintf(stderr, "Bad timeout '%s'\n", optarg);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000746 usage();
Ben Lindstromedd098b2002-07-04 00:07:13 +0000747 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000748 break;
749 case 'v':
750 if (!debug_flag) {
751 debug_flag = 1;
752 log_level = SYSLOG_LEVEL_DEBUG1;
753 }
754 else if (log_level < SYSLOG_LEVEL_DEBUG3)
755 log_level++;
756 else
757 fatal("Too high debugging level.");
758 break;
Kevin Steves76e7d9b2001-09-20 20:30:09 +0000759 case 'f':
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000760 if (strcmp(optarg, "-") == 0)
761 optarg = NULL;
762 argv[fopt_count++] = optarg;
763 break;
764 case 't':
765 get_keytypes = 0;
766 tname = strtok(optarg, ",");
767 while (tname) {
768 int type = key_type_from_name(tname);
769 switch (type) {
770 case KEY_RSA1:
771 get_keytypes |= KT_RSA1;
772 break;
773 case KEY_DSA:
774 get_keytypes |= KT_DSA;
775 break;
776 case KEY_RSA:
777 get_keytypes |= KT_RSA;
778 break;
779 case KEY_UNSPEC:
Ben Lindstrom28c603b2001-12-06 16:45:10 +0000780 fatal("unknown key type %s", tname);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000781 }
782 tname = strtok(NULL, ",");
783 }
784 break;
785 case '4':
786 IPv4or6 = AF_INET;
787 break;
788 case '6':
789 IPv4or6 = AF_INET6;
790 break;
791 case '?':
792 default:
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000793 usage();
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000794 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000795 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000796 if (optind == argc && !fopt_count)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000797 usage();
798
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000799 log_init("ssh-keyscan", log_level, SYSLOG_FACILITY_USER, 1);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000800
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000801 maxfd = fdlim_get(1);
802 if (maxfd < 0)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000803 fatal("%s: fdlim_get: bad value", __progname);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000804 if (maxfd > MAXMAXFD)
805 maxfd = MAXMAXFD;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000806 if (MAXCON <= 0)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000807 fatal("%s: not enough file descriptors", __progname);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000808 if (maxfd > fdlim_get(0))
809 fdlim_set(maxfd);
Damien Miller07d86be2006-03-26 14:19:21 +1100810 fdcon = xcalloc(maxfd, sizeof(con));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000811
Damien Miller07d86be2006-03-26 14:19:21 +1100812 read_wait_nfdset = howmany(maxfd, NFDBITS);
813 read_wait = xcalloc(read_wait_nfdset, sizeof(fd_mask));
Ben Lindstromc1e04212001-03-05 07:04:38 +0000814
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000815 if (fopt_count) {
816 Linebuf *lb;
817 char *line;
818 int j;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000819
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000820 for (j = 0; j < fopt_count; j++) {
821 lb = Linebuf_alloc(argv[j], error);
Ben Lindstrom78bbd9e2001-09-12 17:10:40 +0000822 if (!lb)
823 continue;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000824 while ((line = Linebuf_getline(lb)) != NULL)
825 do_host(line);
826 Linebuf_free(lb);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000827 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000828 }
829
830 while (optind < argc)
831 do_host(argv[optind++]);
832
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000833 while (ncon > 0)
834 conloop();
835
836 return (0);
837}