Add llc_snap shortcut.
[dragonfly.git] / crypto / openssh / ssh-keyscan.c
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
6  * OpenBSD project by leaving this copyright notice intact.
7  */
8
9 #include "includes.h"
10 RCSID("$OpenBSD: ssh-keyscan.c,v 1.40 2002/07/06 17:47:58 stevesk Exp $");
11 RCSID("$FreeBSD: src/crypto/openssh/ssh-keyscan.c,v 1.1.1.1.2.3 2003/02/03 17:31:07 des Exp $");
12 RCSID("$DragonFly: src/crypto/openssh/Attic/ssh-keyscan.c,v 1.2 2003/06/17 04:24:36 dillon Exp $");
13
14 #include "openbsd-compat/sys-queue.h"
15
16 #include <openssl/bn.h>
17
18 #include <setjmp.h>
19 #include "xmalloc.h"
20 #include "ssh.h"
21 #include "ssh1.h"
22 #include "key.h"
23 #include "kex.h"
24 #include "compat.h"
25 #include "myproposal.h"
26 #include "packet.h"
27 #include "dispatch.h"
28 #include "buffer.h"
29 #include "bufaux.h"
30 #include "log.h"
31 #include "atomicio.h"
32 #include "misc.h"
33
34 /* Flag indicating whether IPv4 or IPv6.  This can be set on the command line.
35    Default value is AF_UNSPEC means both IPv4 and IPv6. */
36 #ifdef IPV4_DEFAULT
37 int IPv4or6 = AF_INET;
38 #else
39 int IPv4or6 = AF_UNSPEC;
40 #endif
41
42 int ssh_port = SSH_DEFAULT_PORT;
43
44 #define KT_RSA1 1
45 #define KT_DSA  2
46 #define KT_RSA  4
47
48 int get_keytypes = KT_RSA1;     /* Get only RSA1 keys by default */
49
50 #define MAXMAXFD 256
51
52 /* The number of seconds after which to give up on a TCP connection */
53 int timeout = 5;
54
55 int maxfd;
56 #define MAXCON (maxfd - 10)
57
58 #ifdef HAVE___PROGNAME
59 extern char *__progname;
60 #else
61 char *__progname;
62 #endif
63 fd_set *read_wait;
64 size_t read_wait_size;
65 int ncon;
66 int nonfatal_fatal = 0;
67 jmp_buf kexjmp;
68 Key *kexjmp_key;
69
70 /*
71  * Keep a connection structure for each file descriptor.  The state
72  * associated with file descriptor n is held in fdcon[n].
73  */
74 typedef struct Connection {
75         u_char c_status;        /* State of connection on this file desc. */
76 #define CS_UNUSED 0             /* File descriptor unused */
77 #define CS_CON 1                /* Waiting to connect/read greeting */
78 #define CS_SIZE 2               /* Waiting to read initial packet size */
79 #define CS_KEYS 3               /* Waiting to read public key packet */
80         int c_fd;               /* Quick lookup: c->c_fd == c - fdcon */
81         int c_plen;             /* Packet length field for ssh packet */
82         int c_len;              /* Total bytes which must be read. */
83         int c_off;              /* Length of data read so far. */
84         int c_keytype;          /* Only one of KT_RSA1, KT_DSA, or KT_RSA */
85         char *c_namebase;       /* Address to free for c_name and c_namelist */
86         char *c_name;           /* Hostname of connection for errors */
87         char *c_namelist;       /* Pointer to other possible addresses */
88         char *c_output_name;    /* Hostname of connection for output */
89         char *c_data;           /* Data read from this fd */
90         Kex *c_kex;             /* The key-exchange struct for ssh2 */
91         struct timeval c_tv;    /* Time at which connection gets aborted */
92         TAILQ_ENTRY(Connection) c_link; /* List of connections in timeout order. */
93 } con;
94
95 TAILQ_HEAD(conlist, Connection) tq;     /* Timeout Queue */
96 con *fdcon;
97
98 /*
99  *  This is just a wrapper around fgets() to make it usable.
100  */
101
102 /* Stress-test.  Increase this later. */
103 #define LINEBUF_SIZE 16
104
105 typedef struct {
106         char *buf;
107         u_int size;
108         int lineno;
109         const char *filename;
110         FILE *stream;
111         void (*errfun) (const char *,...);
112 } Linebuf;
113
114 static Linebuf *
115 Linebuf_alloc(const char *filename, void (*errfun) (const char *,...))
116 {
117         Linebuf *lb;
118
119         if (!(lb = malloc(sizeof(*lb)))) {
120                 if (errfun)
121                         (*errfun) ("linebuf (%s): malloc failed\n",
122                             filename ? filename : "(stdin)");
123                 return (NULL);
124         }
125         if (filename) {
126                 lb->filename = filename;
127                 if (!(lb->stream = fopen(filename, "r"))) {
128                         xfree(lb);
129                         if (errfun)
130                                 (*errfun) ("%s: %s\n", filename, strerror(errno));
131                         return (NULL);
132                 }
133         } else {
134                 lb->filename = "(stdin)";
135                 lb->stream = stdin;
136         }
137
138         if (!(lb->buf = malloc(lb->size = LINEBUF_SIZE))) {
139                 if (errfun)
140                         (*errfun) ("linebuf (%s): malloc failed\n", lb->filename);
141                 xfree(lb);
142                 return (NULL);
143         }
144         lb->errfun = errfun;
145         lb->lineno = 0;
146         return (lb);
147 }
148
149 static void
150 Linebuf_free(Linebuf * lb)
151 {
152         fclose(lb->stream);
153         xfree(lb->buf);
154         xfree(lb);
155 }
156
157 #if 0
158 static void
159 Linebuf_restart(Linebuf * lb)
160 {
161         clearerr(lb->stream);
162         rewind(lb->stream);
163         lb->lineno = 0;
164 }
165
166 static int
167 Linebuf_lineno(Linebuf * lb)
168 {
169         return (lb->lineno);
170 }
171 #endif
172
173 static char *
174 Linebuf_getline(Linebuf * lb)
175 {
176         int n = 0;
177         void *p;
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)
184                                 (*lb->errfun)("%s: %s\n", lb->filename,
185                                     strerror(errno));
186                         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)
197                                 (*lb->errfun)("%s: skipping incomplete last line\n",
198                                     lb->filename);
199                         return (NULL);
200                 }
201                 /* Double the buffer if we need more space */
202                 lb->size *= 2;
203                 if ((p = realloc(lb->buf, lb->size)) == NULL) {
204                         lb->size /= 2;
205                         if (lb->errfun)
206                                 (*lb->errfun)("linebuf (%s): realloc failed\n",
207                                     lb->filename);
208                         return (NULL);
209                 }
210                 lb->buf = p;
211         }
212 }
213
214 static int
215 fdlim_get(int hard)
216 {
217 #if defined(HAVE_GETRLIMIT) && defined(RLIMIT_NOFILE)
218         struct rlimit rlfd;
219
220         if (getrlimit(RLIMIT_NOFILE, &rlfd) < 0)
221                 return (-1);
222         if ((hard ? rlfd.rlim_max : rlfd.rlim_cur) == RLIM_INFINITY)
223                 return 10000;
224         else
225                 return hard ? rlfd.rlim_max : rlfd.rlim_cur;
226 #elif defined (HAVE_SYSCONF)
227         return sysconf (_SC_OPEN_MAX);
228 #else
229         return 10000;
230 #endif
231 }
232
233 static int
234 fdlim_set(int lim)
235 {
236 #if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
237         struct rlimit rlfd;
238 #endif
239
240         if (lim <= 0)
241                 return (-1);
242 #if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
243         if (getrlimit(RLIMIT_NOFILE, &rlfd) < 0)
244                 return (-1);
245         rlfd.rlim_cur = lim;
246         if (setrlimit(RLIMIT_NOFILE, &rlfd) < 0)
247                 return (-1);
248 #elif defined (HAVE_SETDTABLESIZE)
249         setdtablesize(lim);
250 #endif
251         return (0);
252 }
253
254 /*
255  * This is an strsep function that returns a null field for adjacent
256  * separators.  This is the same as the 4.4BSD strsep, but different from the
257  * one in the GNU libc.
258  */
259 static char *
260 xstrsep(char **str, const char *delim)
261 {
262         char *s, *e;
263
264         if (!**str)
265                 return (NULL);
266
267         s = *str;
268         e = s + strcspn(s, delim);
269
270         if (*e != '\0')
271                 *e++ = '\0';
272         *str = e;
273
274         return (s);
275 }
276
277 /*
278  * Get the next non-null token (like GNU strsep).  Strsep() will return a
279  * null token for two adjacent separators, so we may have to loop.
280  */
281 static char *
282 strnnsep(char **stringp, char *delim)
283 {
284         char *tok;
285
286         do {
287                 tok = xstrsep(stringp, delim);
288         } while (tok && *tok == '\0');
289         return (tok);
290 }
291
292 static Key *
293 keygrab_ssh1(con *c)
294 {
295         static Key *rsa;
296         static Buffer msg;
297
298         if (rsa == NULL) {
299                 buffer_init(&msg);
300                 rsa = key_new(KEY_RSA1);
301         }
302         buffer_append(&msg, c->c_data, c->c_plen);
303         buffer_consume(&msg, 8 - (c->c_plen & 7));      /* padding */
304         if (buffer_get_char(&msg) != (int) SSH_SMSG_PUBLIC_KEY) {
305                 error("%s: invalid packet type", c->c_name);
306                 buffer_clear(&msg);
307                 return NULL;
308         }
309         buffer_consume(&msg, 8);                /* cookie */
310
311         /* server key */
312         (void) buffer_get_int(&msg);
313         buffer_get_bignum(&msg, rsa->rsa->e);
314         buffer_get_bignum(&msg, rsa->rsa->n);
315
316         /* host key */
317         (void) buffer_get_int(&msg);
318         buffer_get_bignum(&msg, rsa->rsa->e);
319         buffer_get_bignum(&msg, rsa->rsa->n);
320
321         buffer_clear(&msg);
322
323         return (rsa);
324 }
325
326 static int
327 hostjump(Key *hostkey)
328 {
329         kexjmp_key = hostkey;
330         longjmp(kexjmp, 1);
331 }
332
333 static int
334 ssh2_capable(int remote_major, int remote_minor)
335 {
336         switch (remote_major) {
337         case 1:
338                 if (remote_minor == 99)
339                         return 1;
340                 break;
341         case 2:
342                 return 1;
343         default:
344                 break;
345         }
346         return 0;
347 }
348
349 static Key *
350 keygrab_ssh2(con *c)
351 {
352         int j;
353
354         packet_set_connection(c->c_fd, c->c_fd);
355         enable_compat20();
356         myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = c->c_keytype == KT_DSA?
357             "ssh-dss": "ssh-rsa";
358         c->c_kex = kex_setup(myproposal);
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();
371
372         return j < 0? NULL : kexjmp_key;
373 }
374
375 static void
376 keyprint(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);
383         fputs("\n", stdout);
384 }
385
386 static int
387 tcpconnect(char *host)
388 {
389         struct addrinfo hints, *ai, *aitop;
390         char strport[NI_MAXSERV];
391         int gaierr, s = -1;
392
393         snprintf(strport, sizeof strport, "%d", ssh_port);
394         memset(&hints, 0, sizeof(hints));
395         hints.ai_family = IPv4or6;
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) {
400                 s = socket(ai->ai_family, SOCK_STREAM, 0);
401                 if (s < 0) {
402                         error("socket: %s", strerror(errno));
403                         continue;
404                 }
405                 if (fcntl(s, F_SETFL, O_NONBLOCK) < 0)
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
419 static int
420 conalloc(char *iname, char *oname, int keytype)
421 {
422         char *namebase, *name, *namelist;
423         int s;
424
425         namebase = namelist = xstrdup(iname);
426
427         do {
428                 name = xstrsep(&namelist, ",");
429                 if (!name) {
430                         xfree(namebase);
431                         return (-1);
432                 }
433         } while ((s = tcpconnect(name)) < 0);
434
435         if (s >= maxfd)
436                 fatal("conalloc: fdno %d too high", s);
437         if (fdcon[s].c_status)
438                 fatal("conalloc: attempt to reuse fdno %d", s);
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;
449         fdcon[s].c_keytype = keytype;
450         gettimeofday(&fdcon[s].c_tv, NULL);
451         fdcon[s].c_tv.tv_sec += timeout;
452         TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
453         FD_SET(s, read_wait);
454         ncon++;
455         return (s);
456 }
457
458 static void
459 confree(int s)
460 {
461         if (s >= maxfd || fdcon[s].c_status == CS_UNUSED)
462                 fatal("confree: attempt to free bad fdno %d", s);
463         close(s);
464         xfree(fdcon[s].c_namebase);
465         xfree(fdcon[s].c_output_name);
466         if (fdcon[s].c_status == CS_KEYS)
467                 xfree(fdcon[s].c_data);
468         fdcon[s].c_status = CS_UNUSED;
469         fdcon[s].c_keytype = 0;
470         TAILQ_REMOVE(&tq, &fdcon[s], c_link);
471         FD_CLR(s, read_wait);
472         ncon--;
473 }
474
475 static void
476 contouch(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
484 static int
485 conrecycle(int s)
486 {
487         con *c = &fdcon[s];
488         int ret;
489
490         ret = conalloc(c->c_namelist, c->c_output_name, c->c_keytype);
491         confree(s);
492         return (ret);
493 }
494
495 static void
496 congreet(int s)
497 {
498         int remote_major, remote_minor, n = 0;
499         char buf[256], *cp;
500         char remote_version[sizeof buf];
501         size_t bufsiz;
502         con *c = &fdcon[s];
503
504         bufsiz = sizeof(buf);
505         cp = buf;
506         while (bufsiz-- && (n = read(s, cp, 1)) == 1 && *cp != '\n') {
507                 if (*cp == '\r')
508                         *cp = '\n';
509                 cp++;
510         }
511         if (n < 0) {
512                 if (errno != ECONNREFUSED)
513                         error("read (%s): %s", c->c_name, strerror(errno));
514                 conrecycle(s);
515                 return;
516         }
517         if (n == 0) {
518                 error("%s: Connection closed by remote host", c->c_name);
519                 conrecycle(s);
520                 return;
521         }
522         if (*cp != '\n' && *cp != '\r') {
523                 error("%s: bad greeting", c->c_name);
524                 confree(s);
525                 return;
526         }
527         *cp = '\0';
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;
533         if (c->c_keytype != KT_RSA1) {
534                 if (!ssh2_capable(remote_major, remote_minor)) {
535                         debug("%s doesn't support ssh2", c->c_name);
536                         confree(s);
537                         return;
538                 }
539         } else if (remote_major != 1) {
540                 debug("%s doesn't support ssh1", c->c_name);
541                 confree(s);
542                 return;
543         }
544         fprintf(stderr, "# %s %s\n", c->c_name, chop(buf));
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);
548         if (atomicio(write, s, buf, n) != n) {
549                 error("write (%s): %s", c->c_name, strerror(errno));
550                 confree(s);
551                 return;
552         }
553         if (c->c_keytype != KT_RSA1) {
554                 keyprint(c, keygrab_ssh2(c));
555                 confree(s);
556                 return;
557         }
558         c->c_status = CS_SIZE;
559         contouch(s);
560 }
561
562 static void
563 conread(int s)
564 {
565         con *c = &fdcon[s];
566         int n;
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:
590                         keyprint(c, keygrab_ssh1(c));
591                         confree(s);
592                         return;
593                         break;
594                 default:
595                         fatal("conread: invalid status %d", c->c_status);
596                         break;
597                 }
598
599         contouch(s);
600 }
601
602 static void
603 conloop(void)
604 {
605         struct timeval seltime, now;
606         fd_set *r, *e;
607         con *c;
608         int i;
609
610         gettimeofday(&now, NULL);
611         c = TAILQ_FIRST(&tq);
612
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))) {
615                 seltime = c->c_tv;
616                 seltime.tv_sec -= now.tv_sec;
617                 seltime.tv_usec -= now.tv_usec;
618                 if (seltime.tv_usec < 0) {
619                         seltime.tv_usec += 1000000;
620                         seltime.tv_sec--;
621                 }
622         } else
623                 seltime.tv_sec = seltime.tv_usec = 0;
624
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 &&
631             (errno == EAGAIN || errno == EINTR))
632                 ;
633
634         for (i = 0; i < maxfd; i++) {
635                 if (FD_ISSET(i, e)) {
636                         error("%s: exception!", fdcon[i].c_name);
637                         confree(i);
638                 } else if (FD_ISSET(i, r))
639                         conread(i);
640         }
641         xfree(r);
642         xfree(e);
643
644         c = TAILQ_FIRST(&tq);
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))) {
647                 int s = c->c_fd;
648
649                 c = TAILQ_NEXT(c, c_link);
650                 conrecycle(s);
651         }
652 }
653
654 static void
655 do_host(char *host)
656 {
657         char *name = strnnsep(&host, " \t\n");
658         int j;
659
660         if (name == NULL)
661                 return;
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);
667                 }
668         }
669 }
670
671 void
672 fatal(const char *fmt,...)
673 {
674         va_list args;
675
676         va_start(args, fmt);
677         do_log(SYSLOG_LEVEL_FATAL, fmt, args);
678         va_end(args);
679         if (nonfatal_fatal)
680                 longjmp(kexjmp, -1);
681         else
682                 fatal_cleanup();
683 }
684
685 static void
686 usage(void)
687 {
688         fprintf(stderr, "usage: %s [-v46] [-p port] [-T timeout] [-f file]\n"
689             "\t\t   [host | addrlist namelist] [...]\n",
690             __progname);
691         exit(1);
692 }
693
694 int
695 main(int argc, char **argv)
696 {
697         int debug_flag = 0, log_level = SYSLOG_LEVEL_INFO;
698         int opt, fopt_count = 0;
699         char *tname;
700
701         extern int optind;
702         extern char *optarg;
703
704         __progname = get_progname(argv[0]);
705         init_rng();
706         seed_rng();
707         TAILQ_INIT(&tq);
708
709         if (argc <= 1)
710                 usage();
711
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':
722                         timeout = convtime(optarg);
723                         if (timeout == -1 || timeout == 0) {
724                                 fprintf(stderr, "Bad timeout '%s'\n", optarg);
725                                 usage();
726                         }
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;
738                 case 'f':
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:
759                                         fatal("unknown key type %s", tname);
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:
772                         usage();
773                 }
774         }
775         if (optind == argc && !fopt_count)
776                 usage();
777
778         log_init("ssh-keyscan", log_level, SYSLOG_FACILITY_USER, 1);
779
780         maxfd = fdlim_get(1);
781         if (maxfd < 0)
782                 fatal("%s: fdlim_get: bad value", __progname);
783         if (maxfd > MAXMAXFD)
784                 maxfd = MAXMAXFD;
785         if (MAXCON <= 0)
786                 fatal("%s: not enough file descriptors", __progname);
787         if (maxfd > fdlim_get(0))
788                 fdlim_set(maxfd);
789         fdcon = xmalloc(maxfd * sizeof(con));
790         memset(fdcon, 0, maxfd * sizeof(con));
791
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
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);
803                         if (!lb)
804                                 continue;
805                         while ((line = Linebuf_getline(lb)) != NULL)
806                                 do_host(line);
807                         Linebuf_free(lb);
808                 }
809         }
810
811         while (optind < argc)
812                 do_host(argv[optind++]);
813
814         while (ncon > 0)
815                 conloop();
816
817         return (0);
818 }