blob: 3f8c5b4032eb0496cb79d2c850478aba73aef1a2 [file] [log] [blame]
Ben Lindstromb6434ae2000-12-05 01:15:09 +00001/*
2 * Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>.
3 *
4 * Modification and redistribution in source and binary forms is
5 * permitted provided that due credit is given to the author and the
Ben Lindstroma238f6e2001-06-09 01:30:39 +00006 * OpenBSD project by leaving this copyright notice intact.
Ben Lindstromb6434ae2000-12-05 01:15:09 +00007 */
8
9#include "includes.h"
Ben Lindstromde8fc6f2001-08-06 22:43:50 +000010RCSID("$OpenBSD: ssh-keyscan.c,v 1.27 2001/08/05 23:29:58 markus Exp $");
Ben Lindstromb6434ae2000-12-05 01:15:09 +000011
Kevin Steves28a7f262001-02-05 15:43:59 +000012#if defined(HAVE_SYS_QUEUE_H) && !defined(HAVE_BOGUS_SYS_QUEUE_H)
Ben Lindstromb6434ae2000-12-05 01:15:09 +000013#include <sys/queue.h>
Kevin Steves2c65ada2000-12-06 22:25:40 +000014#else
Kevin Steves54f15b62001-03-14 18:37:13 +000015#include "openbsd-compat/fake-queue.h"
Kevin Steves2c65ada2000-12-06 22:25:40 +000016#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +000017#include <errno.h>
18
19#include <openssl/bn.h>
Ben Lindstromb6434ae2000-12-05 01:15:09 +000020
Ben Lindstrom325e70c2001-08-06 22:41:30 +000021#include <setjmp.h>
Ben Lindstromb6434ae2000-12-05 01:15:09 +000022#include "xmalloc.h"
23#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000024#include "ssh1.h"
Ben Lindstromb6434ae2000-12-05 01:15:09 +000025#include "key.h"
Ben Lindstrom325e70c2001-08-06 22:41:30 +000026#include "kex.h"
27#include "compat.h"
28#include "myproposal.h"
29#include "packet.h"
30#include "dispatch.h"
Ben Lindstromb6434ae2000-12-05 01:15:09 +000031#include "buffer.h"
32#include "bufaux.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000033#include "log.h"
Ben Lindstromd20b8552001-03-05 07:01:18 +000034#include "atomicio.h"
Ben Lindstrom325e70c2001-08-06 22:41:30 +000035#include "misc.h"
Ben Lindstromb6434ae2000-12-05 01:15:09 +000036
Ben Lindstrom325e70c2001-08-06 22:41:30 +000037/* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
38 Default value is AF_UNSPEC means both IPv4 and IPv6. */
39#ifdef IPV4_DEFAULT
40int IPv4or6 = AF_INET;
41#else
42int IPv4or6 = AF_UNSPEC;
43#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +000044
Ben Lindstrom325e70c2001-08-06 22:41:30 +000045int ssh_port = SSH_DEFAULT_PORT;
46
47#define KT_RSA1 1
48#define KT_DSA 2
49#define KT_RSA 4
50
51int get_keytypes = KT_RSA1; /* Get only RSA1 keys by default */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000052
Ben Lindstromb6434ae2000-12-05 01:15:09 +000053#define MAXMAXFD 256
54
55/* The number of seconds after which to give up on a TCP connection */
56int timeout = 5;
57
58int maxfd;
Ben Lindstromd20b8552001-03-05 07:01:18 +000059#define MAXCON (maxfd - 10)
Ben Lindstromb6434ae2000-12-05 01:15:09 +000060
Kevin Stevesec84dc12000-12-13 17:45:15 +000061#ifdef HAVE___PROGNAME
62extern char *__progname;
63#else
64char *__progname;
65#endif
Ben Lindstromc1e04212001-03-05 07:04:38 +000066fd_set *read_wait;
67size_t read_wait_size;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000068int ncon;
Ben Lindstrom325e70c2001-08-06 22:41:30 +000069int nonfatal_fatal = 0;
70jmp_buf kexjmp;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000071
72/*
73 * Keep a connection structure for each file descriptor. The state
74 * associated with file descriptor n is held in fdcon[n].
75 */
76typedef struct Connection {
Ben Lindstrom46c16222000-12-22 01:43:59 +000077 u_char c_status; /* State of connection on this file desc. */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000078#define CS_UNUSED 0 /* File descriptor unused */
79#define CS_CON 1 /* Waiting to connect/read greeting */
80#define CS_SIZE 2 /* Waiting to read initial packet size */
81#define CS_KEYS 3 /* Waiting to read public key packet */
82 int c_fd; /* Quick lookup: c->c_fd == c - fdcon */
83 int c_plen; /* Packet length field for ssh packet */
84 int c_len; /* Total bytes which must be read. */
85 int c_off; /* Length of data read so far. */
Ben Lindstrom325e70c2001-08-06 22:41:30 +000086 int c_keytype; /* Only one of KT_RSA1, KT_DSA, or KT_RSA */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000087 char *c_namebase; /* Address to free for c_name and c_namelist */
88 char *c_name; /* Hostname of connection for errors */
89 char *c_namelist; /* Pointer to other possible addresses */
90 char *c_output_name; /* Hostname of connection for output */
91 char *c_data; /* Data read from this fd */
Ben Lindstrom325e70c2001-08-06 22:41:30 +000092 Kex *c_kex; /* The key-exchange struct for ssh2 */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000093 struct timeval c_tv; /* Time at which connection gets aborted */
94 TAILQ_ENTRY(Connection) c_link; /* List of connections in timeout order. */
95} con;
96
97TAILQ_HEAD(conlist, Connection) tq; /* Timeout Queue */
98con *fdcon;
99
100/*
101 * This is just a wrapper around fgets() to make it usable.
102 */
103
104/* Stress-test. Increase this later. */
105#define LINEBUF_SIZE 16
106
107typedef struct {
108 char *buf;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000109 u_int size;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000110 int lineno;
111 const char *filename;
112 FILE *stream;
113 void (*errfun) (const char *,...);
114} Linebuf;
115
Ben Lindstrombba81212001-06-25 05:01:22 +0000116static Linebuf *
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000117Linebuf_alloc(const char *filename, void (*errfun) (const char *,...))
118{
119 Linebuf *lb;
120
121 if (!(lb = malloc(sizeof(*lb)))) {
122 if (errfun)
123 (*errfun) ("linebuf (%s): malloc failed\n", lb->filename);
124 return (NULL);
125 }
126 if (filename) {
127 lb->filename = filename;
128 if (!(lb->stream = fopen(filename, "r"))) {
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000129 xfree(lb);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000130 if (errfun)
131 (*errfun) ("%s: %s\n", filename, strerror(errno));
132 return (NULL);
133 }
134 } else {
135 lb->filename = "(stdin)";
136 lb->stream = stdin;
137 }
138
139 if (!(lb->buf = malloc(lb->size = LINEBUF_SIZE))) {
140 if (errfun)
141 (*errfun) ("linebuf (%s): malloc failed\n", lb->filename);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000142 xfree(lb);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000143 return (NULL);
144 }
145 lb->errfun = errfun;
146 lb->lineno = 0;
147 return (lb);
148}
149
Ben Lindstrombba81212001-06-25 05:01:22 +0000150static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000151Linebuf_free(Linebuf * lb)
152{
153 fclose(lb->stream);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000154 xfree(lb->buf);
155 xfree(lb);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000156}
157
Ben Lindstrombba81212001-06-25 05:01:22 +0000158#if 0
159static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000160Linebuf_restart(Linebuf * lb)
161{
162 clearerr(lb->stream);
163 rewind(lb->stream);
164 lb->lineno = 0;
165}
166
Ben Lindstrombba81212001-06-25 05:01:22 +0000167static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000168Linebuf_lineno(Linebuf * lb)
169{
170 return (lb->lineno);
171}
Ben Lindstrombba81212001-06-25 05:01:22 +0000172#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000173
Ben Lindstrombba81212001-06-25 05:01:22 +0000174static char *
Ben Lindstromc791beb2001-02-10 23:18:11 +0000175Linebuf_getline(Linebuf * lb)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000176{
177 int n = 0;
178
179 lb->lineno++;
180 for (;;) {
181 /* Read a line */
182 if (!fgets(&lb->buf[n], lb->size - n, lb->stream)) {
183 if (ferror(lb->stream) && lb->errfun)
Ben Lindstromb0a4cd82001-03-05 04:54:49 +0000184 (*lb->errfun) ("%s: %s\n", lb->filename,
185 strerror(errno));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000186 return (NULL);
187 }
188 n = strlen(lb->buf);
189
190 /* Return it or an error if it fits */
191 if (n > 0 && lb->buf[n - 1] == '\n') {
192 lb->buf[n - 1] = '\0';
193 return (lb->buf);
194 }
195 if (n != lb->size - 1) {
196 if (lb->errfun)
Ben Lindstromb0a4cd82001-03-05 04:54:49 +0000197 (*lb->errfun) ("%s: skipping incomplete last line\n",
198 lb->filename);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000199 return (NULL);
200 }
201 /* Double the buffer if we need more space */
202 if (!(lb->buf = realloc(lb->buf, (lb->size *= 2)))) {
203 if (lb->errfun)
Ben Lindstromb0a4cd82001-03-05 04:54:49 +0000204 (*lb->errfun) ("linebuf (%s): realloc failed\n",
205 lb->filename);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000206 return (NULL);
207 }
208 }
209}
210
Ben Lindstrombba81212001-06-25 05:01:22 +0000211static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000212fdlim_get(int hard)
213{
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000214#if defined(HAVE_GETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000215 struct rlimit rlfd;
Ben Lindstromb0a4cd82001-03-05 04:54:49 +0000216
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000217 if (getrlimit(RLIMIT_NOFILE, &rlfd) < 0)
218 return (-1);
219 if ((hard ? rlfd.rlim_max : rlfd.rlim_cur) == RLIM_INFINITY)
220 return 10000;
221 else
222 return hard ? rlfd.rlim_max : rlfd.rlim_cur;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000223#elif defined (HAVE_SYSCONF)
224 return sysconf (_SC_OPEN_MAX);
225#else
226 return 10000;
227#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000228}
229
Ben Lindstrombba81212001-06-25 05:01:22 +0000230static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000231fdlim_set(int lim)
232{
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000233#if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000234 struct rlimit rlfd;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000235#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000236 if (lim <= 0)
237 return (-1);
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000238#if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000239 if (getrlimit(RLIMIT_NOFILE, &rlfd) < 0)
240 return (-1);
241 rlfd.rlim_cur = lim;
242 if (setrlimit(RLIMIT_NOFILE, &rlfd) < 0)
243 return (-1);
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000244#elif defined (HAVE_SETDTABLESIZE)
Kevin Steves28a7f262001-02-05 15:43:59 +0000245 setdtablesize(lim);
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000246#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000247 return (0);
248}
249
250/*
251 * This is an strsep function that returns a null field for adjacent
252 * separators. This is the same as the 4.4BSD strsep, but different from the
253 * one in the GNU libc.
254 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000255static char *
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000256xstrsep(char **str, const char *delim)
257{
258 char *s, *e;
259
260 if (!**str)
261 return (NULL);
262
263 s = *str;
264 e = s + strcspn(s, delim);
265
266 if (*e != '\0')
267 *e++ = '\0';
268 *str = e;
269
270 return (s);
271}
272
273/*
274 * Get the next non-null token (like GNU strsep). Strsep() will return a
275 * null token for two adjacent separators, so we may have to loop.
276 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000277static char *
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000278strnnsep(char **stringp, char *delim)
279{
280 char *tok;
281
282 do {
283 tok = xstrsep(stringp, delim);
284 } while (tok && *tok == '\0');
285 return (tok);
286}
287
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000288static Key *
289keygrab_ssh1(con *c)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000290{
291 static Key *rsa;
292 static Buffer msg;
293
294 if (rsa == NULL) {
295 buffer_init(&msg);
296 rsa = key_new(KEY_RSA1);
297 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000298 buffer_append(&msg, c->c_data, c->c_plen);
299 buffer_consume(&msg, 8 - (c->c_plen & 7)); /* padding */
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000300 if (buffer_get_char(&msg) != (int) SSH_SMSG_PUBLIC_KEY) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000301 error("%s: invalid packet type", c->c_name);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000302 buffer_clear(&msg);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000303 return NULL;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000304 }
305 buffer_consume(&msg, 8); /* cookie */
306
307 /* server key */
308 (void) buffer_get_int(&msg);
309 buffer_get_bignum(&msg, rsa->rsa->e);
310 buffer_get_bignum(&msg, rsa->rsa->n);
311
312 /* host key */
313 (void) buffer_get_int(&msg);
314 buffer_get_bignum(&msg, rsa->rsa->e);
315 buffer_get_bignum(&msg, rsa->rsa->n);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000316
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000317 buffer_clear(&msg);
318
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000319 return (rsa);
320}
321
322static int
323hostjump(Key *hostkey)
324{
325 longjmp(kexjmp, (int)hostkey);
326}
327
328static int
329ssh2_capable(int remote_major, int remote_minor)
330{
331 switch (remote_major) {
332 case 1:
333 if (remote_minor == 99)
334 return 1;
335 break;
336 case 2:
337 return 1;
338 default:
339 break;
340 }
341 return 0;
342}
343
344static Key *
345keygrab_ssh2(con *c)
346{
347 int j;
348
349 packet_set_connection(c->c_fd, c->c_fd);
350 enable_compat20();
351 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = c->c_keytype == KT_DSA?
352 "ssh-dss": "ssh-rsa";
353 c->c_kex = kex_setup(myproposal);
354 c->c_kex->verify_host_key = hostjump;
355
356 if (!(j = setjmp(kexjmp))) {
357 nonfatal_fatal = 1;
358 dispatch_run(DISPATCH_BLOCK, &c->c_kex->done, c->c_kex);
359 fprintf(stderr, "Impossible! dispatch_run() returned!\n");
360 exit(1);
361 }
362 nonfatal_fatal = 0;
363 xfree(c->c_kex);
364 c->c_kex = NULL;
365 packet_close();
366 if (j < 0)
367 j = 0;
368
369 return (Key*)(j);
370}
371
372static void
373keyprint(con *c, Key *key)
374{
375 if (!key)
376 return;
377
378 fprintf(stdout, "%s ", c->c_output_name ? c->c_output_name : c->c_name);
379 key_write(key, stdout);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000380 fputs("\n", stdout);
381}
382
Ben Lindstrombba81212001-06-25 05:01:22 +0000383static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000384tcpconnect(char *host)
385{
386 struct addrinfo hints, *ai, *aitop;
387 char strport[NI_MAXSERV];
388 int gaierr, s = -1;
389
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000390 snprintf(strport, sizeof strport, "%d", ssh_port);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000391 memset(&hints, 0, sizeof(hints));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000392 hints.ai_family = IPv4or6;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000393 hints.ai_socktype = SOCK_STREAM;
394 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
395 fatal("getaddrinfo %s: %s", host, gai_strerror(gaierr));
396 for (ai = aitop; ai; ai = ai->ai_next) {
397 s = socket(ai->ai_family, SOCK_STREAM, 0);
398 if (s < 0) {
399 error("socket: %s", strerror(errno));
400 continue;
401 }
Ben Lindstrom48bd7c12001-01-09 00:35:42 +0000402 if (fcntl(s, F_SETFL, O_NONBLOCK) < 0)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000403 fatal("F_SETFL: %s", strerror(errno));
404 if (connect(s, ai->ai_addr, ai->ai_addrlen) < 0 &&
405 errno != EINPROGRESS)
406 error("connect (`%s'): %s", host, strerror(errno));
407 else
408 break;
409 close(s);
410 s = -1;
411 }
412 freeaddrinfo(aitop);
413 return s;
414}
415
Ben Lindstrombba81212001-06-25 05:01:22 +0000416static int
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000417conalloc(char *iname, char *oname, int keytype)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000418{
419 int s;
420 char *namebase, *name, *namelist;
421
422 namebase = namelist = xstrdup(iname);
423
424 do {
425 name = xstrsep(&namelist, ",");
426 if (!name) {
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000427 xfree(namebase);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000428 return (-1);
429 }
430 } while ((s = tcpconnect(name)) < 0);
431
432 if (s >= maxfd)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000433 fatal("conalloc: fdno %d too high", s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000434 if (fdcon[s].c_status)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000435 fatal("conalloc: attempt to reuse fdno %d", s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000436
437 fdcon[s].c_fd = s;
438 fdcon[s].c_status = CS_CON;
439 fdcon[s].c_namebase = namebase;
440 fdcon[s].c_name = name;
441 fdcon[s].c_namelist = namelist;
442 fdcon[s].c_output_name = xstrdup(oname);
443 fdcon[s].c_data = (char *) &fdcon[s].c_plen;
444 fdcon[s].c_len = 4;
445 fdcon[s].c_off = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000446 fdcon[s].c_keytype = keytype;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000447 gettimeofday(&fdcon[s].c_tv, NULL);
448 fdcon[s].c_tv.tv_sec += timeout;
449 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000450 FD_SET(s, read_wait);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000451 ncon++;
452 return (s);
453}
454
Ben Lindstrombba81212001-06-25 05:01:22 +0000455static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000456confree(int s)
457{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000458 if (s >= maxfd || fdcon[s].c_status == CS_UNUSED)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000459 fatal("confree: attempt to free bad fdno %d", s);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000460 close(s);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000461 xfree(fdcon[s].c_namebase);
462 xfree(fdcon[s].c_output_name);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000463 if (fdcon[s].c_status == CS_KEYS)
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000464 xfree(fdcon[s].c_data);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000465 fdcon[s].c_status = CS_UNUSED;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000466 fdcon[s].c_keytype = 0;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000467 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000468 FD_CLR(s, read_wait);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000469 ncon--;
470}
471
Ben Lindstrombba81212001-06-25 05:01:22 +0000472static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000473contouch(int s)
474{
475 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
476 gettimeofday(&fdcon[s].c_tv, NULL);
477 fdcon[s].c_tv.tv_sec += timeout;
478 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
479}
480
Ben Lindstrombba81212001-06-25 05:01:22 +0000481static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000482conrecycle(int s)
483{
484 int ret;
485 con *c = &fdcon[s];
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000486
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000487 ret = conalloc(c->c_namelist, c->c_output_name, c->c_keytype);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000488 confree(s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000489 return (ret);
490}
491
Ben Lindstrombba81212001-06-25 05:01:22 +0000492static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000493congreet(int s)
494{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000495 char buf[256], *cp;
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000496 size_t bufsiz;
Ben Lindstrome21c4ad2001-03-07 01:23:30 +0000497 int n = 0;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000498 con *c = &fdcon[s];
499
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000500 bufsiz = sizeof(buf);
501 cp = buf;
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000502 while (bufsiz-- && (n = read(s, cp, 1)) == 1 && *cp != '\n') {
503 if (*cp == '\r')
504 *cp = '\n';
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000505 cp++;
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000506 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000507 if (n < 0) {
508 if (errno != ECONNREFUSED)
509 error("read (%s): %s", c->c_name, strerror(errno));
510 conrecycle(s);
511 return;
512 }
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000513 if (*cp != '\n' && *cp != '\r') {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000514 error("%s: bad greeting", c->c_name);
515 confree(s);
516 return;
517 }
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000518 *cp = '\0';
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000519 if (c->c_keytype != KT_RSA1) {
520 int remote_major, remote_minor;
521 char remote_version[sizeof buf];
522
523 if (sscanf(buf, "SSH-%d.%d-%[^\n]\n",
524 &remote_major, &remote_minor, remote_version) == 3)
525 compat_datafellows(remote_version);
526 else
527 datafellows = 0;
528 if (!ssh2_capable(remote_major, remote_minor)) {
529 debug("%s doesn't support ssh2", c->c_name);
530 confree(s);
531 return;
532 }
533 }
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000534 fprintf(stderr, "# %s %s\n", c->c_name, chop(buf));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000535 n = snprintf(buf, sizeof buf, "SSH-%d.%d-OpenSSH-keyscan\r\n",
536 c->c_keytype == KT_RSA1? PROTOCOL_MAJOR_1 : PROTOCOL_MAJOR_2,
537 c->c_keytype == KT_RSA1? PROTOCOL_MINOR_1 : PROTOCOL_MINOR_2);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000538 if (atomicio(write, s, buf, n) != n) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000539 error("write (%s): %s", c->c_name, strerror(errno));
540 confree(s);
541 return;
542 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000543 if (c->c_keytype != KT_RSA1) {
544 keyprint(c, keygrab_ssh2(c));
545 confree(s);
546 return;
547 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000548 c->c_status = CS_SIZE;
549 contouch(s);
550}
551
Ben Lindstrombba81212001-06-25 05:01:22 +0000552static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000553conread(int s)
554{
555 int n;
556 con *c = &fdcon[s];
557
558 if (c->c_status == CS_CON) {
559 congreet(s);
560 return;
561 }
562 n = read(s, c->c_data + c->c_off, c->c_len - c->c_off);
563 if (n < 0) {
564 error("read (%s): %s", c->c_name, strerror(errno));
565 confree(s);
566 return;
567 }
568 c->c_off += n;
569
570 if (c->c_off == c->c_len)
571 switch (c->c_status) {
572 case CS_SIZE:
573 c->c_plen = htonl(c->c_plen);
574 c->c_len = c->c_plen + 8 - (c->c_plen & 7);
575 c->c_off = 0;
576 c->c_data = xmalloc(c->c_len);
577 c->c_status = CS_KEYS;
578 break;
579 case CS_KEYS:
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000580 keyprint(c, keygrab_ssh1(c));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000581 confree(s);
582 return;
583 break;
584 default:
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000585 fatal("conread: invalid status %d", c->c_status);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000586 break;
587 }
588
589 contouch(s);
590}
591
Ben Lindstrombba81212001-06-25 05:01:22 +0000592static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000593conloop(void)
594{
Ben Lindstromc1e04212001-03-05 07:04:38 +0000595 fd_set *r, *e;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000596 struct timeval seltime, now;
597 int i;
598 con *c;
599
600 gettimeofday(&now, NULL);
601 c = tq.tqh_first;
602
Ben Lindstromd20b8552001-03-05 07:01:18 +0000603 if (c && (c->c_tv.tv_sec > now.tv_sec ||
604 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec > now.tv_usec))) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000605 seltime = c->c_tv;
606 seltime.tv_sec -= now.tv_sec;
607 seltime.tv_usec -= now.tv_usec;
Ben Lindstromc791beb2001-02-10 23:18:11 +0000608 if (seltime.tv_usec < 0) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000609 seltime.tv_usec += 1000000;
610 seltime.tv_sec--;
611 }
612 } else
613 seltime.tv_sec = seltime.tv_usec = 0;
614
Ben Lindstromc1e04212001-03-05 07:04:38 +0000615 r = xmalloc(read_wait_size);
616 memcpy(r, read_wait, read_wait_size);
617 e = xmalloc(read_wait_size);
618 memcpy(e, read_wait, read_wait_size);
619
620 while (select(maxfd, r, NULL, e, &seltime) == -1 &&
Ben Lindstromf9452512001-02-15 03:12:08 +0000621 (errno == EAGAIN || errno == EINTR))
622 ;
623
Ben Lindstromd20b8552001-03-05 07:01:18 +0000624 for (i = 0; i < maxfd; i++) {
Ben Lindstromc1e04212001-03-05 07:04:38 +0000625 if (FD_ISSET(i, e)) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000626 error("%s: exception!", fdcon[i].c_name);
627 confree(i);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000628 } else if (FD_ISSET(i, r))
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000629 conread(i);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000630 }
Ben Lindstromc1e04212001-03-05 07:04:38 +0000631 xfree(r);
632 xfree(e);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000633
634 c = tq.tqh_first;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000635 while (c && (c->c_tv.tv_sec < now.tv_sec ||
636 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec < now.tv_usec))) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000637 int s = c->c_fd;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000638
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000639 c = c->c_link.tqe_next;
640 conrecycle(s);
641 }
642}
643
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000644static void
645do_host(char *host)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000646{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000647 char *name = strnnsep(&host, " \t\n");
648 int j;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000649
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000650 for (j = KT_RSA1; j <= KT_RSA; j *= 2) {
651 if (get_keytypes & j) {
652 while (ncon >= MAXCON)
653 conloop();
654 conalloc(name, *host ? host : name, j);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000655 }
656 }
657}
658
Ben Lindstrombba81212001-06-25 05:01:22 +0000659static void
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000660fatal_callback(void *arg)
661{
662 if (nonfatal_fatal)
663 longjmp(kexjmp, -1);
664}
665
666static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000667usage(void)
668{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000669 fprintf(stderr, "Usage: %s [options] host ...\n",
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000670 __progname);
671 fprintf(stderr, "Options:\n");
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000672 fprintf(stderr, " -f file Read hosts or addresses from file.\n");
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000673 fprintf(stderr, " -p port Connect to the specified port.\n");
674 fprintf(stderr, " -t keytype Specify the host key type.\n");
675 fprintf(stderr, " -T timeout Set connection timeout.\n");
676 fprintf(stderr, " -v Verbose; display verbose debugging messages.\n");
677 fprintf(stderr, " -4 Use IPv4 only.\n");
678 fprintf(stderr, " -6 Use IPv6 only.\n");
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000679 exit(1);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000680}
681
682int
683main(int argc, char **argv)
684{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000685 int debug_flag = 0, log_level = SYSLOG_LEVEL_INFO;
686 int opt, fopt_count = 0;
687 char *tname;
688
689 extern int optind;
690 extern char *optarg;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000691
Kevin Stevesec84dc12000-12-13 17:45:15 +0000692 __progname = get_progname(argv[0]);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000693 TAILQ_INIT(&tq);
694
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000695 if (argc <= 1)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000696 usage();
697
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000698 while ((opt = getopt(argc, argv, "v46p:T:t:f:")) != -1) {
699 switch (opt) {
700 case 'p':
701 ssh_port = a2port(optarg);
702 if (ssh_port == 0) {
703 fprintf(stderr, "Bad port '%s'\n", optarg);
704 exit(1);
705 }
706 break;
707 case 'T':
708 timeout = atoi(optarg);
709 if (timeout <= 0)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000710 usage();
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000711 break;
712 case 'v':
713 if (!debug_flag) {
714 debug_flag = 1;
715 log_level = SYSLOG_LEVEL_DEBUG1;
716 }
717 else if (log_level < SYSLOG_LEVEL_DEBUG3)
718 log_level++;
719 else
720 fatal("Too high debugging level.");
721 break;
722 case 'f':
723 if (strcmp(optarg, "-") == 0)
724 optarg = NULL;
725 argv[fopt_count++] = optarg;
726 break;
727 case 't':
728 get_keytypes = 0;
729 tname = strtok(optarg, ",");
730 while (tname) {
731 int type = key_type_from_name(tname);
732 switch (type) {
733 case KEY_RSA1:
734 get_keytypes |= KT_RSA1;
735 break;
736 case KEY_DSA:
737 get_keytypes |= KT_DSA;
738 break;
739 case KEY_RSA:
740 get_keytypes |= KT_RSA;
741 break;
742 case KEY_UNSPEC:
743 fatal("unknown key type %s\n", tname);
744 }
745 tname = strtok(NULL, ",");
746 }
747 break;
748 case '4':
749 IPv4or6 = AF_INET;
750 break;
751 case '6':
752 IPv4or6 = AF_INET6;
753 break;
754 case '?':
755 default:
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000756 usage();
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000757 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000758 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000759 if (optind == argc && !fopt_count)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000760 usage();
761
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000762 log_init("ssh-keyscan", log_level, SYSLOG_FACILITY_USER, 1);
763 fatal_add_cleanup(fatal_callback, NULL);
764
765
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000766 maxfd = fdlim_get(1);
767 if (maxfd < 0)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000768 fatal("%s: fdlim_get: bad value", __progname);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000769 if (maxfd > MAXMAXFD)
770 maxfd = MAXMAXFD;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000771 if (MAXCON <= 0)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000772 fatal("%s: not enough file descriptors", __progname);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000773 if (maxfd > fdlim_get(0))
774 fdlim_set(maxfd);
775 fdcon = xmalloc(maxfd * sizeof(con));
Ben Lindstromc791beb2001-02-10 23:18:11 +0000776 memset(fdcon, 0, maxfd * sizeof(con));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000777
Ben Lindstromc1e04212001-03-05 07:04:38 +0000778 read_wait_size = howmany(maxfd, NFDBITS) * sizeof(fd_mask);
779 read_wait = xmalloc(read_wait_size);
780 memset(read_wait, 0, read_wait_size);
781
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000782 if (fopt_count) {
783 Linebuf *lb;
784 char *line;
785 int j;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000786
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000787 for (j = 0; j < fopt_count; j++) {
788 lb = Linebuf_alloc(argv[j], error);
789 while ((line = Linebuf_getline(lb)) != NULL)
790 do_host(line);
791 Linebuf_free(lb);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000792 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000793 }
794
795 while (optind < argc)
796 do_host(argv[optind++]);
797
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000798 while (ncon > 0)
799 conloop();
800
801 return (0);
802}