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