blob: 3fb1214e2446558f316e7f11d6e8138be02dfc48 [file] [log] [blame]
Damien Millereb8b60e2010-08-31 22:41:14 +10001/* $OpenBSD: ssh-keyscan.c,v 1.83 2010/08/31 11:54:45 djm 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 Millerbacb7fb2008-05-19 14:56:33 +100060int get_keytypes = KT_RSA; /* Get only RSA 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?
249 "ssh-dss": "ssh-rsa";
250 c->c_kex = kex_setup(myproposal);
Damien Miller8e7fb332003-02-24 12:03:03 +1100251 c->c_kex->kex[KEX_DH_GRP1_SHA1] = kexdh_client;
Damien Millerf675fc42004-06-15 10:30:09 +1000252 c->c_kex->kex[KEX_DH_GRP14_SHA1] = kexdh_client;
Damien Miller8e7fb332003-02-24 12:03:03 +1100253 c->c_kex->kex[KEX_DH_GEX_SHA1] = kexgex_client;
Damien Millera63128d2006-03-15 12:08:28 +1100254 c->c_kex->kex[KEX_DH_GEX_SHA256] = kexgex_client;
Damien Millereb8b60e2010-08-31 22:41:14 +1000255 c->c_kex->kex[KEX_ECDH_SHA2] = kexecdh_client;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000256 c->c_kex->verify_host_key = hostjump;
257
258 if (!(j = setjmp(kexjmp))) {
259 nonfatal_fatal = 1;
260 dispatch_run(DISPATCH_BLOCK, &c->c_kex->done, c->c_kex);
261 fprintf(stderr, "Impossible! dispatch_run() returned!\n");
262 exit(1);
263 }
264 nonfatal_fatal = 0;
265 xfree(c->c_kex);
266 c->c_kex = NULL;
267 packet_close();
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000268
Ben Lindstrom520b55c2001-09-12 18:05:05 +0000269 return j < 0? NULL : kexjmp_key;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000270}
271
272static void
273keyprint(con *c, Key *key)
274{
Damien Millerdb7b8172005-03-01 21:48:03 +1100275 char *host = c->c_output_name ? c->c_output_name : c->c_name;
276
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000277 if (!key)
278 return;
Damien Millerdb7b8172005-03-01 21:48:03 +1100279 if (hash_hosts && (host = host_hash(host, NULL, 0)) == NULL)
280 fatal("host_hash failed");
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000281
Damien Millerdb7b8172005-03-01 21:48:03 +1100282 fprintf(stdout, "%s ", host);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000283 key_write(key, stdout);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000284 fputs("\n", stdout);
285}
286
Ben Lindstrombba81212001-06-25 05:01:22 +0000287static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000288tcpconnect(char *host)
289{
290 struct addrinfo hints, *ai, *aitop;
291 char strport[NI_MAXSERV];
292 int gaierr, s = -1;
293
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000294 snprintf(strport, sizeof strport, "%d", ssh_port);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000295 memset(&hints, 0, sizeof(hints));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000296 hints.ai_family = IPv4or6;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000297 hints.ai_socktype = SOCK_STREAM;
298 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
Darren Tucker4abde772007-12-29 02:43:51 +1100299 fatal("getaddrinfo %s: %s", host, ssh_gai_strerror(gaierr));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000300 for (ai = aitop; ai; ai = ai->ai_next) {
Darren Tucker7bd98e72010-01-10 10:31:12 +1100301 s = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000302 if (s < 0) {
303 error("socket: %s", strerror(errno));
304 continue;
305 }
Damien Miller232711f2004-06-15 10:35:30 +1000306 if (set_nonblock(s) == -1)
307 fatal("%s: set_nonblock(%d)", __func__, s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000308 if (connect(s, ai->ai_addr, ai->ai_addrlen) < 0 &&
309 errno != EINPROGRESS)
310 error("connect (`%s'): %s", host, strerror(errno));
311 else
312 break;
313 close(s);
314 s = -1;
315 }
316 freeaddrinfo(aitop);
317 return s;
318}
319
Ben Lindstrombba81212001-06-25 05:01:22 +0000320static int
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000321conalloc(char *iname, char *oname, int keytype)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000322{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000323 char *namebase, *name, *namelist;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000324 int s;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000325
326 namebase = namelist = xstrdup(iname);
327
328 do {
329 name = xstrsep(&namelist, ",");
330 if (!name) {
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000331 xfree(namebase);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000332 return (-1);
333 }
334 } while ((s = tcpconnect(name)) < 0);
335
336 if (s >= maxfd)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000337 fatal("conalloc: fdno %d too high", s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000338 if (fdcon[s].c_status)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000339 fatal("conalloc: attempt to reuse fdno %d", s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000340
341 fdcon[s].c_fd = s;
342 fdcon[s].c_status = CS_CON;
343 fdcon[s].c_namebase = namebase;
344 fdcon[s].c_name = name;
345 fdcon[s].c_namelist = namelist;
346 fdcon[s].c_output_name = xstrdup(oname);
347 fdcon[s].c_data = (char *) &fdcon[s].c_plen;
348 fdcon[s].c_len = 4;
349 fdcon[s].c_off = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000350 fdcon[s].c_keytype = keytype;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000351 gettimeofday(&fdcon[s].c_tv, NULL);
352 fdcon[s].c_tv.tv_sec += timeout;
353 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000354 FD_SET(s, read_wait);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000355 ncon++;
356 return (s);
357}
358
Ben Lindstrombba81212001-06-25 05:01:22 +0000359static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000360confree(int s)
361{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000362 if (s >= maxfd || fdcon[s].c_status == CS_UNUSED)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000363 fatal("confree: attempt to free bad fdno %d", s);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000364 close(s);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000365 xfree(fdcon[s].c_namebase);
366 xfree(fdcon[s].c_output_name);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000367 if (fdcon[s].c_status == CS_KEYS)
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000368 xfree(fdcon[s].c_data);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000369 fdcon[s].c_status = CS_UNUSED;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000370 fdcon[s].c_keytype = 0;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000371 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000372 FD_CLR(s, read_wait);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000373 ncon--;
374}
375
Ben Lindstrombba81212001-06-25 05:01:22 +0000376static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000377contouch(int s)
378{
379 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
380 gettimeofday(&fdcon[s].c_tv, NULL);
381 fdcon[s].c_tv.tv_sec += timeout;
382 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
383}
384
Ben Lindstrombba81212001-06-25 05:01:22 +0000385static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000386conrecycle(int s)
387{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000388 con *c = &fdcon[s];
Ben Lindstrom965710f2002-07-07 22:17:22 +0000389 int ret;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000390
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000391 ret = conalloc(c->c_namelist, c->c_output_name, c->c_keytype);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000392 confree(s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000393 return (ret);
394}
395
Ben Lindstrombba81212001-06-25 05:01:22 +0000396static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000397congreet(int s)
398{
Damien Millereccb9de2005-06-17 12:59:34 +1000399 int n = 0, remote_major = 0, remote_minor = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000400 char buf[256], *cp;
Damien Miller83c02ef2001-12-21 12:45:43 +1100401 char remote_version[sizeof buf];
Damien Millereccb9de2005-06-17 12:59:34 +1000402 size_t bufsiz;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000403 con *c = &fdcon[s];
404
Damien Miller4bbacb72005-11-05 15:12:28 +1100405 for (;;) {
406 memset(buf, '\0', sizeof(buf));
407 bufsiz = sizeof(buf);
408 cp = buf;
409 while (bufsiz-- &&
410 (n = atomicio(read, s, cp, 1)) == 1 && *cp != '\n') {
411 if (*cp == '\r')
412 *cp = '\n';
413 cp++;
414 }
415 if (n != 1 || strncmp(buf, "SSH-", 4) == 0)
416 break;
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000417 }
Ben Lindstrom6b28c352002-03-05 01:54:52 +0000418 if (n == 0) {
Damien Millerb253cc42005-05-26 12:23:44 +1000419 switch (errno) {
420 case EPIPE:
421 error("%s: Connection closed by remote host", c->c_name);
422 break;
423 case ECONNREFUSED:
424 break;
425 default:
426 error("read (%s): %s", c->c_name, strerror(errno));
427 break;
428 }
Ben Lindstrom6b28c352002-03-05 01:54:52 +0000429 conrecycle(s);
430 return;
431 }
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000432 if (*cp != '\n' && *cp != '\r') {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000433 error("%s: bad greeting", c->c_name);
434 confree(s);
435 return;
436 }
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000437 *cp = '\0';
Damien Miller83c02ef2001-12-21 12:45:43 +1100438 if (sscanf(buf, "SSH-%d.%d-%[^\n]\n",
439 &remote_major, &remote_minor, remote_version) == 3)
440 compat_datafellows(remote_version);
441 else
442 datafellows = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000443 if (c->c_keytype != KT_RSA1) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000444 if (!ssh2_capable(remote_major, remote_minor)) {
445 debug("%s doesn't support ssh2", c->c_name);
446 confree(s);
447 return;
448 }
Damien Miller83c02ef2001-12-21 12:45:43 +1100449 } else if (remote_major != 1) {
450 debug("%s doesn't support ssh1", c->c_name);
451 confree(s);
452 return;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000453 }
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000454 fprintf(stderr, "# %s %s\n", c->c_name, chop(buf));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000455 n = snprintf(buf, sizeof buf, "SSH-%d.%d-OpenSSH-keyscan\r\n",
456 c->c_keytype == KT_RSA1? PROTOCOL_MAJOR_1 : PROTOCOL_MAJOR_2,
457 c->c_keytype == KT_RSA1? PROTOCOL_MINOR_1 : PROTOCOL_MINOR_2);
Damien Millereccb9de2005-06-17 12:59:34 +1000458 if (n < 0 || (size_t)n >= sizeof(buf)) {
Damien Miller41bfc292005-05-26 12:07:32 +1000459 error("snprintf: buffer too small");
460 confree(s);
461 return;
462 }
Damien Millereccb9de2005-06-17 12:59:34 +1000463 if (atomicio(vwrite, s, buf, n) != (size_t)n) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000464 error("write (%s): %s", c->c_name, strerror(errno));
465 confree(s);
466 return;
467 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000468 if (c->c_keytype != KT_RSA1) {
469 keyprint(c, keygrab_ssh2(c));
470 confree(s);
471 return;
472 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000473 c->c_status = CS_SIZE;
474 contouch(s);
475}
476
Ben Lindstrombba81212001-06-25 05:01:22 +0000477static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000478conread(int s)
479{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000480 con *c = &fdcon[s];
Damien Millerb253cc42005-05-26 12:23:44 +1000481 size_t n;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000482
483 if (c->c_status == CS_CON) {
484 congreet(s);
485 return;
486 }
Darren Tuckerfe6649d2004-08-13 21:19:37 +1000487 n = atomicio(read, s, c->c_data + c->c_off, c->c_len - c->c_off);
Damien Millerb253cc42005-05-26 12:23:44 +1000488 if (n == 0) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000489 error("read (%s): %s", c->c_name, strerror(errno));
490 confree(s);
491 return;
492 }
493 c->c_off += n;
494
495 if (c->c_off == c->c_len)
496 switch (c->c_status) {
497 case CS_SIZE:
498 c->c_plen = htonl(c->c_plen);
499 c->c_len = c->c_plen + 8 - (c->c_plen & 7);
500 c->c_off = 0;
501 c->c_data = xmalloc(c->c_len);
502 c->c_status = CS_KEYS;
503 break;
504 case CS_KEYS:
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000505 keyprint(c, keygrab_ssh1(c));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000506 confree(s);
507 return;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000508 default:
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000509 fatal("conread: invalid status %d", c->c_status);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000510 break;
511 }
512
513 contouch(s);
514}
515
Ben Lindstrombba81212001-06-25 05:01:22 +0000516static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000517conloop(void)
518{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000519 struct timeval seltime, now;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000520 fd_set *r, *e;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000521 con *c;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000522 int i;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000523
524 gettimeofday(&now, NULL);
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000525 c = TAILQ_FIRST(&tq);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000526
Ben Lindstromd20b8552001-03-05 07:01:18 +0000527 if (c && (c->c_tv.tv_sec > now.tv_sec ||
528 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec > now.tv_usec))) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000529 seltime = c->c_tv;
530 seltime.tv_sec -= now.tv_sec;
531 seltime.tv_usec -= now.tv_usec;
Ben Lindstromc791beb2001-02-10 23:18:11 +0000532 if (seltime.tv_usec < 0) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000533 seltime.tv_usec += 1000000;
534 seltime.tv_sec--;
535 }
536 } else
537 seltime.tv_sec = seltime.tv_usec = 0;
538
Damien Miller07d86be2006-03-26 14:19:21 +1100539 r = xcalloc(read_wait_nfdset, sizeof(fd_mask));
540 e = xcalloc(read_wait_nfdset, sizeof(fd_mask));
541 memcpy(r, read_wait, read_wait_nfdset * sizeof(fd_mask));
542 memcpy(e, read_wait, read_wait_nfdset * sizeof(fd_mask));
Ben Lindstromc1e04212001-03-05 07:04:38 +0000543
544 while (select(maxfd, r, NULL, e, &seltime) == -1 &&
Damien Millerd8968ad2008-07-04 23:10:49 +1000545 (errno == EAGAIN || errno == EINTR || errno == EWOULDBLOCK))
Ben Lindstromf9452512001-02-15 03:12:08 +0000546 ;
547
Ben Lindstromd20b8552001-03-05 07:01:18 +0000548 for (i = 0; i < maxfd; i++) {
Ben Lindstromc1e04212001-03-05 07:04:38 +0000549 if (FD_ISSET(i, e)) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000550 error("%s: exception!", fdcon[i].c_name);
551 confree(i);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000552 } else if (FD_ISSET(i, r))
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000553 conread(i);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000554 }
Ben Lindstromc1e04212001-03-05 07:04:38 +0000555 xfree(r);
556 xfree(e);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000557
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000558 c = TAILQ_FIRST(&tq);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000559 while (c && (c->c_tv.tv_sec < now.tv_sec ||
560 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec < now.tv_usec))) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000561 int s = c->c_fd;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000562
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000563 c = TAILQ_NEXT(c, c_link);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000564 conrecycle(s);
565 }
566}
567
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000568static void
569do_host(char *host)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000570{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000571 char *name = strnnsep(&host, " \t\n");
572 int j;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000573
Ben Lindstromeaffb9d2001-12-06 16:28:19 +0000574 if (name == NULL)
575 return;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000576 for (j = KT_RSA1; j <= KT_RSA; j *= 2) {
577 if (get_keytypes & j) {
578 while (ncon >= MAXCON)
579 conloop();
580 conalloc(name, *host ? host : name, j);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000581 }
582 }
583}
584
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000585void
586fatal(const char *fmt,...)
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000587{
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000588 va_list args;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000589
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000590 va_start(args, fmt);
591 do_log(SYSLOG_LEVEL_FATAL, fmt, args);
592 va_end(args);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000593 if (nonfatal_fatal)
594 longjmp(kexjmp, -1);
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000595 else
Darren Tucker3d326222003-09-22 21:11:20 +1000596 exit(255);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000597}
598
599static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000600usage(void)
601{
Damien Millerc1719f72008-11-03 19:27:07 +1100602 fprintf(stderr,
603 "usage: %s [-46Hv] [-f file] [-p port] [-T timeout] [-t type]\n"
Darren Tucker7bd98e72010-01-10 10:31:12 +1100604 "\t\t [host | addrlist namelist] ...\n",
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000605 __progname);
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000606 exit(1);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000607}
608
609int
610main(int argc, char **argv)
611{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000612 int debug_flag = 0, log_level = SYSLOG_LEVEL_INFO;
Damien Miller0e76c5e2010-06-26 09:39:59 +1000613 int opt, fopt_count = 0, j;
614 char *tname, *cp, line[NI_MAXHOST];
615 FILE *fp;
616 u_long linenum;
Kevin Steves76e7d9b2001-09-20 20:30:09 +0000617
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000618 extern int optind;
619 extern char *optarg;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000620
Damien Miller59d3d5b2003-08-22 09:34:41 +1000621 __progname = ssh_get_progname(argv[0]);
Ben Lindstrom4e088e42001-10-10 20:45:43 +0000622 init_rng();
623 seed_rng();
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000624 TAILQ_INIT(&tq);
625
Darren Tuckerce321d82005-10-03 18:11:24 +1000626 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
627 sanitise_stdfd();
628
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000629 if (argc <= 1)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000630 usage();
631
Darren Tucker7bd98e72010-01-10 10:31:12 +1100632 while ((opt = getopt(argc, argv, "Hv46p:T:t:f:")) != -1) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000633 switch (opt) {
Damien Millerdb7b8172005-03-01 21:48:03 +1100634 case 'H':
635 hash_hosts = 1;
636 break;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000637 case 'p':
638 ssh_port = a2port(optarg);
Damien Miller3dc71ad2009-01-28 16:31:22 +1100639 if (ssh_port <= 0) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000640 fprintf(stderr, "Bad port '%s'\n", optarg);
641 exit(1);
642 }
643 break;
644 case 'T':
Ben Lindstromedd098b2002-07-04 00:07:13 +0000645 timeout = convtime(optarg);
646 if (timeout == -1 || timeout == 0) {
647 fprintf(stderr, "Bad timeout '%s'\n", optarg);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000648 usage();
Ben Lindstromedd098b2002-07-04 00:07:13 +0000649 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000650 break;
651 case 'v':
652 if (!debug_flag) {
653 debug_flag = 1;
654 log_level = SYSLOG_LEVEL_DEBUG1;
655 }
656 else if (log_level < SYSLOG_LEVEL_DEBUG3)
657 log_level++;
658 else
659 fatal("Too high debugging level.");
660 break;
Kevin Steves76e7d9b2001-09-20 20:30:09 +0000661 case 'f':
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000662 if (strcmp(optarg, "-") == 0)
663 optarg = NULL;
664 argv[fopt_count++] = optarg;
665 break;
666 case 't':
667 get_keytypes = 0;
668 tname = strtok(optarg, ",");
669 while (tname) {
670 int type = key_type_from_name(tname);
671 switch (type) {
672 case KEY_RSA1:
673 get_keytypes |= KT_RSA1;
674 break;
675 case KEY_DSA:
676 get_keytypes |= KT_DSA;
677 break;
Damien Millereb8b60e2010-08-31 22:41:14 +1000678 case KEY_ECDSA:
679 get_keytypes |= KT_ECDSA;
680 break;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000681 case KEY_RSA:
682 get_keytypes |= KT_RSA;
683 break;
684 case KEY_UNSPEC:
Ben Lindstrom28c603b2001-12-06 16:45:10 +0000685 fatal("unknown key type %s", tname);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000686 }
687 tname = strtok(NULL, ",");
688 }
689 break;
690 case '4':
691 IPv4or6 = AF_INET;
692 break;
693 case '6':
694 IPv4or6 = AF_INET6;
695 break;
696 case '?':
697 default:
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000698 usage();
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000699 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000700 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000701 if (optind == argc && !fopt_count)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000702 usage();
703
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000704 log_init("ssh-keyscan", log_level, SYSLOG_FACILITY_USER, 1);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000705
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000706 maxfd = fdlim_get(1);
707 if (maxfd < 0)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000708 fatal("%s: fdlim_get: bad value", __progname);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000709 if (maxfd > MAXMAXFD)
710 maxfd = MAXMAXFD;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000711 if (MAXCON <= 0)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000712 fatal("%s: not enough file descriptors", __progname);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000713 if (maxfd > fdlim_get(0))
714 fdlim_set(maxfd);
Damien Miller07d86be2006-03-26 14:19:21 +1100715 fdcon = xcalloc(maxfd, sizeof(con));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000716
Damien Miller07d86be2006-03-26 14:19:21 +1100717 read_wait_nfdset = howmany(maxfd, NFDBITS);
718 read_wait = xcalloc(read_wait_nfdset, sizeof(fd_mask));
Ben Lindstromc1e04212001-03-05 07:04:38 +0000719
Damien Miller0e76c5e2010-06-26 09:39:59 +1000720 for (j = 0; j < fopt_count; j++) {
721 if (argv[j] == NULL)
722 fp = stdin;
723 else if ((fp = fopen(argv[j], "r")) == NULL)
724 fatal("%s: %s: %s", __progname, argv[j],
725 strerror(errno));
726 linenum = 0;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000727
Damien Miller0e76c5e2010-06-26 09:39:59 +1000728 while (read_keyfile_line(fp,
729 argv[j] == NULL ? "(stdin)" : argv[j], line, sizeof(line),
730 &linenum) != -1) {
731 /* Chomp off trailing whitespace and comments */
732 if ((cp = strchr(line, '#')) == NULL)
733 cp = line + strlen(line) - 1;
734 while (cp >= line) {
735 if (*cp == ' ' || *cp == '\t' ||
736 *cp == '\n' || *cp == '#')
737 *cp-- = '\0';
738 else
739 break;
740 }
741
742 /* Skip empty lines */
743 if (*line == '\0')
Ben Lindstrom78bbd9e2001-09-12 17:10:40 +0000744 continue;
Damien Miller0e76c5e2010-06-26 09:39:59 +1000745
746 do_host(line);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000747 }
Damien Miller0e76c5e2010-06-26 09:39:59 +1000748
749 if (ferror(fp))
750 fatal("%s: %s: %s", __progname, argv[j],
751 strerror(errno));
752
753 fclose(fp);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000754 }
755
756 while (optind < argc)
757 do_host(argv[optind++]);
758
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000759 while (ncon > 0)
760 conloop();
761
762 return (0);
763}