]> andersk Git - openssh.git/blob - ssh-keyscan.c
- djm@cvs.openbsd.org 2006/03/25 13:17:03
[openssh.git] / ssh-keyscan.c
1 /* $OpenBSD: ssh-keyscan.c,v 1.64 2006/03/25 13:17:02 djm Exp $ */
2 /*
3  * Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>.
4  *
5  * Modification and redistribution in source and binary forms is
6  * permitted provided that due credit is given to the author and the
7  * OpenBSD project by leaving this copyright notice intact.
8  */
9
10 #include "includes.h"
11  
12 #include "openbsd-compat/sys-queue.h"
13 #include <sys/resource.h>
14
15 #include <openssl/bn.h>
16
17 #include <setjmp.h>
18 #include "xmalloc.h"
19 #include "ssh.h"
20 #include "ssh1.h"
21 #include "key.h"
22 #include "kex.h"
23 #include "compat.h"
24 #include "myproposal.h"
25 #include "packet.h"
26 #include "dispatch.h"
27 #include "buffer.h"
28 #include "bufaux.h"
29 #include "log.h"
30 #include "atomicio.h"
31 #include "misc.h"
32 #include "hostfile.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 int IPv4or6 = AF_UNSPEC;
37
38 int ssh_port = SSH_DEFAULT_PORT;
39
40 #define KT_RSA1 1
41 #define KT_DSA  2
42 #define KT_RSA  4
43
44 int get_keytypes = KT_RSA1;     /* Get only RSA1 keys by default */
45
46 int hash_hosts = 0;             /* Hash hostname on output */
47
48 #define MAXMAXFD 256
49
50 /* The number of seconds after which to give up on a TCP connection */
51 int timeout = 5;
52
53 int maxfd;
54 #define MAXCON (maxfd - 10)
55
56 extern char *__progname;
57 fd_set *read_wait;
58 size_t read_wait_nfdset;
59 int ncon;
60 int nonfatal_fatal = 0;
61 jmp_buf kexjmp;
62 Key *kexjmp_key;
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  */
68 typedef struct Connection {
69         u_char c_status;        /* State of connection on this file desc. */
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. */
78         int c_keytype;          /* Only one of KT_RSA1, KT_DSA, or KT_RSA */
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 */
84         Kex *c_kex;             /* The key-exchange struct for ssh2 */
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
89 TAILQ_HEAD(conlist, Connection) tq;     /* Timeout Queue */
90 con *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
99 typedef struct {
100         char *buf;
101         u_int size;
102         int lineno;
103         const char *filename;
104         FILE *stream;
105         void (*errfun) (const char *,...);
106 } Linebuf;
107
108 static Linebuf *
109 Linebuf_alloc(const char *filename, void (*errfun) (const char *,...))
110 {
111         Linebuf *lb;
112
113         if (!(lb = malloc(sizeof(*lb)))) {
114                 if (errfun)
115                         (*errfun) ("linebuf (%s): malloc failed\n",
116                             filename ? filename : "(stdin)");
117                 return (NULL);
118         }
119         if (filename) {
120                 lb->filename = filename;
121                 if (!(lb->stream = fopen(filename, "r"))) {
122                         xfree(lb);
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);
135                 xfree(lb);
136                 return (NULL);
137         }
138         lb->errfun = errfun;
139         lb->lineno = 0;
140         return (lb);
141 }
142
143 static void
144 Linebuf_free(Linebuf * lb)
145 {
146         fclose(lb->stream);
147         xfree(lb->buf);
148         xfree(lb);
149 }
150
151 #if 0
152 static void
153 Linebuf_restart(Linebuf * lb)
154 {
155         clearerr(lb->stream);
156         rewind(lb->stream);
157         lb->lineno = 0;
158 }
159
160 static int
161 Linebuf_lineno(Linebuf * lb)
162 {
163         return (lb->lineno);
164 }
165 #endif
166
167 static char *
168 Linebuf_getline(Linebuf * lb)
169 {
170         size_t n = 0;
171         void *p;
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)
178                                 (*lb->errfun)("%s: %s\n", lb->filename,
179                                     strerror(errno));
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)
191                                 (*lb->errfun)("%s: skipping incomplete last line\n",
192                                     lb->filename);
193                         return (NULL);
194                 }
195                 /* Double the buffer if we need more space */
196                 lb->size *= 2;
197                 if ((p = realloc(lb->buf, lb->size)) == NULL) {
198                         lb->size /= 2;
199                         if (lb->errfun)
200                                 (*lb->errfun)("linebuf (%s): realloc failed\n",
201                                     lb->filename);
202                         return (NULL);
203                 }
204                 lb->buf = p;
205         }
206 }
207
208 static int
209 fdlim_get(int hard)
210 {
211 #if defined(HAVE_GETRLIMIT) && defined(RLIMIT_NOFILE)
212         struct rlimit rlfd;
213
214         if (getrlimit(RLIMIT_NOFILE, &rlfd) < 0)
215                 return (-1);
216         if ((hard ? rlfd.rlim_max : rlfd.rlim_cur) == RLIM_INFINITY)
217                 return SSH_SYSFDMAX;
218         else
219                 return hard ? rlfd.rlim_max : rlfd.rlim_cur;
220 #else
221         return SSH_SYSFDMAX;
222 #endif
223 }
224
225 static int
226 fdlim_set(int lim)
227 {
228 #if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
229         struct rlimit rlfd;
230 #endif
231
232         if (lim <= 0)
233                 return (-1);
234 #if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
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);
240 #elif defined (HAVE_SETDTABLESIZE)
241         setdtablesize(lim);
242 #endif
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  */
251 static char *
252 xstrsep(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  */
273 static char *
274 strnnsep(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
284 static Key *
285 keygrab_ssh1(con *c)
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         }
294         buffer_append(&msg, c->c_data, c->c_plen);
295         buffer_consume(&msg, 8 - (c->c_plen & 7));      /* padding */
296         if (buffer_get_char(&msg) != (int) SSH_SMSG_PUBLIC_KEY) {
297                 error("%s: invalid packet type", c->c_name);
298                 buffer_clear(&msg);
299                 return NULL;
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);
312
313         buffer_clear(&msg);
314
315         return (rsa);
316 }
317
318 static int
319 hostjump(Key *hostkey)
320 {
321         kexjmp_key = hostkey;
322         longjmp(kexjmp, 1);
323 }
324
325 static int
326 ssh2_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
341 static Key *
342 keygrab_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);
351         c->c_kex->kex[KEX_DH_GRP1_SHA1] = kexdh_client;
352         c->c_kex->kex[KEX_DH_GRP14_SHA1] = kexdh_client;
353         c->c_kex->kex[KEX_DH_GEX_SHA1] = kexgex_client;
354         c->c_kex->kex[KEX_DH_GEX_SHA256] = kexgex_client;
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();
367
368         return j < 0? NULL : kexjmp_key;
369 }
370
371 static void
372 keyprint(con *c, Key *key)
373 {
374         char *host = c->c_output_name ? c->c_output_name : c->c_name;
375
376         if (!key)
377                 return;
378         if (hash_hosts && (host = host_hash(host, NULL, 0)) == NULL)
379                 fatal("host_hash failed");
380
381         fprintf(stdout, "%s ", host);
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, ai->ai_socktype, ai->ai_protocol);
401                 if (s < 0) {
402                         error("socket: %s", strerror(errno));
403                         continue;
404                 }
405                 if (set_nonblock(s) == -1)
406                         fatal("%s: set_nonblock(%d)", __func__, s);
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 n = 0, remote_major = 0, remote_minor = 0;
499         char buf[256], *cp;
500         char remote_version[sizeof buf];
501         size_t bufsiz;
502         con *c = &fdcon[s];
503
504         for (;;) {
505                 memset(buf, '\0', sizeof(buf));
506                 bufsiz = sizeof(buf);
507                 cp = buf;
508                 while (bufsiz-- &&
509                     (n = atomicio(read, s, cp, 1)) == 1 && *cp != '\n') {
510                         if (*cp == '\r')
511                                 *cp = '\n';
512                         cp++;
513                 }
514                 if (n != 1 || strncmp(buf, "SSH-", 4) == 0)
515                         break;
516         }
517         if (n == 0) {
518                 switch (errno) {
519                 case EPIPE:
520                         error("%s: Connection closed by remote host", c->c_name);
521                         break;
522                 case ECONNREFUSED:
523                         break;
524                 default:
525                         error("read (%s): %s", c->c_name, strerror(errno));
526                         break;
527                 }
528                 conrecycle(s);
529                 return;
530         }
531         if (*cp != '\n' && *cp != '\r') {
532                 error("%s: bad greeting", c->c_name);
533                 confree(s);
534                 return;
535         }
536         *cp = '\0';
537         if (sscanf(buf, "SSH-%d.%d-%[^\n]\n",
538             &remote_major, &remote_minor, remote_version) == 3)
539                 compat_datafellows(remote_version);
540         else
541                 datafellows = 0;
542         if (c->c_keytype != KT_RSA1) {
543                 if (!ssh2_capable(remote_major, remote_minor)) {
544                         debug("%s doesn't support ssh2", c->c_name);
545                         confree(s);
546                         return;
547                 }
548         } else if (remote_major != 1) {
549                 debug("%s doesn't support ssh1", c->c_name);
550                 confree(s);
551                 return;
552         }
553         fprintf(stderr, "# %s %s\n", c->c_name, chop(buf));
554         n = snprintf(buf, sizeof buf, "SSH-%d.%d-OpenSSH-keyscan\r\n",
555             c->c_keytype == KT_RSA1? PROTOCOL_MAJOR_1 : PROTOCOL_MAJOR_2,
556             c->c_keytype == KT_RSA1? PROTOCOL_MINOR_1 : PROTOCOL_MINOR_2);
557         if (n < 0 || (size_t)n >= sizeof(buf)) {
558                 error("snprintf: buffer too small");
559                 confree(s);
560                 return;
561         }
562         if (atomicio(vwrite, s, buf, n) != (size_t)n) {
563                 error("write (%s): %s", c->c_name, strerror(errno));
564                 confree(s);
565                 return;
566         }
567         if (c->c_keytype != KT_RSA1) {
568                 keyprint(c, keygrab_ssh2(c));
569                 confree(s);
570                 return;
571         }
572         c->c_status = CS_SIZE;
573         contouch(s);
574 }
575
576 static void
577 conread(int s)
578 {
579         con *c = &fdcon[s];
580         size_t n;
581
582         if (c->c_status == CS_CON) {
583                 congreet(s);
584                 return;
585         }
586         n = atomicio(read, s, c->c_data + c->c_off, c->c_len - c->c_off);
587         if (n == 0) {
588                 error("read (%s): %s", c->c_name, strerror(errno));
589                 confree(s);
590                 return;
591         }
592         c->c_off += n;
593
594         if (c->c_off == c->c_len)
595                 switch (c->c_status) {
596                 case CS_SIZE:
597                         c->c_plen = htonl(c->c_plen);
598                         c->c_len = c->c_plen + 8 - (c->c_plen & 7);
599                         c->c_off = 0;
600                         c->c_data = xmalloc(c->c_len);
601                         c->c_status = CS_KEYS;
602                         break;
603                 case CS_KEYS:
604                         keyprint(c, keygrab_ssh1(c));
605                         confree(s);
606                         return;
607                 default:
608                         fatal("conread: invalid status %d", c->c_status);
609                         break;
610                 }
611
612         contouch(s);
613 }
614
615 static void
616 conloop(void)
617 {
618         struct timeval seltime, now;
619         fd_set *r, *e;
620         con *c;
621         int i;
622
623         gettimeofday(&now, NULL);
624         c = TAILQ_FIRST(&tq);
625
626         if (c && (c->c_tv.tv_sec > now.tv_sec ||
627             (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec > now.tv_usec))) {
628                 seltime = c->c_tv;
629                 seltime.tv_sec -= now.tv_sec;
630                 seltime.tv_usec -= now.tv_usec;
631                 if (seltime.tv_usec < 0) {
632                         seltime.tv_usec += 1000000;
633                         seltime.tv_sec--;
634                 }
635         } else
636                 seltime.tv_sec = seltime.tv_usec = 0;
637
638         r = xcalloc(read_wait_nfdset, sizeof(fd_mask));
639         e = xcalloc(read_wait_nfdset, sizeof(fd_mask));
640         memcpy(r, read_wait, read_wait_nfdset * sizeof(fd_mask));
641         memcpy(e, read_wait, read_wait_nfdset * sizeof(fd_mask));
642
643         while (select(maxfd, r, NULL, e, &seltime) == -1 &&
644             (errno == EAGAIN || errno == EINTR))
645                 ;
646
647         for (i = 0; i < maxfd; i++) {
648                 if (FD_ISSET(i, e)) {
649                         error("%s: exception!", fdcon[i].c_name);
650                         confree(i);
651                 } else if (FD_ISSET(i, r))
652                         conread(i);
653         }
654         xfree(r);
655         xfree(e);
656
657         c = TAILQ_FIRST(&tq);
658         while (c && (c->c_tv.tv_sec < now.tv_sec ||
659             (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec < now.tv_usec))) {
660                 int s = c->c_fd;
661
662                 c = TAILQ_NEXT(c, c_link);
663                 conrecycle(s);
664         }
665 }
666
667 static void
668 do_host(char *host)
669 {
670         char *name = strnnsep(&host, " \t\n");
671         int j;
672
673         if (name == NULL)
674                 return;
675         for (j = KT_RSA1; j <= KT_RSA; j *= 2) {
676                 if (get_keytypes & j) {
677                         while (ncon >= MAXCON)
678                                 conloop();
679                         conalloc(name, *host ? host : name, j);
680                 }
681         }
682 }
683
684 void
685 fatal(const char *fmt,...)
686 {
687         va_list args;
688
689         va_start(args, fmt);
690         do_log(SYSLOG_LEVEL_FATAL, fmt, args);
691         va_end(args);
692         if (nonfatal_fatal)
693                 longjmp(kexjmp, -1);
694         else
695                 exit(255);
696 }
697
698 static void
699 usage(void)
700 {
701         fprintf(stderr, "usage: %s [-46Hv] [-f file] [-p port] [-T timeout] [-t type]\n"
702             "\t\t   [host | addrlist namelist] [...]\n",
703             __progname);
704         exit(1);
705 }
706
707 int
708 main(int argc, char **argv)
709 {
710         int debug_flag = 0, log_level = SYSLOG_LEVEL_INFO;
711         int opt, fopt_count = 0;
712         char *tname;
713
714         extern int optind;
715         extern char *optarg;
716
717         __progname = ssh_get_progname(argv[0]);
718         init_rng();
719         seed_rng();
720         TAILQ_INIT(&tq);
721
722         /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
723         sanitise_stdfd();
724
725         if (argc <= 1)
726                 usage();
727
728         while ((opt = getopt(argc, argv, "Hv46p:T:t:f:")) != -1) {
729                 switch (opt) {
730                 case 'H':
731                         hash_hosts = 1;
732                         break;
733                 case 'p':
734                         ssh_port = a2port(optarg);
735                         if (ssh_port == 0) {
736                                 fprintf(stderr, "Bad port '%s'\n", optarg);
737                                 exit(1);
738                         }
739                         break;
740                 case 'T':
741                         timeout = convtime(optarg);
742                         if (timeout == -1 || timeout == 0) {
743                                 fprintf(stderr, "Bad timeout '%s'\n", optarg);
744                                 usage();
745                         }
746                         break;
747                 case 'v':
748                         if (!debug_flag) {
749                                 debug_flag = 1;
750                                 log_level = SYSLOG_LEVEL_DEBUG1;
751                         }
752                         else if (log_level < SYSLOG_LEVEL_DEBUG3)
753                                 log_level++;
754                         else
755                                 fatal("Too high debugging level.");
756                         break;
757                 case 'f':
758                         if (strcmp(optarg, "-") == 0)
759                                 optarg = NULL;
760                         argv[fopt_count++] = optarg;
761                         break;
762                 case 't':
763                         get_keytypes = 0;
764                         tname = strtok(optarg, ",");
765                         while (tname) {
766                                 int type = key_type_from_name(tname);
767                                 switch (type) {
768                                 case KEY_RSA1:
769                                         get_keytypes |= KT_RSA1;
770                                         break;
771                                 case KEY_DSA:
772                                         get_keytypes |= KT_DSA;
773                                         break;
774                                 case KEY_RSA:
775                                         get_keytypes |= KT_RSA;
776                                         break;
777                                 case KEY_UNSPEC:
778                                         fatal("unknown key type %s", tname);
779                                 }
780                                 tname = strtok(NULL, ",");
781                         }
782                         break;
783                 case '4':
784                         IPv4or6 = AF_INET;
785                         break;
786                 case '6':
787                         IPv4or6 = AF_INET6;
788                         break;
789                 case '?':
790                 default:
791                         usage();
792                 }
793         }
794         if (optind == argc && !fopt_count)
795                 usage();
796
797         log_init("ssh-keyscan", log_level, SYSLOG_FACILITY_USER, 1);
798
799         maxfd = fdlim_get(1);
800         if (maxfd < 0)
801                 fatal("%s: fdlim_get: bad value", __progname);
802         if (maxfd > MAXMAXFD)
803                 maxfd = MAXMAXFD;
804         if (MAXCON <= 0)
805                 fatal("%s: not enough file descriptors", __progname);
806         if (maxfd > fdlim_get(0))
807                 fdlim_set(maxfd);
808         fdcon = xcalloc(maxfd, sizeof(con));
809
810         read_wait_nfdset = howmany(maxfd, NFDBITS);
811         read_wait = xcalloc(read_wait_nfdset, sizeof(fd_mask));
812
813         if (fopt_count) {
814                 Linebuf *lb;
815                 char *line;
816                 int j;
817
818                 for (j = 0; j < fopt_count; j++) {
819                         lb = Linebuf_alloc(argv[j], error);
820                         if (!lb)
821                                 continue;
822                         while ((line = Linebuf_getline(lb)) != NULL)
823                                 do_host(line);
824                         Linebuf_free(lb);
825                 }
826         }
827
828         while (optind < argc)
829                 do_host(argv[optind++]);
830
831         while (ncon > 0)
832                 conloop();
833
834         return (0);
835 }
This page took 0.10325 seconds and 5 git commands to generate.