blob: 62dbd62fa17cf417a5a47add3f4974f9dfa57248 [file] [log] [blame]
deraadt@openbsd.org087266e2015-01-20 23:14:00 +00001/* $OpenBSD: ssh-keyscan.c,v 1.96 2015/01/20 23:14:00 deraadt 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>
Damien Miller9b481512002-09-12 10:43:29 +100013#include "openbsd-compat/sys-queue.h"
Damien Millercd4223c2006-03-15 11:22:47 +110014#include <sys/resource.h>
Damien Miller9aec9192006-08-05 10:57:45 +100015#ifdef HAVE_SYS_TIME_H
16# include <sys/time.h>
17#endif
Damien Millere3476ed2006-07-24 14:13:33 +100018
Darren Tucker46aa3e02006-09-02 15:32:40 +100019#include <netinet/in.h>
20#include <arpa/inet.h>
21
Damien Millere3476ed2006-07-24 14:13:33 +100022#include <openssl/bn.h>
23
Damien Millerb8fe89c2006-07-24 14:51:00 +100024#include <netdb.h>
Darren Tuckerdeecec92006-07-12 22:44:34 +100025#include <errno.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"
markus@openbsd.org3f797652015-01-19 20:32:39 +000036#include "sshbuf.h"
37#include "sshkey.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"
markus@openbsd.org3f797652015-01-19 20:32:39 +000048#include "ssherr.h"
49#include "ssh_api.h"
Ben Lindstromb6434ae2000-12-05 01:15:09 +000050
Ben Lindstrom325e70c2001-08-06 22:41:30 +000051/* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
52 Default value is AF_UNSPEC means both IPv4 and IPv6. */
Ben Lindstrom325e70c2001-08-06 22:41:30 +000053int IPv4or6 = AF_UNSPEC;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000054
Ben Lindstrom325e70c2001-08-06 22:41:30 +000055int ssh_port = SSH_DEFAULT_PORT;
Kevin Steves76e7d9b2001-09-20 20:30:09 +000056
Damien Millereb8b60e2010-08-31 22:41:14 +100057#define KT_RSA1 1
58#define KT_DSA 2
59#define KT_RSA 4
60#define KT_ECDSA 8
Damien Miller5be9d9e2013-12-07 11:24:01 +110061#define KT_ED25519 16
Kevin Steves76e7d9b2001-09-20 20:30:09 +000062
Damien Miller1c7ef4b2014-04-20 12:59:46 +100063int get_keytypes = KT_RSA|KT_ECDSA|KT_ED25519;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000064
Damien Millerdb7b8172005-03-01 21:48:03 +110065int hash_hosts = 0; /* Hash hostname on output */
66
Ben Lindstromb6434ae2000-12-05 01:15:09 +000067#define MAXMAXFD 256
68
69/* The number of seconds after which to give up on a TCP connection */
70int timeout = 5;
71
72int maxfd;
Ben Lindstromd20b8552001-03-05 07:01:18 +000073#define MAXCON (maxfd - 10)
Ben Lindstromb6434ae2000-12-05 01:15:09 +000074
Kevin Stevesec84dc12000-12-13 17:45:15 +000075extern char *__progname;
Ben Lindstromc1e04212001-03-05 07:04:38 +000076fd_set *read_wait;
Damien Miller07d86be2006-03-26 14:19:21 +110077size_t read_wait_nfdset;
Ben Lindstromb6434ae2000-12-05 01:15:09 +000078int ncon;
79
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 */
markus@openbsd.org3f797652015-01-19 20:32:39 +000095 int c_done; /* SSH2 done */
Ben Lindstromb6434ae2000-12-05 01:15:09 +000096 char *c_namebase; /* Address to free for c_name and c_namelist */
97 char *c_name; /* Hostname of connection for errors */
98 char *c_namelist; /* Pointer to other possible addresses */
99 char *c_output_name; /* Hostname of connection for output */
100 char *c_data; /* Data read from this fd */
markus@openbsd.org3f797652015-01-19 20:32:39 +0000101 struct ssh *c_ssh; /* SSH-connection */
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000102 struct timeval c_tv; /* Time at which connection gets aborted */
103 TAILQ_ENTRY(Connection) c_link; /* List of connections in timeout order. */
104} con;
105
106TAILQ_HEAD(conlist, Connection) tq; /* Timeout Queue */
107con *fdcon;
108
markus@openbsd.org3f797652015-01-19 20:32:39 +0000109static void keyprint(con *c, struct sshkey *key);
110
Ben Lindstrombba81212001-06-25 05:01:22 +0000111static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000112fdlim_get(int hard)
113{
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000114#if defined(HAVE_GETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000115 struct rlimit rlfd;
Ben Lindstromb0a4cd82001-03-05 04:54:49 +0000116
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000117 if (getrlimit(RLIMIT_NOFILE, &rlfd) < 0)
118 return (-1);
119 if ((hard ? rlfd.rlim_max : rlfd.rlim_cur) == RLIM_INFINITY)
Damien Millere00074a2003-11-24 13:07:45 +1100120 return SSH_SYSFDMAX;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000121 else
122 return hard ? rlfd.rlim_max : rlfd.rlim_cur;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000123#else
Damien Millere00074a2003-11-24 13:07:45 +1100124 return SSH_SYSFDMAX;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000125#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000126}
127
Ben Lindstrombba81212001-06-25 05:01:22 +0000128static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000129fdlim_set(int lim)
130{
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000131#if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000132 struct rlimit rlfd;
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000133#endif
Ben Lindstrom5c98db52002-07-07 22:25:29 +0000134
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000135 if (lim <= 0)
136 return (-1);
Ben Lindstrom5adbad22000-12-27 07:06:21 +0000137#if defined(HAVE_SETRLIMIT) && defined(RLIMIT_NOFILE)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000138 if (getrlimit(RLIMIT_NOFILE, &rlfd) < 0)
139 return (-1);
140 rlfd.rlim_cur = lim;
141 if (setrlimit(RLIMIT_NOFILE, &rlfd) < 0)
142 return (-1);
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000143#elif defined (HAVE_SETDTABLESIZE)
Kevin Steves28a7f262001-02-05 15:43:59 +0000144 setdtablesize(lim);
Ben Lindstrom2c467a22000-12-27 04:57:41 +0000145#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000146 return (0);
147}
148
149/*
150 * This is an strsep function that returns a null field for adjacent
151 * separators. This is the same as the 4.4BSD strsep, but different from the
152 * one in the GNU libc.
153 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000154static char *
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000155xstrsep(char **str, const char *delim)
156{
157 char *s, *e;
158
159 if (!**str)
160 return (NULL);
161
162 s = *str;
163 e = s + strcspn(s, delim);
164
165 if (*e != '\0')
166 *e++ = '\0';
167 *str = e;
168
169 return (s);
170}
171
172/*
173 * Get the next non-null token (like GNU strsep). Strsep() will return a
174 * null token for two adjacent separators, so we may have to loop.
175 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000176static char *
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000177strnnsep(char **stringp, char *delim)
178{
179 char *tok;
180
181 do {
182 tok = xstrsep(stringp, delim);
183 } while (tok && *tok == '\0');
184 return (tok);
185}
186
Damien Miller1f0311c2014-05-15 14:24:09 +1000187#ifdef WITH_SSH1
markus@openbsd.org3f797652015-01-19 20:32:39 +0000188static struct sshkey *
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000189keygrab_ssh1(con *c)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000190{
markus@openbsd.org3f797652015-01-19 20:32:39 +0000191 static struct sshkey *rsa;
192 static struct sshbuf *msg;
193 int r;
194 u_char type;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000195
196 if (rsa == NULL) {
markus@openbsd.org3f797652015-01-19 20:32:39 +0000197 if ((rsa = sshkey_new(KEY_RSA1)) == NULL) {
198 error("%s: sshkey_new failed", __func__);
199 return NULL;
200 }
201 if ((msg = sshbuf_new()) == NULL)
202 fatal("%s: sshbuf_new failed", __func__);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000203 }
markus@openbsd.org3f797652015-01-19 20:32:39 +0000204 if ((r = sshbuf_put(msg, c->c_data, c->c_plen)) != 0 ||
205 (r = sshbuf_consume(msg, 8 - (c->c_plen & 7))) != 0 || /* padding */
206 (r = sshbuf_get_u8(msg, &type)) != 0)
207 goto buf_err;
208 if (type != (int) SSH_SMSG_PUBLIC_KEY) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000209 error("%s: invalid packet type", c->c_name);
markus@openbsd.org3f797652015-01-19 20:32:39 +0000210 sshbuf_reset(msg);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000211 return NULL;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000212 }
markus@openbsd.org3f797652015-01-19 20:32:39 +0000213 if ((r = sshbuf_consume(msg, 8)) != 0 || /* cookie */
214 /* server key */
215 (r = sshbuf_get_u32(msg, NULL)) != 0 ||
216 (r = sshbuf_get_bignum1(msg, NULL)) != 0 ||
217 (r = sshbuf_get_bignum1(msg, NULL)) != 0 ||
218 /* host key */
219 (r = sshbuf_get_u32(msg, NULL)) != 0 ||
220 (r = sshbuf_get_bignum1(msg, rsa->rsa->e)) != 0 ||
221 (r = sshbuf_get_bignum1(msg, rsa->rsa->n)) != 0) {
222 buf_err:
223 error("%s: buffer error: %s", __func__, ssh_err(r));
224 sshbuf_reset(msg);
225 return NULL;
226 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000227
markus@openbsd.org3f797652015-01-19 20:32:39 +0000228 sshbuf_reset(msg);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000229
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000230 return (rsa);
231}
Damien Miller1f0311c2014-05-15 14:24:09 +1000232#endif
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000233
234static int
markus@openbsd.org3f797652015-01-19 20:32:39 +0000235key_print_wrapper(struct sshkey *hostkey, struct ssh *ssh)
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000236{
markus@openbsd.org3f797652015-01-19 20:32:39 +0000237 con *c;
238
239 if ((c = ssh_get_app_data(ssh)) != NULL)
240 keyprint(c, hostkey);
241 /* always abort key exchange */
242 return -1;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000243}
244
245static int
246ssh2_capable(int remote_major, int remote_minor)
247{
248 switch (remote_major) {
249 case 1:
250 if (remote_minor == 99)
251 return 1;
252 break;
253 case 2:
254 return 1;
255 default:
256 break;
257 }
258 return 0;
259}
260
markus@openbsd.org3f797652015-01-19 20:32:39 +0000261static void
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000262keygrab_ssh2(con *c)
263{
Damien Miller9235a032014-04-20 13:17:20 +1000264 char *myproposal[PROPOSAL_MAX] = { KEX_CLIENT };
markus@openbsd.org3f797652015-01-19 20:32:39 +0000265 int r;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000266
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000267 enable_compat20();
Damien Miller5be9d9e2013-12-07 11:24:01 +1100268 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] =
269 c->c_keytype == KT_DSA ? "ssh-dss" :
270 (c->c_keytype == KT_RSA ? "ssh-rsa" :
271 (c->c_keytype == KT_ED25519 ? "ssh-ed25519" :
272 "ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521"));
markus@openbsd.org3f797652015-01-19 20:32:39 +0000273 if ((r = kex_setup(c->c_ssh, myproposal)) != 0) {
274 free(c->c_ssh);
275 fprintf(stderr, "kex_setup: %s\n", ssh_err(r));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000276 exit(1);
277 }
markus@openbsd.org3f797652015-01-19 20:32:39 +0000278#ifdef WITH_OPENSSL
279 c->c_ssh->kex->kex[KEX_DH_GRP1_SHA1] = kexdh_client;
280 c->c_ssh->kex->kex[KEX_DH_GRP14_SHA1] = kexdh_client;
281 c->c_ssh->kex->kex[KEX_DH_GEX_SHA1] = kexgex_client;
282 c->c_ssh->kex->kex[KEX_DH_GEX_SHA256] = kexgex_client;
283 c->c_ssh->kex->kex[KEX_ECDH_SHA2] = kexecdh_client;
284#endif
285 c->c_ssh->kex->kex[KEX_C25519_SHA256] = kexc25519_client;
286 ssh_set_verify_host_key_callback(c->c_ssh, key_print_wrapper);
287 /*
288 * do the key-exchange until an error occurs or until
289 * the key_print_wrapper() callback sets c_done.
290 */
291 ssh_dispatch_run(c->c_ssh, DISPATCH_BLOCK, &c->c_done, c->c_ssh);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000292}
293
294static void
markus@openbsd.org3f797652015-01-19 20:32:39 +0000295keyprint(con *c, struct sshkey *key)
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000296{
Damien Millerdb7b8172005-03-01 21:48:03 +1100297 char *host = c->c_output_name ? c->c_output_name : c->c_name;
298
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000299 if (!key)
300 return;
Damien Millerdb7b8172005-03-01 21:48:03 +1100301 if (hash_hosts && (host = host_hash(host, NULL, 0)) == NULL)
302 fatal("host_hash failed");
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000303
Damien Millerdb7b8172005-03-01 21:48:03 +1100304 fprintf(stdout, "%s ", host);
markus@openbsd.org3f797652015-01-19 20:32:39 +0000305 sshkey_write(key, stdout);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000306 fputs("\n", stdout);
307}
308
Ben Lindstrombba81212001-06-25 05:01:22 +0000309static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000310tcpconnect(char *host)
311{
312 struct addrinfo hints, *ai, *aitop;
313 char strport[NI_MAXSERV];
314 int gaierr, s = -1;
315
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000316 snprintf(strport, sizeof strport, "%d", ssh_port);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000317 memset(&hints, 0, sizeof(hints));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000318 hints.ai_family = IPv4or6;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000319 hints.ai_socktype = SOCK_STREAM;
320 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
Darren Tucker4abde772007-12-29 02:43:51 +1100321 fatal("getaddrinfo %s: %s", host, ssh_gai_strerror(gaierr));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000322 for (ai = aitop; ai; ai = ai->ai_next) {
Darren Tucker7bd98e72010-01-10 10:31:12 +1100323 s = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000324 if (s < 0) {
325 error("socket: %s", strerror(errno));
326 continue;
327 }
Damien Miller232711f2004-06-15 10:35:30 +1000328 if (set_nonblock(s) == -1)
329 fatal("%s: set_nonblock(%d)", __func__, s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000330 if (connect(s, ai->ai_addr, ai->ai_addrlen) < 0 &&
331 errno != EINPROGRESS)
332 error("connect (`%s'): %s", host, strerror(errno));
333 else
334 break;
335 close(s);
336 s = -1;
337 }
338 freeaddrinfo(aitop);
339 return s;
340}
341
Ben Lindstrombba81212001-06-25 05:01:22 +0000342static int
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000343conalloc(char *iname, char *oname, int keytype)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000344{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000345 char *namebase, *name, *namelist;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000346 int s;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000347
348 namebase = namelist = xstrdup(iname);
349
350 do {
351 name = xstrsep(&namelist, ",");
352 if (!name) {
Darren Tuckera627d422013-06-02 07:31:17 +1000353 free(namebase);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000354 return (-1);
355 }
356 } while ((s = tcpconnect(name)) < 0);
357
358 if (s >= maxfd)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000359 fatal("conalloc: fdno %d too high", s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000360 if (fdcon[s].c_status)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000361 fatal("conalloc: attempt to reuse fdno %d", s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000362
363 fdcon[s].c_fd = s;
364 fdcon[s].c_status = CS_CON;
365 fdcon[s].c_namebase = namebase;
366 fdcon[s].c_name = name;
367 fdcon[s].c_namelist = namelist;
368 fdcon[s].c_output_name = xstrdup(oname);
369 fdcon[s].c_data = (char *) &fdcon[s].c_plen;
370 fdcon[s].c_len = 4;
371 fdcon[s].c_off = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000372 fdcon[s].c_keytype = keytype;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000373 gettimeofday(&fdcon[s].c_tv, NULL);
374 fdcon[s].c_tv.tv_sec += timeout;
375 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000376 FD_SET(s, read_wait);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000377 ncon++;
378 return (s);
379}
380
Ben Lindstrombba81212001-06-25 05:01:22 +0000381static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000382confree(int s)
383{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000384 if (s >= maxfd || fdcon[s].c_status == CS_UNUSED)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000385 fatal("confree: attempt to free bad fdno %d", s);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000386 close(s);
Darren Tuckera627d422013-06-02 07:31:17 +1000387 free(fdcon[s].c_namebase);
388 free(fdcon[s].c_output_name);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000389 if (fdcon[s].c_status == CS_KEYS)
Darren Tuckera627d422013-06-02 07:31:17 +1000390 free(fdcon[s].c_data);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000391 fdcon[s].c_status = CS_UNUSED;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000392 fdcon[s].c_keytype = 0;
markus@openbsd.org3f797652015-01-19 20:32:39 +0000393 if (fdcon[s].c_ssh) {
394 ssh_packet_close(fdcon[s].c_ssh);
395 free(fdcon[s].c_ssh);
396 fdcon[s].c_ssh = NULL;
397 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000398 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000399 FD_CLR(s, read_wait);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000400 ncon--;
401}
402
Ben Lindstrombba81212001-06-25 05:01:22 +0000403static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000404contouch(int s)
405{
406 TAILQ_REMOVE(&tq, &fdcon[s], c_link);
407 gettimeofday(&fdcon[s].c_tv, NULL);
408 fdcon[s].c_tv.tv_sec += timeout;
409 TAILQ_INSERT_TAIL(&tq, &fdcon[s], c_link);
410}
411
Ben Lindstrombba81212001-06-25 05:01:22 +0000412static int
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000413conrecycle(int s)
414{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000415 con *c = &fdcon[s];
Ben Lindstrom965710f2002-07-07 22:17:22 +0000416 int ret;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000417
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000418 ret = conalloc(c->c_namelist, c->c_output_name, c->c_keytype);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000419 confree(s);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000420 return (ret);
421}
422
Ben Lindstrombba81212001-06-25 05:01:22 +0000423static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000424congreet(int s)
425{
Damien Millereccb9de2005-06-17 12:59:34 +1000426 int n = 0, remote_major = 0, remote_minor = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000427 char buf[256], *cp;
Damien Miller83c02ef2001-12-21 12:45:43 +1100428 char remote_version[sizeof buf];
Damien Millereccb9de2005-06-17 12:59:34 +1000429 size_t bufsiz;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000430 con *c = &fdcon[s];
431
Damien Miller4bbacb72005-11-05 15:12:28 +1100432 for (;;) {
433 memset(buf, '\0', sizeof(buf));
434 bufsiz = sizeof(buf);
435 cp = buf;
436 while (bufsiz-- &&
437 (n = atomicio(read, s, cp, 1)) == 1 && *cp != '\n') {
438 if (*cp == '\r')
439 *cp = '\n';
440 cp++;
441 }
442 if (n != 1 || strncmp(buf, "SSH-", 4) == 0)
443 break;
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000444 }
Ben Lindstrom6b28c352002-03-05 01:54:52 +0000445 if (n == 0) {
Damien Millerb253cc42005-05-26 12:23:44 +1000446 switch (errno) {
447 case EPIPE:
448 error("%s: Connection closed by remote host", c->c_name);
449 break;
450 case ECONNREFUSED:
451 break;
452 default:
453 error("read (%s): %s", c->c_name, strerror(errno));
454 break;
455 }
Ben Lindstrom6b28c352002-03-05 01:54:52 +0000456 conrecycle(s);
457 return;
458 }
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000459 if (*cp != '\n' && *cp != '\r') {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000460 error("%s: bad greeting", c->c_name);
461 confree(s);
462 return;
463 }
Ben Lindstrom884a4ac2001-03-06 03:33:04 +0000464 *cp = '\0';
markus@openbsd.org3f797652015-01-19 20:32:39 +0000465 c->c_ssh = ssh_packet_set_connection(NULL, s, s);
466 ssh_set_app_data(c->c_ssh, c); /* back link */
Damien Miller83c02ef2001-12-21 12:45:43 +1100467 if (sscanf(buf, "SSH-%d.%d-%[^\n]\n",
468 &remote_major, &remote_minor, remote_version) == 3)
markus@openbsd.org3f797652015-01-19 20:32:39 +0000469 c->c_ssh->compat = compat_datafellows(remote_version);
Damien Miller83c02ef2001-12-21 12:45:43 +1100470 else
markus@openbsd.org3f797652015-01-19 20:32:39 +0000471 c->c_ssh->compat = 0;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000472 if (c->c_keytype != KT_RSA1) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000473 if (!ssh2_capable(remote_major, remote_minor)) {
474 debug("%s doesn't support ssh2", c->c_name);
475 confree(s);
476 return;
477 }
Damien Miller83c02ef2001-12-21 12:45:43 +1100478 } else if (remote_major != 1) {
479 debug("%s doesn't support ssh1", c->c_name);
480 confree(s);
481 return;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000482 }
Ben Lindstromde8fc6f2001-08-06 22:43:50 +0000483 fprintf(stderr, "# %s %s\n", c->c_name, chop(buf));
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000484 n = snprintf(buf, sizeof buf, "SSH-%d.%d-OpenSSH-keyscan\r\n",
485 c->c_keytype == KT_RSA1? PROTOCOL_MAJOR_1 : PROTOCOL_MAJOR_2,
486 c->c_keytype == KT_RSA1? PROTOCOL_MINOR_1 : PROTOCOL_MINOR_2);
Damien Millereccb9de2005-06-17 12:59:34 +1000487 if (n < 0 || (size_t)n >= sizeof(buf)) {
Damien Miller41bfc292005-05-26 12:07:32 +1000488 error("snprintf: buffer too small");
489 confree(s);
490 return;
491 }
Damien Millereccb9de2005-06-17 12:59:34 +1000492 if (atomicio(vwrite, s, buf, n) != (size_t)n) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000493 error("write (%s): %s", c->c_name, strerror(errno));
494 confree(s);
495 return;
496 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000497 if (c->c_keytype != KT_RSA1) {
markus@openbsd.org3f797652015-01-19 20:32:39 +0000498 keygrab_ssh2(c);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000499 confree(s);
500 return;
501 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000502 c->c_status = CS_SIZE;
503 contouch(s);
504}
505
Ben Lindstrombba81212001-06-25 05:01:22 +0000506static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000507conread(int s)
508{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000509 con *c = &fdcon[s];
Damien Millerb253cc42005-05-26 12:23:44 +1000510 size_t n;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000511
512 if (c->c_status == CS_CON) {
513 congreet(s);
514 return;
515 }
Darren Tuckerfe6649d2004-08-13 21:19:37 +1000516 n = atomicio(read, s, c->c_data + c->c_off, c->c_len - c->c_off);
Damien Millerb253cc42005-05-26 12:23:44 +1000517 if (n == 0) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000518 error("read (%s): %s", c->c_name, strerror(errno));
519 confree(s);
520 return;
521 }
522 c->c_off += n;
523
524 if (c->c_off == c->c_len)
525 switch (c->c_status) {
526 case CS_SIZE:
527 c->c_plen = htonl(c->c_plen);
528 c->c_len = c->c_plen + 8 - (c->c_plen & 7);
529 c->c_off = 0;
530 c->c_data = xmalloc(c->c_len);
531 c->c_status = CS_KEYS;
532 break;
Damien Miller1f0311c2014-05-15 14:24:09 +1000533#ifdef WITH_SSH1
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000534 case CS_KEYS:
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000535 keyprint(c, keygrab_ssh1(c));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000536 confree(s);
537 return;
Damien Miller1f0311c2014-05-15 14:24:09 +1000538#endif
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000539 default:
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000540 fatal("conread: invalid status %d", c->c_status);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000541 break;
542 }
543
544 contouch(s);
545}
546
Ben Lindstrombba81212001-06-25 05:01:22 +0000547static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000548conloop(void)
549{
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000550 struct timeval seltime, now;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000551 fd_set *r, *e;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000552 con *c;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000553 int i;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000554
555 gettimeofday(&now, NULL);
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000556 c = TAILQ_FIRST(&tq);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000557
Ben Lindstromd20b8552001-03-05 07:01:18 +0000558 if (c && (c->c_tv.tv_sec > now.tv_sec ||
559 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec > now.tv_usec))) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000560 seltime = c->c_tv;
561 seltime.tv_sec -= now.tv_sec;
562 seltime.tv_usec -= now.tv_usec;
Ben Lindstromc791beb2001-02-10 23:18:11 +0000563 if (seltime.tv_usec < 0) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000564 seltime.tv_usec += 1000000;
565 seltime.tv_sec--;
566 }
567 } else
Damien Millerc5219e72011-05-05 14:05:12 +1000568 timerclear(&seltime);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000569
Damien Miller07d86be2006-03-26 14:19:21 +1100570 r = xcalloc(read_wait_nfdset, sizeof(fd_mask));
571 e = xcalloc(read_wait_nfdset, sizeof(fd_mask));
572 memcpy(r, read_wait, read_wait_nfdset * sizeof(fd_mask));
573 memcpy(e, read_wait, read_wait_nfdset * sizeof(fd_mask));
Ben Lindstromc1e04212001-03-05 07:04:38 +0000574
575 while (select(maxfd, r, NULL, e, &seltime) == -1 &&
Damien Millerd8968ad2008-07-04 23:10:49 +1000576 (errno == EAGAIN || errno == EINTR || errno == EWOULDBLOCK))
Ben Lindstromf9452512001-02-15 03:12:08 +0000577 ;
578
Ben Lindstromd20b8552001-03-05 07:01:18 +0000579 for (i = 0; i < maxfd; i++) {
Ben Lindstromc1e04212001-03-05 07:04:38 +0000580 if (FD_ISSET(i, e)) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000581 error("%s: exception!", fdcon[i].c_name);
582 confree(i);
Ben Lindstromc1e04212001-03-05 07:04:38 +0000583 } else if (FD_ISSET(i, r))
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000584 conread(i);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000585 }
Darren Tuckera627d422013-06-02 07:31:17 +1000586 free(r);
587 free(e);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000588
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000589 c = TAILQ_FIRST(&tq);
Ben Lindstromd20b8552001-03-05 07:01:18 +0000590 while (c && (c->c_tv.tv_sec < now.tv_sec ||
591 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec < now.tv_usec))) {
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000592 int s = c->c_fd;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000593
Ben Lindstrom61c183b2002-06-21 00:09:54 +0000594 c = TAILQ_NEXT(c, c_link);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000595 conrecycle(s);
596 }
597}
598
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000599static void
600do_host(char *host)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000601{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000602 char *name = strnnsep(&host, " \t\n");
603 int j;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000604
Ben Lindstromeaffb9d2001-12-06 16:28:19 +0000605 if (name == NULL)
606 return;
Damien Miller5be9d9e2013-12-07 11:24:01 +1100607 for (j = KT_RSA1; j <= KT_ED25519; j *= 2) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000608 if (get_keytypes & j) {
609 while (ncon >= MAXCON)
610 conloop();
611 conalloc(name, *host ? host : name, j);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000612 }
613 }
614}
615
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000616void
617fatal(const char *fmt,...)
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000618{
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000619 va_list args;
Ben Lindstrom965710f2002-07-07 22:17:22 +0000620
Ben Lindstrom9c8edc92002-02-26 17:52:14 +0000621 va_start(args, fmt);
622 do_log(SYSLOG_LEVEL_FATAL, fmt, args);
623 va_end(args);
markus@openbsd.org3f797652015-01-19 20:32:39 +0000624 exit(255);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000625}
626
627static void
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000628usage(void)
629{
Damien Millerc1719f72008-11-03 19:27:07 +1100630 fprintf(stderr,
631 "usage: %s [-46Hv] [-f file] [-p port] [-T timeout] [-t type]\n"
Darren Tucker7bd98e72010-01-10 10:31:12 +1100632 "\t\t [host | addrlist namelist] ...\n",
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000633 __progname);
Ben Lindstromddfb1e32001-08-06 22:06:35 +0000634 exit(1);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000635}
636
637int
638main(int argc, char **argv)
639{
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000640 int debug_flag = 0, log_level = SYSLOG_LEVEL_INFO;
Damien Miller0e76c5e2010-06-26 09:39:59 +1000641 int opt, fopt_count = 0, j;
642 char *tname, *cp, line[NI_MAXHOST];
643 FILE *fp;
644 u_long linenum;
Kevin Steves76e7d9b2001-09-20 20:30:09 +0000645
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000646 extern int optind;
647 extern char *optarg;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000648
Damien Miller59d3d5b2003-08-22 09:34:41 +1000649 __progname = ssh_get_progname(argv[0]);
Ben Lindstrom4e088e42001-10-10 20:45:43 +0000650 seed_rng();
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000651 TAILQ_INIT(&tq);
652
Darren Tuckerce321d82005-10-03 18:11:24 +1000653 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
654 sanitise_stdfd();
655
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000656 if (argc <= 1)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000657 usage();
658
Darren Tucker7bd98e72010-01-10 10:31:12 +1100659 while ((opt = getopt(argc, argv, "Hv46p:T:t:f:")) != -1) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000660 switch (opt) {
Damien Millerdb7b8172005-03-01 21:48:03 +1100661 case 'H':
662 hash_hosts = 1;
663 break;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000664 case 'p':
665 ssh_port = a2port(optarg);
Damien Miller3dc71ad2009-01-28 16:31:22 +1100666 if (ssh_port <= 0) {
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000667 fprintf(stderr, "Bad port '%s'\n", optarg);
668 exit(1);
669 }
670 break;
671 case 'T':
Ben Lindstromedd098b2002-07-04 00:07:13 +0000672 timeout = convtime(optarg);
673 if (timeout == -1 || timeout == 0) {
674 fprintf(stderr, "Bad timeout '%s'\n", optarg);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000675 usage();
Ben Lindstromedd098b2002-07-04 00:07:13 +0000676 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000677 break;
678 case 'v':
679 if (!debug_flag) {
680 debug_flag = 1;
681 log_level = SYSLOG_LEVEL_DEBUG1;
682 }
683 else if (log_level < SYSLOG_LEVEL_DEBUG3)
684 log_level++;
685 else
686 fatal("Too high debugging level.");
687 break;
Kevin Steves76e7d9b2001-09-20 20:30:09 +0000688 case 'f':
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000689 if (strcmp(optarg, "-") == 0)
690 optarg = NULL;
691 argv[fopt_count++] = optarg;
692 break;
693 case 't':
694 get_keytypes = 0;
695 tname = strtok(optarg, ",");
696 while (tname) {
markus@openbsd.org3f797652015-01-19 20:32:39 +0000697 int type = sshkey_type_from_name(tname);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000698 switch (type) {
699 case KEY_RSA1:
700 get_keytypes |= KT_RSA1;
701 break;
702 case KEY_DSA:
703 get_keytypes |= KT_DSA;
704 break;
Damien Millereb8b60e2010-08-31 22:41:14 +1000705 case KEY_ECDSA:
706 get_keytypes |= KT_ECDSA;
707 break;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000708 case KEY_RSA:
709 get_keytypes |= KT_RSA;
710 break;
Damien Miller5be9d9e2013-12-07 11:24:01 +1100711 case KEY_ED25519:
712 get_keytypes |= KT_ED25519;
713 break;
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000714 case KEY_UNSPEC:
Ben Lindstrom28c603b2001-12-06 16:45:10 +0000715 fatal("unknown key type %s", tname);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000716 }
717 tname = strtok(NULL, ",");
718 }
719 break;
720 case '4':
721 IPv4or6 = AF_INET;
722 break;
723 case '6':
724 IPv4or6 = AF_INET6;
725 break;
726 case '?':
727 default:
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000728 usage();
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000729 }
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000730 }
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000731 if (optind == argc && !fopt_count)
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000732 usage();
733
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000734 log_init("ssh-keyscan", log_level, SYSLOG_FACILITY_USER, 1);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000735
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000736 maxfd = fdlim_get(1);
737 if (maxfd < 0)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000738 fatal("%s: fdlim_get: bad value", __progname);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000739 if (maxfd > MAXMAXFD)
740 maxfd = MAXMAXFD;
Ben Lindstromd20b8552001-03-05 07:01:18 +0000741 if (MAXCON <= 0)
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000742 fatal("%s: not enough file descriptors", __progname);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000743 if (maxfd > fdlim_get(0))
744 fdlim_set(maxfd);
Damien Miller07d86be2006-03-26 14:19:21 +1100745 fdcon = xcalloc(maxfd, sizeof(con));
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000746
Damien Miller07d86be2006-03-26 14:19:21 +1100747 read_wait_nfdset = howmany(maxfd, NFDBITS);
748 read_wait = xcalloc(read_wait_nfdset, sizeof(fd_mask));
Ben Lindstromc1e04212001-03-05 07:04:38 +0000749
Damien Miller0e76c5e2010-06-26 09:39:59 +1000750 for (j = 0; j < fopt_count; j++) {
751 if (argv[j] == NULL)
752 fp = stdin;
753 else if ((fp = fopen(argv[j], "r")) == NULL)
754 fatal("%s: %s: %s", __progname, argv[j],
755 strerror(errno));
756 linenum = 0;
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000757
Damien Miller0e76c5e2010-06-26 09:39:59 +1000758 while (read_keyfile_line(fp,
759 argv[j] == NULL ? "(stdin)" : argv[j], line, sizeof(line),
760 &linenum) != -1) {
761 /* Chomp off trailing whitespace and comments */
762 if ((cp = strchr(line, '#')) == NULL)
763 cp = line + strlen(line) - 1;
764 while (cp >= line) {
765 if (*cp == ' ' || *cp == '\t' ||
766 *cp == '\n' || *cp == '#')
767 *cp-- = '\0';
768 else
769 break;
770 }
771
772 /* Skip empty lines */
773 if (*line == '\0')
Ben Lindstrom78bbd9e2001-09-12 17:10:40 +0000774 continue;
Damien Miller0e76c5e2010-06-26 09:39:59 +1000775
776 do_host(line);
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000777 }
Damien Miller0e76c5e2010-06-26 09:39:59 +1000778
779 if (ferror(fp))
780 fatal("%s: %s: %s", __progname, argv[j],
781 strerror(errno));
782
783 fclose(fp);
Ben Lindstrom325e70c2001-08-06 22:41:30 +0000784 }
785
786 while (optind < argc)
787 do_host(argv[optind++]);
788
Ben Lindstromb6434ae2000-12-05 01:15:09 +0000789 while (ncon > 0)
790 conloop();
791
792 return (0);
793}