]> andersk Git - openssh.git/blame - ssh-keyscan.c
- markus@cvs.openbsd.org 2003/02/12 21:39:50
[openssh.git] / ssh-keyscan.c
CommitLineData
f6fdbddf 1/*
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
aa144206 6 * OpenBSD project by leaving this copyright notice intact.
f6fdbddf 7 */
8
9#include "includes.h"
12a3f2c3 10RCSID("$OpenBSD: ssh-keyscan.c,v 1.40 2002/07/06 17:47:58 stevesk Exp $");
f6fdbddf 11
9fd2a215 12#include "openbsd-compat/sys-queue.h"
f6fdbddf 13
14#include <openssl/bn.h>
f6fdbddf 15
5061072f 16#include <setjmp.h>
f6fdbddf 17#include "xmalloc.h"
18#include "ssh.h"
42f11eb2 19#include "ssh1.h"
f6fdbddf 20#include "key.h"
5061072f 21#include "kex.h"
22#include "compat.h"
23#include "myproposal.h"
24#include "packet.h"
25#include "dispatch.h"
f6fdbddf 26#include "buffer.h"
27#include "bufaux.h"
42f11eb2 28#include "log.h"
2671b47f 29#include "atomicio.h"
5061072f 30#include "misc.h"
f6fdbddf 31
5061072f 32/* 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. */
20716479 34#ifdef IPV4_DEFAULT
35int IPv4or6 = AF_INET;
36#else
5061072f 37int IPv4or6 = AF_UNSPEC;
20716479 38#endif
f6fdbddf 39
5061072f 40int ssh_port = SSH_DEFAULT_PORT;
a204806b 41
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 */
f6fdbddf 47
f6fdbddf 48#define MAXMAXFD 256
49
50/* The number of seconds after which to give up on a TCP connection */
51int timeout = 5;
52
53int maxfd;
2671b47f 54#define MAXCON (maxfd - 10)
f6fdbddf 55
1fe6a48f 56#ifdef HAVE___PROGNAME
57extern char *__progname;
58#else
59char *__progname;
60#endif
ff7fee59 61fd_set *read_wait;
62size_t read_wait_size;
f6fdbddf 63int ncon;
5061072f 64int nonfatal_fatal = 0;
65jmp_buf kexjmp;
4278ff63 66Key *kexjmp_key;
f6fdbddf 67
68/*
69 * Keep a connection structure for each file descriptor. The state
70 * associated with file descriptor n is held in fdcon[n].
71 */
72typedef struct Connection {
1e3b8b07 73 u_char c_status; /* State of connection on this file desc. */
f6fdbddf 74#define CS_UNUSED 0 /* File descriptor unused */
75#define CS_CON 1 /* Waiting to connect/read greeting */
76#define CS_SIZE 2 /* Waiting to read initial packet size */
77#define CS_KEYS 3 /* Waiting to read public key packet */
78 int c_fd; /* Quick lookup: c->c_fd == c - fdcon */
79 int c_plen; /* Packet length field for ssh packet */
80 int c_len; /* Total bytes which must be read. */
81 int c_off; /* Length of data read so far. */
5061072f 82 int c_keytype; /* Only one of KT_RSA1, KT_DSA, or KT_RSA */
f6fdbddf 83 char *c_namebase; /* Address to free for c_name and c_namelist */
84 char *c_name; /* Hostname of connection for errors */
85 char *c_namelist; /* Pointer to other possible addresses */
86 char *c_output_name; /* Hostname of connection for output */
87 char *c_data; /* Data read from this fd */
5061072f 88 Kex *c_kex; /* The key-exchange struct for ssh2 */
f6fdbddf 89 struct timeval c_tv; /* Time at which connection gets aborted */
90 TAILQ_ENTRY(Connection) c_link; /* List of connections in timeout order. */
91} con;
92
93TAILQ_HEAD(conlist, Connection) tq; /* Timeout Queue */
94con *fdcon;
95
96/*
97 * This is just a wrapper around fgets() to make it usable.
98 */
99
100/* Stress-test. Increase this later. */
101#define LINEBUF_SIZE 16
102
103typedef struct {
104 char *buf;
1e3b8b07 105 u_int size;
f6fdbddf 106 int lineno;
107 const char *filename;
108 FILE *stream;
109 void (*errfun) (const char *,...);
110} Linebuf;
111
396c147e 112static Linebuf *
f6fdbddf 113Linebuf_alloc(const char *filename, void (*errfun) (const char *,...))
114{
115 Linebuf *lb;
116
117 if (!(lb = malloc(sizeof(*lb)))) {
118 if (errfun)
f11fe301 119 (*errfun) ("linebuf (%s): malloc failed\n",
120 filename ? filename : "(stdin)");
f6fdbddf 121 return (NULL);
122 }
123 if (filename) {
124 lb->filename = filename;
125 if (!(lb->stream = fopen(filename, "r"))) {
b5c334cc 126 xfree(lb);
f6fdbddf 127 if (errfun)
128 (*errfun) ("%s: %s\n", filename, strerror(errno));
129 return (NULL);
130 }
131 } else {
132 lb->filename = "(stdin)";
133 lb->stream = stdin;
134 }
135
136 if (!(lb->buf = malloc(lb->size = LINEBUF_SIZE))) {
137 if (errfun)
138 (*errfun) ("linebuf (%s): malloc failed\n", lb->filename);
b5c334cc 139 xfree(lb);
f6fdbddf 140 return (NULL);
141 }
142 lb->errfun = errfun;
143 lb->lineno = 0;
144 return (lb);
145}
146
396c147e 147static void
f6fdbddf 148Linebuf_free(Linebuf * lb)
149{
150 fclose(lb->stream);
b5c334cc 151 xfree(lb->buf);
152 xfree(lb);
f6fdbddf 153}
154
396c147e 155#if 0
156static void
f6fdbddf 157Linebuf_restart(Linebuf * lb)
158{
159 clearerr(lb->stream);
160 rewind(lb->stream);
161 lb->lineno = 0;
162}
163
396c147e 164static int
f6fdbddf 165Linebuf_lineno(Linebuf * lb)
166{
167 return (lb->lineno);
168}
396c147e 169#endif
f6fdbddf 170
396c147e 171static char *
5be2ec5e 172Linebuf_getline(Linebuf * lb)
f6fdbddf 173{
174 int n = 0;
50d2fbbc 175 void *p;
f6fdbddf 176
177 lb->lineno++;
178 for (;;) {
179 /* Read a line */
180 if (!fgets(&lb->buf[n], lb->size - n, lb->stream)) {
181 if (ferror(lb->stream) && lb->errfun)
50d2fbbc 182 (*lb->errfun)("%s: %s\n", lb->filename,
778f6940 183 strerror(errno));
f6fdbddf 184 return (NULL);
185 }
186 n = strlen(lb->buf);
187
188 /* Return it or an error if it fits */
189 if (n > 0 && lb->buf[n - 1] == '\n') {
190 lb->buf[n - 1] = '\0';
191 return (lb->buf);
192 }
193 if (n != lb->size - 1) {
194 if (lb->errfun)
50d2fbbc 195 (*lb->errfun)("%s: skipping incomplete last line\n",
778f6940 196 lb->filename);
f6fdbddf 197 return (NULL);
198 }
199 /* Double the buffer if we need more space */
50d2fbbc 200 lb->size *= 2;
201 if ((p = realloc(lb->buf, lb->size)) == NULL) {
202 lb->size /= 2;
f6fdbddf 203 if (lb->errfun)
50d2fbbc 204 (*lb->errfun)("linebuf (%s): realloc failed\n",
778f6940 205 lb->filename);
f6fdbddf 206 return (NULL);
207 }
50d2fbbc 208 lb->buf = p;
f6fdbddf 209 }
210}
211
396c147e 212static int
f6fdbddf 213fdlim_get(int hard)
214{
f318b98b 215#if defined(HAVE_GETRLIMIT) && defined(RLIMIT_NOFILE)
f6fdbddf 216 struct rlimit rlfd;
778f6940 217
f6fdbddf 218 if (getrlimit(RLIMIT_NOFILE, &rlfd) < 0)
219 return (-1);
220 if ((hard ? rlfd.rlim_max : rlfd.rlim_cur) == RLIM_INFINITY)
221 return 10000;
222 else
223 return hard ? rlfd.rlim_max : rlfd.rlim_cur;
b03bd394 224#elif defined (HAVE_SYSCONF)
225 return sysconf (_SC_OPEN_MAX);
226#else
227 return 10000;
228#endif
f6fdbddf 229}
230
396c147e 231static int
f6fdbddf 232fdlim_set(int lim)
233{
f318b98b 234#if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
f6fdbddf 235 struct rlimit rlfd;
b03bd394 236#endif
41545cb6 237
f6fdbddf 238 if (lim <= 0)
239 return (-1);
f318b98b 240#if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
f6fdbddf 241 if (getrlimit(RLIMIT_NOFILE, &rlfd) < 0)
242 return (-1);
243 rlfd.rlim_cur = lim;
244 if (setrlimit(RLIMIT_NOFILE, &rlfd) < 0)
245 return (-1);
b03bd394 246#elif defined (HAVE_SETDTABLESIZE)
b705bea0 247 setdtablesize(lim);
b03bd394 248#endif
f6fdbddf 249 return (0);
250}
251
252/*
253 * This is an strsep function that returns a null field for adjacent
254 * separators. This is the same as the 4.4BSD strsep, but different from the
255 * one in the GNU libc.
256 */
396c147e 257static char *
f6fdbddf 258xstrsep(char **str, const char *delim)
259{
260 char *s, *e;
261
262 if (!**str)
263 return (NULL);
264
265 s = *str;
266 e = s + strcspn(s, delim);
267
268 if (*e != '\0')
269 *e++ = '\0';
270 *str = e;
271
272 return (s);
273}
274
275/*
276 * Get the next non-null token (like GNU strsep). Strsep() will return a
277 * null token for two adjacent separators, so we may have to loop.
278 */
396c147e 279static char *
f6fdbddf 280strnnsep(char **stringp, char *delim)
281{
282 char *tok;
283
284 do {
285 tok = xstrsep(stringp, delim);
286 } while (tok && *tok == '\0');
287 return (tok);
288}
289
5061072f 290static Key *
291keygrab_ssh1(con *c)
f6fdbddf 292{
293 static Key *rsa;
294 static Buffer msg;
295
296 if (rsa == NULL) {
297 buffer_init(&msg);
298 rsa = key_new(KEY_RSA1);
299 }
5061072f 300 buffer_append(&msg, c->c_data, c->c_plen);
301 buffer_consume(&msg, 8 - (c->c_plen & 7)); /* padding */
f6fdbddf 302 if (buffer_get_char(&msg) != (int) SSH_SMSG_PUBLIC_KEY) {
5061072f 303 error("%s: invalid packet type", c->c_name);
f6fdbddf 304 buffer_clear(&msg);
5061072f 305 return NULL;
f6fdbddf 306 }
307 buffer_consume(&msg, 8); /* cookie */
308
309 /* server key */
310 (void) buffer_get_int(&msg);
311 buffer_get_bignum(&msg, rsa->rsa->e);
312 buffer_get_bignum(&msg, rsa->rsa->n);
313
314 /* host key */
315 (void) buffer_get_int(&msg);
316 buffer_get_bignum(&msg, rsa->rsa->e);
317 buffer_get_bignum(&msg, rsa->rsa->n);
5061072f 318
f6fdbddf 319 buffer_clear(&msg);
320
5061072f 321 return (rsa);
322}
323
324static int
325hostjump(Key *hostkey)
326{
4278ff63 327 kexjmp_key = hostkey;
328 longjmp(kexjmp, 1);
5061072f 329}
330
331static int
332ssh2_capable(int remote_major, int remote_minor)
333{
334 switch (remote_major) {
335 case 1:
336 if (remote_minor == 99)
337 return 1;
338 break;
339 case 2:
340 return 1;
341 default:
342 break;
343 }
344 return 0;
345}
346
347static Key *
348keygrab_ssh2(con *c)
349{
350 int j;
351
352 packet_set_connection(c->c_fd, c->c_fd);
353 enable_compat20();
354 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = c->c_keytype == KT_DSA?
355 "ssh-dss": "ssh-rsa";
356 c->c_kex = kex_setup(myproposal);
357 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();
5061072f 369
4278ff63 370 return j < 0? NULL : kexjmp_key;
5061072f 371}
372
373static void
374keyprint(con *c, Key *key)
375{
376 if (!key)
377 return;
378
379 fprintf(stdout, "%s ", c->c_output_name ? c->c_output_name : c->c_name);
380 key_write(key, stdout);
f6fdbddf 381 fputs("\n", stdout);
382}
383
396c147e 384static int
f6fdbddf 385tcpconnect(char *host)
386{
387 struct addrinfo hints, *ai, *aitop;
388 char strport[NI_MAXSERV];
389 int gaierr, s = -1;
390
5061072f 391 snprintf(strport, sizeof strport, "%d", ssh_port);
f6fdbddf 392 memset(&hints, 0, sizeof(hints));
5061072f 393 hints.ai_family = IPv4or6;
f6fdbddf 394 hints.ai_socktype = SOCK_STREAM;
395 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
396 fatal("getaddrinfo %s: %s", host, gai_strerror(gaierr));
397 for (ai = aitop; ai; ai = ai->ai_next) {
398 s = socket(ai->ai_family, SOCK_STREAM, 0);
399 if (s < 0) {
400 error("socket: %s", strerror(errno));
401 continue;
402 }
eea39c02 403 if (fcntl(s, F_SETFL, O_NONBLOCK) < 0)
f6fdbddf 404 fatal("F_SETFL: %s", strerror(errno));
405 if (connect(s, ai->ai_addr, ai->ai_addrlen) < 0 &&
406 errno != EINPROGRESS)
407 error("connect (`%s'): %s", host, strerror(errno));
408 else
409 break;
410 close(s);
411 s = -1;
412 }
413 freeaddrinfo(aitop);
414 return s;
415}
416
396c147e 417static int
5061072f 418conalloc(char *iname, char *oname, int keytype)
f6fdbddf 419{
f6fdbddf 420 char *namebase, *name, *namelist;
50d2fbbc 421 int s;
f6fdbddf 422
423 namebase = namelist = xstrdup(iname);
424
425 do {
426 name = xstrsep(&namelist, ",");
427 if (!name) {
b5c334cc 428 xfree(namebase);
f6fdbddf 429 return (-1);
430 }
431 } while ((s = tcpconnect(name)) < 0);
432
433 if (s >= maxfd)
227e8e86 434 fatal("conalloc: fdno %d too high", s);
f6fdbddf 435 if (fdcon[s].c_status)
227e8e86 436 fatal("conalloc: attempt to reuse fdno %d", s);
f6fdbddf 437
438 fdcon[s].c_fd = s;
439 fdcon[s].c_status = CS_CON;
440 fdcon[s].c_namebase = namebase;
441 fdcon[s].c_name = name;
442 fdcon[s].c_namelist = namelist;
443 fdcon[s].c_output_name = xstrdup(oname);
444 fdcon[s].c_data = (char *) &fdcon[s].c_plen;
445 fdcon[s].c_len = 4;
446 fdcon[s].c_off = 0;
5061072f 447 fdcon[s].c_keytype = keytype;
f6fdbddf 448 gettimeofday(&fdcon[s].c_tv, NULL);
449 fdcon[s].c_tv.tv_sec += timeout;
450 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
ff7fee59 451 FD_SET(s, read_wait);
f6fdbddf 452 ncon++;
453 return (s);
454}
455
396c147e 456static void
f6fdbddf 457confree(int s)
458{
f6fdbddf 459 if (s >= maxfd || fdcon[s].c_status == CS_UNUSED)
227e8e86 460 fatal("confree: attempt to free bad fdno %d", s);
2671b47f 461 close(s);
b5c334cc 462 xfree(fdcon[s].c_namebase);
463 xfree(fdcon[s].c_output_name);
f6fdbddf 464 if (fdcon[s].c_status == CS_KEYS)
b5c334cc 465 xfree(fdcon[s].c_data);
f6fdbddf 466 fdcon[s].c_status = CS_UNUSED;
5061072f 467 fdcon[s].c_keytype = 0;
f6fdbddf 468 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
ff7fee59 469 FD_CLR(s, read_wait);
f6fdbddf 470 ncon--;
471}
472
396c147e 473static void
f6fdbddf 474contouch(int s)
475{
476 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
477 gettimeofday(&fdcon[s].c_tv, NULL);
478 fdcon[s].c_tv.tv_sec += timeout;
479 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
480}
481
396c147e 482static int
f6fdbddf 483conrecycle(int s)
484{
f6fdbddf 485 con *c = &fdcon[s];
50d2fbbc 486 int ret;
f6fdbddf 487
5061072f 488 ret = conalloc(c->c_namelist, c->c_output_name, c->c_keytype);
f6fdbddf 489 confree(s);
f6fdbddf 490 return (ret);
491}
492
396c147e 493static void
f6fdbddf 494congreet(int s)
495{
50d2fbbc 496 int remote_major, remote_minor, n = 0;
5061072f 497 char buf[256], *cp;
cdc95d6e 498 char remote_version[sizeof buf];
c16c7f20 499 size_t bufsiz;
f6fdbddf 500 con *c = &fdcon[s];
501
c16c7f20 502 bufsiz = sizeof(buf);
503 cp = buf;
578954b1 504 while (bufsiz-- && (n = read(s, cp, 1)) == 1 && *cp != '\n') {
505 if (*cp == '\r')
506 *cp = '\n';
c16c7f20 507 cp++;
578954b1 508 }
f6fdbddf 509 if (n < 0) {
510 if (errno != ECONNREFUSED)
511 error("read (%s): %s", c->c_name, strerror(errno));
512 conrecycle(s);
513 return;
514 }
27452401 515 if (n == 0) {
516 error("%s: Connection closed by remote host", c->c_name);
517 conrecycle(s);
518 return;
519 }
c16c7f20 520 if (*cp != '\n' && *cp != '\r') {
f6fdbddf 521 error("%s: bad greeting", c->c_name);
522 confree(s);
523 return;
524 }
c16c7f20 525 *cp = '\0';
cdc95d6e 526 if (sscanf(buf, "SSH-%d.%d-%[^\n]\n",
527 &remote_major, &remote_minor, remote_version) == 3)
528 compat_datafellows(remote_version);
529 else
530 datafellows = 0;
5061072f 531 if (c->c_keytype != KT_RSA1) {
5061072f 532 if (!ssh2_capable(remote_major, remote_minor)) {
533 debug("%s doesn't support ssh2", c->c_name);
534 confree(s);
535 return;
536 }
cdc95d6e 537 } else if (remote_major != 1) {
538 debug("%s doesn't support ssh1", c->c_name);
539 confree(s);
540 return;
5061072f 541 }
578954b1 542 fprintf(stderr, "# %s %s\n", c->c_name, chop(buf));
5061072f 543 n = snprintf(buf, sizeof buf, "SSH-%d.%d-OpenSSH-keyscan\r\n",
544 c->c_keytype == KT_RSA1? PROTOCOL_MAJOR_1 : PROTOCOL_MAJOR_2,
545 c->c_keytype == KT_RSA1? PROTOCOL_MINOR_1 : PROTOCOL_MINOR_2);
2671b47f 546 if (atomicio(write, s, buf, n) != n) {
f6fdbddf 547 error("write (%s): %s", c->c_name, strerror(errno));
548 confree(s);
549 return;
550 }
5061072f 551 if (c->c_keytype != KT_RSA1) {
552 keyprint(c, keygrab_ssh2(c));
553 confree(s);
554 return;
555 }
f6fdbddf 556 c->c_status = CS_SIZE;
557 contouch(s);
558}
559
396c147e 560static void
f6fdbddf 561conread(int s)
562{
f6fdbddf 563 con *c = &fdcon[s];
50d2fbbc 564 int n;
f6fdbddf 565
566 if (c->c_status == CS_CON) {
567 congreet(s);
568 return;
569 }
570 n = read(s, c->c_data + c->c_off, c->c_len - c->c_off);
571 if (n < 0) {
572 error("read (%s): %s", c->c_name, strerror(errno));
573 confree(s);
574 return;
575 }
576 c->c_off += n;
577
578 if (c->c_off == c->c_len)
579 switch (c->c_status) {
580 case CS_SIZE:
581 c->c_plen = htonl(c->c_plen);
582 c->c_len = c->c_plen + 8 - (c->c_plen & 7);
583 c->c_off = 0;
584 c->c_data = xmalloc(c->c_len);
585 c->c_status = CS_KEYS;
586 break;
587 case CS_KEYS:
5061072f 588 keyprint(c, keygrab_ssh1(c));
f6fdbddf 589 confree(s);
590 return;
591 break;
592 default:
227e8e86 593 fatal("conread: invalid status %d", c->c_status);
f6fdbddf 594 break;
595 }
596
597 contouch(s);
598}
599
396c147e 600static void
f6fdbddf 601conloop(void)
602{
f6fdbddf 603 struct timeval seltime, now;
50d2fbbc 604 fd_set *r, *e;
f6fdbddf 605 con *c;
50d2fbbc 606 int i;
f6fdbddf 607
608 gettimeofday(&now, NULL);
48ba8dc8 609 c = TAILQ_FIRST(&tq);
f6fdbddf 610
2671b47f 611 if (c && (c->c_tv.tv_sec > now.tv_sec ||
612 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec > now.tv_usec))) {
f6fdbddf 613 seltime = c->c_tv;
614 seltime.tv_sec -= now.tv_sec;
615 seltime.tv_usec -= now.tv_usec;
5be2ec5e 616 if (seltime.tv_usec < 0) {
f6fdbddf 617 seltime.tv_usec += 1000000;
618 seltime.tv_sec--;
619 }
620 } else
621 seltime.tv_sec = seltime.tv_usec = 0;
622
ff7fee59 623 r = xmalloc(read_wait_size);
624 memcpy(r, read_wait, read_wait_size);
625 e = xmalloc(read_wait_size);
626 memcpy(e, read_wait, read_wait_size);
627
628 while (select(maxfd, r, NULL, e, &seltime) == -1 &&
fd193ca4 629 (errno == EAGAIN || errno == EINTR))
630 ;
631
2671b47f 632 for (i = 0; i < maxfd; i++) {
ff7fee59 633 if (FD_ISSET(i, e)) {
f6fdbddf 634 error("%s: exception!", fdcon[i].c_name);
635 confree(i);
ff7fee59 636 } else if (FD_ISSET(i, r))
f6fdbddf 637 conread(i);
2671b47f 638 }
ff7fee59 639 xfree(r);
640 xfree(e);
f6fdbddf 641
48ba8dc8 642 c = TAILQ_FIRST(&tq);
2671b47f 643 while (c && (c->c_tv.tv_sec < now.tv_sec ||
644 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec < now.tv_usec))) {
f6fdbddf 645 int s = c->c_fd;
2671b47f 646
48ba8dc8 647 c = TAILQ_NEXT(c, c_link);
f6fdbddf 648 conrecycle(s);
649 }
650}
651
5061072f 652static void
653do_host(char *host)
f6fdbddf 654{
5061072f 655 char *name = strnnsep(&host, " \t\n");
656 int j;
657
0408c978 658 if (name == NULL)
659 return;
5061072f 660 for (j = KT_RSA1; j <= KT_RSA; j *= 2) {
661 if (get_keytypes & j) {
662 while (ncon >= MAXCON)
663 conloop();
664 conalloc(name, *host ? host : name, j);
f6fdbddf 665 }
666 }
667}
668
2bae80e9 669void
670fatal(const char *fmt,...)
5061072f 671{
2bae80e9 672 va_list args;
50d2fbbc 673
2bae80e9 674 va_start(args, fmt);
675 do_log(SYSLOG_LEVEL_FATAL, fmt, args);
676 va_end(args);
5061072f 677 if (nonfatal_fatal)
678 longjmp(kexjmp, -1);
2bae80e9 679 else
680 fatal_cleanup();
5061072f 681}
682
396c147e 683static void
f6fdbddf 684usage(void)
685{
50d2fbbc 686 fprintf(stderr, "usage: %s [-v46] [-p port] [-T timeout] [-f file]\n"
687 "\t\t [host | addrlist namelist] [...]\n",
33e766d2 688 __progname);
33e766d2 689 exit(1);
f6fdbddf 690}
691
692int
693main(int argc, char **argv)
694{
5061072f 695 int debug_flag = 0, log_level = SYSLOG_LEVEL_INFO;
696 int opt, fopt_count = 0;
697 char *tname;
a204806b 698
5061072f 699 extern int optind;
700 extern char *optarg;
f6fdbddf 701
1fe6a48f 702 __progname = get_progname(argv[0]);
8782141f 703 init_rng();
704 seed_rng();
f6fdbddf 705 TAILQ_INIT(&tq);
706
5061072f 707 if (argc <= 1)
f6fdbddf 708 usage();
709
5061072f 710 while ((opt = getopt(argc, argv, "v46p:T:t:f:")) != -1) {
711 switch (opt) {
712 case 'p':
713 ssh_port = a2port(optarg);
714 if (ssh_port == 0) {
715 fprintf(stderr, "Bad port '%s'\n", optarg);
716 exit(1);
717 }
718 break;
719 case 'T':
c8f94200 720 timeout = convtime(optarg);
721 if (timeout == -1 || timeout == 0) {
722 fprintf(stderr, "Bad timeout '%s'\n", optarg);
f6fdbddf 723 usage();
c8f94200 724 }
5061072f 725 break;
726 case 'v':
727 if (!debug_flag) {
728 debug_flag = 1;
729 log_level = SYSLOG_LEVEL_DEBUG1;
730 }
731 else if (log_level < SYSLOG_LEVEL_DEBUG3)
732 log_level++;
733 else
734 fatal("Too high debugging level.");
735 break;
a204806b 736 case 'f':
5061072f 737 if (strcmp(optarg, "-") == 0)
738 optarg = NULL;
739 argv[fopt_count++] = optarg;
740 break;
741 case 't':
742 get_keytypes = 0;
743 tname = strtok(optarg, ",");
744 while (tname) {
745 int type = key_type_from_name(tname);
746 switch (type) {
747 case KEY_RSA1:
748 get_keytypes |= KT_RSA1;
749 break;
750 case KEY_DSA:
751 get_keytypes |= KT_DSA;
752 break;
753 case KEY_RSA:
754 get_keytypes |= KT_RSA;
755 break;
756 case KEY_UNSPEC:
f48e63c8 757 fatal("unknown key type %s", tname);
5061072f 758 }
759 tname = strtok(NULL, ",");
760 }
761 break;
762 case '4':
763 IPv4or6 = AF_INET;
764 break;
765 case '6':
766 IPv4or6 = AF_INET6;
767 break;
768 case '?':
769 default:
f6fdbddf 770 usage();
5061072f 771 }
f6fdbddf 772 }
5061072f 773 if (optind == argc && !fopt_count)
f6fdbddf 774 usage();
775
5061072f 776 log_init("ssh-keyscan", log_level, SYSLOG_FACILITY_USER, 1);
5061072f 777
f6fdbddf 778 maxfd = fdlim_get(1);
779 if (maxfd < 0)
227e8e86 780 fatal("%s: fdlim_get: bad value", __progname);
f6fdbddf 781 if (maxfd > MAXMAXFD)
782 maxfd = MAXMAXFD;
2671b47f 783 if (MAXCON <= 0)
227e8e86 784 fatal("%s: not enough file descriptors", __progname);
f6fdbddf 785 if (maxfd > fdlim_get(0))
786 fdlim_set(maxfd);
787 fdcon = xmalloc(maxfd * sizeof(con));
5be2ec5e 788 memset(fdcon, 0, maxfd * sizeof(con));
f6fdbddf 789
ff7fee59 790 read_wait_size = howmany(maxfd, NFDBITS) * sizeof(fd_mask);
791 read_wait = xmalloc(read_wait_size);
792 memset(read_wait, 0, read_wait_size);
793
5061072f 794 if (fopt_count) {
795 Linebuf *lb;
796 char *line;
797 int j;
798
799 for (j = 0; j < fopt_count; j++) {
800 lb = Linebuf_alloc(argv[j], error);
b7f79e7a 801 if (!lb)
802 continue;
5061072f 803 while ((line = Linebuf_getline(lb)) != NULL)
804 do_host(line);
805 Linebuf_free(lb);
f6fdbddf 806 }
5061072f 807 }
808
809 while (optind < argc)
810 do_host(argv[optind++]);
811
f6fdbddf 812 while (ncon > 0)
813 conloop();
814
815 return (0);
816}
This page took 0.371521 seconds and 5 git commands to generate.