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