blob: c5f658d77fa5de883de4a4bf5e7b55a6d1d18255 [file] [log] [blame]
Damien Miller1e124262013-11-04 08:26:52 +11001/* $OpenBSD: ssh-keyscan.c,v 1.88 2013/11/02 21:59:15 markus Exp $ */
Ben Lindstromb6434ae2000-12-05 01:15:09 +00002/*
3 * Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>.
4 *
5 * Modification and redistribution in source and binary forms is
6 * permitted provided that due credit is given to the author and the
Ben Lindstroma238f6e2001-06-09 01:30:39 +00007 * OpenBSD project by leaving this copyright notice intact.
Ben Lindstromb6434ae2000-12-05 01:15:09 +00008 */
9
10#include "includes.h"
Damien Millercd4223c2006-03-15 11:22:47 +110011
Damien Miller9b481512002-09-12 10:43:29 +100012#include "openbsd-compat/sys-queue.h"
Damien Millercd4223c2006-03-15 11:22:47 +110013#include <sys/resource.h>
Damien Miller9aec9192006-08-05 10:57:45 +100014#ifdef HAVE_SYS_TIME_H
15# include <sys/time.h>
16#endif
Damien Millere3476ed2006-07-24 14:13:33 +100017
Darren Tucker46aa3e02006-09-02 15:32:40 +100018#include <netinet/in.h>
19#include <arpa/inet.h>
20
Damien Millere3476ed2006-07-24 14:13:33 +100021#include <openssl/bn.h>
22
Damien Millerb8fe89c2006-07-24 14:51:00 +100023#include <netdb.h>
Darren Tuckerdeecec92006-07-12 22:44:34 +100024#include <errno.h>
Damien Millerbe43ebf2006-07-24 13:51:51 +100025#include <setjmp.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100026#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100027#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100028#include <stdlib.h>
Damien Millerd7834352006-08-05 12:39:39 +100029#include <signal.h>
Damien Millere3476ed2006-07-24 14:13:33 +100030#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100031#include <unistd.h>
Ben Lindstromb6434ae2000-12-05 01:15:09 +000032
Ben Lindstromb6434ae2000-12-05 01:15:09 +000033#include "xmalloc.h"
34#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000035#include "ssh1.h"
Damien Millerd7834352006-08-05 12:39:39 +100036#include "buffer.h"
Ben Lindstromb6434ae2000-12-05 01:15:09 +000037#include "key.h"
Damien Millerd7834352006-08-05 12:39:39 +100038#include "cipher.h"
Ben Lindstrom325e70c2001-08-06 22:41:30 +000039#include "kex.h"
40#include "compat.h"
41#include "myproposal.h"
42#include "packet.h"
43#include "dispatch.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000044#include "log.h"
Ben Lindstromd20b8552001-03-05 07:01:18 +000045#include "atomicio.h"
Ben Lindstrom325e70c2001-08-06 22:41:30 +000046#include "misc.h"
Damien Millerdb7b8172005-03-01 21:48:03 +110047#include "hostfile.h"
Ben Lindstromb6434ae2000-12-05 01:15:09 +000048
Ben Lindstrom325e70c2001-08-06 22:41:30 +000049/* 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. */
Ben Lindstrom325e70c2001-08-06 22:41:30 +000051int IPv4or6 = AF_UNSPEC;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000052
Ben Lindstrom325e70c2001-08-06 22:41:30 +000053int ssh_port = SSH_DEFAULT_PORT;
Kevin Steves76e7d9b2001-09-20 20:30:09 +000054
Damien Millereb8b60e2010-08-31 22:41:14 +100055#define KT_RSA1 1
56#define KT_DSA 2
57#define KT_RSA 4
58#define KT_ECDSA 8
Kevin Steves76e7d9b2001-09-20 20:30:09 +000059
Damien Miller839f7432012-04-22 11:24:21 +100060int get_keytypes = KT_RSA|KT_ECDSA;/* Get RSA and ECDSA keys by default */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000061
Damien Millerdb7b8172005-03-01 21:48:03 +110062int hash_hosts = 0; /* Hash hostname on output */
63
Ben Lindstromb6434ae2000-12-05 01:15:09 +000064#define MAXMAXFD 256
65
66/* The number of seconds after which to give up on a TCP connection */
67int timeout = 5;
68
69int maxfd;
Ben Lindstromd20b8552001-03-05 07:01:18 +000070#define MAXCON (maxfd - 10)
Ben Lindstromb6434ae2000-12-05 01:15:09 +000071
Kevin Stevesec84dc12000-12-13 17:45:15 +000072extern char *__progname;
Ben Lindstromc1e04212001-03-05 07:04:38 +000073fd_set *read_wait;
Damien Miller07d86be2006-03-26 14:19:21 +110074size_t read_wait_nfdset;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000075int ncon;
Ben Lindstrom325e70c2001-08-06 22:41:30 +000076int nonfatal_fatal = 0;
77jmp_buf kexjmp;
Ben Lindstrom520b55c2001-09-12 18:05:05 +000078Key *kexjmp_key;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000079
80/*
81 * Keep a connection structure for each file descriptor. The state
82 * associated with file descriptor n is held in fdcon[n].
83 */
84typedef struct Connection {
Ben Lindstrom46c16222000-12-22 01:43:59 +000085 u_char c_status; /* State of connection on this file desc. */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000086#define CS_UNUSED 0 /* File descriptor unused */
87#define CS_CON 1 /* Waiting to connect/read greeting */
88#define CS_SIZE 2 /* Waiting to read initial packet size */
89#define CS_KEYS 3 /* Waiting to read public key packet */
90 int c_fd; /* Quick lookup: c->c_fd == c - fdcon */
91 int c_plen; /* Packet length field for ssh packet */
92 int c_len; /* Total bytes which must be read. */
93 int c_off; /* Length of data read so far. */
Ben Lindstrom325e70c2001-08-06 22:41:30 +000094 int c_keytype; /* Only one of KT_RSA1, KT_DSA, or KT_RSA */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000095 char *c_namebase; /* Address to free for c_name and c_namelist */
96 char *c_name; /* Hostname of connection for errors */
97 char *c_namelist; /* Pointer to other possible addresses */
98 char *c_output_name; /* Hostname of connection for output */
99 char *c_data; /* Data read from this fd */
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000100 Kex *c_kex; /* The key-exchange struct for ssh2 */
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000101 struct timeval c_tv; /* Time at which connection gets aborted */
102 TAILQ_ENTRY(Connection) c_link; /* List of connections in timeout order. */
103} con;
104
105TAILQ_HEAD(conlist, Connection) tq; /* Timeout Queue */
106con *fdcon;
107
Ben Lindstrombba81212001-06-25 05:01:22 +0000108static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000109fdlim_get(int hard)
110{
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000111#if defined(HAVE_GETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000112 struct rlimit rlfd;
Ben Lindstromb0a4cd82001-03-05 04:54:49 +0000113
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000114 if (getrlimit(RLIMIT_NOFILE, &rlfd) < 0)
115 return (-1);
116 if ((hard ? rlfd.rlim_max : rlfd.rlim_cur) == RLIM_INFINITY)
Damien Millere00074a2003-11-24 13:07:45 +1100117 return SSH_SYSFDMAX;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000118 else
119 return hard ? rlfd.rlim_max : rlfd.rlim_cur;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000120#else
Damien Millere00074a2003-11-24 13:07:45 +1100121 return SSH_SYSFDMAX;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000122#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000123}
124
Ben Lindstrombba81212001-06-25 05:01:22 +0000125static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000126fdlim_set(int lim)
127{
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000128#if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000129 struct rlimit rlfd;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000130#endif
Ben Lindstrom5c98db52002-07-07 22:25:29 +0000131
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000132 if (lim <= 0)
133 return (-1);
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000134#if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000135 if (getrlimit(RLIMIT_NOFILE, &rlfd) < 0)
136 return (-1);
137 rlfd.rlim_cur = lim;
138 if (setrlimit(RLIMIT_NOFILE, &rlfd) < 0)
139 return (-1);
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000140#elif defined (HAVE_SETDTABLESIZE)
Kevin Steves28a7f262001-02-05 15:43:59 +0000141 setdtablesize(lim);
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000142#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000143 return (0);
144}
145
146/*
147 * This is an strsep function that returns a null field for adjacent
148 * separators. This is the same as the 4.4BSD strsep, but different from the
149 * one in the GNU libc.
150 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000151static char *
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000152xstrsep(char **str, const char *delim)
153{
154 char *s, *e;
155
156 if (!**str)
157 return (NULL);
158
159 s = *str;
160 e = s + strcspn(s, delim);
161
162 if (*e != '\0')
163 *e++ = '\0';
164 *str = e;
165
166 return (s);
167}
168
169/*
170 * Get the next non-null token (like GNU strsep). Strsep() will return a
171 * null token for two adjacent separators, so we may have to loop.
172 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000173static char *
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000174strnnsep(char **stringp, char *delim)
175{
176 char *tok;
177
178 do {
179 tok = xstrsep(stringp, delim);
180 } while (tok && *tok == '\0');
181 return (tok);
182}
183
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000184static Key *
185keygrab_ssh1(con *c)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000186{
187 static Key *rsa;
188 static Buffer msg;
189
190 if (rsa == NULL) {
191 buffer_init(&msg);
192 rsa = key_new(KEY_RSA1);
193 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000194 buffer_append(&msg, c->c_data, c->c_plen);
195 buffer_consume(&msg, 8 - (c->c_plen & 7)); /* padding */
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000196 if (buffer_get_char(&msg) != (int) SSH_SMSG_PUBLIC_KEY) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000197 error("%s: invalid packet type", c->c_name);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000198 buffer_clear(&msg);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000199 return NULL;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000200 }
201 buffer_consume(&msg, 8); /* cookie */
202
203 /* server key */
204 (void) buffer_get_int(&msg);
205 buffer_get_bignum(&msg, rsa->rsa->e);
206 buffer_get_bignum(&msg, rsa->rsa->n);
207
208 /* host key */
209 (void) buffer_get_int(&msg);
210 buffer_get_bignum(&msg, rsa->rsa->e);
211 buffer_get_bignum(&msg, rsa->rsa->n);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000212
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000213 buffer_clear(&msg);
214
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000215 return (rsa);
216}
217
218static int
219hostjump(Key *hostkey)
220{
Ben Lindstrom520b55c2001-09-12 18:05:05 +0000221 kexjmp_key = hostkey;
222 longjmp(kexjmp, 1);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000223}
224
225static int
226ssh2_capable(int remote_major, int remote_minor)
227{
228 switch (remote_major) {
229 case 1:
230 if (remote_minor == 99)
231 return 1;
232 break;
233 case 2:
234 return 1;
235 default:
236 break;
237 }
238 return 0;
239}
240
241static Key *
242keygrab_ssh2(con *c)
243{
244 int j;
245
246 packet_set_connection(c->c_fd, c->c_fd);
247 enable_compat20();
248 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = c->c_keytype == KT_DSA?
Damien Miller8ad960b2011-01-06 22:44:44 +1100249 "ssh-dss" : (c->c_keytype == KT_RSA ? "ssh-rsa" :
250 "ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521");
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000251 c->c_kex = kex_setup(myproposal);
Damien Miller8e7fb332003-02-24 12:03:03 +1100252 c->c_kex->kex[KEX_DH_GRP1_SHA1] = kexdh_client;
Damien Millerf675fc42004-06-15 10:30:09 +1000253 c->c_kex->kex[KEX_DH_GRP14_SHA1] = kexdh_client;
Damien Miller8e7fb332003-02-24 12:03:03 +1100254 c->c_kex->kex[KEX_DH_GEX_SHA1] = kexgex_client;
Damien Millera63128d2006-03-15 12:08:28 +1100255 c->c_kex->kex[KEX_DH_GEX_SHA256] = kexgex_client;
Damien Millereb8b60e2010-08-31 22:41:14 +1000256 c->c_kex->kex[KEX_ECDH_SHA2] = kexecdh_client;
Damien Miller1e124262013-11-04 08:26:52 +1100257 c->c_kex->kex[KEX_C25519_SHA256] = kexc25519_client;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000258 c->c_kex->verify_host_key = hostjump;
259
260 if (!(j = setjmp(kexjmp))) {
261 nonfatal_fatal = 1;
262 dispatch_run(DISPATCH_BLOCK, &c->c_kex->done, c->c_kex);
263 fprintf(stderr, "Impossible! dispatch_run() returned!\n");
264 exit(1);
265 }
266 nonfatal_fatal = 0;
Darren Tuckera627d422013-06-02 07:31:17 +1000267 free(c->c_kex);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000268 c->c_kex = NULL;
269 packet_close();
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000270
Ben Lindstrom520b55c2001-09-12 18:05:05 +0000271 return j < 0? NULL : kexjmp_key;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000272}
273
274static void
275keyprint(con *c, Key *key)
276{
Damien Millerdb7b8172005-03-01 21:48:03 +1100277 char *host = c->c_output_name ? c->c_output_name : c->c_name;
278
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000279 if (!key)
280 return;
Damien Millerdb7b8172005-03-01 21:48:03 +1100281 if (hash_hosts && (host = host_hash(host, NULL, 0)) == NULL)
282 fatal("host_hash failed");
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000283
Damien Millerdb7b8172005-03-01 21:48:03 +1100284 fprintf(stdout, "%s ", host);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000285 key_write(key, stdout);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000286 fputs("\n", stdout);
287}
288
Ben Lindstrombba81212001-06-25 05:01:22 +0000289static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000290tcpconnect(char *host)
291{
292 struct addrinfo hints, *ai, *aitop;
293 char strport[NI_MAXSERV];
294 int gaierr, s = -1;
295
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000296 snprintf(strport, sizeof strport, "%d", ssh_port);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000297 memset(&hints, 0, sizeof(hints));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000298 hints.ai_family = IPv4or6;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000299 hints.ai_socktype = SOCK_STREAM;
300 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
Darren Tucker4abde772007-12-29 02:43:51 +1100301 fatal("getaddrinfo %s: %s", host, ssh_gai_strerror(gaierr));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000302 for (ai = aitop; ai; ai = ai->ai_next) {
Darren Tucker7bd98e72010-01-10 10:31:12 +1100303 s = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000304 if (s < 0) {
305 error("socket: %s", strerror(errno));
306 continue;
307 }
Damien Miller232711f2004-06-15 10:35:30 +1000308 if (set_nonblock(s) == -1)
309 fatal("%s: set_nonblock(%d)", __func__, s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000310 if (connect(s, ai->ai_addr, ai->ai_addrlen) < 0 &&
311 errno != EINPROGRESS)
312 error("connect (`%s'): %s", host, strerror(errno));
313 else
314 break;
315 close(s);
316 s = -1;
317 }
318 freeaddrinfo(aitop);
319 return s;
320}
321
Ben Lindstrombba81212001-06-25 05:01:22 +0000322static int
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000323conalloc(char *iname, char *oname, int keytype)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000324{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000325 char *namebase, *name, *namelist;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000326 int s;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000327
328 namebase = namelist = xstrdup(iname);
329
330 do {
331 name = xstrsep(&namelist, ",");
332 if (!name) {
Darren Tuckera627d422013-06-02 07:31:17 +1000333 free(namebase);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000334 return (-1);
335 }
336 } while ((s = tcpconnect(name)) < 0);
337
338 if (s >= maxfd)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000339 fatal("conalloc: fdno %d too high", s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000340 if (fdcon[s].c_status)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000341 fatal("conalloc: attempt to reuse fdno %d", s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000342
343 fdcon[s].c_fd = s;
344 fdcon[s].c_status = CS_CON;
345 fdcon[s].c_namebase = namebase;
346 fdcon[s].c_name = name;
347 fdcon[s].c_namelist = namelist;
348 fdcon[s].c_output_name = xstrdup(oname);
349 fdcon[s].c_data = (char *) &fdcon[s].c_plen;
350 fdcon[s].c_len = 4;
351 fdcon[s].c_off = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000352 fdcon[s].c_keytype = keytype;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000353 gettimeofday(&fdcon[s].c_tv, NULL);
354 fdcon[s].c_tv.tv_sec += timeout;
355 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000356 FD_SET(s, read_wait);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000357 ncon++;
358 return (s);
359}
360
Ben Lindstrombba81212001-06-25 05:01:22 +0000361static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000362confree(int s)
363{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000364 if (s >= maxfd || fdcon[s].c_status == CS_UNUSED)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000365 fatal("confree: attempt to free bad fdno %d", s);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000366 close(s);
Darren Tuckera627d422013-06-02 07:31:17 +1000367 free(fdcon[s].c_namebase);
368 free(fdcon[s].c_output_name);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000369 if (fdcon[s].c_status == CS_KEYS)
Darren Tuckera627d422013-06-02 07:31:17 +1000370 free(fdcon[s].c_data);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000371 fdcon[s].c_status = CS_UNUSED;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000372 fdcon[s].c_keytype = 0;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000373 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000374 FD_CLR(s, read_wait);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000375 ncon--;
376}
377
Ben Lindstrombba81212001-06-25 05:01:22 +0000378static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000379contouch(int s)
380{
381 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
382 gettimeofday(&fdcon[s].c_tv, NULL);
383 fdcon[s].c_tv.tv_sec += timeout;
384 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
385}
386
Ben Lindstrombba81212001-06-25 05:01:22 +0000387static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000388conrecycle(int s)
389{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000390 con *c = &fdcon[s];
Ben Lindstrom965710f2002-07-07 22:17:22 +0000391 int ret;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000392
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000393 ret = conalloc(c->c_namelist, c->c_output_name, c->c_keytype);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000394 confree(s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000395 return (ret);
396}
397
Ben Lindstrombba81212001-06-25 05:01:22 +0000398static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000399congreet(int s)
400{
Damien Millereccb9de2005-06-17 12:59:34 +1000401 int n = 0, remote_major = 0, remote_minor = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000402 char buf[256], *cp;
Damien Miller83c02ef2001-12-21 12:45:43 +1100403 char remote_version[sizeof buf];
Damien Millereccb9de2005-06-17 12:59:34 +1000404 size_t bufsiz;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000405 con *c = &fdcon[s];
406
Damien Miller4bbacb72005-11-05 15:12:28 +1100407 for (;;) {
408 memset(buf, '\0', sizeof(buf));
409 bufsiz = sizeof(buf);
410 cp = buf;
411 while (bufsiz-- &&
412 (n = atomicio(read, s, cp, 1)) == 1 && *cp != '\n') {
413 if (*cp == '\r')
414 *cp = '\n';
415 cp++;
416 }
417 if (n != 1 || strncmp(buf, "SSH-", 4) == 0)
418 break;
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000419 }
Ben Lindstrom6b28c352002-03-05 01:54:52 +0000420 if (n == 0) {
Damien Millerb253cc42005-05-26 12:23:44 +1000421 switch (errno) {
422 case EPIPE:
423 error("%s: Connection closed by remote host", c->c_name);
424 break;
425 case ECONNREFUSED:
426 break;
427 default:
428 error("read (%s): %s", c->c_name, strerror(errno));
429 break;
430 }
Ben Lindstrom6b28c352002-03-05 01:54:52 +0000431 conrecycle(s);
432 return;
433 }
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000434 if (*cp != '\n' && *cp != '\r') {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000435 error("%s: bad greeting", c->c_name);
436 confree(s);
437 return;
438 }
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000439 *cp = '\0';
Damien Miller83c02ef2001-12-21 12:45:43 +1100440 if (sscanf(buf, "SSH-%d.%d-%[^\n]\n",
441 &remote_major, &remote_minor, remote_version) == 3)
442 compat_datafellows(remote_version);
443 else
444 datafellows = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000445 if (c->c_keytype != KT_RSA1) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000446 if (!ssh2_capable(remote_major, remote_minor)) {
447 debug("%s doesn't support ssh2", c->c_name);
448 confree(s);
449 return;
450 }
Damien Miller83c02ef2001-12-21 12:45:43 +1100451 } else if (remote_major != 1) {
452 debug("%s doesn't support ssh1", c->c_name);
453 confree(s);
454 return;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000455 }
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000456 fprintf(stderr, "# %s %s\n", c->c_name, chop(buf));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000457 n = snprintf(buf, sizeof buf, "SSH-%d.%d-OpenSSH-keyscan\r\n",
458 c->c_keytype == KT_RSA1? PROTOCOL_MAJOR_1 : PROTOCOL_MAJOR_2,
459 c->c_keytype == KT_RSA1? PROTOCOL_MINOR_1 : PROTOCOL_MINOR_2);
Damien Millereccb9de2005-06-17 12:59:34 +1000460 if (n < 0 || (size_t)n >= sizeof(buf)) {
Damien Miller41bfc292005-05-26 12:07:32 +1000461 error("snprintf: buffer too small");
462 confree(s);
463 return;
464 }
Damien Millereccb9de2005-06-17 12:59:34 +1000465 if (atomicio(vwrite, s, buf, n) != (size_t)n) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000466 error("write (%s): %s", c->c_name, strerror(errno));
467 confree(s);
468 return;
469 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000470 if (c->c_keytype != KT_RSA1) {
471 keyprint(c, keygrab_ssh2(c));
472 confree(s);
473 return;
474 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000475 c->c_status = CS_SIZE;
476 contouch(s);
477}
478
Ben Lindstrombba81212001-06-25 05:01:22 +0000479static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000480conread(int s)
481{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000482 con *c = &fdcon[s];
Damien Millerb253cc42005-05-26 12:23:44 +1000483 size_t n;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000484
485 if (c->c_status == CS_CON) {
486 congreet(s);
487 return;
488 }
Darren Tuckerfe6649d2004-08-13 21:19:37 +1000489 n = atomicio(read, s, c->c_data + c->c_off, c->c_len - c->c_off);
Damien Millerb253cc42005-05-26 12:23:44 +1000490 if (n == 0) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000491 error("read (%s): %s", c->c_name, strerror(errno));
492 confree(s);
493 return;
494 }
495 c->c_off += n;
496
497 if (c->c_off == c->c_len)
498 switch (c->c_status) {
499 case CS_SIZE:
500 c->c_plen = htonl(c->c_plen);
501 c->c_len = c->c_plen + 8 - (c->c_plen & 7);
502 c->c_off = 0;
503 c->c_data = xmalloc(c->c_len);
504 c->c_status = CS_KEYS;
505 break;
506 case CS_KEYS:
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000507 keyprint(c, keygrab_ssh1(c));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000508 confree(s);
509 return;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000510 default:
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000511 fatal("conread: invalid status %d", c->c_status);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000512 break;
513 }
514
515 contouch(s);
516}
517
Ben Lindstrombba81212001-06-25 05:01:22 +0000518static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000519conloop(void)
520{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000521 struct timeval seltime, now;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000522 fd_set *r, *e;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000523 con *c;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000524 int i;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000525
526 gettimeofday(&now, NULL);
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000527 c = TAILQ_FIRST(&tq);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000528
Ben Lindstromd20b8552001-03-05 07:01:18 +0000529 if (c && (c->c_tv.tv_sec > now.tv_sec ||
530 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec > now.tv_usec))) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000531 seltime = c->c_tv;
532 seltime.tv_sec -= now.tv_sec;
533 seltime.tv_usec -= now.tv_usec;
Ben Lindstromc791beb2001-02-10 23:18:11 +0000534 if (seltime.tv_usec < 0) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000535 seltime.tv_usec += 1000000;
536 seltime.tv_sec--;
537 }
538 } else
Damien Millerc5219e72011-05-05 14:05:12 +1000539 timerclear(&seltime);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000540
Damien Miller07d86be2006-03-26 14:19:21 +1100541 r = xcalloc(read_wait_nfdset, sizeof(fd_mask));
542 e = xcalloc(read_wait_nfdset, sizeof(fd_mask));
543 memcpy(r, read_wait, read_wait_nfdset * sizeof(fd_mask));
544 memcpy(e, read_wait, read_wait_nfdset * sizeof(fd_mask));
Ben Lindstromc1e04212001-03-05 07:04:38 +0000545
546 while (select(maxfd, r, NULL, e, &seltime) == -1 &&
Damien Millerd8968ad2008-07-04 23:10:49 +1000547 (errno == EAGAIN || errno == EINTR || errno == EWOULDBLOCK))
Ben Lindstromf9452512001-02-15 03:12:08 +0000548 ;
549
Ben Lindstromd20b8552001-03-05 07:01:18 +0000550 for (i = 0; i < maxfd; i++) {
Ben Lindstromc1e04212001-03-05 07:04:38 +0000551 if (FD_ISSET(i, e)) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000552 error("%s: exception!", fdcon[i].c_name);
553 confree(i);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000554 } else if (FD_ISSET(i, r))
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000555 conread(i);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000556 }
Darren Tuckera627d422013-06-02 07:31:17 +1000557 free(r);
558 free(e);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000559
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000560 c = TAILQ_FIRST(&tq);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000561 while (c && (c->c_tv.tv_sec < now.tv_sec ||
562 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec < now.tv_usec))) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000563 int s = c->c_fd;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000564
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000565 c = TAILQ_NEXT(c, c_link);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000566 conrecycle(s);
567 }
568}
569
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000570static void
571do_host(char *host)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000572{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000573 char *name = strnnsep(&host, " \t\n");
574 int j;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000575
Ben Lindstromeaffb9d2001-12-06 16:28:19 +0000576 if (name == NULL)
577 return;
Damien Miller8ad960b2011-01-06 22:44:44 +1100578 for (j = KT_RSA1; j <= KT_ECDSA; j *= 2) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000579 if (get_keytypes & j) {
580 while (ncon >= MAXCON)
581 conloop();
582 conalloc(name, *host ? host : name, j);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000583 }
584 }
585}
586
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000587void
588fatal(const char *fmt,...)
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000589{
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000590 va_list args;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000591
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000592 va_start(args, fmt);
593 do_log(SYSLOG_LEVEL_FATAL, fmt, args);
594 va_end(args);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000595 if (nonfatal_fatal)
596 longjmp(kexjmp, -1);
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000597 else
Darren Tucker3d326222003-09-22 21:11:20 +1000598 exit(255);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000599}
600
601static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000602usage(void)
603{
Damien Millerc1719f72008-11-03 19:27:07 +1100604 fprintf(stderr,
605 "usage: %s [-46Hv] [-f file] [-p port] [-T timeout] [-t type]\n"
Darren Tucker7bd98e72010-01-10 10:31:12 +1100606 "\t\t [host | addrlist namelist] ...\n",
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000607 __progname);
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000608 exit(1);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000609}
610
611int
612main(int argc, char **argv)
613{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000614 int debug_flag = 0, log_level = SYSLOG_LEVEL_INFO;
Damien Miller0e76c5e2010-06-26 09:39:59 +1000615 int opt, fopt_count = 0, j;
616 char *tname, *cp, line[NI_MAXHOST];
617 FILE *fp;
618 u_long linenum;
Kevin Steves76e7d9b2001-09-20 20:30:09 +0000619
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000620 extern int optind;
621 extern char *optarg;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000622
Damien Miller59d3d5b2003-08-22 09:34:41 +1000623 __progname = ssh_get_progname(argv[0]);
Ben Lindstrom4e088e42001-10-10 20:45:43 +0000624 seed_rng();
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000625 TAILQ_INIT(&tq);
626
Darren Tuckerce321d82005-10-03 18:11:24 +1000627 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
628 sanitise_stdfd();
629
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000630 if (argc <= 1)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000631 usage();
632
Darren Tucker7bd98e72010-01-10 10:31:12 +1100633 while ((opt = getopt(argc, argv, "Hv46p:T:t:f:")) != -1) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000634 switch (opt) {
Damien Millerdb7b8172005-03-01 21:48:03 +1100635 case 'H':
636 hash_hosts = 1;
637 break;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000638 case 'p':
639 ssh_port = a2port(optarg);
Damien Miller3dc71ad2009-01-28 16:31:22 +1100640 if (ssh_port <= 0) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000641 fprintf(stderr, "Bad port '%s'\n", optarg);
642 exit(1);
643 }
644 break;
645 case 'T':
Ben Lindstromedd098b2002-07-04 00:07:13 +0000646 timeout = convtime(optarg);
647 if (timeout == -1 || timeout == 0) {
648 fprintf(stderr, "Bad timeout '%s'\n", optarg);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000649 usage();
Ben Lindstromedd098b2002-07-04 00:07:13 +0000650 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000651 break;
652 case 'v':
653 if (!debug_flag) {
654 debug_flag = 1;
655 log_level = SYSLOG_LEVEL_DEBUG1;
656 }
657 else if (log_level < SYSLOG_LEVEL_DEBUG3)
658 log_level++;
659 else
660 fatal("Too high debugging level.");
661 break;
Kevin Steves76e7d9b2001-09-20 20:30:09 +0000662 case 'f':
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000663 if (strcmp(optarg, "-") == 0)
664 optarg = NULL;
665 argv[fopt_count++] = optarg;
666 break;
667 case 't':
668 get_keytypes = 0;
669 tname = strtok(optarg, ",");
670 while (tname) {
671 int type = key_type_from_name(tname);
672 switch (type) {
673 case KEY_RSA1:
674 get_keytypes |= KT_RSA1;
675 break;
676 case KEY_DSA:
677 get_keytypes |= KT_DSA;
678 break;
Damien Millereb8b60e2010-08-31 22:41:14 +1000679 case KEY_ECDSA:
680 get_keytypes |= KT_ECDSA;
681 break;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000682 case KEY_RSA:
683 get_keytypes |= KT_RSA;
684 break;
685 case KEY_UNSPEC:
Ben Lindstrom28c603b2001-12-06 16:45:10 +0000686 fatal("unknown key type %s", tname);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000687 }
688 tname = strtok(NULL, ",");
689 }
690 break;
691 case '4':
692 IPv4or6 = AF_INET;
693 break;
694 case '6':
695 IPv4or6 = AF_INET6;
696 break;
697 case '?':
698 default:
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000699 usage();
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000700 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000701 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000702 if (optind == argc && !fopt_count)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000703 usage();
704
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000705 log_init("ssh-keyscan", log_level, SYSLOG_FACILITY_USER, 1);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000706
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000707 maxfd = fdlim_get(1);
708 if (maxfd < 0)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000709 fatal("%s: fdlim_get: bad value", __progname);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000710 if (maxfd > MAXMAXFD)
711 maxfd = MAXMAXFD;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000712 if (MAXCON <= 0)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000713 fatal("%s: not enough file descriptors", __progname);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000714 if (maxfd > fdlim_get(0))
715 fdlim_set(maxfd);
Damien Miller07d86be2006-03-26 14:19:21 +1100716 fdcon = xcalloc(maxfd, sizeof(con));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000717
Damien Miller07d86be2006-03-26 14:19:21 +1100718 read_wait_nfdset = howmany(maxfd, NFDBITS);
719 read_wait = xcalloc(read_wait_nfdset, sizeof(fd_mask));
Ben Lindstromc1e04212001-03-05 07:04:38 +0000720
Damien Miller0e76c5e2010-06-26 09:39:59 +1000721 for (j = 0; j < fopt_count; j++) {
722 if (argv[j] == NULL)
723 fp = stdin;
724 else if ((fp = fopen(argv[j], "r")) == NULL)
725 fatal("%s: %s: %s", __progname, argv[j],
726 strerror(errno));
727 linenum = 0;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000728
Damien Miller0e76c5e2010-06-26 09:39:59 +1000729 while (read_keyfile_line(fp,
730 argv[j] == NULL ? "(stdin)" : argv[j], line, sizeof(line),
731 &linenum) != -1) {
732 /* Chomp off trailing whitespace and comments */
733 if ((cp = strchr(line, '#')) == NULL)
734 cp = line + strlen(line) - 1;
735 while (cp >= line) {
736 if (*cp == ' ' || *cp == '\t' ||
737 *cp == '\n' || *cp == '#')
738 *cp-- = '\0';
739 else
740 break;
741 }
742
743 /* Skip empty lines */
744 if (*line == '\0')
Ben Lindstrom78bbd9e2001-09-12 17:10:40 +0000745 continue;
Damien Miller0e76c5e2010-06-26 09:39:59 +1000746
747 do_host(line);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000748 }
Damien Miller0e76c5e2010-06-26 09:39:59 +1000749
750 if (ferror(fp))
751 fatal("%s: %s: %s", __progname, argv[j],
752 strerror(errno));
753
754 fclose(fp);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000755 }
756
757 while (optind < argc)
758 do_host(argv[optind++]);
759
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000760 while (ncon > 0)
761 conloop();
762
763 return (0);
764}