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