]> andersk Git - openssh.git/blame - ssh-keyscan.c
- (djm) s/get_progname/ssh_get_progname/g to avoid conflict with Heimdal
[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"
dc54438a 10RCSID("$OpenBSD: ssh-keyscan.c,v 1.44 2003/06/28 16:23:06 deraadt 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)
217 return 10000;
218 else
219 return hard ? rlfd.rlim_max : rlfd.rlim_cur;
b03bd394 220#elif defined (HAVE_SYSCONF)
221 return sysconf (_SC_OPEN_MAX);
222#else
223 return 10000;
224#endif
f6fdbddf 225}
226
396c147e 227static int
f6fdbddf 228fdlim_set(int lim)
229{
f318b98b 230#if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
f6fdbddf 231 struct rlimit rlfd;
b03bd394 232#endif
41545cb6 233
f6fdbddf 234 if (lim <= 0)
235 return (-1);
f318b98b 236#if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
f6fdbddf 237 if (getrlimit(RLIMIT_NOFILE, &rlfd) < 0)
238 return (-1);
239 rlfd.rlim_cur = lim;
240 if (setrlimit(RLIMIT_NOFILE, &rlfd) < 0)
241 return (-1);
b03bd394 242#elif defined (HAVE_SETDTABLESIZE)
b705bea0 243 setdtablesize(lim);
b03bd394 244#endif
f6fdbddf 245 return (0);
246}
247
248/*
249 * This is an strsep function that returns a null field for adjacent
250 * separators. This is the same as the 4.4BSD strsep, but different from the
251 * one in the GNU libc.
252 */
396c147e 253static char *
f6fdbddf 254xstrsep(char **str, const char *delim)
255{
256 char *s, *e;
257
258 if (!**str)
259 return (NULL);
260
261 s = *str;
262 e = s + strcspn(s, delim);
263
264 if (*e != '\0')
265 *e++ = '\0';
266 *str = e;
267
268 return (s);
269}
270
271/*
272 * Get the next non-null token (like GNU strsep). Strsep() will return a
273 * null token for two adjacent separators, so we may have to loop.
274 */
396c147e 275static char *
f6fdbddf 276strnnsep(char **stringp, char *delim)
277{
278 char *tok;
279
280 do {
281 tok = xstrsep(stringp, delim);
282 } while (tok && *tok == '\0');
283 return (tok);
284}
285
5061072f 286static Key *
287keygrab_ssh1(con *c)
f6fdbddf 288{
289 static Key *rsa;
290 static Buffer msg;
291
292 if (rsa == NULL) {
293 buffer_init(&msg);
294 rsa = key_new(KEY_RSA1);
295 }
5061072f 296 buffer_append(&msg, c->c_data, c->c_plen);
297 buffer_consume(&msg, 8 - (c->c_plen & 7)); /* padding */
f6fdbddf 298 if (buffer_get_char(&msg) != (int) SSH_SMSG_PUBLIC_KEY) {
5061072f 299 error("%s: invalid packet type", c->c_name);
f6fdbddf 300 buffer_clear(&msg);
5061072f 301 return NULL;
f6fdbddf 302 }
303 buffer_consume(&msg, 8); /* cookie */
304
305 /* server key */
306 (void) buffer_get_int(&msg);
307 buffer_get_bignum(&msg, rsa->rsa->e);
308 buffer_get_bignum(&msg, rsa->rsa->n);
309
310 /* host key */
311 (void) buffer_get_int(&msg);
312 buffer_get_bignum(&msg, rsa->rsa->e);
313 buffer_get_bignum(&msg, rsa->rsa->n);
5061072f 314
f6fdbddf 315 buffer_clear(&msg);
316
5061072f 317 return (rsa);
318}
319
320static int
321hostjump(Key *hostkey)
322{
4278ff63 323 kexjmp_key = hostkey;
324 longjmp(kexjmp, 1);
5061072f 325}
326
327static int
328ssh2_capable(int remote_major, int remote_minor)
329{
330 switch (remote_major) {
331 case 1:
332 if (remote_minor == 99)
333 return 1;
334 break;
335 case 2:
336 return 1;
337 default:
338 break;
339 }
340 return 0;
341}
342
343static Key *
344keygrab_ssh2(con *c)
345{
346 int j;
347
348 packet_set_connection(c->c_fd, c->c_fd);
349 enable_compat20();
350 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = c->c_keytype == KT_DSA?
351 "ssh-dss": "ssh-rsa";
352 c->c_kex = kex_setup(myproposal);
98a58eda 353 c->c_kex->kex[KEX_DH_GRP1_SHA1] = kexdh_client;
354 c->c_kex->kex[KEX_DH_GEX_SHA1] = kexgex_client;
5061072f 355 c->c_kex->verify_host_key = hostjump;
356
357 if (!(j = setjmp(kexjmp))) {
358 nonfatal_fatal = 1;
359 dispatch_run(DISPATCH_BLOCK, &c->c_kex->done, c->c_kex);
360 fprintf(stderr, "Impossible! dispatch_run() returned!\n");
361 exit(1);
362 }
363 nonfatal_fatal = 0;
364 xfree(c->c_kex);
365 c->c_kex = NULL;
366 packet_close();
5061072f 367
4278ff63 368 return j < 0? NULL : kexjmp_key;
5061072f 369}
370
371static void
372keyprint(con *c, Key *key)
373{
374 if (!key)
375 return;
376
377 fprintf(stdout, "%s ", c->c_output_name ? c->c_output_name : c->c_name);
378 key_write(key, stdout);
f6fdbddf 379 fputs("\n", stdout);
380}
381
396c147e 382static int
f6fdbddf 383tcpconnect(char *host)
384{
385 struct addrinfo hints, *ai, *aitop;
386 char strport[NI_MAXSERV];
387 int gaierr, s = -1;
388
5061072f 389 snprintf(strport, sizeof strport, "%d", ssh_port);
f6fdbddf 390 memset(&hints, 0, sizeof(hints));
5061072f 391 hints.ai_family = IPv4or6;
f6fdbddf 392 hints.ai_socktype = SOCK_STREAM;
393 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
394 fatal("getaddrinfo %s: %s", host, gai_strerror(gaierr));
395 for (ai = aitop; ai; ai = ai->ai_next) {
3e131a6d 396 s = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
f6fdbddf 397 if (s < 0) {
398 error("socket: %s", strerror(errno));
399 continue;
400 }
eea39c02 401 if (fcntl(s, F_SETFL, O_NONBLOCK) < 0)
f6fdbddf 402 fatal("F_SETFL: %s", strerror(errno));
403 if (connect(s, ai->ai_addr, ai->ai_addrlen) < 0 &&
404 errno != EINPROGRESS)
405 error("connect (`%s'): %s", host, strerror(errno));
406 else
407 break;
408 close(s);
409 s = -1;
410 }
411 freeaddrinfo(aitop);
412 return s;
413}
414
396c147e 415static int
5061072f 416conalloc(char *iname, char *oname, int keytype)
f6fdbddf 417{
f6fdbddf 418 char *namebase, *name, *namelist;
50d2fbbc 419 int s;
f6fdbddf 420
421 namebase = namelist = xstrdup(iname);
422
423 do {
424 name = xstrsep(&namelist, ",");
425 if (!name) {
b5c334cc 426 xfree(namebase);
f6fdbddf 427 return (-1);
428 }
429 } while ((s = tcpconnect(name)) < 0);
430
431 if (s >= maxfd)
227e8e86 432 fatal("conalloc: fdno %d too high", s);
f6fdbddf 433 if (fdcon[s].c_status)
227e8e86 434 fatal("conalloc: attempt to reuse fdno %d", s);
f6fdbddf 435
436 fdcon[s].c_fd = s;
437 fdcon[s].c_status = CS_CON;
438 fdcon[s].c_namebase = namebase;
439 fdcon[s].c_name = name;
440 fdcon[s].c_namelist = namelist;
441 fdcon[s].c_output_name = xstrdup(oname);
442 fdcon[s].c_data = (char *) &fdcon[s].c_plen;
443 fdcon[s].c_len = 4;
444 fdcon[s].c_off = 0;
5061072f 445 fdcon[s].c_keytype = keytype;
f6fdbddf 446 gettimeofday(&fdcon[s].c_tv, NULL);
447 fdcon[s].c_tv.tv_sec += timeout;
448 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
ff7fee59 449 FD_SET(s, read_wait);
f6fdbddf 450 ncon++;
451 return (s);
452}
453
396c147e 454static void
f6fdbddf 455confree(int s)
456{
f6fdbddf 457 if (s >= maxfd || fdcon[s].c_status == CS_UNUSED)
227e8e86 458 fatal("confree: attempt to free bad fdno %d", s);
2671b47f 459 close(s);
b5c334cc 460 xfree(fdcon[s].c_namebase);
461 xfree(fdcon[s].c_output_name);
f6fdbddf 462 if (fdcon[s].c_status == CS_KEYS)
b5c334cc 463 xfree(fdcon[s].c_data);
f6fdbddf 464 fdcon[s].c_status = CS_UNUSED;
5061072f 465 fdcon[s].c_keytype = 0;
f6fdbddf 466 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
ff7fee59 467 FD_CLR(s, read_wait);
f6fdbddf 468 ncon--;
469}
470
396c147e 471static void
f6fdbddf 472contouch(int s)
473{
474 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
475 gettimeofday(&fdcon[s].c_tv, NULL);
476 fdcon[s].c_tv.tv_sec += timeout;
477 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
478}
479
396c147e 480static int
f6fdbddf 481conrecycle(int s)
482{
f6fdbddf 483 con *c = &fdcon[s];
50d2fbbc 484 int ret;
f6fdbddf 485
5061072f 486 ret = conalloc(c->c_namelist, c->c_output_name, c->c_keytype);
f6fdbddf 487 confree(s);
f6fdbddf 488 return (ret);
489}
490
396c147e 491static void
f6fdbddf 492congreet(int s)
493{
50d2fbbc 494 int remote_major, remote_minor, n = 0;
5061072f 495 char buf[256], *cp;
cdc95d6e 496 char remote_version[sizeof buf];
c16c7f20 497 size_t bufsiz;
f6fdbddf 498 con *c = &fdcon[s];
499
c16c7f20 500 bufsiz = sizeof(buf);
501 cp = buf;
578954b1 502 while (bufsiz-- && (n = read(s, cp, 1)) == 1 && *cp != '\n') {
503 if (*cp == '\r')
504 *cp = '\n';
c16c7f20 505 cp++;
578954b1 506 }
f6fdbddf 507 if (n < 0) {
508 if (errno != ECONNREFUSED)
509 error("read (%s): %s", c->c_name, strerror(errno));
510 conrecycle(s);
511 return;
512 }
27452401 513 if (n == 0) {
514 error("%s: Connection closed by remote host", c->c_name);
515 conrecycle(s);
516 return;
517 }
c16c7f20 518 if (*cp != '\n' && *cp != '\r') {
f6fdbddf 519 error("%s: bad greeting", c->c_name);
520 confree(s);
521 return;
522 }
c16c7f20 523 *cp = '\0';
cdc95d6e 524 if (sscanf(buf, "SSH-%d.%d-%[^\n]\n",
525 &remote_major, &remote_minor, remote_version) == 3)
526 compat_datafellows(remote_version);
527 else
528 datafellows = 0;
5061072f 529 if (c->c_keytype != KT_RSA1) {
5061072f 530 if (!ssh2_capable(remote_major, remote_minor)) {
531 debug("%s doesn't support ssh2", c->c_name);
532 confree(s);
533 return;
534 }
cdc95d6e 535 } else if (remote_major != 1) {
536 debug("%s doesn't support ssh1", c->c_name);
537 confree(s);
538 return;
5061072f 539 }
578954b1 540 fprintf(stderr, "# %s %s\n", c->c_name, chop(buf));
5061072f 541 n = snprintf(buf, sizeof buf, "SSH-%d.%d-OpenSSH-keyscan\r\n",
542 c->c_keytype == KT_RSA1? PROTOCOL_MAJOR_1 : PROTOCOL_MAJOR_2,
543 c->c_keytype == KT_RSA1? PROTOCOL_MINOR_1 : PROTOCOL_MINOR_2);
dc54438a 544 if (atomicio(vwrite, s, buf, n) != n) {
f6fdbddf 545 error("write (%s): %s", c->c_name, strerror(errno));
546 confree(s);
547 return;
548 }
5061072f 549 if (c->c_keytype != KT_RSA1) {
550 keyprint(c, keygrab_ssh2(c));
551 confree(s);
552 return;
553 }
f6fdbddf 554 c->c_status = CS_SIZE;
555 contouch(s);
556}
557
396c147e 558static void
f6fdbddf 559conread(int s)
560{
f6fdbddf 561 con *c = &fdcon[s];
50d2fbbc 562 int n;
f6fdbddf 563
564 if (c->c_status == CS_CON) {
565 congreet(s);
566 return;
567 }
568 n = read(s, c->c_data + c->c_off, c->c_len - c->c_off);
569 if (n < 0) {
570 error("read (%s): %s", c->c_name, strerror(errno));
571 confree(s);
572 return;
573 }
574 c->c_off += n;
575
576 if (c->c_off == c->c_len)
577 switch (c->c_status) {
578 case CS_SIZE:
579 c->c_plen = htonl(c->c_plen);
580 c->c_len = c->c_plen + 8 - (c->c_plen & 7);
581 c->c_off = 0;
582 c->c_data = xmalloc(c->c_len);
583 c->c_status = CS_KEYS;
584 break;
585 case CS_KEYS:
5061072f 586 keyprint(c, keygrab_ssh1(c));
f6fdbddf 587 confree(s);
588 return;
589 break;
590 default:
227e8e86 591 fatal("conread: invalid status %d", c->c_status);
f6fdbddf 592 break;
593 }
594
595 contouch(s);
596}
597
396c147e 598static void
f6fdbddf 599conloop(void)
600{
f6fdbddf 601 struct timeval seltime, now;
50d2fbbc 602 fd_set *r, *e;
f6fdbddf 603 con *c;
50d2fbbc 604 int i;
f6fdbddf 605
606 gettimeofday(&now, NULL);
48ba8dc8 607 c = TAILQ_FIRST(&tq);
f6fdbddf 608
2671b47f 609 if (c && (c->c_tv.tv_sec > now.tv_sec ||
610 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec > now.tv_usec))) {
f6fdbddf 611 seltime = c->c_tv;
612 seltime.tv_sec -= now.tv_sec;
613 seltime.tv_usec -= now.tv_usec;
5be2ec5e 614 if (seltime.tv_usec < 0) {
f6fdbddf 615 seltime.tv_usec += 1000000;
616 seltime.tv_sec--;
617 }
618 } else
619 seltime.tv_sec = seltime.tv_usec = 0;
620
ff7fee59 621 r = xmalloc(read_wait_size);
622 memcpy(r, read_wait, read_wait_size);
623 e = xmalloc(read_wait_size);
624 memcpy(e, read_wait, read_wait_size);
625
626 while (select(maxfd, r, NULL, e, &seltime) == -1 &&
fd193ca4 627 (errno == EAGAIN || errno == EINTR))
628 ;
629
2671b47f 630 for (i = 0; i < maxfd; i++) {
ff7fee59 631 if (FD_ISSET(i, e)) {
f6fdbddf 632 error("%s: exception!", fdcon[i].c_name);
633 confree(i);
ff7fee59 634 } else if (FD_ISSET(i, r))
f6fdbddf 635 conread(i);
2671b47f 636 }
ff7fee59 637 xfree(r);
638 xfree(e);
f6fdbddf 639
48ba8dc8 640 c = TAILQ_FIRST(&tq);
2671b47f 641 while (c && (c->c_tv.tv_sec < now.tv_sec ||
642 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec < now.tv_usec))) {
f6fdbddf 643 int s = c->c_fd;
2671b47f 644
48ba8dc8 645 c = TAILQ_NEXT(c, c_link);
f6fdbddf 646 conrecycle(s);
647 }
648}
649
5061072f 650static void
651do_host(char *host)
f6fdbddf 652{
5061072f 653 char *name = strnnsep(&host, " \t\n");
654 int j;
655
0408c978 656 if (name == NULL)
657 return;
5061072f 658 for (j = KT_RSA1; j <= KT_RSA; j *= 2) {
659 if (get_keytypes & j) {
660 while (ncon >= MAXCON)
661 conloop();
662 conalloc(name, *host ? host : name, j);
f6fdbddf 663 }
664 }
665}
666
2bae80e9 667void
668fatal(const char *fmt,...)
5061072f 669{
2bae80e9 670 va_list args;
50d2fbbc 671
2bae80e9 672 va_start(args, fmt);
673 do_log(SYSLOG_LEVEL_FATAL, fmt, args);
674 va_end(args);
5061072f 675 if (nonfatal_fatal)
676 longjmp(kexjmp, -1);
2bae80e9 677 else
678 fatal_cleanup();
5061072f 679}
680
396c147e 681static void
f6fdbddf 682usage(void)
683{
b9e5aff6 684 fprintf(stderr, "usage: %s [-v46] [-p port] [-T timeout] [-t type] [-f file]\n"
50d2fbbc 685 "\t\t [host | addrlist namelist] [...]\n",
33e766d2 686 __progname);
33e766d2 687 exit(1);
f6fdbddf 688}
689
690int
691main(int argc, char **argv)
692{
5061072f 693 int debug_flag = 0, log_level = SYSLOG_LEVEL_INFO;
694 int opt, fopt_count = 0;
695 char *tname;
a204806b 696
5061072f 697 extern int optind;
698 extern char *optarg;
f6fdbddf 699
fda04d7d 700 __progname = ssh_get_progname(argv[0]);
8782141f 701 init_rng();
702 seed_rng();
f6fdbddf 703 TAILQ_INIT(&tq);
704
5061072f 705 if (argc <= 1)
f6fdbddf 706 usage();
707
5061072f 708 while ((opt = getopt(argc, argv, "v46p:T:t:f:")) != -1) {
709 switch (opt) {
710 case 'p':
711 ssh_port = a2port(optarg);
712 if (ssh_port == 0) {
713 fprintf(stderr, "Bad port '%s'\n", optarg);
714 exit(1);
715 }
716 break;
717 case 'T':
c8f94200 718 timeout = convtime(optarg);
719 if (timeout == -1 || timeout == 0) {
720 fprintf(stderr, "Bad timeout '%s'\n", optarg);
f6fdbddf 721 usage();
c8f94200 722 }
5061072f 723 break;
724 case 'v':
725 if (!debug_flag) {
726 debug_flag = 1;
727 log_level = SYSLOG_LEVEL_DEBUG1;
728 }
729 else if (log_level < SYSLOG_LEVEL_DEBUG3)
730 log_level++;
731 else
732 fatal("Too high debugging level.");
733 break;
a204806b 734 case 'f':
5061072f 735 if (strcmp(optarg, "-") == 0)
736 optarg = NULL;
737 argv[fopt_count++] = optarg;
738 break;
739 case 't':
740 get_keytypes = 0;
741 tname = strtok(optarg, ",");
742 while (tname) {
743 int type = key_type_from_name(tname);
744 switch (type) {
745 case KEY_RSA1:
746 get_keytypes |= KT_RSA1;
747 break;
748 case KEY_DSA:
749 get_keytypes |= KT_DSA;
750 break;
751 case KEY_RSA:
752 get_keytypes |= KT_RSA;
753 break;
754 case KEY_UNSPEC:
f48e63c8 755 fatal("unknown key type %s", tname);
5061072f 756 }
757 tname = strtok(NULL, ",");
758 }
759 break;
760 case '4':
761 IPv4or6 = AF_INET;
762 break;
763 case '6':
764 IPv4or6 = AF_INET6;
765 break;
766 case '?':
767 default:
f6fdbddf 768 usage();
5061072f 769 }
f6fdbddf 770 }
5061072f 771 if (optind == argc && !fopt_count)
f6fdbddf 772 usage();
773
5061072f 774 log_init("ssh-keyscan", log_level, SYSLOG_FACILITY_USER, 1);
5061072f 775
f6fdbddf 776 maxfd = fdlim_get(1);
777 if (maxfd < 0)
227e8e86 778 fatal("%s: fdlim_get: bad value", __progname);
f6fdbddf 779 if (maxfd > MAXMAXFD)
780 maxfd = MAXMAXFD;
2671b47f 781 if (MAXCON <= 0)
227e8e86 782 fatal("%s: not enough file descriptors", __progname);
f6fdbddf 783 if (maxfd > fdlim_get(0))
784 fdlim_set(maxfd);
785 fdcon = xmalloc(maxfd * sizeof(con));
5be2ec5e 786 memset(fdcon, 0, maxfd * sizeof(con));
f6fdbddf 787
ff7fee59 788 read_wait_size = howmany(maxfd, NFDBITS) * sizeof(fd_mask);
789 read_wait = xmalloc(read_wait_size);
790 memset(read_wait, 0, read_wait_size);
791
5061072f 792 if (fopt_count) {
793 Linebuf *lb;
794 char *line;
795 int j;
796
797 for (j = 0; j < fopt_count; j++) {
798 lb = Linebuf_alloc(argv[j], error);
b7f79e7a 799 if (!lb)
800 continue;
5061072f 801 while ((line = Linebuf_getline(lb)) != NULL)
802 do_host(line);
803 Linebuf_free(lb);
f6fdbddf 804 }
5061072f 805 }
806
807 while (optind < argc)
808 do_host(argv[optind++]);
809
f6fdbddf 810 while (ncon > 0)
811 conloop();
812
813 return (0);
814}
This page took 0.388391 seconds and 5 git commands to generate.