blob: b6cf427cd62ab85bc55b131baebde7017de3a60c [file] [log] [blame]
Damien Miller0e76c5e2010-06-26 09:39:59 +10001/* $OpenBSD: ssh-keyscan.c,v 1.82 2010/06/22 04:54:30 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
55#define KT_RSA1 1
56#define KT_DSA 2
57#define KT_RSA 4
58
Damien Millerbacb7fb2008-05-19 14:56:33 +100059int get_keytypes = KT_RSA; /* Get only RSA keys by default */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000060
Damien Millerdb7b8172005-03-01 21:48:03 +110061int hash_hosts = 0; /* Hash hostname on output */
62
Ben Lindstromb6434ae2000-12-05 01:15:09 +000063#define MAXMAXFD 256
64
65/* The number of seconds after which to give up on a TCP connection */
66int timeout = 5;
67
68int maxfd;
Ben Lindstromd20b8552001-03-05 07:01:18 +000069#define MAXCON (maxfd - 10)
Ben Lindstromb6434ae2000-12-05 01:15:09 +000070
Kevin Stevesec84dc12000-12-13 17:45:15 +000071extern char *__progname;
Ben Lindstromc1e04212001-03-05 07:04:38 +000072fd_set *read_wait;
Damien Miller07d86be2006-03-26 14:19:21 +110073size_t read_wait_nfdset;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000074int ncon;
Ben Lindstrom325e70c2001-08-06 22:41:30 +000075int nonfatal_fatal = 0;
76jmp_buf kexjmp;
Ben Lindstrom520b55c2001-09-12 18:05:05 +000077Key *kexjmp_key;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000078
79/*
80 * Keep a connection structure for each file descriptor. The state
81 * associated with file descriptor n is held in fdcon[n].
82 */
83typedef struct Connection {
Ben Lindstrom46c16222000-12-22 01:43:59 +000084 u_char c_status; /* State of connection on this file desc. */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000085#define CS_UNUSED 0 /* File descriptor unused */
86#define CS_CON 1 /* Waiting to connect/read greeting */
87#define CS_SIZE 2 /* Waiting to read initial packet size */
88#define CS_KEYS 3 /* Waiting to read public key packet */
89 int c_fd; /* Quick lookup: c->c_fd == c - fdcon */
90 int c_plen; /* Packet length field for ssh packet */
91 int c_len; /* Total bytes which must be read. */
92 int c_off; /* Length of data read so far. */
Ben Lindstrom325e70c2001-08-06 22:41:30 +000093 int c_keytype; /* Only one of KT_RSA1, KT_DSA, or KT_RSA */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000094 char *c_namebase; /* Address to free for c_name and c_namelist */
95 char *c_name; /* Hostname of connection for errors */
96 char *c_namelist; /* Pointer to other possible addresses */
97 char *c_output_name; /* Hostname of connection for output */
98 char *c_data; /* Data read from this fd */
Ben Lindstrom325e70c2001-08-06 22:41:30 +000099 Kex *c_kex; /* The key-exchange struct for ssh2 */
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000100 struct timeval c_tv; /* Time at which connection gets aborted */
101 TAILQ_ENTRY(Connection) c_link; /* List of connections in timeout order. */
102} con;
103
104TAILQ_HEAD(conlist, Connection) tq; /* Timeout Queue */
105con *fdcon;
106
Ben Lindstrombba81212001-06-25 05:01:22 +0000107static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000108fdlim_get(int hard)
109{
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000110#if defined(HAVE_GETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000111 struct rlimit rlfd;
Ben Lindstromb0a4cd82001-03-05 04:54:49 +0000112
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000113 if (getrlimit(RLIMIT_NOFILE, &rlfd) < 0)
114 return (-1);
115 if ((hard ? rlfd.rlim_max : rlfd.rlim_cur) == RLIM_INFINITY)
Damien Millere00074a2003-11-24 13:07:45 +1100116 return SSH_SYSFDMAX;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000117 else
118 return hard ? rlfd.rlim_max : rlfd.rlim_cur;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000119#else
Damien Millere00074a2003-11-24 13:07:45 +1100120 return SSH_SYSFDMAX;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000121#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000122}
123
Ben Lindstrombba81212001-06-25 05:01:22 +0000124static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000125fdlim_set(int lim)
126{
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000127#if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000128 struct rlimit rlfd;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000129#endif
Ben Lindstrom5c98db52002-07-07 22:25:29 +0000130
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000131 if (lim <= 0)
132 return (-1);
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000133#if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000134 if (getrlimit(RLIMIT_NOFILE, &rlfd) < 0)
135 return (-1);
136 rlfd.rlim_cur = lim;
137 if (setrlimit(RLIMIT_NOFILE, &rlfd) < 0)
138 return (-1);
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000139#elif defined (HAVE_SETDTABLESIZE)
Kevin Steves28a7f262001-02-05 15:43:59 +0000140 setdtablesize(lim);
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000141#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000142 return (0);
143}
144
145/*
146 * This is an strsep function that returns a null field for adjacent
147 * separators. This is the same as the 4.4BSD strsep, but different from the
148 * one in the GNU libc.
149 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000150static char *
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000151xstrsep(char **str, const char *delim)
152{
153 char *s, *e;
154
155 if (!**str)
156 return (NULL);
157
158 s = *str;
159 e = s + strcspn(s, delim);
160
161 if (*e != '\0')
162 *e++ = '\0';
163 *str = e;
164
165 return (s);
166}
167
168/*
169 * Get the next non-null token (like GNU strsep). Strsep() will return a
170 * null token for two adjacent separators, so we may have to loop.
171 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000172static char *
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000173strnnsep(char **stringp, char *delim)
174{
175 char *tok;
176
177 do {
178 tok = xstrsep(stringp, delim);
179 } while (tok && *tok == '\0');
180 return (tok);
181}
182
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000183static Key *
184keygrab_ssh1(con *c)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000185{
186 static Key *rsa;
187 static Buffer msg;
188
189 if (rsa == NULL) {
190 buffer_init(&msg);
191 rsa = key_new(KEY_RSA1);
192 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000193 buffer_append(&msg, c->c_data, c->c_plen);
194 buffer_consume(&msg, 8 - (c->c_plen & 7)); /* padding */
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000195 if (buffer_get_char(&msg) != (int) SSH_SMSG_PUBLIC_KEY) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000196 error("%s: invalid packet type", c->c_name);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000197 buffer_clear(&msg);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000198 return NULL;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000199 }
200 buffer_consume(&msg, 8); /* cookie */
201
202 /* server key */
203 (void) buffer_get_int(&msg);
204 buffer_get_bignum(&msg, rsa->rsa->e);
205 buffer_get_bignum(&msg, rsa->rsa->n);
206
207 /* host key */
208 (void) buffer_get_int(&msg);
209 buffer_get_bignum(&msg, rsa->rsa->e);
210 buffer_get_bignum(&msg, rsa->rsa->n);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000211
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000212 buffer_clear(&msg);
213
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000214 return (rsa);
215}
216
217static int
218hostjump(Key *hostkey)
219{
Ben Lindstrom520b55c2001-09-12 18:05:05 +0000220 kexjmp_key = hostkey;
221 longjmp(kexjmp, 1);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000222}
223
224static int
225ssh2_capable(int remote_major, int remote_minor)
226{
227 switch (remote_major) {
228 case 1:
229 if (remote_minor == 99)
230 return 1;
231 break;
232 case 2:
233 return 1;
234 default:
235 break;
236 }
237 return 0;
238}
239
240static Key *
241keygrab_ssh2(con *c)
242{
243 int j;
244
245 packet_set_connection(c->c_fd, c->c_fd);
246 enable_compat20();
247 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = c->c_keytype == KT_DSA?
248 "ssh-dss": "ssh-rsa";
249 c->c_kex = kex_setup(myproposal);
Damien Miller8e7fb332003-02-24 12:03:03 +1100250 c->c_kex->kex[KEX_DH_GRP1_SHA1] = kexdh_client;
Damien Millerf675fc42004-06-15 10:30:09 +1000251 c->c_kex->kex[KEX_DH_GRP14_SHA1] = kexdh_client;
Damien Miller8e7fb332003-02-24 12:03:03 +1100252 c->c_kex->kex[KEX_DH_GEX_SHA1] = kexgex_client;
Damien Millera63128d2006-03-15 12:08:28 +1100253 c->c_kex->kex[KEX_DH_GEX_SHA256] = kexgex_client;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000254 c->c_kex->verify_host_key = hostjump;
255
256 if (!(j = setjmp(kexjmp))) {
257 nonfatal_fatal = 1;
258 dispatch_run(DISPATCH_BLOCK, &c->c_kex->done, c->c_kex);
259 fprintf(stderr, "Impossible! dispatch_run() returned!\n");
260 exit(1);
261 }
262 nonfatal_fatal = 0;
263 xfree(c->c_kex);
264 c->c_kex = NULL;
265 packet_close();
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000266
Ben Lindstrom520b55c2001-09-12 18:05:05 +0000267 return j < 0? NULL : kexjmp_key;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000268}
269
270static void
271keyprint(con *c, Key *key)
272{
Damien Millerdb7b8172005-03-01 21:48:03 +1100273 char *host = c->c_output_name ? c->c_output_name : c->c_name;
274
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000275 if (!key)
276 return;
Damien Millerdb7b8172005-03-01 21:48:03 +1100277 if (hash_hosts && (host = host_hash(host, NULL, 0)) == NULL)
278 fatal("host_hash failed");
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000279
Damien Millerdb7b8172005-03-01 21:48:03 +1100280 fprintf(stdout, "%s ", host);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000281 key_write(key, stdout);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000282 fputs("\n", stdout);
283}
284
Ben Lindstrombba81212001-06-25 05:01:22 +0000285static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000286tcpconnect(char *host)
287{
288 struct addrinfo hints, *ai, *aitop;
289 char strport[NI_MAXSERV];
290 int gaierr, s = -1;
291
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000292 snprintf(strport, sizeof strport, "%d", ssh_port);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000293 memset(&hints, 0, sizeof(hints));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000294 hints.ai_family = IPv4or6;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000295 hints.ai_socktype = SOCK_STREAM;
296 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
Darren Tucker4abde772007-12-29 02:43:51 +1100297 fatal("getaddrinfo %s: %s", host, ssh_gai_strerror(gaierr));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000298 for (ai = aitop; ai; ai = ai->ai_next) {
Darren Tucker7bd98e72010-01-10 10:31:12 +1100299 s = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000300 if (s < 0) {
301 error("socket: %s", strerror(errno));
302 continue;
303 }
Damien Miller232711f2004-06-15 10:35:30 +1000304 if (set_nonblock(s) == -1)
305 fatal("%s: set_nonblock(%d)", __func__, s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000306 if (connect(s, ai->ai_addr, ai->ai_addrlen) < 0 &&
307 errno != EINPROGRESS)
308 error("connect (`%s'): %s", host, strerror(errno));
309 else
310 break;
311 close(s);
312 s = -1;
313 }
314 freeaddrinfo(aitop);
315 return s;
316}
317
Ben Lindstrombba81212001-06-25 05:01:22 +0000318static int
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000319conalloc(char *iname, char *oname, int keytype)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000320{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000321 char *namebase, *name, *namelist;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000322 int s;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000323
324 namebase = namelist = xstrdup(iname);
325
326 do {
327 name = xstrsep(&namelist, ",");
328 if (!name) {
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000329 xfree(namebase);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000330 return (-1);
331 }
332 } while ((s = tcpconnect(name)) < 0);
333
334 if (s >= maxfd)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000335 fatal("conalloc: fdno %d too high", s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000336 if (fdcon[s].c_status)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000337 fatal("conalloc: attempt to reuse fdno %d", s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000338
339 fdcon[s].c_fd = s;
340 fdcon[s].c_status = CS_CON;
341 fdcon[s].c_namebase = namebase;
342 fdcon[s].c_name = name;
343 fdcon[s].c_namelist = namelist;
344 fdcon[s].c_output_name = xstrdup(oname);
345 fdcon[s].c_data = (char *) &fdcon[s].c_plen;
346 fdcon[s].c_len = 4;
347 fdcon[s].c_off = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000348 fdcon[s].c_keytype = keytype;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000349 gettimeofday(&fdcon[s].c_tv, NULL);
350 fdcon[s].c_tv.tv_sec += timeout;
351 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000352 FD_SET(s, read_wait);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000353 ncon++;
354 return (s);
355}
356
Ben Lindstrombba81212001-06-25 05:01:22 +0000357static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000358confree(int s)
359{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000360 if (s >= maxfd || fdcon[s].c_status == CS_UNUSED)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000361 fatal("confree: attempt to free bad fdno %d", s);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000362 close(s);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000363 xfree(fdcon[s].c_namebase);
364 xfree(fdcon[s].c_output_name);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000365 if (fdcon[s].c_status == CS_KEYS)
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000366 xfree(fdcon[s].c_data);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000367 fdcon[s].c_status = CS_UNUSED;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000368 fdcon[s].c_keytype = 0;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000369 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000370 FD_CLR(s, read_wait);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000371 ncon--;
372}
373
Ben Lindstrombba81212001-06-25 05:01:22 +0000374static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000375contouch(int s)
376{
377 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
378 gettimeofday(&fdcon[s].c_tv, NULL);
379 fdcon[s].c_tv.tv_sec += timeout;
380 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
381}
382
Ben Lindstrombba81212001-06-25 05:01:22 +0000383static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000384conrecycle(int s)
385{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000386 con *c = &fdcon[s];
Ben Lindstrom965710f2002-07-07 22:17:22 +0000387 int ret;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000388
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000389 ret = conalloc(c->c_namelist, c->c_output_name, c->c_keytype);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000390 confree(s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000391 return (ret);
392}
393
Ben Lindstrombba81212001-06-25 05:01:22 +0000394static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000395congreet(int s)
396{
Damien Millereccb9de2005-06-17 12:59:34 +1000397 int n = 0, remote_major = 0, remote_minor = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000398 char buf[256], *cp;
Damien Miller83c02ef2001-12-21 12:45:43 +1100399 char remote_version[sizeof buf];
Damien Millereccb9de2005-06-17 12:59:34 +1000400 size_t bufsiz;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000401 con *c = &fdcon[s];
402
Damien Miller4bbacb72005-11-05 15:12:28 +1100403 for (;;) {
404 memset(buf, '\0', sizeof(buf));
405 bufsiz = sizeof(buf);
406 cp = buf;
407 while (bufsiz-- &&
408 (n = atomicio(read, s, cp, 1)) == 1 && *cp != '\n') {
409 if (*cp == '\r')
410 *cp = '\n';
411 cp++;
412 }
413 if (n != 1 || strncmp(buf, "SSH-", 4) == 0)
414 break;
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000415 }
Ben Lindstrom6b28c352002-03-05 01:54:52 +0000416 if (n == 0) {
Damien Millerb253cc42005-05-26 12:23:44 +1000417 switch (errno) {
418 case EPIPE:
419 error("%s: Connection closed by remote host", c->c_name);
420 break;
421 case ECONNREFUSED:
422 break;
423 default:
424 error("read (%s): %s", c->c_name, strerror(errno));
425 break;
426 }
Ben Lindstrom6b28c352002-03-05 01:54:52 +0000427 conrecycle(s);
428 return;
429 }
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000430 if (*cp != '\n' && *cp != '\r') {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000431 error("%s: bad greeting", c->c_name);
432 confree(s);
433 return;
434 }
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000435 *cp = '\0';
Damien Miller83c02ef2001-12-21 12:45:43 +1100436 if (sscanf(buf, "SSH-%d.%d-%[^\n]\n",
437 &remote_major, &remote_minor, remote_version) == 3)
438 compat_datafellows(remote_version);
439 else
440 datafellows = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000441 if (c->c_keytype != KT_RSA1) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000442 if (!ssh2_capable(remote_major, remote_minor)) {
443 debug("%s doesn't support ssh2", c->c_name);
444 confree(s);
445 return;
446 }
Damien Miller83c02ef2001-12-21 12:45:43 +1100447 } else if (remote_major != 1) {
448 debug("%s doesn't support ssh1", c->c_name);
449 confree(s);
450 return;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000451 }
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000452 fprintf(stderr, "# %s %s\n", c->c_name, chop(buf));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000453 n = snprintf(buf, sizeof buf, "SSH-%d.%d-OpenSSH-keyscan\r\n",
454 c->c_keytype == KT_RSA1? PROTOCOL_MAJOR_1 : PROTOCOL_MAJOR_2,
455 c->c_keytype == KT_RSA1? PROTOCOL_MINOR_1 : PROTOCOL_MINOR_2);
Damien Millereccb9de2005-06-17 12:59:34 +1000456 if (n < 0 || (size_t)n >= sizeof(buf)) {
Damien Miller41bfc292005-05-26 12:07:32 +1000457 error("snprintf: buffer too small");
458 confree(s);
459 return;
460 }
Damien Millereccb9de2005-06-17 12:59:34 +1000461 if (atomicio(vwrite, s, buf, n) != (size_t)n) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000462 error("write (%s): %s", c->c_name, strerror(errno));
463 confree(s);
464 return;
465 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000466 if (c->c_keytype != KT_RSA1) {
467 keyprint(c, keygrab_ssh2(c));
468 confree(s);
469 return;
470 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000471 c->c_status = CS_SIZE;
472 contouch(s);
473}
474
Ben Lindstrombba81212001-06-25 05:01:22 +0000475static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000476conread(int s)
477{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000478 con *c = &fdcon[s];
Damien Millerb253cc42005-05-26 12:23:44 +1000479 size_t n;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000480
481 if (c->c_status == CS_CON) {
482 congreet(s);
483 return;
484 }
Darren Tuckerfe6649d2004-08-13 21:19:37 +1000485 n = atomicio(read, s, c->c_data + c->c_off, c->c_len - c->c_off);
Damien Millerb253cc42005-05-26 12:23:44 +1000486 if (n == 0) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000487 error("read (%s): %s", c->c_name, strerror(errno));
488 confree(s);
489 return;
490 }
491 c->c_off += n;
492
493 if (c->c_off == c->c_len)
494 switch (c->c_status) {
495 case CS_SIZE:
496 c->c_plen = htonl(c->c_plen);
497 c->c_len = c->c_plen + 8 - (c->c_plen & 7);
498 c->c_off = 0;
499 c->c_data = xmalloc(c->c_len);
500 c->c_status = CS_KEYS;
501 break;
502 case CS_KEYS:
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000503 keyprint(c, keygrab_ssh1(c));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000504 confree(s);
505 return;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000506 default:
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000507 fatal("conread: invalid status %d", c->c_status);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000508 break;
509 }
510
511 contouch(s);
512}
513
Ben Lindstrombba81212001-06-25 05:01:22 +0000514static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000515conloop(void)
516{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000517 struct timeval seltime, now;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000518 fd_set *r, *e;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000519 con *c;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000520 int i;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000521
522 gettimeofday(&now, NULL);
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000523 c = TAILQ_FIRST(&tq);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000524
Ben Lindstromd20b8552001-03-05 07:01:18 +0000525 if (c && (c->c_tv.tv_sec > now.tv_sec ||
526 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec > now.tv_usec))) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000527 seltime = c->c_tv;
528 seltime.tv_sec -= now.tv_sec;
529 seltime.tv_usec -= now.tv_usec;
Ben Lindstromc791beb2001-02-10 23:18:11 +0000530 if (seltime.tv_usec < 0) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000531 seltime.tv_usec += 1000000;
532 seltime.tv_sec--;
533 }
534 } else
535 seltime.tv_sec = seltime.tv_usec = 0;
536
Damien Miller07d86be2006-03-26 14:19:21 +1100537 r = xcalloc(read_wait_nfdset, sizeof(fd_mask));
538 e = xcalloc(read_wait_nfdset, sizeof(fd_mask));
539 memcpy(r, read_wait, read_wait_nfdset * sizeof(fd_mask));
540 memcpy(e, read_wait, read_wait_nfdset * sizeof(fd_mask));
Ben Lindstromc1e04212001-03-05 07:04:38 +0000541
542 while (select(maxfd, r, NULL, e, &seltime) == -1 &&
Damien Millerd8968ad2008-07-04 23:10:49 +1000543 (errno == EAGAIN || errno == EINTR || errno == EWOULDBLOCK))
Ben Lindstromf9452512001-02-15 03:12:08 +0000544 ;
545
Ben Lindstromd20b8552001-03-05 07:01:18 +0000546 for (i = 0; i < maxfd; i++) {
Ben Lindstromc1e04212001-03-05 07:04:38 +0000547 if (FD_ISSET(i, e)) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000548 error("%s: exception!", fdcon[i].c_name);
549 confree(i);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000550 } else if (FD_ISSET(i, r))
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000551 conread(i);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000552 }
Ben Lindstromc1e04212001-03-05 07:04:38 +0000553 xfree(r);
554 xfree(e);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000555
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000556 c = TAILQ_FIRST(&tq);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000557 while (c && (c->c_tv.tv_sec < now.tv_sec ||
558 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec < now.tv_usec))) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000559 int s = c->c_fd;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000560
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000561 c = TAILQ_NEXT(c, c_link);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000562 conrecycle(s);
563 }
564}
565
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000566static void
567do_host(char *host)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000568{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000569 char *name = strnnsep(&host, " \t\n");
570 int j;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000571
Ben Lindstromeaffb9d2001-12-06 16:28:19 +0000572 if (name == NULL)
573 return;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000574 for (j = KT_RSA1; j <= KT_RSA; j *= 2) {
575 if (get_keytypes & j) {
576 while (ncon >= MAXCON)
577 conloop();
578 conalloc(name, *host ? host : name, j);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000579 }
580 }
581}
582
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000583void
584fatal(const char *fmt,...)
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000585{
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000586 va_list args;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000587
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000588 va_start(args, fmt);
589 do_log(SYSLOG_LEVEL_FATAL, fmt, args);
590 va_end(args);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000591 if (nonfatal_fatal)
592 longjmp(kexjmp, -1);
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000593 else
Darren Tucker3d326222003-09-22 21:11:20 +1000594 exit(255);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000595}
596
597static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000598usage(void)
599{
Damien Millerc1719f72008-11-03 19:27:07 +1100600 fprintf(stderr,
601 "usage: %s [-46Hv] [-f file] [-p port] [-T timeout] [-t type]\n"
Darren Tucker7bd98e72010-01-10 10:31:12 +1100602 "\t\t [host | addrlist namelist] ...\n",
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000603 __progname);
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000604 exit(1);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000605}
606
607int
608main(int argc, char **argv)
609{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000610 int debug_flag = 0, log_level = SYSLOG_LEVEL_INFO;
Damien Miller0e76c5e2010-06-26 09:39:59 +1000611 int opt, fopt_count = 0, j;
612 char *tname, *cp, line[NI_MAXHOST];
613 FILE *fp;
614 u_long linenum;
Kevin Steves76e7d9b2001-09-20 20:30:09 +0000615
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000616 extern int optind;
617 extern char *optarg;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000618
Damien Miller59d3d5b2003-08-22 09:34:41 +1000619 __progname = ssh_get_progname(argv[0]);
Ben Lindstrom4e088e42001-10-10 20:45:43 +0000620 init_rng();
621 seed_rng();
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000622 TAILQ_INIT(&tq);
623
Darren Tuckerce321d82005-10-03 18:11:24 +1000624 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
625 sanitise_stdfd();
626
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000627 if (argc <= 1)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000628 usage();
629
Darren Tucker7bd98e72010-01-10 10:31:12 +1100630 while ((opt = getopt(argc, argv, "Hv46p:T:t:f:")) != -1) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000631 switch (opt) {
Damien Millerdb7b8172005-03-01 21:48:03 +1100632 case 'H':
633 hash_hosts = 1;
634 break;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000635 case 'p':
636 ssh_port = a2port(optarg);
Damien Miller3dc71ad2009-01-28 16:31:22 +1100637 if (ssh_port <= 0) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000638 fprintf(stderr, "Bad port '%s'\n", optarg);
639 exit(1);
640 }
641 break;
642 case 'T':
Ben Lindstromedd098b2002-07-04 00:07:13 +0000643 timeout = convtime(optarg);
644 if (timeout == -1 || timeout == 0) {
645 fprintf(stderr, "Bad timeout '%s'\n", optarg);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000646 usage();
Ben Lindstromedd098b2002-07-04 00:07:13 +0000647 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000648 break;
649 case 'v':
650 if (!debug_flag) {
651 debug_flag = 1;
652 log_level = SYSLOG_LEVEL_DEBUG1;
653 }
654 else if (log_level < SYSLOG_LEVEL_DEBUG3)
655 log_level++;
656 else
657 fatal("Too high debugging level.");
658 break;
Kevin Steves76e7d9b2001-09-20 20:30:09 +0000659 case 'f':
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000660 if (strcmp(optarg, "-") == 0)
661 optarg = NULL;
662 argv[fopt_count++] = optarg;
663 break;
664 case 't':
665 get_keytypes = 0;
666 tname = strtok(optarg, ",");
667 while (tname) {
668 int type = key_type_from_name(tname);
669 switch (type) {
670 case KEY_RSA1:
671 get_keytypes |= KT_RSA1;
672 break;
673 case KEY_DSA:
674 get_keytypes |= KT_DSA;
675 break;
676 case KEY_RSA:
677 get_keytypes |= KT_RSA;
678 break;
679 case KEY_UNSPEC:
Ben Lindstrom28c603b2001-12-06 16:45:10 +0000680 fatal("unknown key type %s", tname);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000681 }
682 tname = strtok(NULL, ",");
683 }
684 break;
685 case '4':
686 IPv4or6 = AF_INET;
687 break;
688 case '6':
689 IPv4or6 = AF_INET6;
690 break;
691 case '?':
692 default:
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000693 usage();
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000694 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000695 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000696 if (optind == argc && !fopt_count)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000697 usage();
698
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000699 log_init("ssh-keyscan", log_level, SYSLOG_FACILITY_USER, 1);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000700
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000701 maxfd = fdlim_get(1);
702 if (maxfd < 0)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000703 fatal("%s: fdlim_get: bad value", __progname);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000704 if (maxfd > MAXMAXFD)
705 maxfd = MAXMAXFD;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000706 if (MAXCON <= 0)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000707 fatal("%s: not enough file descriptors", __progname);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000708 if (maxfd > fdlim_get(0))
709 fdlim_set(maxfd);
Damien Miller07d86be2006-03-26 14:19:21 +1100710 fdcon = xcalloc(maxfd, sizeof(con));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000711
Damien Miller07d86be2006-03-26 14:19:21 +1100712 read_wait_nfdset = howmany(maxfd, NFDBITS);
713 read_wait = xcalloc(read_wait_nfdset, sizeof(fd_mask));
Ben Lindstromc1e04212001-03-05 07:04:38 +0000714
Damien Miller0e76c5e2010-06-26 09:39:59 +1000715 for (j = 0; j < fopt_count; j++) {
716 if (argv[j] == NULL)
717 fp = stdin;
718 else if ((fp = fopen(argv[j], "r")) == NULL)
719 fatal("%s: %s: %s", __progname, argv[j],
720 strerror(errno));
721 linenum = 0;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000722
Damien Miller0e76c5e2010-06-26 09:39:59 +1000723 while (read_keyfile_line(fp,
724 argv[j] == NULL ? "(stdin)" : argv[j], line, sizeof(line),
725 &linenum) != -1) {
726 /* Chomp off trailing whitespace and comments */
727 if ((cp = strchr(line, '#')) == NULL)
728 cp = line + strlen(line) - 1;
729 while (cp >= line) {
730 if (*cp == ' ' || *cp == '\t' ||
731 *cp == '\n' || *cp == '#')
732 *cp-- = '\0';
733 else
734 break;
735 }
736
737 /* Skip empty lines */
738 if (*line == '\0')
Ben Lindstrom78bbd9e2001-09-12 17:10:40 +0000739 continue;
Damien Miller0e76c5e2010-06-26 09:39:59 +1000740
741 do_host(line);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000742 }
Damien Miller0e76c5e2010-06-26 09:39:59 +1000743
744 if (ferror(fp))
745 fatal("%s: %s: %s", __progname, argv[j],
746 strerror(errno));
747
748 fclose(fp);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000749 }
750
751 while (optind < argc)
752 do_host(argv[optind++]);
753
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000754 while (ncon > 0)
755 conloop();
756
757 return (0);
758}