]> andersk Git - openssh.git/blame - ssh-keyscan.c
- markus@cvs.openbsd.org 2003/04/16 14:35:27
[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"
3e131a6d 10RCSID("$OpenBSD: ssh-keyscan.c,v 1.42 2003/04/14 14:17:50 markus 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);
98a58eda 357 c->c_kex->kex[KEX_DH_GRP1_SHA1] = kexdh_client;
358 c->c_kex->kex[KEX_DH_GEX_SHA1] = kexgex_client;
5061072f 359 c->c_kex->verify_host_key = hostjump;
360
361 if (!(j = setjmp(kexjmp))) {
362 nonfatal_fatal = 1;
363 dispatch_run(DISPATCH_BLOCK, &c->c_kex->done, c->c_kex);
364 fprintf(stderr, "Impossible! dispatch_run() returned!\n");
365 exit(1);
366 }
367 nonfatal_fatal = 0;
368 xfree(c->c_kex);
369 c->c_kex = NULL;
370 packet_close();
5061072f 371
4278ff63 372 return j < 0? NULL : kexjmp_key;
5061072f 373}
374
375static void
376keyprint(con *c, Key *key)
377{
378 if (!key)
379 return;
380
381 fprintf(stdout, "%s ", c->c_output_name ? c->c_output_name : c->c_name);
382 key_write(key, stdout);
f6fdbddf 383 fputs("\n", stdout);
384}
385
396c147e 386static int
f6fdbddf 387tcpconnect(char *host)
388{
389 struct addrinfo hints, *ai, *aitop;
390 char strport[NI_MAXSERV];
391 int gaierr, s = -1;
392
5061072f 393 snprintf(strport, sizeof strport, "%d", ssh_port);
f6fdbddf 394 memset(&hints, 0, sizeof(hints));
5061072f 395 hints.ai_family = IPv4or6;
f6fdbddf 396 hints.ai_socktype = SOCK_STREAM;
397 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
398 fatal("getaddrinfo %s: %s", host, gai_strerror(gaierr));
399 for (ai = aitop; ai; ai = ai->ai_next) {
3e131a6d 400 s = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
f6fdbddf 401 if (s < 0) {
402 error("socket: %s", strerror(errno));
403 continue;
404 }
eea39c02 405 if (fcntl(s, F_SETFL, O_NONBLOCK) < 0)
f6fdbddf 406 fatal("F_SETFL: %s", strerror(errno));
407 if (connect(s, ai->ai_addr, ai->ai_addrlen) < 0 &&
408 errno != EINPROGRESS)
409 error("connect (`%s'): %s", host, strerror(errno));
410 else
411 break;
412 close(s);
413 s = -1;
414 }
415 freeaddrinfo(aitop);
416 return s;
417}
418
396c147e 419static int
5061072f 420conalloc(char *iname, char *oname, int keytype)
f6fdbddf 421{
f6fdbddf 422 char *namebase, *name, *namelist;
50d2fbbc 423 int s;
f6fdbddf 424
425 namebase = namelist = xstrdup(iname);
426
427 do {
428 name = xstrsep(&namelist, ",");
429 if (!name) {
b5c334cc 430 xfree(namebase);
f6fdbddf 431 return (-1);
432 }
433 } while ((s = tcpconnect(name)) < 0);
434
435 if (s >= maxfd)
227e8e86 436 fatal("conalloc: fdno %d too high", s);
f6fdbddf 437 if (fdcon[s].c_status)
227e8e86 438 fatal("conalloc: attempt to reuse fdno %d", s);
f6fdbddf 439
440 fdcon[s].c_fd = s;
441 fdcon[s].c_status = CS_CON;
442 fdcon[s].c_namebase = namebase;
443 fdcon[s].c_name = name;
444 fdcon[s].c_namelist = namelist;
445 fdcon[s].c_output_name = xstrdup(oname);
446 fdcon[s].c_data = (char *) &fdcon[s].c_plen;
447 fdcon[s].c_len = 4;
448 fdcon[s].c_off = 0;
5061072f 449 fdcon[s].c_keytype = keytype;
f6fdbddf 450 gettimeofday(&fdcon[s].c_tv, NULL);
451 fdcon[s].c_tv.tv_sec += timeout;
452 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
ff7fee59 453 FD_SET(s, read_wait);
f6fdbddf 454 ncon++;
455 return (s);
456}
457
396c147e 458static void
f6fdbddf 459confree(int s)
460{
f6fdbddf 461 if (s >= maxfd || fdcon[s].c_status == CS_UNUSED)
227e8e86 462 fatal("confree: attempt to free bad fdno %d", s);
2671b47f 463 close(s);
b5c334cc 464 xfree(fdcon[s].c_namebase);
465 xfree(fdcon[s].c_output_name);
f6fdbddf 466 if (fdcon[s].c_status == CS_KEYS)
b5c334cc 467 xfree(fdcon[s].c_data);
f6fdbddf 468 fdcon[s].c_status = CS_UNUSED;
5061072f 469 fdcon[s].c_keytype = 0;
f6fdbddf 470 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
ff7fee59 471 FD_CLR(s, read_wait);
f6fdbddf 472 ncon--;
473}
474
396c147e 475static void
f6fdbddf 476contouch(int s)
477{
478 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
479 gettimeofday(&fdcon[s].c_tv, NULL);
480 fdcon[s].c_tv.tv_sec += timeout;
481 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
482}
483
396c147e 484static int
f6fdbddf 485conrecycle(int s)
486{
f6fdbddf 487 con *c = &fdcon[s];
50d2fbbc 488 int ret;
f6fdbddf 489
5061072f 490 ret = conalloc(c->c_namelist, c->c_output_name, c->c_keytype);
f6fdbddf 491 confree(s);
f6fdbddf 492 return (ret);
493}
494
396c147e 495static void
f6fdbddf 496congreet(int s)
497{
50d2fbbc 498 int remote_major, remote_minor, n = 0;
5061072f 499 char buf[256], *cp;
cdc95d6e 500 char remote_version[sizeof buf];
c16c7f20 501 size_t bufsiz;
f6fdbddf 502 con *c = &fdcon[s];
503
c16c7f20 504 bufsiz = sizeof(buf);
505 cp = buf;
578954b1 506 while (bufsiz-- && (n = read(s, cp, 1)) == 1 && *cp != '\n') {
507 if (*cp == '\r')
508 *cp = '\n';
c16c7f20 509 cp++;
578954b1 510 }
f6fdbddf 511 if (n < 0) {
512 if (errno != ECONNREFUSED)
513 error("read (%s): %s", c->c_name, strerror(errno));
514 conrecycle(s);
515 return;
516 }
27452401 517 if (n == 0) {
518 error("%s: Connection closed by remote host", c->c_name);
519 conrecycle(s);
520 return;
521 }
c16c7f20 522 if (*cp != '\n' && *cp != '\r') {
f6fdbddf 523 error("%s: bad greeting", c->c_name);
524 confree(s);
525 return;
526 }
c16c7f20 527 *cp = '\0';
cdc95d6e 528 if (sscanf(buf, "SSH-%d.%d-%[^\n]\n",
529 &remote_major, &remote_minor, remote_version) == 3)
530 compat_datafellows(remote_version);
531 else
532 datafellows = 0;
5061072f 533 if (c->c_keytype != KT_RSA1) {
5061072f 534 if (!ssh2_capable(remote_major, remote_minor)) {
535 debug("%s doesn't support ssh2", c->c_name);
536 confree(s);
537 return;
538 }
cdc95d6e 539 } else if (remote_major != 1) {
540 debug("%s doesn't support ssh1", c->c_name);
541 confree(s);
542 return;
5061072f 543 }
578954b1 544 fprintf(stderr, "# %s %s\n", c->c_name, chop(buf));
5061072f 545 n = snprintf(buf, sizeof buf, "SSH-%d.%d-OpenSSH-keyscan\r\n",
546 c->c_keytype == KT_RSA1? PROTOCOL_MAJOR_1 : PROTOCOL_MAJOR_2,
547 c->c_keytype == KT_RSA1? PROTOCOL_MINOR_1 : PROTOCOL_MINOR_2);
2671b47f 548 if (atomicio(write, s, buf, n) != n) {
f6fdbddf 549 error("write (%s): %s", c->c_name, strerror(errno));
550 confree(s);
551 return;
552 }
5061072f 553 if (c->c_keytype != KT_RSA1) {
554 keyprint(c, keygrab_ssh2(c));
555 confree(s);
556 return;
557 }
f6fdbddf 558 c->c_status = CS_SIZE;
559 contouch(s);
560}
561
396c147e 562static void
f6fdbddf 563conread(int s)
564{
f6fdbddf 565 con *c = &fdcon[s];
50d2fbbc 566 int n;
f6fdbddf 567
568 if (c->c_status == CS_CON) {
569 congreet(s);
570 return;
571 }
572 n = read(s, c->c_data + c->c_off, c->c_len - c->c_off);
573 if (n < 0) {
574 error("read (%s): %s", c->c_name, strerror(errno));
575 confree(s);
576 return;
577 }
578 c->c_off += n;
579
580 if (c->c_off == c->c_len)
581 switch (c->c_status) {
582 case CS_SIZE:
583 c->c_plen = htonl(c->c_plen);
584 c->c_len = c->c_plen + 8 - (c->c_plen & 7);
585 c->c_off = 0;
586 c->c_data = xmalloc(c->c_len);
587 c->c_status = CS_KEYS;
588 break;
589 case CS_KEYS:
5061072f 590 keyprint(c, keygrab_ssh1(c));
f6fdbddf 591 confree(s);
592 return;
593 break;
594 default:
227e8e86 595 fatal("conread: invalid status %d", c->c_status);
f6fdbddf 596 break;
597 }
598
599 contouch(s);
600}
601
396c147e 602static void
f6fdbddf 603conloop(void)
604{
f6fdbddf 605 struct timeval seltime, now;
50d2fbbc 606 fd_set *r, *e;
f6fdbddf 607 con *c;
50d2fbbc 608 int i;
f6fdbddf 609
610 gettimeofday(&now, NULL);
48ba8dc8 611 c = TAILQ_FIRST(&tq);
f6fdbddf 612
2671b47f 613 if (c && (c->c_tv.tv_sec > now.tv_sec ||
614 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec > now.tv_usec))) {
f6fdbddf 615 seltime = c->c_tv;
616 seltime.tv_sec -= now.tv_sec;
617 seltime.tv_usec -= now.tv_usec;
5be2ec5e 618 if (seltime.tv_usec < 0) {
f6fdbddf 619 seltime.tv_usec += 1000000;
620 seltime.tv_sec--;
621 }
622 } else
623 seltime.tv_sec = seltime.tv_usec = 0;
624
ff7fee59 625 r = xmalloc(read_wait_size);
626 memcpy(r, read_wait, read_wait_size);
627 e = xmalloc(read_wait_size);
628 memcpy(e, read_wait, read_wait_size);
629
630 while (select(maxfd, r, NULL, e, &seltime) == -1 &&
fd193ca4 631 (errno == EAGAIN || errno == EINTR))
632 ;
633
2671b47f 634 for (i = 0; i < maxfd; i++) {
ff7fee59 635 if (FD_ISSET(i, e)) {
f6fdbddf 636 error("%s: exception!", fdcon[i].c_name);
637 confree(i);
ff7fee59 638 } else if (FD_ISSET(i, r))
f6fdbddf 639 conread(i);
2671b47f 640 }
ff7fee59 641 xfree(r);
642 xfree(e);
f6fdbddf 643
48ba8dc8 644 c = TAILQ_FIRST(&tq);
2671b47f 645 while (c && (c->c_tv.tv_sec < now.tv_sec ||
646 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec < now.tv_usec))) {
f6fdbddf 647 int s = c->c_fd;
2671b47f 648
48ba8dc8 649 c = TAILQ_NEXT(c, c_link);
f6fdbddf 650 conrecycle(s);
651 }
652}
653
5061072f 654static void
655do_host(char *host)
f6fdbddf 656{
5061072f 657 char *name = strnnsep(&host, " \t\n");
658 int j;
659
0408c978 660 if (name == NULL)
661 return;
5061072f 662 for (j = KT_RSA1; j <= KT_RSA; j *= 2) {
663 if (get_keytypes & j) {
664 while (ncon >= MAXCON)
665 conloop();
666 conalloc(name, *host ? host : name, j);
f6fdbddf 667 }
668 }
669}
670
2bae80e9 671void
672fatal(const char *fmt,...)
5061072f 673{
2bae80e9 674 va_list args;
50d2fbbc 675
2bae80e9 676 va_start(args, fmt);
677 do_log(SYSLOG_LEVEL_FATAL, fmt, args);
678 va_end(args);
5061072f 679 if (nonfatal_fatal)
680 longjmp(kexjmp, -1);
2bae80e9 681 else
682 fatal_cleanup();
5061072f 683}
684
396c147e 685static void
f6fdbddf 686usage(void)
687{
50d2fbbc 688 fprintf(stderr, "usage: %s [-v46] [-p port] [-T timeout] [-f file]\n"
689 "\t\t [host | addrlist namelist] [...]\n",
33e766d2 690 __progname);
33e766d2 691 exit(1);
f6fdbddf 692}
693
694int
695main(int argc, char **argv)
696{
5061072f 697 int debug_flag = 0, log_level = SYSLOG_LEVEL_INFO;
698 int opt, fopt_count = 0;
699 char *tname;
a204806b 700
5061072f 701 extern int optind;
702 extern char *optarg;
f6fdbddf 703
1fe6a48f 704 __progname = get_progname(argv[0]);
8782141f 705 init_rng();
706 seed_rng();
f6fdbddf 707 TAILQ_INIT(&tq);
708
5061072f 709 if (argc <= 1)
f6fdbddf 710 usage();
711
5061072f 712 while ((opt = getopt(argc, argv, "v46p:T:t:f:")) != -1) {
713 switch (opt) {
714 case 'p':
715 ssh_port = a2port(optarg);
716 if (ssh_port == 0) {
717 fprintf(stderr, "Bad port '%s'\n", optarg);
718 exit(1);
719 }
720 break;
721 case 'T':
c8f94200 722 timeout = convtime(optarg);
723 if (timeout == -1 || timeout == 0) {
724 fprintf(stderr, "Bad timeout '%s'\n", optarg);
f6fdbddf 725 usage();
c8f94200 726 }
5061072f 727 break;
728 case 'v':
729 if (!debug_flag) {
730 debug_flag = 1;
731 log_level = SYSLOG_LEVEL_DEBUG1;
732 }
733 else if (log_level < SYSLOG_LEVEL_DEBUG3)
734 log_level++;
735 else
736 fatal("Too high debugging level.");
737 break;
a204806b 738 case 'f':
5061072f 739 if (strcmp(optarg, "-") == 0)
740 optarg = NULL;
741 argv[fopt_count++] = optarg;
742 break;
743 case 't':
744 get_keytypes = 0;
745 tname = strtok(optarg, ",");
746 while (tname) {
747 int type = key_type_from_name(tname);
748 switch (type) {
749 case KEY_RSA1:
750 get_keytypes |= KT_RSA1;
751 break;
752 case KEY_DSA:
753 get_keytypes |= KT_DSA;
754 break;
755 case KEY_RSA:
756 get_keytypes |= KT_RSA;
757 break;
758 case KEY_UNSPEC:
f48e63c8 759 fatal("unknown key type %s", tname);
5061072f 760 }
761 tname = strtok(NULL, ",");
762 }
763 break;
764 case '4':
765 IPv4or6 = AF_INET;
766 break;
767 case '6':
768 IPv4or6 = AF_INET6;
769 break;
770 case '?':
771 default:
f6fdbddf 772 usage();
5061072f 773 }
f6fdbddf 774 }
5061072f 775 if (optind == argc && !fopt_count)
f6fdbddf 776 usage();
777
5061072f 778 log_init("ssh-keyscan", log_level, SYSLOG_FACILITY_USER, 1);
5061072f 779
f6fdbddf 780 maxfd = fdlim_get(1);
781 if (maxfd < 0)
227e8e86 782 fatal("%s: fdlim_get: bad value", __progname);
f6fdbddf 783 if (maxfd > MAXMAXFD)
784 maxfd = MAXMAXFD;
2671b47f 785 if (MAXCON <= 0)
227e8e86 786 fatal("%s: not enough file descriptors", __progname);
f6fdbddf 787 if (maxfd > fdlim_get(0))
788 fdlim_set(maxfd);
789 fdcon = xmalloc(maxfd * sizeof(con));
5be2ec5e 790 memset(fdcon, 0, maxfd * sizeof(con));
f6fdbddf 791
ff7fee59 792 read_wait_size = howmany(maxfd, NFDBITS) * sizeof(fd_mask);
793 read_wait = xmalloc(read_wait_size);
794 memset(read_wait, 0, read_wait_size);
795
5061072f 796 if (fopt_count) {
797 Linebuf *lb;
798 char *line;
799 int j;
800
801 for (j = 0; j < fopt_count; j++) {
802 lb = Linebuf_alloc(argv[j], error);
b7f79e7a 803 if (!lb)
804 continue;
5061072f 805 while ((line = Linebuf_getline(lb)) != NULL)
806 do_host(line);
807 Linebuf_free(lb);
f6fdbddf 808 }
5061072f 809 }
810
811 while (optind < argc)
812 do_host(argv[optind++]);
813
f6fdbddf 814 while (ncon > 0)
815 conloop();
816
817 return (0);
818}
This page took 0.29956 seconds and 5 git commands to generate.