blob: e02a3bbb10ef420e556413c0fedcfd7be3646b50 [file] [log] [blame]
markus@openbsd.org3f797652015-01-19 20:32:39 +00001/* $OpenBSD: ssh-keyscan.c,v 1.95 2015/01/19 20:32:39 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
djm@openbsd.org48b68ce2014-12-11 08:20:09 +000012#include <sys/types.h>
13#include <sys/param.h>
Damien Miller9b481512002-09-12 10:43:29 +100014#include "openbsd-compat/sys-queue.h"
Damien Millercd4223c2006-03-15 11:22:47 +110015#include <sys/resource.h>
Damien Miller9aec9192006-08-05 10:57:45 +100016#ifdef HAVE_SYS_TIME_H
17# include <sys/time.h>
18#endif
Damien Millere3476ed2006-07-24 14:13:33 +100019
Darren Tucker46aa3e02006-09-02 15:32:40 +100020#include <netinet/in.h>
21#include <arpa/inet.h>
22
Damien Millere3476ed2006-07-24 14:13:33 +100023#include <openssl/bn.h>
24
Damien Millerb8fe89c2006-07-24 14:51:00 +100025#include <netdb.h>
Darren Tuckerdeecec92006-07-12 22:44:34 +100026#include <errno.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100027#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100028#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100029#include <stdlib.h>
Damien Millerd7834352006-08-05 12:39:39 +100030#include <signal.h>
Damien Millere3476ed2006-07-24 14:13:33 +100031#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100032#include <unistd.h>
Ben Lindstromb6434ae2000-12-05 01:15:09 +000033
Ben Lindstromb6434ae2000-12-05 01:15:09 +000034#include "xmalloc.h"
35#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000036#include "ssh1.h"
markus@openbsd.org3f797652015-01-19 20:32:39 +000037#include "sshbuf.h"
38#include "sshkey.h"
Damien Millerd7834352006-08-05 12:39:39 +100039#include "cipher.h"
Ben Lindstrom325e70c2001-08-06 22:41:30 +000040#include "kex.h"
41#include "compat.h"
42#include "myproposal.h"
43#include "packet.h"
44#include "dispatch.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000045#include "log.h"
Ben Lindstromd20b8552001-03-05 07:01:18 +000046#include "atomicio.h"
Ben Lindstrom325e70c2001-08-06 22:41:30 +000047#include "misc.h"
Damien Millerdb7b8172005-03-01 21:48:03 +110048#include "hostfile.h"
markus@openbsd.org3f797652015-01-19 20:32:39 +000049#include "ssherr.h"
50#include "ssh_api.h"
Ben Lindstromb6434ae2000-12-05 01:15:09 +000051
Ben Lindstrom325e70c2001-08-06 22:41:30 +000052/* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
53 Default value is AF_UNSPEC means both IPv4 and IPv6. */
Ben Lindstrom325e70c2001-08-06 22:41:30 +000054int IPv4or6 = AF_UNSPEC;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000055
Ben Lindstrom325e70c2001-08-06 22:41:30 +000056int ssh_port = SSH_DEFAULT_PORT;
Kevin Steves76e7d9b2001-09-20 20:30:09 +000057
Damien Millereb8b60e2010-08-31 22:41:14 +100058#define KT_RSA1 1
59#define KT_DSA 2
60#define KT_RSA 4
61#define KT_ECDSA 8
Damien Miller5be9d9e2013-12-07 11:24:01 +110062#define KT_ED25519 16
Kevin Steves76e7d9b2001-09-20 20:30:09 +000063
Damien Miller1c7ef4b2014-04-20 12:59:46 +100064int get_keytypes = KT_RSA|KT_ECDSA|KT_ED25519;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000065
Damien Millerdb7b8172005-03-01 21:48:03 +110066int hash_hosts = 0; /* Hash hostname on output */
67
Ben Lindstromb6434ae2000-12-05 01:15:09 +000068#define MAXMAXFD 256
69
70/* The number of seconds after which to give up on a TCP connection */
71int timeout = 5;
72
73int maxfd;
Ben Lindstromd20b8552001-03-05 07:01:18 +000074#define MAXCON (maxfd - 10)
Ben Lindstromb6434ae2000-12-05 01:15:09 +000075
Kevin Stevesec84dc12000-12-13 17:45:15 +000076extern char *__progname;
Ben Lindstromc1e04212001-03-05 07:04:38 +000077fd_set *read_wait;
Damien Miller07d86be2006-03-26 14:19:21 +110078size_t read_wait_nfdset;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000079int ncon;
80
81/*
82 * Keep a connection structure for each file descriptor. The state
83 * associated with file descriptor n is held in fdcon[n].
84 */
85typedef struct Connection {
Ben Lindstrom46c16222000-12-22 01:43:59 +000086 u_char c_status; /* State of connection on this file desc. */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000087#define CS_UNUSED 0 /* File descriptor unused */
88#define CS_CON 1 /* Waiting to connect/read greeting */
89#define CS_SIZE 2 /* Waiting to read initial packet size */
90#define CS_KEYS 3 /* Waiting to read public key packet */
91 int c_fd; /* Quick lookup: c->c_fd == c - fdcon */
92 int c_plen; /* Packet length field for ssh packet */
93 int c_len; /* Total bytes which must be read. */
94 int c_off; /* Length of data read so far. */
Ben Lindstrom325e70c2001-08-06 22:41:30 +000095 int c_keytype; /* Only one of KT_RSA1, KT_DSA, or KT_RSA */
markus@openbsd.org3f797652015-01-19 20:32:39 +000096 int c_done; /* SSH2 done */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000097 char *c_namebase; /* Address to free for c_name and c_namelist */
98 char *c_name; /* Hostname of connection for errors */
99 char *c_namelist; /* Pointer to other possible addresses */
100 char *c_output_name; /* Hostname of connection for output */
101 char *c_data; /* Data read from this fd */
markus@openbsd.org3f797652015-01-19 20:32:39 +0000102 struct ssh *c_ssh; /* SSH-connection */
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000103 struct timeval c_tv; /* Time at which connection gets aborted */
104 TAILQ_ENTRY(Connection) c_link; /* List of connections in timeout order. */
105} con;
106
107TAILQ_HEAD(conlist, Connection) tq; /* Timeout Queue */
108con *fdcon;
109
markus@openbsd.org3f797652015-01-19 20:32:39 +0000110static void keyprint(con *c, struct sshkey *key);
111
Ben Lindstrombba81212001-06-25 05:01:22 +0000112static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000113fdlim_get(int hard)
114{
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000115#if defined(HAVE_GETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000116 struct rlimit rlfd;
Ben Lindstromb0a4cd82001-03-05 04:54:49 +0000117
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000118 if (getrlimit(RLIMIT_NOFILE, &rlfd) < 0)
119 return (-1);
120 if ((hard ? rlfd.rlim_max : rlfd.rlim_cur) == RLIM_INFINITY)
Damien Millere00074a2003-11-24 13:07:45 +1100121 return SSH_SYSFDMAX;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000122 else
123 return hard ? rlfd.rlim_max : rlfd.rlim_cur;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000124#else
Damien Millere00074a2003-11-24 13:07:45 +1100125 return SSH_SYSFDMAX;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000126#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000127}
128
Ben Lindstrombba81212001-06-25 05:01:22 +0000129static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000130fdlim_set(int lim)
131{
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000132#if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000133 struct rlimit rlfd;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000134#endif
Ben Lindstrom5c98db52002-07-07 22:25:29 +0000135
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000136 if (lim <= 0)
137 return (-1);
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000138#if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000139 if (getrlimit(RLIMIT_NOFILE, &rlfd) < 0)
140 return (-1);
141 rlfd.rlim_cur = lim;
142 if (setrlimit(RLIMIT_NOFILE, &rlfd) < 0)
143 return (-1);
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000144#elif defined (HAVE_SETDTABLESIZE)
Kevin Steves28a7f262001-02-05 15:43:59 +0000145 setdtablesize(lim);
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000146#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000147 return (0);
148}
149
150/*
151 * This is an strsep function that returns a null field for adjacent
152 * separators. This is the same as the 4.4BSD strsep, but different from the
153 * one in the GNU libc.
154 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000155static char *
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000156xstrsep(char **str, const char *delim)
157{
158 char *s, *e;
159
160 if (!**str)
161 return (NULL);
162
163 s = *str;
164 e = s + strcspn(s, delim);
165
166 if (*e != '\0')
167 *e++ = '\0';
168 *str = e;
169
170 return (s);
171}
172
173/*
174 * Get the next non-null token (like GNU strsep). Strsep() will return a
175 * null token for two adjacent separators, so we may have to loop.
176 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000177static char *
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000178strnnsep(char **stringp, char *delim)
179{
180 char *tok;
181
182 do {
183 tok = xstrsep(stringp, delim);
184 } while (tok && *tok == '\0');
185 return (tok);
186}
187
Damien Miller1f0311c2014-05-15 14:24:09 +1000188#ifdef WITH_SSH1
markus@openbsd.org3f797652015-01-19 20:32:39 +0000189static struct sshkey *
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000190keygrab_ssh1(con *c)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000191{
markus@openbsd.org3f797652015-01-19 20:32:39 +0000192 static struct sshkey *rsa;
193 static struct sshbuf *msg;
194 int r;
195 u_char type;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000196
197 if (rsa == NULL) {
markus@openbsd.org3f797652015-01-19 20:32:39 +0000198 if ((rsa = sshkey_new(KEY_RSA1)) == NULL) {
199 error("%s: sshkey_new failed", __func__);
200 return NULL;
201 }
202 if ((msg = sshbuf_new()) == NULL)
203 fatal("%s: sshbuf_new failed", __func__);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000204 }
markus@openbsd.org3f797652015-01-19 20:32:39 +0000205 if ((r = sshbuf_put(msg, c->c_data, c->c_plen)) != 0 ||
206 (r = sshbuf_consume(msg, 8 - (c->c_plen & 7))) != 0 || /* padding */
207 (r = sshbuf_get_u8(msg, &type)) != 0)
208 goto buf_err;
209 if (type != (int) SSH_SMSG_PUBLIC_KEY) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000210 error("%s: invalid packet type", c->c_name);
markus@openbsd.org3f797652015-01-19 20:32:39 +0000211 sshbuf_reset(msg);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000212 return NULL;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000213 }
markus@openbsd.org3f797652015-01-19 20:32:39 +0000214 if ((r = sshbuf_consume(msg, 8)) != 0 || /* cookie */
215 /* server key */
216 (r = sshbuf_get_u32(msg, NULL)) != 0 ||
217 (r = sshbuf_get_bignum1(msg, NULL)) != 0 ||
218 (r = sshbuf_get_bignum1(msg, NULL)) != 0 ||
219 /* host key */
220 (r = sshbuf_get_u32(msg, NULL)) != 0 ||
221 (r = sshbuf_get_bignum1(msg, rsa->rsa->e)) != 0 ||
222 (r = sshbuf_get_bignum1(msg, rsa->rsa->n)) != 0) {
223 buf_err:
224 error("%s: buffer error: %s", __func__, ssh_err(r));
225 sshbuf_reset(msg);
226 return NULL;
227 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000228
markus@openbsd.org3f797652015-01-19 20:32:39 +0000229 sshbuf_reset(msg);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000230
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000231 return (rsa);
232}
Damien Miller1f0311c2014-05-15 14:24:09 +1000233#endif
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000234
235static int
markus@openbsd.org3f797652015-01-19 20:32:39 +0000236key_print_wrapper(struct sshkey *hostkey, struct ssh *ssh)
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000237{
markus@openbsd.org3f797652015-01-19 20:32:39 +0000238 con *c;
239
240 if ((c = ssh_get_app_data(ssh)) != NULL)
241 keyprint(c, hostkey);
242 /* always abort key exchange */
243 return -1;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000244}
245
246static int
247ssh2_capable(int remote_major, int remote_minor)
248{
249 switch (remote_major) {
250 case 1:
251 if (remote_minor == 99)
252 return 1;
253 break;
254 case 2:
255 return 1;
256 default:
257 break;
258 }
259 return 0;
260}
261
markus@openbsd.org3f797652015-01-19 20:32:39 +0000262static void
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000263keygrab_ssh2(con *c)
264{
Damien Miller9235a032014-04-20 13:17:20 +1000265 char *myproposal[PROPOSAL_MAX] = { KEX_CLIENT };
markus@openbsd.org3f797652015-01-19 20:32:39 +0000266 int r;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000267
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000268 enable_compat20();
Damien Miller5be9d9e2013-12-07 11:24:01 +1100269 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] =
270 c->c_keytype == KT_DSA ? "ssh-dss" :
271 (c->c_keytype == KT_RSA ? "ssh-rsa" :
272 (c->c_keytype == KT_ED25519 ? "ssh-ed25519" :
273 "ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521"));
markus@openbsd.org3f797652015-01-19 20:32:39 +0000274 if ((r = kex_setup(c->c_ssh, myproposal)) != 0) {
275 free(c->c_ssh);
276 fprintf(stderr, "kex_setup: %s\n", ssh_err(r));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000277 exit(1);
278 }
markus@openbsd.org3f797652015-01-19 20:32:39 +0000279#ifdef WITH_OPENSSL
280 c->c_ssh->kex->kex[KEX_DH_GRP1_SHA1] = kexdh_client;
281 c->c_ssh->kex->kex[KEX_DH_GRP14_SHA1] = kexdh_client;
282 c->c_ssh->kex->kex[KEX_DH_GEX_SHA1] = kexgex_client;
283 c->c_ssh->kex->kex[KEX_DH_GEX_SHA256] = kexgex_client;
284 c->c_ssh->kex->kex[KEX_ECDH_SHA2] = kexecdh_client;
285#endif
286 c->c_ssh->kex->kex[KEX_C25519_SHA256] = kexc25519_client;
287 ssh_set_verify_host_key_callback(c->c_ssh, key_print_wrapper);
288 /*
289 * do the key-exchange until an error occurs or until
290 * the key_print_wrapper() callback sets c_done.
291 */
292 ssh_dispatch_run(c->c_ssh, DISPATCH_BLOCK, &c->c_done, c->c_ssh);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000293}
294
295static void
markus@openbsd.org3f797652015-01-19 20:32:39 +0000296keyprint(con *c, struct sshkey *key)
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000297{
Damien Millerdb7b8172005-03-01 21:48:03 +1100298 char *host = c->c_output_name ? c->c_output_name : c->c_name;
299
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000300 if (!key)
301 return;
Damien Millerdb7b8172005-03-01 21:48:03 +1100302 if (hash_hosts && (host = host_hash(host, NULL, 0)) == NULL)
303 fatal("host_hash failed");
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000304
Damien Millerdb7b8172005-03-01 21:48:03 +1100305 fprintf(stdout, "%s ", host);
markus@openbsd.org3f797652015-01-19 20:32:39 +0000306 sshkey_write(key, stdout);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000307 fputs("\n", stdout);
308}
309
Ben Lindstrombba81212001-06-25 05:01:22 +0000310static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000311tcpconnect(char *host)
312{
313 struct addrinfo hints, *ai, *aitop;
314 char strport[NI_MAXSERV];
315 int gaierr, s = -1;
316
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000317 snprintf(strport, sizeof strport, "%d", ssh_port);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000318 memset(&hints, 0, sizeof(hints));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000319 hints.ai_family = IPv4or6;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000320 hints.ai_socktype = SOCK_STREAM;
321 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
Darren Tucker4abde772007-12-29 02:43:51 +1100322 fatal("getaddrinfo %s: %s", host, ssh_gai_strerror(gaierr));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000323 for (ai = aitop; ai; ai = ai->ai_next) {
Darren Tucker7bd98e72010-01-10 10:31:12 +1100324 s = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000325 if (s < 0) {
326 error("socket: %s", strerror(errno));
327 continue;
328 }
Damien Miller232711f2004-06-15 10:35:30 +1000329 if (set_nonblock(s) == -1)
330 fatal("%s: set_nonblock(%d)", __func__, s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000331 if (connect(s, ai->ai_addr, ai->ai_addrlen) < 0 &&
332 errno != EINPROGRESS)
333 error("connect (`%s'): %s", host, strerror(errno));
334 else
335 break;
336 close(s);
337 s = -1;
338 }
339 freeaddrinfo(aitop);
340 return s;
341}
342
Ben Lindstrombba81212001-06-25 05:01:22 +0000343static int
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000344conalloc(char *iname, char *oname, int keytype)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000345{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000346 char *namebase, *name, *namelist;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000347 int s;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000348
349 namebase = namelist = xstrdup(iname);
350
351 do {
352 name = xstrsep(&namelist, ",");
353 if (!name) {
Darren Tuckera627d422013-06-02 07:31:17 +1000354 free(namebase);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000355 return (-1);
356 }
357 } while ((s = tcpconnect(name)) < 0);
358
359 if (s >= maxfd)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000360 fatal("conalloc: fdno %d too high", s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000361 if (fdcon[s].c_status)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000362 fatal("conalloc: attempt to reuse fdno %d", s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000363
364 fdcon[s].c_fd = s;
365 fdcon[s].c_status = CS_CON;
366 fdcon[s].c_namebase = namebase;
367 fdcon[s].c_name = name;
368 fdcon[s].c_namelist = namelist;
369 fdcon[s].c_output_name = xstrdup(oname);
370 fdcon[s].c_data = (char *) &fdcon[s].c_plen;
371 fdcon[s].c_len = 4;
372 fdcon[s].c_off = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000373 fdcon[s].c_keytype = keytype;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000374 gettimeofday(&fdcon[s].c_tv, NULL);
375 fdcon[s].c_tv.tv_sec += timeout;
376 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000377 FD_SET(s, read_wait);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000378 ncon++;
379 return (s);
380}
381
Ben Lindstrombba81212001-06-25 05:01:22 +0000382static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000383confree(int s)
384{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000385 if (s >= maxfd || fdcon[s].c_status == CS_UNUSED)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000386 fatal("confree: attempt to free bad fdno %d", s);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000387 close(s);
Darren Tuckera627d422013-06-02 07:31:17 +1000388 free(fdcon[s].c_namebase);
389 free(fdcon[s].c_output_name);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000390 if (fdcon[s].c_status == CS_KEYS)
Darren Tuckera627d422013-06-02 07:31:17 +1000391 free(fdcon[s].c_data);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000392 fdcon[s].c_status = CS_UNUSED;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000393 fdcon[s].c_keytype = 0;
markus@openbsd.org3f797652015-01-19 20:32:39 +0000394 if (fdcon[s].c_ssh) {
395 ssh_packet_close(fdcon[s].c_ssh);
396 free(fdcon[s].c_ssh);
397 fdcon[s].c_ssh = NULL;
398 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000399 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000400 FD_CLR(s, read_wait);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000401 ncon--;
402}
403
Ben Lindstrombba81212001-06-25 05:01:22 +0000404static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000405contouch(int s)
406{
407 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
408 gettimeofday(&fdcon[s].c_tv, NULL);
409 fdcon[s].c_tv.tv_sec += timeout;
410 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
411}
412
Ben Lindstrombba81212001-06-25 05:01:22 +0000413static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000414conrecycle(int s)
415{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000416 con *c = &fdcon[s];
Ben Lindstrom965710f2002-07-07 22:17:22 +0000417 int ret;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000418
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000419 ret = conalloc(c->c_namelist, c->c_output_name, c->c_keytype);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000420 confree(s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000421 return (ret);
422}
423
Ben Lindstrombba81212001-06-25 05:01:22 +0000424static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000425congreet(int s)
426{
Damien Millereccb9de2005-06-17 12:59:34 +1000427 int n = 0, remote_major = 0, remote_minor = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000428 char buf[256], *cp;
Damien Miller83c02ef2001-12-21 12:45:43 +1100429 char remote_version[sizeof buf];
Damien Millereccb9de2005-06-17 12:59:34 +1000430 size_t bufsiz;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000431 con *c = &fdcon[s];
432
Damien Miller4bbacb72005-11-05 15:12:28 +1100433 for (;;) {
434 memset(buf, '\0', sizeof(buf));
435 bufsiz = sizeof(buf);
436 cp = buf;
437 while (bufsiz-- &&
438 (n = atomicio(read, s, cp, 1)) == 1 && *cp != '\n') {
439 if (*cp == '\r')
440 *cp = '\n';
441 cp++;
442 }
443 if (n != 1 || strncmp(buf, "SSH-", 4) == 0)
444 break;
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000445 }
Ben Lindstrom6b28c352002-03-05 01:54:52 +0000446 if (n == 0) {
Damien Millerb253cc42005-05-26 12:23:44 +1000447 switch (errno) {
448 case EPIPE:
449 error("%s: Connection closed by remote host", c->c_name);
450 break;
451 case ECONNREFUSED:
452 break;
453 default:
454 error("read (%s): %s", c->c_name, strerror(errno));
455 break;
456 }
Ben Lindstrom6b28c352002-03-05 01:54:52 +0000457 conrecycle(s);
458 return;
459 }
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000460 if (*cp != '\n' && *cp != '\r') {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000461 error("%s: bad greeting", c->c_name);
462 confree(s);
463 return;
464 }
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000465 *cp = '\0';
markus@openbsd.org3f797652015-01-19 20:32:39 +0000466 c->c_ssh = ssh_packet_set_connection(NULL, s, s);
467 ssh_set_app_data(c->c_ssh, c); /* back link */
Damien Miller83c02ef2001-12-21 12:45:43 +1100468 if (sscanf(buf, "SSH-%d.%d-%[^\n]\n",
469 &remote_major, &remote_minor, remote_version) == 3)
markus@openbsd.org3f797652015-01-19 20:32:39 +0000470 c->c_ssh->compat = compat_datafellows(remote_version);
Damien Miller83c02ef2001-12-21 12:45:43 +1100471 else
markus@openbsd.org3f797652015-01-19 20:32:39 +0000472 c->c_ssh->compat = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000473 if (c->c_keytype != KT_RSA1) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000474 if (!ssh2_capable(remote_major, remote_minor)) {
475 debug("%s doesn't support ssh2", c->c_name);
476 confree(s);
477 return;
478 }
Damien Miller83c02ef2001-12-21 12:45:43 +1100479 } else if (remote_major != 1) {
480 debug("%s doesn't support ssh1", c->c_name);
481 confree(s);
482 return;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000483 }
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000484 fprintf(stderr, "# %s %s\n", c->c_name, chop(buf));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000485 n = snprintf(buf, sizeof buf, "SSH-%d.%d-OpenSSH-keyscan\r\n",
486 c->c_keytype == KT_RSA1? PROTOCOL_MAJOR_1 : PROTOCOL_MAJOR_2,
487 c->c_keytype == KT_RSA1? PROTOCOL_MINOR_1 : PROTOCOL_MINOR_2);
Damien Millereccb9de2005-06-17 12:59:34 +1000488 if (n < 0 || (size_t)n >= sizeof(buf)) {
Damien Miller41bfc292005-05-26 12:07:32 +1000489 error("snprintf: buffer too small");
490 confree(s);
491 return;
492 }
Damien Millereccb9de2005-06-17 12:59:34 +1000493 if (atomicio(vwrite, s, buf, n) != (size_t)n) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000494 error("write (%s): %s", c->c_name, strerror(errno));
495 confree(s);
496 return;
497 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000498 if (c->c_keytype != KT_RSA1) {
markus@openbsd.org3f797652015-01-19 20:32:39 +0000499 keygrab_ssh2(c);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000500 confree(s);
501 return;
502 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000503 c->c_status = CS_SIZE;
504 contouch(s);
505}
506
Ben Lindstrombba81212001-06-25 05:01:22 +0000507static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000508conread(int s)
509{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000510 con *c = &fdcon[s];
Damien Millerb253cc42005-05-26 12:23:44 +1000511 size_t n;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000512
513 if (c->c_status == CS_CON) {
514 congreet(s);
515 return;
516 }
Darren Tuckerfe6649d2004-08-13 21:19:37 +1000517 n = atomicio(read, s, c->c_data + c->c_off, c->c_len - c->c_off);
Damien Millerb253cc42005-05-26 12:23:44 +1000518 if (n == 0) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000519 error("read (%s): %s", c->c_name, strerror(errno));
520 confree(s);
521 return;
522 }
523 c->c_off += n;
524
525 if (c->c_off == c->c_len)
526 switch (c->c_status) {
527 case CS_SIZE:
528 c->c_plen = htonl(c->c_plen);
529 c->c_len = c->c_plen + 8 - (c->c_plen & 7);
530 c->c_off = 0;
531 c->c_data = xmalloc(c->c_len);
532 c->c_status = CS_KEYS;
533 break;
Damien Miller1f0311c2014-05-15 14:24:09 +1000534#ifdef WITH_SSH1
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000535 case CS_KEYS:
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000536 keyprint(c, keygrab_ssh1(c));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000537 confree(s);
538 return;
Damien Miller1f0311c2014-05-15 14:24:09 +1000539#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000540 default:
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000541 fatal("conread: invalid status %d", c->c_status);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000542 break;
543 }
544
545 contouch(s);
546}
547
Ben Lindstrombba81212001-06-25 05:01:22 +0000548static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000549conloop(void)
550{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000551 struct timeval seltime, now;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000552 fd_set *r, *e;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000553 con *c;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000554 int i;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000555
556 gettimeofday(&now, NULL);
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000557 c = TAILQ_FIRST(&tq);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000558
Ben Lindstromd20b8552001-03-05 07:01:18 +0000559 if (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 seltime = c->c_tv;
562 seltime.tv_sec -= now.tv_sec;
563 seltime.tv_usec -= now.tv_usec;
Ben Lindstromc791beb2001-02-10 23:18:11 +0000564 if (seltime.tv_usec < 0) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000565 seltime.tv_usec += 1000000;
566 seltime.tv_sec--;
567 }
568 } else
Damien Millerc5219e72011-05-05 14:05:12 +1000569 timerclear(&seltime);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000570
Damien Miller07d86be2006-03-26 14:19:21 +1100571 r = xcalloc(read_wait_nfdset, sizeof(fd_mask));
572 e = xcalloc(read_wait_nfdset, sizeof(fd_mask));
573 memcpy(r, read_wait, read_wait_nfdset * sizeof(fd_mask));
574 memcpy(e, read_wait, read_wait_nfdset * sizeof(fd_mask));
Ben Lindstromc1e04212001-03-05 07:04:38 +0000575
576 while (select(maxfd, r, NULL, e, &seltime) == -1 &&
Damien Millerd8968ad2008-07-04 23:10:49 +1000577 (errno == EAGAIN || errno == EINTR || errno == EWOULDBLOCK))
Ben Lindstromf9452512001-02-15 03:12:08 +0000578 ;
579
Ben Lindstromd20b8552001-03-05 07:01:18 +0000580 for (i = 0; i < maxfd; i++) {
Ben Lindstromc1e04212001-03-05 07:04:38 +0000581 if (FD_ISSET(i, e)) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000582 error("%s: exception!", fdcon[i].c_name);
583 confree(i);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000584 } else if (FD_ISSET(i, r))
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000585 conread(i);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000586 }
Darren Tuckera627d422013-06-02 07:31:17 +1000587 free(r);
588 free(e);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000589
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000590 c = TAILQ_FIRST(&tq);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000591 while (c && (c->c_tv.tv_sec < now.tv_sec ||
592 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec < now.tv_usec))) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000593 int s = c->c_fd;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000594
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000595 c = TAILQ_NEXT(c, c_link);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000596 conrecycle(s);
597 }
598}
599
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000600static void
601do_host(char *host)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000602{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000603 char *name = strnnsep(&host, " \t\n");
604 int j;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000605
Ben Lindstromeaffb9d2001-12-06 16:28:19 +0000606 if (name == NULL)
607 return;
Damien Miller5be9d9e2013-12-07 11:24:01 +1100608 for (j = KT_RSA1; j <= KT_ED25519; j *= 2) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000609 if (get_keytypes & j) {
610 while (ncon >= MAXCON)
611 conloop();
612 conalloc(name, *host ? host : name, j);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000613 }
614 }
615}
616
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000617void
618fatal(const char *fmt,...)
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000619{
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000620 va_list args;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000621
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000622 va_start(args, fmt);
623 do_log(SYSLOG_LEVEL_FATAL, fmt, args);
624 va_end(args);
markus@openbsd.org3f797652015-01-19 20:32:39 +0000625 exit(255);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000626}
627
628static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000629usage(void)
630{
Damien Millerc1719f72008-11-03 19:27:07 +1100631 fprintf(stderr,
632 "usage: %s [-46Hv] [-f file] [-p port] [-T timeout] [-t type]\n"
Darren Tucker7bd98e72010-01-10 10:31:12 +1100633 "\t\t [host | addrlist namelist] ...\n",
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000634 __progname);
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000635 exit(1);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000636}
637
638int
639main(int argc, char **argv)
640{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000641 int debug_flag = 0, log_level = SYSLOG_LEVEL_INFO;
Damien Miller0e76c5e2010-06-26 09:39:59 +1000642 int opt, fopt_count = 0, j;
643 char *tname, *cp, line[NI_MAXHOST];
644 FILE *fp;
645 u_long linenum;
Kevin Steves76e7d9b2001-09-20 20:30:09 +0000646
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000647 extern int optind;
648 extern char *optarg;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000649
Damien Miller59d3d5b2003-08-22 09:34:41 +1000650 __progname = ssh_get_progname(argv[0]);
Ben Lindstrom4e088e42001-10-10 20:45:43 +0000651 seed_rng();
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000652 TAILQ_INIT(&tq);
653
Darren Tuckerce321d82005-10-03 18:11:24 +1000654 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
655 sanitise_stdfd();
656
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000657 if (argc <= 1)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000658 usage();
659
Darren Tucker7bd98e72010-01-10 10:31:12 +1100660 while ((opt = getopt(argc, argv, "Hv46p:T:t:f:")) != -1) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000661 switch (opt) {
Damien Millerdb7b8172005-03-01 21:48:03 +1100662 case 'H':
663 hash_hosts = 1;
664 break;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000665 case 'p':
666 ssh_port = a2port(optarg);
Damien Miller3dc71ad2009-01-28 16:31:22 +1100667 if (ssh_port <= 0) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000668 fprintf(stderr, "Bad port '%s'\n", optarg);
669 exit(1);
670 }
671 break;
672 case 'T':
Ben Lindstromedd098b2002-07-04 00:07:13 +0000673 timeout = convtime(optarg);
674 if (timeout == -1 || timeout == 0) {
675 fprintf(stderr, "Bad timeout '%s'\n", optarg);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000676 usage();
Ben Lindstromedd098b2002-07-04 00:07:13 +0000677 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000678 break;
679 case 'v':
680 if (!debug_flag) {
681 debug_flag = 1;
682 log_level = SYSLOG_LEVEL_DEBUG1;
683 }
684 else if (log_level < SYSLOG_LEVEL_DEBUG3)
685 log_level++;
686 else
687 fatal("Too high debugging level.");
688 break;
Kevin Steves76e7d9b2001-09-20 20:30:09 +0000689 case 'f':
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000690 if (strcmp(optarg, "-") == 0)
691 optarg = NULL;
692 argv[fopt_count++] = optarg;
693 break;
694 case 't':
695 get_keytypes = 0;
696 tname = strtok(optarg, ",");
697 while (tname) {
markus@openbsd.org3f797652015-01-19 20:32:39 +0000698 int type = sshkey_type_from_name(tname);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000699 switch (type) {
700 case KEY_RSA1:
701 get_keytypes |= KT_RSA1;
702 break;
703 case KEY_DSA:
704 get_keytypes |= KT_DSA;
705 break;
Damien Millereb8b60e2010-08-31 22:41:14 +1000706 case KEY_ECDSA:
707 get_keytypes |= KT_ECDSA;
708 break;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000709 case KEY_RSA:
710 get_keytypes |= KT_RSA;
711 break;
Damien Miller5be9d9e2013-12-07 11:24:01 +1100712 case KEY_ED25519:
713 get_keytypes |= KT_ED25519;
714 break;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000715 case KEY_UNSPEC:
Ben Lindstrom28c603b2001-12-06 16:45:10 +0000716 fatal("unknown key type %s", tname);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000717 }
718 tname = strtok(NULL, ",");
719 }
720 break;
721 case '4':
722 IPv4or6 = AF_INET;
723 break;
724 case '6':
725 IPv4or6 = AF_INET6;
726 break;
727 case '?':
728 default:
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000729 usage();
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000730 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000731 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000732 if (optind == argc && !fopt_count)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000733 usage();
734
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000735 log_init("ssh-keyscan", log_level, SYSLOG_FACILITY_USER, 1);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000736
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000737 maxfd = fdlim_get(1);
738 if (maxfd < 0)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000739 fatal("%s: fdlim_get: bad value", __progname);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000740 if (maxfd > MAXMAXFD)
741 maxfd = MAXMAXFD;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000742 if (MAXCON <= 0)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000743 fatal("%s: not enough file descriptors", __progname);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000744 if (maxfd > fdlim_get(0))
745 fdlim_set(maxfd);
Damien Miller07d86be2006-03-26 14:19:21 +1100746 fdcon = xcalloc(maxfd, sizeof(con));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000747
Damien Miller07d86be2006-03-26 14:19:21 +1100748 read_wait_nfdset = howmany(maxfd, NFDBITS);
749 read_wait = xcalloc(read_wait_nfdset, sizeof(fd_mask));
Ben Lindstromc1e04212001-03-05 07:04:38 +0000750
Damien Miller0e76c5e2010-06-26 09:39:59 +1000751 for (j = 0; j < fopt_count; j++) {
752 if (argv[j] == NULL)
753 fp = stdin;
754 else if ((fp = fopen(argv[j], "r")) == NULL)
755 fatal("%s: %s: %s", __progname, argv[j],
756 strerror(errno));
757 linenum = 0;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000758
Damien Miller0e76c5e2010-06-26 09:39:59 +1000759 while (read_keyfile_line(fp,
760 argv[j] == NULL ? "(stdin)" : argv[j], line, sizeof(line),
761 &linenum) != -1) {
762 /* Chomp off trailing whitespace and comments */
763 if ((cp = strchr(line, '#')) == NULL)
764 cp = line + strlen(line) - 1;
765 while (cp >= line) {
766 if (*cp == ' ' || *cp == '\t' ||
767 *cp == '\n' || *cp == '#')
768 *cp-- = '\0';
769 else
770 break;
771 }
772
773 /* Skip empty lines */
774 if (*line == '\0')
Ben Lindstrom78bbd9e2001-09-12 17:10:40 +0000775 continue;
Damien Miller0e76c5e2010-06-26 09:39:59 +1000776
777 do_host(line);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000778 }
Damien Miller0e76c5e2010-06-26 09:39:59 +1000779
780 if (ferror(fp))
781 fatal("%s: %s: %s", __progname, argv[j],
782 strerror(errno));
783
784 fclose(fp);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000785 }
786
787 while (optind < argc)
788 do_host(argv[optind++]);
789
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000790 while (ncon > 0)
791 conloop();
792
793 return (0);
794}