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