1 /* $OpenBSD: ssh-keyscan.c,v 1.79 2009/10/28 16:38:18 reyk Exp $ */
3 * Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>.
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.
12 #include "openbsd-compat/sys-queue.h"
13 #include <sys/resource.h>
14 #ifdef HAVE_SYS_TIME_H
15 # include <sys/time.h>
18 #include <netinet/in.h>
19 #include <arpa/inet.h>
21 #include <openssl/bn.h>
41 #include "myproposal.h"
49 /* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
50 Default value is AF_UNSPEC means both IPv4 and IPv6. */
51 int IPv4or6
= AF_UNSPEC
;
53 int ssh_port
= SSH_DEFAULT_PORT
;
59 int get_keytypes
= KT_RSA
; /* Get only RSA keys by default */
61 int hash_hosts
= 0; /* Hash hostname on output */
65 /* The number of seconds after which to give up on a TCP connection */
69 #define MAXCON (maxfd - 10)
71 /* The default routing domain */
72 int scan_rdomain
= -1;
74 extern char *__progname
;
76 size_t read_wait_nfdset
;
78 int nonfatal_fatal
= 0;
83 * Keep a connection structure for each file descriptor. The state
84 * associated with file descriptor n is held in fdcon[n].
86 typedef struct Connection
{
87 u_char c_status
; /* State of connection on this file desc. */
88 #define CS_UNUSED 0 /* File descriptor unused */
89 #define CS_CON 1 /* Waiting to connect/read greeting */
90 #define CS_SIZE 2 /* Waiting to read initial packet size */
91 #define CS_KEYS 3 /* Waiting to read public key packet */
92 int c_fd
; /* Quick lookup: c->c_fd == c - fdcon */
93 int c_plen
; /* Packet length field for ssh packet */
94 int c_len
; /* Total bytes which must be read. */
95 int c_off
; /* Length of data read so far. */
96 int c_keytype
; /* Only one of KT_RSA1, KT_DSA, or KT_RSA */
97 char *c_namebase
; /* Address to free for c_name and c_namelist */
98 char *c_name
; /* Hostname of connection for errors */
99 char *c_namelist
; /* Pointer to other possible addresses */
100 char *c_output_name
; /* Hostname of connection for output */
101 char *c_data
; /* Data read from this fd */
102 Kex
*c_kex
; /* The key-exchange struct for ssh2 */
103 struct timeval c_tv
; /* Time at which connection gets aborted */
104 TAILQ_ENTRY(Connection
) c_link
; /* List of connections in timeout order. */
107 TAILQ_HEAD(conlist
, Connection
) tq
; /* Timeout Queue */
111 * This is just a wrapper around fgets() to make it usable.
114 /* Stress-test. Increase this later. */
115 #define LINEBUF_SIZE 16
121 const char *filename
;
123 void (*errfun
) (const char *,...);
127 Linebuf_alloc(const char *filename
, void (*errfun
) (const char *,...))
131 if (!(lb
= malloc(sizeof(*lb
)))) {
133 (*errfun
) ("linebuf (%s): malloc failed\n",
134 filename
? filename
: "(stdin)");
138 lb
->filename
= filename
;
139 if (!(lb
->stream
= fopen(filename
, "r"))) {
142 (*errfun
) ("%s: %s\n", filename
, strerror(errno
));
146 lb
->filename
= "(stdin)";
150 if (!(lb
->buf
= malloc((lb
->size
= LINEBUF_SIZE
)))) {
152 (*errfun
) ("linebuf (%s): malloc failed\n", lb
->filename
);
162 Linebuf_free(Linebuf
* lb
)
171 Linebuf_restart(Linebuf
* lb
)
173 clearerr(lb
->stream
);
179 Linebuf_lineno(Linebuf
* lb
)
186 Linebuf_getline(Linebuf
* lb
)
194 if (!fgets(&lb
->buf
[n
], lb
->size
- n
, lb
->stream
)) {
195 if (ferror(lb
->stream
) && lb
->errfun
)
196 (*lb
->errfun
)("%s: %s\n", lb
->filename
,
202 /* Return it or an error if it fits */
203 if (n
> 0 && lb
->buf
[n
- 1] == '\n') {
204 lb
->buf
[n
- 1] = '\0';
207 if (n
!= lb
->size
- 1) {
209 (*lb
->errfun
)("%s: skipping incomplete last line\n",
213 /* Double the buffer if we need more space */
215 if ((p
= realloc(lb
->buf
, lb
->size
)) == NULL
) {
218 (*lb
->errfun
)("linebuf (%s): realloc failed\n",
229 #if defined(HAVE_GETRLIMIT) && defined(RLIMIT_NOFILE)
232 if (getrlimit(RLIMIT_NOFILE
, &rlfd
) < 0)
234 if ((hard
? rlfd
.rlim_max
: rlfd
.rlim_cur
) == RLIM_INFINITY
)
237 return hard
? rlfd
.rlim_max
: rlfd
.rlim_cur
;
246 #if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
252 #if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
253 if (getrlimit(RLIMIT_NOFILE
, &rlfd
) < 0)
256 if (setrlimit(RLIMIT_NOFILE
, &rlfd
) < 0)
258 #elif defined (HAVE_SETDTABLESIZE)
265 * This is an strsep function that returns a null field for adjacent
266 * separators. This is the same as the 4.4BSD strsep, but different from the
267 * one in the GNU libc.
270 xstrsep(char **str
, const char *delim
)
278 e
= s
+ strcspn(s
, delim
);
288 * Get the next non-null token (like GNU strsep). Strsep() will return a
289 * null token for two adjacent separators, so we may have to loop.
292 strnnsep(char **stringp
, char *delim
)
297 tok
= xstrsep(stringp
, delim
);
298 } while (tok
&& *tok
== '\0');
310 rsa
= key_new(KEY_RSA1
);
312 buffer_append(&msg
, c
->c_data
, c
->c_plen
);
313 buffer_consume(&msg
, 8 - (c
->c_plen
& 7)); /* padding */
314 if (buffer_get_char(&msg
) != (int) SSH_SMSG_PUBLIC_KEY
) {
315 error("%s: invalid packet type", c
->c_name
);
319 buffer_consume(&msg
, 8); /* cookie */
322 (void) buffer_get_int(&msg
);
323 buffer_get_bignum(&msg
, rsa
->rsa
->e
);
324 buffer_get_bignum(&msg
, rsa
->rsa
->n
);
327 (void) buffer_get_int(&msg
);
328 buffer_get_bignum(&msg
, rsa
->rsa
->e
);
329 buffer_get_bignum(&msg
, rsa
->rsa
->n
);
337 hostjump(Key
*hostkey
)
339 kexjmp_key
= hostkey
;
344 ssh2_capable(int remote_major
, int remote_minor
)
346 switch (remote_major
) {
348 if (remote_minor
== 99)
364 packet_set_connection(c
->c_fd
, c
->c_fd
);
366 myproposal
[PROPOSAL_SERVER_HOST_KEY_ALGS
] = c
->c_keytype
== KT_DSA
?
367 "ssh-dss": "ssh-rsa";
368 c
->c_kex
= kex_setup(myproposal
);
369 c
->c_kex
->kex
[KEX_DH_GRP1_SHA1
] = kexdh_client
;
370 c
->c_kex
->kex
[KEX_DH_GRP14_SHA1
] = kexdh_client
;
371 c
->c_kex
->kex
[KEX_DH_GEX_SHA1
] = kexgex_client
;
372 c
->c_kex
->kex
[KEX_DH_GEX_SHA256
] = kexgex_client
;
373 c
->c_kex
->verify_host_key
= hostjump
;
375 if (!(j
= setjmp(kexjmp
))) {
377 dispatch_run(DISPATCH_BLOCK
, &c
->c_kex
->done
, c
->c_kex
);
378 fprintf(stderr
, "Impossible! dispatch_run() returned!\n");
386 return j
< 0? NULL
: kexjmp_key
;
390 keyprint(con
*c
, Key
*key
)
392 char *host
= c
->c_output_name
? c
->c_output_name
: c
->c_name
;
396 if (hash_hosts
&& (host
= host_hash(host
, NULL
, 0)) == NULL
)
397 fatal("host_hash failed");
399 fprintf(stdout
, "%s ", host
);
400 key_write(key
, stdout
);
405 tcpconnect(char *host
)
407 struct addrinfo hints
, *ai
, *aitop
;
408 char strport
[NI_MAXSERV
];
411 snprintf(strport
, sizeof strport
, "%d", ssh_port
);
412 memset(&hints
, 0, sizeof(hints
));
413 hints
.ai_family
= IPv4or6
;
414 hints
.ai_socktype
= SOCK_STREAM
;
415 if ((gaierr
= getaddrinfo(host
, strport
, &hints
, &aitop
)) != 0)
416 fatal("getaddrinfo %s: %s", host
, ssh_gai_strerror(gaierr
));
417 for (ai
= aitop
; ai
; ai
= ai
->ai_next
) {
418 s
= socket_rdomain(ai
->ai_family
, ai
->ai_socktype
,
419 ai
->ai_protocol
, scan_rdomain
);
421 error("socket: %s", strerror(errno
));
424 if (set_nonblock(s
) == -1)
425 fatal("%s: set_nonblock(%d)", __func__
, s
);
426 if (connect(s
, ai
->ai_addr
, ai
->ai_addrlen
) < 0 &&
427 errno
!= EINPROGRESS
)
428 error("connect (`%s'): %s", host
, strerror(errno
));
439 conalloc(char *iname
, char *oname
, int keytype
)
441 char *namebase
, *name
, *namelist
;
444 namebase
= namelist
= xstrdup(iname
);
447 name
= xstrsep(&namelist
, ",");
452 } while ((s
= tcpconnect(name
)) < 0);
455 fatal("conalloc: fdno %d too high", s
);
456 if (fdcon
[s
].c_status
)
457 fatal("conalloc: attempt to reuse fdno %d", s
);
460 fdcon
[s
].c_status
= CS_CON
;
461 fdcon
[s
].c_namebase
= namebase
;
462 fdcon
[s
].c_name
= name
;
463 fdcon
[s
].c_namelist
= namelist
;
464 fdcon
[s
].c_output_name
= xstrdup(oname
);
465 fdcon
[s
].c_data
= (char *) &fdcon
[s
].c_plen
;
468 fdcon
[s
].c_keytype
= keytype
;
469 gettimeofday(&fdcon
[s
].c_tv
, NULL
);
470 fdcon
[s
].c_tv
.tv_sec
+= timeout
;
471 TAILQ_INSERT_TAIL(&tq
, &fdcon
[s
], c_link
);
472 FD_SET(s
, read_wait
);
480 if (s
>= maxfd
|| fdcon
[s
].c_status
== CS_UNUSED
)
481 fatal("confree: attempt to free bad fdno %d", s
);
483 xfree(fdcon
[s
].c_namebase
);
484 xfree(fdcon
[s
].c_output_name
);
485 if (fdcon
[s
].c_status
== CS_KEYS
)
486 xfree(fdcon
[s
].c_data
);
487 fdcon
[s
].c_status
= CS_UNUSED
;
488 fdcon
[s
].c_keytype
= 0;
489 TAILQ_REMOVE(&tq
, &fdcon
[s
], c_link
);
490 FD_CLR(s
, read_wait
);
497 TAILQ_REMOVE(&tq
, &fdcon
[s
], c_link
);
498 gettimeofday(&fdcon
[s
].c_tv
, NULL
);
499 fdcon
[s
].c_tv
.tv_sec
+= timeout
;
500 TAILQ_INSERT_TAIL(&tq
, &fdcon
[s
], c_link
);
509 ret
= conalloc(c
->c_namelist
, c
->c_output_name
, c
->c_keytype
);
517 int n
= 0, remote_major
= 0, remote_minor
= 0;
519 char remote_version
[sizeof buf
];
524 memset(buf
, '\0', sizeof(buf
));
525 bufsiz
= sizeof(buf
);
528 (n
= atomicio(read
, s
, cp
, 1)) == 1 && *cp
!= '\n') {
533 if (n
!= 1 || strncmp(buf
, "SSH-", 4) == 0)
539 error("%s: Connection closed by remote host", c
->c_name
);
544 error("read (%s): %s", c
->c_name
, strerror(errno
));
550 if (*cp
!= '\n' && *cp
!= '\r') {
551 error("%s: bad greeting", c
->c_name
);
556 if (sscanf(buf
, "SSH-%d.%d-%[^\n]\n",
557 &remote_major
, &remote_minor
, remote_version
) == 3)
558 compat_datafellows(remote_version
);
561 if (c
->c_keytype
!= KT_RSA1
) {
562 if (!ssh2_capable(remote_major
, remote_minor
)) {
563 debug("%s doesn't support ssh2", c
->c_name
);
567 } else if (remote_major
!= 1) {
568 debug("%s doesn't support ssh1", c
->c_name
);
572 fprintf(stderr
, "# %s %s\n", c
->c_name
, chop(buf
));
573 n
= snprintf(buf
, sizeof buf
, "SSH-%d.%d-OpenSSH-keyscan\r\n",
574 c
->c_keytype
== KT_RSA1
? PROTOCOL_MAJOR_1
: PROTOCOL_MAJOR_2
,
575 c
->c_keytype
== KT_RSA1
? PROTOCOL_MINOR_1
: PROTOCOL_MINOR_2
);
576 if (n
< 0 || (size_t)n
>= sizeof(buf
)) {
577 error("snprintf: buffer too small");
581 if (atomicio(vwrite
, s
, buf
, n
) != (size_t)n
) {
582 error("write (%s): %s", c
->c_name
, strerror(errno
));
586 if (c
->c_keytype
!= KT_RSA1
) {
587 keyprint(c
, keygrab_ssh2(c
));
591 c
->c_status
= CS_SIZE
;
601 if (c
->c_status
== CS_CON
) {
605 n
= atomicio(read
, s
, c
->c_data
+ c
->c_off
, c
->c_len
- c
->c_off
);
607 error("read (%s): %s", c
->c_name
, strerror(errno
));
613 if (c
->c_off
== c
->c_len
)
614 switch (c
->c_status
) {
616 c
->c_plen
= htonl(c
->c_plen
);
617 c
->c_len
= c
->c_plen
+ 8 - (c
->c_plen
& 7);
619 c
->c_data
= xmalloc(c
->c_len
);
620 c
->c_status
= CS_KEYS
;
623 keyprint(c
, keygrab_ssh1(c
));
627 fatal("conread: invalid status %d", c
->c_status
);
637 struct timeval seltime
, now
;
642 gettimeofday(&now
, NULL
);
643 c
= TAILQ_FIRST(&tq
);
645 if (c
&& (c
->c_tv
.tv_sec
> now
.tv_sec
||
646 (c
->c_tv
.tv_sec
== now
.tv_sec
&& c
->c_tv
.tv_usec
> now
.tv_usec
))) {
648 seltime
.tv_sec
-= now
.tv_sec
;
649 seltime
.tv_usec
-= now
.tv_usec
;
650 if (seltime
.tv_usec
< 0) {
651 seltime
.tv_usec
+= 1000000;
655 seltime
.tv_sec
= seltime
.tv_usec
= 0;
657 r
= xcalloc(read_wait_nfdset
, sizeof(fd_mask
));
658 e
= xcalloc(read_wait_nfdset
, sizeof(fd_mask
));
659 memcpy(r
, read_wait
, read_wait_nfdset
* sizeof(fd_mask
));
660 memcpy(e
, read_wait
, read_wait_nfdset
* sizeof(fd_mask
));
662 while (select(maxfd
, r
, NULL
, e
, &seltime
) == -1 &&
663 (errno
== EAGAIN
|| errno
== EINTR
|| errno
== EWOULDBLOCK
))
666 for (i
= 0; i
< maxfd
; i
++) {
667 if (FD_ISSET(i
, e
)) {
668 error("%s: exception!", fdcon
[i
].c_name
);
670 } else if (FD_ISSET(i
, r
))
676 c
= TAILQ_FIRST(&tq
);
677 while (c
&& (c
->c_tv
.tv_sec
< now
.tv_sec
||
678 (c
->c_tv
.tv_sec
== now
.tv_sec
&& c
->c_tv
.tv_usec
< now
.tv_usec
))) {
681 c
= TAILQ_NEXT(c
, c_link
);
689 char *name
= strnnsep(&host
, " \t\n");
694 for (j
= KT_RSA1
; j
<= KT_RSA
; j
*= 2) {
695 if (get_keytypes
& j
) {
696 while (ncon
>= MAXCON
)
698 conalloc(name
, *host
? host
: name
, j
);
704 fatal(const char *fmt
,...)
709 do_log(SYSLOG_LEVEL_FATAL
, fmt
, args
);
721 "usage: %s [-46Hv] [-f file] [-p port] [-T timeout] [-t type]\n"
722 "\t\t [-V rdomain] [host | addrlist namelist] ...\n",
728 main(int argc
, char **argv
)
730 int debug_flag
= 0, log_level
= SYSLOG_LEVEL_INFO
;
731 int opt
, fopt_count
= 0;
737 __progname
= ssh_get_progname(argv
[0]);
742 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
748 while ((opt
= getopt(argc
, argv
, "Hv46p:T:t:f:V:")) != -1) {
754 ssh_port
= a2port(optarg
);
756 fprintf(stderr
, "Bad port '%s'\n", optarg
);
761 timeout
= convtime(optarg
);
762 if (timeout
== -1 || timeout
== 0) {
763 fprintf(stderr
, "Bad timeout '%s'\n", optarg
);
770 log_level
= SYSLOG_LEVEL_DEBUG1
;
772 else if (log_level
< SYSLOG_LEVEL_DEBUG3
)
775 fatal("Too high debugging level.");
778 if (strcmp(optarg
, "-") == 0)
780 argv
[fopt_count
++] = optarg
;
784 tname
= strtok(optarg
, ",");
786 int type
= key_type_from_name(tname
);
789 get_keytypes
|= KT_RSA1
;
792 get_keytypes
|= KT_DSA
;
795 get_keytypes
|= KT_RSA
;
798 fatal("unknown key type %s", tname
);
800 tname
= strtok(NULL
, ",");
810 scan_rdomain
= a2port(optarg
);
811 if (scan_rdomain
< 0)
819 if (optind
== argc
&& !fopt_count
)
822 log_init("ssh-keyscan", log_level
, SYSLOG_FACILITY_USER
, 1);
824 maxfd
= fdlim_get(1);
826 fatal("%s: fdlim_get: bad value", __progname
);
827 if (maxfd
> MAXMAXFD
)
830 fatal("%s: not enough file descriptors", __progname
);
831 if (maxfd
> fdlim_get(0))
833 fdcon
= xcalloc(maxfd
, sizeof(con
));
835 read_wait_nfdset
= howmany(maxfd
, NFDBITS
);
836 read_wait
= xcalloc(read_wait_nfdset
, sizeof(fd_mask
));
843 for (j
= 0; j
< fopt_count
; j
++) {
844 lb
= Linebuf_alloc(argv
[j
], error
);
847 while ((line
= Linebuf_getline(lb
)) != NULL
)
853 while (optind
< argc
)
854 do_host(argv
[optind
++]);