blob: 1dfcac0d7fb75ea75bbe7e6a982338902e8c06a9 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Millere4340be2000-09-16 13:29:08 +11005 * This program is the ssh daemon. It listens for connections from clients,
6 * and performs authentication, executes use commands or shell, and forwards
Damien Miller95def091999-11-25 00:26:21 +11007 * information to/from the application to the user client over an encrypted
Damien Millere4340be2000-09-16 13:29:08 +11008 * connection. This can also handle forwarding of X11, TCP/IP, and
9 * authentication agent connections.
Damien Millerefb4afe2000-04-12 18:45:05 +100010 *
Damien Millere4340be2000-09-16 13:29:08 +110011 * As far as I am concerned, the code I have written for this software
12 * can be used freely for any purpose. Any derived versions of this
13 * software must be clearly marked as such, and if the derived work is
14 * incompatible with the protocol description in the RFC file, it must be
15 * called by a name other than "ssh" or "Secure Shell".
16 *
17 * SSH2 implementation:
18 *
19 * Copyright (c) 2000 Markus Friedl. All rights reserved.
20 *
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
23 * are met:
24 * 1. Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the distribution.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110040 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041
42#include "includes.h"
Ben Lindstromec46e0b2001-06-09 01:27:31 +000043RCSID("$OpenBSD: sshd.c,v 1.199 2001/06/04 23:07:21 markus Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100044
Ben Lindstrom226cfa02001-01-22 05:34:40 +000045#include <openssl/dh.h>
46#include <openssl/bn.h>
47#include <openssl/hmac.h>
48
49#include "ssh.h"
50#include "ssh1.h"
51#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100052#include "xmalloc.h"
53#include "rsa.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000054#include "sshpty.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100055#include "packet.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100056#include "mpaux.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000057#include "log.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100058#include "servconf.h"
59#include "uidswap.h"
60#include "compat.h"
Damien Millerb38eff82000-04-01 11:09:21 +100061#include "buffer.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000062#include "cipher.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100063#include "kex.h"
Damien Millerb38eff82000-04-01 11:09:21 +100064#include "key.h"
Damien Miller874d77b2000-10-14 16:23:11 +110065#include "dh.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100066#include "myproposal.h"
Damien Millereba71ba2000-04-29 23:57:08 +100067#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000068#include "pathnames.h"
69#include "atomicio.h"
70#include "canohost.h"
71#include "auth.h"
72#include "misc.h"
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000073#include "dispatch.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074
75#ifdef LIBWRAP
76#include <tcpd.h>
77#include <syslog.h>
78int allow_severity = LOG_INFO;
79int deny_severity = LOG_WARNING;
80#endif /* LIBWRAP */
81
82#ifndef O_NOCTTY
83#define O_NOCTTY 0
84#endif
85
Ben Lindstrom49a79c02000-11-17 03:47:20 +000086#ifdef HAVE___PROGNAME
87extern char *__progname;
88#else
89char *__progname;
90#endif
91
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092/* Server configuration options. */
93ServerOptions options;
94
95/* Name of the server configuration file. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +000096char *config_file_name = _PATH_SERVER_CONFIG_FILE;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100097
Damien Miller4af51302000-04-16 11:18:38 +100098/*
Damien Miller34132e52000-01-14 15:45:46 +110099 * Flag indicating whether IPv4 or IPv6. This can be set on the command line.
100 * Default value is AF_UNSPEC means both IPv4 and IPv6.
101 */
Damien Miller7d80e342000-01-19 14:36:49 +1100102#ifdef IPV4_DEFAULT
103int IPv4or6 = AF_INET;
104#else
Damien Miller34132e52000-01-14 15:45:46 +1100105int IPv4or6 = AF_UNSPEC;
Damien Miller7d80e342000-01-19 14:36:49 +1100106#endif
Damien Miller34132e52000-01-14 15:45:46 +1100107
Damien Miller95def091999-11-25 00:26:21 +1100108/*
109 * Debug mode flag. This can be set on the command line. If debug
110 * mode is enabled, extra debugging output will be sent to the system
111 * log, the daemon will not go to background, and will exit after processing
112 * the first connection.
113 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000114int debug_flag = 0;
115
116/* Flag indicating that the daemon is being started from inetd. */
117int inetd_flag = 0;
118
Ben Lindstromc72745a2000-12-02 19:03:54 +0000119/* Flag indicating that sshd should not detach and become a daemon. */
120int no_daemon_flag = 0;
121
Damien Miller5ce662a1999-11-11 17:57:39 +1100122/* debug goes to stderr unless inetd_flag is set */
123int log_stderr = 0;
124
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000125/* Saved arguments to main(). */
126char **saved_argv;
Damien Millerb8c656e2000-06-28 15:22:41 +1000127int saved_argc;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000128
Damien Miller5428f641999-11-25 11:54:57 +1100129/*
Damien Miller34132e52000-01-14 15:45:46 +1100130 * The sockets that the server is listening; this is used in the SIGHUP
131 * signal handler.
Damien Miller5428f641999-11-25 11:54:57 +1100132 */
Damien Miller34132e52000-01-14 15:45:46 +1100133#define MAX_LISTEN_SOCKS 16
134int listen_socks[MAX_LISTEN_SOCKS];
135int num_listen_socks = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000136
Damien Miller5428f641999-11-25 11:54:57 +1100137/*
138 * the client's version string, passed by sshd2 in compat mode. if != NULL,
139 * sshd will skip the version-number exchange
140 */
Damien Miller95def091999-11-25 00:26:21 +1100141char *client_version_string = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000142char *server_version_string = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000143
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000144/* for rekeying XXX fixme */
145Kex *xxx_kex;
146
Damien Miller5428f641999-11-25 11:54:57 +1100147/*
148 * Any really sensitive data in the application is contained in this
149 * structure. The idea is that this structure could be locked into memory so
150 * that the pages do not get written into swap. However, there are some
151 * problems. The private key contains BIGNUMs, and we do not (in principle)
152 * have access to the internals of them, and locking just the structure is
153 * not very useful. Currently, memory locking is not implemented.
154 */
Damien Miller95def091999-11-25 00:26:21 +1100155struct {
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000156 Key *server_key; /* ephemeral server key */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100157 Key *ssh1_host_key; /* ssh1 host key */
158 Key **host_keys; /* all private host keys */
159 int have_ssh1_key;
160 int have_ssh2_key;
Ben Lindstromeb648a72001-03-05 06:00:29 +0000161 u_char ssh1_cookie[SSH_SESSION_KEY_LENGTH];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000162} sensitive_data;
163
Damien Miller5428f641999-11-25 11:54:57 +1100164/*
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000165 * Flag indicating whether the RSA server key needs to be regenerated.
166 * Is set in the SIGALRM handler and cleared when the key is regenerated.
Damien Miller5428f641999-11-25 11:54:57 +1100167 */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000168int key_do_regen = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000169
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000170/* This is set to true when a signal is received. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000171int received_sighup = 0;
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000172int received_sigterm = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000173
Damien Millerb38eff82000-04-01 11:09:21 +1000174/* session identifier, used by RSA-auth */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000175u_char session_id[16];
Damien Millerb38eff82000-04-01 11:09:21 +1000176
Damien Millereba71ba2000-04-29 23:57:08 +1000177/* same for ssh2 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000178u_char *session_id2 = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000179int session_id2_len = 0;
180
Damien Miller942da032000-08-18 13:59:06 +1000181/* record remote hostname or ip */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000182u_int utmp_len = MAXHOSTNAMELEN;
Damien Miller942da032000-08-18 13:59:06 +1000183
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000184/* Prototypes for various functions defined later in this file. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000185void do_ssh1_kex(void);
186void do_ssh2_kex(void);
Damien Miller98c7ad62000-03-09 21:27:49 +1100187
Damien Miller874d77b2000-10-14 16:23:11 +1100188void ssh_dh1_server(Kex *, Buffer *_kexinit, Buffer *);
189void ssh_dhgex_server(Kex *, Buffer *_kexinit, Buffer *);
190
Damien Miller98c7ad62000-03-09 21:27:49 +1100191/*
Damien Miller34132e52000-01-14 15:45:46 +1100192 * Close all listening sockets
193 */
194void
195close_listen_socks(void)
196{
197 int i;
198 for (i = 0; i < num_listen_socks; i++)
199 close(listen_socks[i]);
200 num_listen_socks = -1;
201}
202
203/*
Damien Miller95def091999-11-25 00:26:21 +1100204 * Signal handler for SIGHUP. Sshd execs itself when it receives SIGHUP;
205 * the effect is to reread the configuration file (and to regenerate
206 * the server key).
207 */
Damien Miller4af51302000-04-16 11:18:38 +1000208void
Damien Miller95def091999-11-25 00:26:21 +1100209sighup_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000210{
Damien Miller95def091999-11-25 00:26:21 +1100211 received_sighup = 1;
212 signal(SIGHUP, sighup_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000213}
214
Damien Miller95def091999-11-25 00:26:21 +1100215/*
216 * Called from the main program after receiving SIGHUP.
217 * Restarts the server.
218 */
Damien Miller4af51302000-04-16 11:18:38 +1000219void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000220sighup_restart(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000221{
Damien Miller95def091999-11-25 00:26:21 +1100222 log("Received SIGHUP; restarting.");
Damien Miller34132e52000-01-14 15:45:46 +1100223 close_listen_socks();
Damien Miller95def091999-11-25 00:26:21 +1100224 execv(saved_argv[0], saved_argv);
Kevin Stevesec84dc12000-12-13 17:45:15 +0000225 log("RESTART FAILED: av[0]='%.100s', error: %.100s.", saved_argv[0], strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100226 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000227}
228
Damien Miller95def091999-11-25 00:26:21 +1100229/*
230 * Generic signal handler for terminating signals in the master daemon.
Damien Miller95def091999-11-25 00:26:21 +1100231 */
Damien Miller4af51302000-04-16 11:18:38 +1000232void
Damien Miller95def091999-11-25 00:26:21 +1100233sigterm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000234{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000235 received_sigterm = sig;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000236}
237
Damien Miller95def091999-11-25 00:26:21 +1100238/*
239 * SIGCHLD handler. This is called whenever a child dies. This will then
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000240 * reap any zombies left by exited children.
Damien Miller95def091999-11-25 00:26:21 +1100241 */
Damien Miller4af51302000-04-16 11:18:38 +1000242void
Damien Miller95def091999-11-25 00:26:21 +1100243main_sigchld_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000244{
Damien Miller95def091999-11-25 00:26:21 +1100245 int save_errno = errno;
246 int status;
Damien Miller431f66b1999-11-21 18:31:57 +1100247
Damien Miller95def091999-11-25 00:26:21 +1100248 while (waitpid(-1, &status, WNOHANG) > 0)
249 ;
Damien Miller431f66b1999-11-21 18:31:57 +1100250
Damien Miller95def091999-11-25 00:26:21 +1100251 signal(SIGCHLD, main_sigchld_handler);
252 errno = save_errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000253}
254
Damien Miller95def091999-11-25 00:26:21 +1100255/*
256 * Signal handler for the alarm after the login grace period has expired.
257 */
Damien Miller4af51302000-04-16 11:18:38 +1000258void
Damien Miller95def091999-11-25 00:26:21 +1100259grace_alarm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000260{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000261 /* XXX no idea how fix this signal handler */
262
Damien Miller95def091999-11-25 00:26:21 +1100263 /* Close the connection. */
264 packet_close();
265
266 /* Log error and exit. */
267 fatal("Timeout before authentication for %s.", get_remote_ipaddr());
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000268}
269
Damien Miller95def091999-11-25 00:26:21 +1100270/*
Damien Miller95def091999-11-25 00:26:21 +1100271 * Signal handler for the key regeneration alarm. Note that this
272 * alarm only occurs in the daemon waiting for connections, and it does not
273 * do anything with the private key or random state before forking.
274 * Thus there should be no concurrency control/asynchronous execution
275 * problems.
276 */
Damien Miller4af51302000-04-16 11:18:38 +1000277void
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000278generate_ephemeral_server_key(void)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100279{
Ben Lindstromeb648a72001-03-05 06:00:29 +0000280 u_int32_t rand = 0;
281 int i;
282
Ben Lindstroma3700052001-04-05 23:26:32 +0000283 verbose("Generating %s%d bit RSA key.",
Damien Millerff75ac42001-03-30 10:50:32 +1000284 sensitive_data.server_key ? "new " : "", options.server_key_bits);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100285 if (sensitive_data.server_key != NULL)
286 key_free(sensitive_data.server_key);
Ben Lindstroma3700052001-04-05 23:26:32 +0000287 sensitive_data.server_key = key_generate(KEY_RSA1,
Damien Millerff75ac42001-03-30 10:50:32 +1000288 options.server_key_bits);
289 verbose("RSA key generation complete.");
Ben Lindstromeb648a72001-03-05 06:00:29 +0000290
291 for (i = 0; i < SSH_SESSION_KEY_LENGTH; i++) {
292 if (i % 4 == 0)
293 rand = arc4random();
294 sensitive_data.ssh1_cookie[i] = rand & 0xff;
295 rand >>= 8;
296 }
297 arc4random_stir();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100298}
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000299
Damien Miller0bc1bd82000-11-13 22:57:25 +1100300void
Damien Miller95def091999-11-25 00:26:21 +1100301key_regeneration_alarm(int sig)
302{
303 int save_errno = errno;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000304 signal(SIGALRM, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +1100305 errno = save_errno;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000306 key_do_regen = 1;
Damien Miller95def091999-11-25 00:26:21 +1100307}
308
Damien Millerb38eff82000-04-01 11:09:21 +1000309void
310sshd_exchange_identification(int sock_in, int sock_out)
311{
Damien Miller78928792000-04-12 20:17:38 +1000312 int i, mismatch;
Damien Millerb38eff82000-04-01 11:09:21 +1000313 int remote_major, remote_minor;
Damien Miller78928792000-04-12 20:17:38 +1000314 int major, minor;
Damien Millerb38eff82000-04-01 11:09:21 +1000315 char *s;
316 char buf[256]; /* Must not be larger than remote_version. */
317 char remote_version[256]; /* Must be at least as big as buf. */
318
Damien Miller78928792000-04-12 20:17:38 +1000319 if ((options.protocol & SSH_PROTO_1) &&
320 (options.protocol & SSH_PROTO_2)) {
321 major = PROTOCOL_MAJOR_1;
322 minor = 99;
323 } else if (options.protocol & SSH_PROTO_2) {
324 major = PROTOCOL_MAJOR_2;
325 minor = PROTOCOL_MINOR_2;
326 } else {
327 major = PROTOCOL_MAJOR_1;
328 minor = PROTOCOL_MINOR_1;
329 }
330 snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n", major, minor, SSH_VERSION);
Damien Millerb38eff82000-04-01 11:09:21 +1000331 server_version_string = xstrdup(buf);
332
333 if (client_version_string == NULL) {
334 /* Send our protocol version identification. */
335 if (atomicio(write, sock_out, server_version_string, strlen(server_version_string))
336 != strlen(server_version_string)) {
337 log("Could not write ident string to %s.", get_remote_ipaddr());
338 fatal_cleanup();
339 }
340
Ben Lindstrom5393f932001-02-15 03:17:13 +0000341 /* Read other side's version identification. */
Ben Lindstroma3700052001-04-05 23:26:32 +0000342 memset(buf, 0, sizeof(buf));
Damien Millerb38eff82000-04-01 11:09:21 +1000343 for (i = 0; i < sizeof(buf) - 1; i++) {
Damien Millerbf7f4662000-06-23 10:16:38 +1000344 if (atomicio(read, sock_in, &buf[i], 1) != 1) {
Ben Lindstroma9a29e12001-02-20 01:20:47 +0000345 log("Did not receive identification string from %s.",
346 get_remote_ipaddr());
Damien Millerb38eff82000-04-01 11:09:21 +1000347 fatal_cleanup();
348 }
349 if (buf[i] == '\r') {
Ben Lindstrom69d8c072001-03-22 22:45:33 +0000350 buf[i] = 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100351 /* Kludge for F-Secure Macintosh < 1.0.2 */
352 if (i == 12 &&
353 strncmp(buf, "SSH-1.5-W1.0", 12) == 0)
354 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000355 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000356 }
357 if (buf[i] == '\n') {
Ben Lindstrom69d8c072001-03-22 22:45:33 +0000358 buf[i] = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000359 break;
360 }
361 }
362 buf[sizeof(buf) - 1] = 0;
363 client_version_string = xstrdup(buf);
364 }
365
366 /*
367 * Check that the versions match. In future this might accept
368 * several versions and set appropriate flags to handle them.
369 */
370 if (sscanf(client_version_string, "SSH-%d.%d-%[^\n]\n",
371 &remote_major, &remote_minor, remote_version) != 3) {
Damien Miller4af51302000-04-16 11:18:38 +1000372 s = "Protocol mismatch.\n";
Damien Millerb38eff82000-04-01 11:09:21 +1000373 (void) atomicio(write, sock_out, s, strlen(s));
374 close(sock_in);
375 close(sock_out);
376 log("Bad protocol version identification '%.100s' from %s",
377 client_version_string, get_remote_ipaddr());
378 fatal_cleanup();
379 }
380 debug("Client protocol version %d.%d; client software version %.100s",
381 remote_major, remote_minor, remote_version);
382
Damien Millerefb4afe2000-04-12 18:45:05 +1000383 compat_datafellows(remote_version);
384
Damien Miller27dbe6f2001-03-19 22:36:20 +1100385 if (datafellows & SSH_BUG_SCANNER) {
386 log("scanned from %s with %s. Don't panic.",
387 get_remote_ipaddr(), client_version_string);
388 fatal_cleanup();
389 }
390
Damien Miller78928792000-04-12 20:17:38 +1000391 mismatch = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000392 switch(remote_major) {
393 case 1:
Damien Millereba71ba2000-04-29 23:57:08 +1000394 if (remote_minor == 99) {
395 if (options.protocol & SSH_PROTO_2)
396 enable_compat20();
397 else
398 mismatch = 1;
399 break;
400 }
Damien Miller78928792000-04-12 20:17:38 +1000401 if (!(options.protocol & SSH_PROTO_1)) {
402 mismatch = 1;
403 break;
404 }
Damien Millerb38eff82000-04-01 11:09:21 +1000405 if (remote_minor < 3) {
Damien Miller37023962000-07-11 17:31:38 +1000406 packet_disconnect("Your ssh version is too old and "
Damien Millerb38eff82000-04-01 11:09:21 +1000407 "is no longer supported. Please install a newer version.");
408 } else if (remote_minor == 3) {
409 /* note that this disables agent-forwarding */
410 enable_compat13();
411 }
Damien Miller78928792000-04-12 20:17:38 +1000412 break;
Damien Millerefb4afe2000-04-12 18:45:05 +1000413 case 2:
Damien Miller78928792000-04-12 20:17:38 +1000414 if (options.protocol & SSH_PROTO_2) {
Damien Millerefb4afe2000-04-12 18:45:05 +1000415 enable_compat20();
416 break;
417 }
418 /* FALLTHROUGH */
Damien Miller4af51302000-04-16 11:18:38 +1000419 default:
Damien Miller78928792000-04-12 20:17:38 +1000420 mismatch = 1;
Damien Millerb38eff82000-04-01 11:09:21 +1000421 break;
422 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000423 chop(server_version_string);
Damien Miller78928792000-04-12 20:17:38 +1000424 debug("Local version string %.200s", server_version_string);
425
426 if (mismatch) {
427 s = "Protocol major versions differ.\n";
428 (void) atomicio(write, sock_out, s, strlen(s));
429 close(sock_in);
430 close(sock_out);
431 log("Protocol major versions differ for %s: %.200s vs. %.200s",
432 get_remote_ipaddr(),
433 server_version_string, client_version_string);
434 fatal_cleanup();
435 }
Damien Millereba71ba2000-04-29 23:57:08 +1000436}
437
438
Damien Miller0bc1bd82000-11-13 22:57:25 +1100439/* Destroy the host and server keys. They will no longer be needed. */
Damien Millereba71ba2000-04-29 23:57:08 +1000440void
441destroy_sensitive_data(void)
442{
Damien Miller0bc1bd82000-11-13 22:57:25 +1100443 int i;
444
445 if (sensitive_data.server_key) {
446 key_free(sensitive_data.server_key);
447 sensitive_data.server_key = NULL;
448 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000449 for(i = 0; i < options.num_host_key_files; i++) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100450 if (sensitive_data.host_keys[i]) {
451 key_free(sensitive_data.host_keys[i]);
452 sensitive_data.host_keys[i] = NULL;
453 }
454 }
455 sensitive_data.ssh1_host_key = NULL;
Ben Lindstromeb648a72001-03-05 06:00:29 +0000456 memset(sensitive_data.ssh1_cookie, 0, SSH_SESSION_KEY_LENGTH);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100457}
Damien Miller0bc1bd82000-11-13 22:57:25 +1100458
459char *
460list_hostkey_types(void)
461{
462 static char buf[1024];
463 int i;
464 buf[0] = '\0';
465 for(i = 0; i < options.num_host_key_files; i++) {
466 Key *key = sensitive_data.host_keys[i];
467 if (key == NULL)
468 continue;
469 switch(key->type) {
470 case KEY_RSA:
471 case KEY_DSA:
472 strlcat(buf, key_ssh_name(key), sizeof buf);
473 strlcat(buf, ",", sizeof buf);
474 break;
475 }
476 }
477 i = strlen(buf);
478 if (i > 0 && buf[i-1] == ',')
479 buf[i-1] = '\0';
480 debug("list_hostkey_types: %s", buf);
481 return buf;
482}
483
484Key *
485get_hostkey_by_type(int type)
486{
487 int i;
488 for(i = 0; i < options.num_host_key_files; i++) {
489 Key *key = sensitive_data.host_keys[i];
490 if (key != NULL && key->type == type)
491 return key;
492 }
493 return NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000494}
495
Damien Miller942da032000-08-18 13:59:06 +1000496/*
497 * returns 1 if connection should be dropped, 0 otherwise.
498 * dropping starts at connection #max_startups_begin with a probability
499 * of (max_startups_rate/100). the probability increases linearly until
500 * all connections are dropped for startups > max_startups
501 */
502int
503drop_connection(int startups)
504{
505 double p, r;
506
507 if (startups < options.max_startups_begin)
508 return 0;
509 if (startups >= options.max_startups)
510 return 1;
511 if (options.max_startups_rate == 100)
512 return 1;
513
514 p = 100 - options.max_startups_rate;
515 p *= startups - options.max_startups_begin;
516 p /= (double) (options.max_startups - options.max_startups_begin);
517 p += options.max_startups_rate;
518 p /= 100.0;
519 r = arc4random() / (double) UINT_MAX;
520
521 debug("drop_connection: p %g, r %g", p, r);
522 return (r < p) ? 1 : 0;
523}
524
Damien Miller37023962000-07-11 17:31:38 +1000525int *startup_pipes = NULL; /* options.max_startup sized array of fd ints */
526int startup_pipe; /* in child */
527
Damien Miller95def091999-11-25 00:26:21 +1100528/*
529 * Main program for the daemon.
530 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000531int
532main(int ac, char **av)
533{
Damien Miller95def091999-11-25 00:26:21 +1100534 extern char *optarg;
535 extern int optind;
Damien Miller37023962000-07-11 17:31:38 +1000536 int opt, sock_in = 0, sock_out = 0, newsock, j, i, fdsetsz, on = 1;
Damien Miller166fca82000-04-20 07:42:21 +1000537 pid_t pid;
Damien Miller34132e52000-01-14 15:45:46 +1100538 socklen_t fromlen;
Damien Miller34132e52000-01-14 15:45:46 +1100539 fd_set *fdset;
540 struct sockaddr_storage from;
Damien Miller95def091999-11-25 00:26:21 +1100541 const char *remote_ip;
542 int remote_port;
Damien Miller95def091999-11-25 00:26:21 +1100543 FILE *f;
544 struct linger linger;
Damien Miller34132e52000-01-14 15:45:46 +1100545 struct addrinfo *ai;
546 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
547 int listen_sock, maxfd;
Damien Miller37023962000-07-11 17:31:38 +1000548 int startup_p[2];
549 int startups = 0;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000550 Key *key;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000551 int ret, key_used = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000552
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000553 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000554 init_rng();
555
Kevin Stevesec84dc12000-12-13 17:45:15 +0000556 /* Save argv. */
Damien Millerb8c656e2000-06-28 15:22:41 +1000557 saved_argc = ac;
Damien Miller95def091999-11-25 00:26:21 +1100558 saved_argv = av;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000559
Damien Miller95def091999-11-25 00:26:21 +1100560 /* Initialize configuration options to their default values. */
561 initialize_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000562
Damien Miller95def091999-11-25 00:26:21 +1100563 /* Parse command-line arguments. */
Ben Lindstrom9fce9f02001-04-11 23:10:09 +0000564 while ((opt = getopt(ac, av, "f:p:b:k:h:g:V:u:dDeiqQ46")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100565 switch (opt) {
Damien Miller34132e52000-01-14 15:45:46 +1100566 case '4':
567 IPv4or6 = AF_INET;
568 break;
569 case '6':
570 IPv4or6 = AF_INET6;
571 break;
Damien Miller95def091999-11-25 00:26:21 +1100572 case 'f':
573 config_file_name = optarg;
574 break;
575 case 'd':
Damien Millere4340be2000-09-16 13:29:08 +1100576 if (0 == debug_flag) {
577 debug_flag = 1;
578 options.log_level = SYSLOG_LEVEL_DEBUG1;
579 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
580 options.log_level++;
581 } else {
582 fprintf(stderr, "Too high debugging level.\n");
583 exit(1);
584 }
Damien Miller95def091999-11-25 00:26:21 +1100585 break;
Ben Lindstromc72745a2000-12-02 19:03:54 +0000586 case 'D':
587 no_daemon_flag = 1;
588 break;
Ben Lindstrom9fce9f02001-04-11 23:10:09 +0000589 case 'e':
590 log_stderr = 1;
591 break;
Damien Miller95def091999-11-25 00:26:21 +1100592 case 'i':
593 inetd_flag = 1;
594 break;
595 case 'Q':
Ben Lindstromd5390202001-01-29 08:07:43 +0000596 /* ignored */
Damien Miller95def091999-11-25 00:26:21 +1100597 break;
598 case 'q':
599 options.log_level = SYSLOG_LEVEL_QUIET;
600 break;
601 case 'b':
602 options.server_key_bits = atoi(optarg);
603 break;
604 case 'p':
Damien Miller34132e52000-01-14 15:45:46 +1100605 options.ports_from_cmdline = 1;
Damien Millere4340be2000-09-16 13:29:08 +1100606 if (options.num_ports >= MAX_PORTS) {
607 fprintf(stderr, "too many ports.\n");
608 exit(1);
609 }
Ben Lindstrom19066a12001-04-12 23:39:26 +0000610 options.ports[options.num_ports++] = a2port(optarg);
611 if (options.ports[options.num_ports-1] == 0) {
612 fprintf(stderr, "Bad port number.\n");
613 exit(1);
614 }
Damien Miller95def091999-11-25 00:26:21 +1100615 break;
616 case 'g':
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000617 if ((options.login_grace_time = convtime(optarg)) == -1) {
618 fprintf(stderr, "Invalid login grace time.\n");
619 exit(1);
620 }
Damien Miller95def091999-11-25 00:26:21 +1100621 break;
622 case 'k':
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000623 if ((options.key_regeneration_time = convtime(optarg)) == -1) {
624 fprintf(stderr, "Invalid key regeneration interval.\n");
625 exit(1);
626 }
Damien Miller95def091999-11-25 00:26:21 +1100627 break;
628 case 'h':
Damien Miller0bc1bd82000-11-13 22:57:25 +1100629 if (options.num_host_key_files >= MAX_HOSTKEYS) {
630 fprintf(stderr, "too many host keys.\n");
631 exit(1);
632 }
633 options.host_key_files[options.num_host_key_files++] = optarg;
Damien Miller95def091999-11-25 00:26:21 +1100634 break;
635 case 'V':
636 client_version_string = optarg;
637 /* only makes sense with inetd_flag, i.e. no listen() */
638 inetd_flag = 1;
639 break;
Damien Miller942da032000-08-18 13:59:06 +1000640 case 'u':
641 utmp_len = atoi(optarg);
642 break;
Damien Miller95def091999-11-25 00:26:21 +1100643 case '?':
644 default:
645 fprintf(stderr, "sshd version %s\n", SSH_VERSION);
Kevin Stevesec84dc12000-12-13 17:45:15 +0000646 fprintf(stderr, "Usage: %s [options]\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100647 fprintf(stderr, "Options:\n");
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000648 fprintf(stderr, " -f file Configuration file (default %s)\n", _PATH_SERVER_CONFIG_FILE);
Damien Millere4340be2000-09-16 13:29:08 +1100649 fprintf(stderr, " -d Debugging mode (multiple -d means more debugging)\n");
Damien Miller95def091999-11-25 00:26:21 +1100650 fprintf(stderr, " -i Started from inetd\n");
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000651 fprintf(stderr, " -D Do not fork into daemon mode\n");
Damien Miller95def091999-11-25 00:26:21 +1100652 fprintf(stderr, " -q Quiet (no logging)\n");
653 fprintf(stderr, " -p port Listen on the specified port (default: 22)\n");
654 fprintf(stderr, " -k seconds Regenerate server key every this many seconds (default: 3600)\n");
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000655 fprintf(stderr, " -g seconds Grace period for authentication (default: 600)\n");
Damien Miller95def091999-11-25 00:26:21 +1100656 fprintf(stderr, " -b bits Size of server RSA key (default: 768 bits)\n");
657 fprintf(stderr, " -h file File from which to read host key (default: %s)\n",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000658 _PATH_HOST_KEY_FILE);
Damien Miller942da032000-08-18 13:59:06 +1000659 fprintf(stderr, " -u len Maximum hostname length for utmp recording\n");
Damien Miller34132e52000-01-14 15:45:46 +1100660 fprintf(stderr, " -4 Use IPv4 only\n");
661 fprintf(stderr, " -6 Use IPv6 only\n");
Damien Miller95def091999-11-25 00:26:21 +1100662 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000663 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000664 }
Ben Lindstrom425fb022001-03-29 00:31:20 +0000665 SSLeay_add_all_algorithms();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000666
Damien Miller34132e52000-01-14 15:45:46 +1100667 /*
668 * Force logging to stderr until we have loaded the private host
669 * key (unless started from inetd)
670 */
Kevin Stevesec84dc12000-12-13 17:45:15 +0000671 log_init(__progname,
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000672 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
Damien Miller34132e52000-01-14 15:45:46 +1100673 options.log_facility == -1 ? SYSLOG_FACILITY_AUTH : options.log_facility,
Ben Lindstromd5390202001-01-29 08:07:43 +0000674 !inetd_flag);
Damien Miller34132e52000-01-14 15:45:46 +1100675
Damien Miller60bc5172001-03-19 09:38:15 +1100676 seed_rng();
677
Damien Miller95def091999-11-25 00:26:21 +1100678 /* Read server configuration options from the configuration file. */
679 read_server_config(&options, config_file_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000680
Damien Miller95def091999-11-25 00:26:21 +1100681 /* Fill in default values for those options not explicitly set. */
682 fill_default_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000683
Damien Miller95def091999-11-25 00:26:21 +1100684 /* Check that there are no remaining arguments. */
685 if (optind < ac) {
686 fprintf(stderr, "Extra argument %s.\n", av[optind]);
687 exit(1);
688 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000689
Damien Miller95def091999-11-25 00:26:21 +1100690 debug("sshd version %.100s", SSH_VERSION);
Damien Miller2ccf6611999-11-15 15:25:10 +1100691
Damien Miller0bc1bd82000-11-13 22:57:25 +1100692 /* load private host keys */
693 sensitive_data.host_keys = xmalloc(options.num_host_key_files*sizeof(Key*));
Ben Lindstrom46c16222000-12-22 01:43:59 +0000694 for(i = 0; i < options.num_host_key_files; i++)
695 sensitive_data.host_keys[i] = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100696 sensitive_data.server_key = NULL;
697 sensitive_data.ssh1_host_key = NULL;
698 sensitive_data.have_ssh1_key = 0;
699 sensitive_data.have_ssh2_key = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000700
Damien Miller0bc1bd82000-11-13 22:57:25 +1100701 for(i = 0; i < options.num_host_key_files; i++) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000702 key = key_load_private(options.host_key_files[i], "", NULL);
703 sensitive_data.host_keys[i] = key;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100704 if (key == NULL) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000705 error("Could not load host key: %s",
706 options.host_key_files[i]);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000707 sensitive_data.host_keys[i] = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100708 continue;
709 }
710 switch(key->type){
711 case KEY_RSA1:
712 sensitive_data.ssh1_host_key = key;
713 sensitive_data.have_ssh1_key = 1;
714 break;
715 case KEY_RSA:
716 case KEY_DSA:
717 sensitive_data.have_ssh2_key = 1;
718 break;
719 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000720 debug("private host key: #%d type %d %s", i, key->type,
721 key_type(key));
Damien Miller0bc1bd82000-11-13 22:57:25 +1100722 }
723 if ((options.protocol & SSH_PROTO_1) && !sensitive_data.have_ssh1_key) {
724 log("Disabling protocol version 1. Could not load host key");
Damien Millereba71ba2000-04-29 23:57:08 +1000725 options.protocol &= ~SSH_PROTO_1;
726 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100727 if ((options.protocol & SSH_PROTO_2) && !sensitive_data.have_ssh2_key) {
728 log("Disabling protocol version 2. Could not load host key");
729 options.protocol &= ~SSH_PROTO_2;
Damien Millereba71ba2000-04-29 23:57:08 +1000730 }
Kevin Stevesadf74cd2001-02-05 14:22:50 +0000731 if (!(options.protocol & (SSH_PROTO_1|SSH_PROTO_2))) {
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000732 log("sshd: no hostkeys available -- exiting.");
Damien Miller95def091999-11-25 00:26:21 +1100733 exit(1);
734 }
Damien Miller95def091999-11-25 00:26:21 +1100735
Damien Millereba71ba2000-04-29 23:57:08 +1000736 /* Check certain values for sanity. */
737 if (options.protocol & SSH_PROTO_1) {
738 if (options.server_key_bits < 512 ||
739 options.server_key_bits > 32768) {
740 fprintf(stderr, "Bad server key size.\n");
741 exit(1);
742 }
743 /*
744 * Check that server and host key lengths differ sufficiently. This
745 * is necessary to make double encryption work with rsaref. Oh, I
746 * hate software patents. I dont know if this can go? Niels
747 */
748 if (options.server_key_bits >
Damien Miller0bc1bd82000-11-13 22:57:25 +1100749 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) - SSH_KEY_BITS_RESERVED &&
Damien Millereba71ba2000-04-29 23:57:08 +1000750 options.server_key_bits <
Damien Miller0bc1bd82000-11-13 22:57:25 +1100751 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
Damien Millereba71ba2000-04-29 23:57:08 +1000752 options.server_key_bits =
Damien Miller0bc1bd82000-11-13 22:57:25 +1100753 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED;
Damien Millereba71ba2000-04-29 23:57:08 +1000754 debug("Forcing server key to %d bits to make it differ from host key.",
755 options.server_key_bits);
756 }
757 }
758
Damien Miller78315eb2000-09-29 23:01:36 +1100759#ifdef HAVE_SCO_PROTECTED_PW
760 (void) set_auth_parameters(ac, av);
761#endif
762
Damien Millereba71ba2000-04-29 23:57:08 +1000763 /* Initialize the log (it is reinitialized below in case we forked). */
Damien Miller95def091999-11-25 00:26:21 +1100764 if (debug_flag && !inetd_flag)
765 log_stderr = 1;
Kevin Stevesec84dc12000-12-13 17:45:15 +0000766 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +1100767
Damien Millereba71ba2000-04-29 23:57:08 +1000768 /*
769 * If not in debugging mode, and not started from inetd, disconnect
770 * from the controlling terminal, and fork. The original process
771 * exits.
772 */
Ben Lindstromc72745a2000-12-02 19:03:54 +0000773 if (!(debug_flag || inetd_flag || no_daemon_flag)) {
Damien Miller95def091999-11-25 00:26:21 +1100774#ifdef TIOCNOTTY
775 int fd;
776#endif /* TIOCNOTTY */
777 if (daemon(0, 0) < 0)
778 fatal("daemon() failed: %.200s", strerror(errno));
779
780 /* Disconnect from the controlling tty. */
781#ifdef TIOCNOTTY
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000782 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
Damien Miller95def091999-11-25 00:26:21 +1100783 if (fd >= 0) {
784 (void) ioctl(fd, TIOCNOTTY, NULL);
785 close(fd);
786 }
787#endif /* TIOCNOTTY */
788 }
789 /* Reinitialize the log (because of the fork above). */
Kevin Stevesec84dc12000-12-13 17:45:15 +0000790 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +1100791
Damien Miller95def091999-11-25 00:26:21 +1100792 /* Initialize the random number generator. */
793 arc4random_stir();
794
795 /* Chdir to the root directory so that the current disk can be
796 unmounted if desired. */
797 chdir("/");
Ben Lindstromde71cda2001-03-24 00:43:26 +0000798
799 /* ignore SIGPIPE */
800 signal(SIGPIPE, SIG_IGN);
Damien Miller95def091999-11-25 00:26:21 +1100801
Damien Miller95def091999-11-25 00:26:21 +1100802 /* Start listening for a socket, unless started from inetd. */
803 if (inetd_flag) {
Ben Lindstrom206941f2001-04-15 14:27:16 +0000804 int s1;
Damien Miller95def091999-11-25 00:26:21 +1100805 s1 = dup(0); /* Make sure descriptors 0, 1, and 2 are in use. */
Ben Lindstrom206941f2001-04-15 14:27:16 +0000806 dup(s1);
Damien Miller95def091999-11-25 00:26:21 +1100807 sock_in = dup(0);
808 sock_out = dup(1);
Damien Miller994cf142000-07-21 10:19:44 +1000809 startup_pipe = -1;
Damien Millereba71ba2000-04-29 23:57:08 +1000810 /*
811 * We intentionally do not close the descriptors 0, 1, and 2
812 * as our code for setting the descriptors won\'t work if
813 * ttyfd happens to be one of those.
814 */
Damien Miller95def091999-11-25 00:26:21 +1100815 debug("inetd sockets after dupping: %d, %d", sock_in, sock_out);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100816 if (options.protocol & SSH_PROTO_1)
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000817 generate_ephemeral_server_key();
Damien Miller95def091999-11-25 00:26:21 +1100818 } else {
Damien Miller34132e52000-01-14 15:45:46 +1100819 for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
820 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
821 continue;
822 if (num_listen_socks >= MAX_LISTEN_SOCKS)
823 fatal("Too many listen sockets. "
824 "Enlarge MAX_LISTEN_SOCKS");
825 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
826 ntop, sizeof(ntop), strport, sizeof(strport),
827 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
828 error("getnameinfo failed");
829 continue;
830 }
831 /* Create socket for listening. */
832 listen_sock = socket(ai->ai_family, SOCK_STREAM, 0);
833 if (listen_sock < 0) {
834 /* kernel may not support ipv6 */
835 verbose("socket: %.100s", strerror(errno));
836 continue;
837 }
838 if (fcntl(listen_sock, F_SETFL, O_NONBLOCK) < 0) {
839 error("listen_sock O_NONBLOCK: %s", strerror(errno));
840 close(listen_sock);
841 continue;
842 }
843 /*
844 * Set socket options. We try to make the port
845 * reusable and have it close as fast as possible
846 * without waiting in unnecessary wait states on
847 * close.
848 */
849 setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
850 (void *) &on, sizeof(on));
851 linger.l_onoff = 1;
852 linger.l_linger = 5;
853 setsockopt(listen_sock, SOL_SOCKET, SO_LINGER,
854 (void *) &linger, sizeof(linger));
Damien Miller95def091999-11-25 00:26:21 +1100855
Damien Miller34132e52000-01-14 15:45:46 +1100856 debug("Bind to port %s on %s.", strport, ntop);
Damien Miller95def091999-11-25 00:26:21 +1100857
Damien Miller34132e52000-01-14 15:45:46 +1100858 /* Bind the socket to the desired port. */
Damien Miller0a4e27d2001-02-18 12:36:39 +1100859 if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) {
860 if (!ai->ai_next)
861 error("Bind to port %s on %s failed: %.200s.",
862 strport, ntop, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +1100863 close(listen_sock);
864 continue;
865 }
866 listen_socks[num_listen_socks] = listen_sock;
867 num_listen_socks++;
Damien Miller95def091999-11-25 00:26:21 +1100868
Damien Miller34132e52000-01-14 15:45:46 +1100869 /* Start listening on the port. */
870 log("Server listening on %s port %s.", ntop, strport);
871 if (listen(listen_sock, 5) < 0)
872 fatal("listen: %.100s", strerror(errno));
873
Damien Miller95def091999-11-25 00:26:21 +1100874 }
Damien Miller34132e52000-01-14 15:45:46 +1100875 freeaddrinfo(options.listen_addrs);
876
877 if (!num_listen_socks)
878 fatal("Cannot bind any address.");
879
Damien Miller95def091999-11-25 00:26:21 +1100880 if (!debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +1100881 /*
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000882 * Record our pid in /var/run/sshd.pid to make it
883 * easier to kill the correct sshd. We don't want to
884 * do this before the bind above because the bind will
Damien Miller5428f641999-11-25 11:54:57 +1100885 * fail if there already is a daemon, and this will
886 * overwrite any old pid in the file.
887 */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100888 f = fopen(options.pid_file, "wb");
Damien Miller95def091999-11-25 00:26:21 +1100889 if (f) {
Ben Lindstrom46c16222000-12-22 01:43:59 +0000890 fprintf(f, "%u\n", (u_int) getpid());
Damien Miller95def091999-11-25 00:26:21 +1100891 fclose(f);
892 }
893 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000894 if (options.protocol & SSH_PROTO_1)
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000895 generate_ephemeral_server_key();
Damien Miller95def091999-11-25 00:26:21 +1100896
Damien Miller95def091999-11-25 00:26:21 +1100897 /* Arrange to restart on SIGHUP. The handler needs listen_sock. */
898 signal(SIGHUP, sighup_handler);
Damien Miller37023962000-07-11 17:31:38 +1000899
Damien Miller95def091999-11-25 00:26:21 +1100900 signal(SIGTERM, sigterm_handler);
901 signal(SIGQUIT, sigterm_handler);
902
903 /* Arrange SIGCHLD to be caught. */
904 signal(SIGCHLD, main_sigchld_handler);
905
Damien Miller34132e52000-01-14 15:45:46 +1100906 /* setup fd set for listen */
Damien Miller37023962000-07-11 17:31:38 +1000907 fdset = NULL;
Damien Miller34132e52000-01-14 15:45:46 +1100908 maxfd = 0;
909 for (i = 0; i < num_listen_socks; i++)
910 if (listen_socks[i] > maxfd)
911 maxfd = listen_socks[i];
Damien Miller37023962000-07-11 17:31:38 +1000912 /* pipes connected to unauthenticated childs */
913 startup_pipes = xmalloc(options.max_startups * sizeof(int));
914 for (i = 0; i < options.max_startups; i++)
915 startup_pipes[i] = -1;
Damien Miller34132e52000-01-14 15:45:46 +1100916
Damien Miller5428f641999-11-25 11:54:57 +1100917 /*
918 * Stay listening for connections until the system crashes or
919 * the daemon is killed with a signal.
920 */
Damien Miller95def091999-11-25 00:26:21 +1100921 for (;;) {
922 if (received_sighup)
923 sighup_restart();
Damien Miller37023962000-07-11 17:31:38 +1000924 if (fdset != NULL)
925 xfree(fdset);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000926 fdsetsz = howmany(maxfd+1, NFDBITS) * sizeof(fd_mask);
Damien Miller37023962000-07-11 17:31:38 +1000927 fdset = (fd_set *)xmalloc(fdsetsz);
Damien Miller34132e52000-01-14 15:45:46 +1100928 memset(fdset, 0, fdsetsz);
Damien Miller37023962000-07-11 17:31:38 +1000929
Damien Miller34132e52000-01-14 15:45:46 +1100930 for (i = 0; i < num_listen_socks; i++)
931 FD_SET(listen_socks[i], fdset);
Damien Miller37023962000-07-11 17:31:38 +1000932 for (i = 0; i < options.max_startups; i++)
933 if (startup_pipes[i] != -1)
934 FD_SET(startup_pipes[i], fdset);
935
936 /* Wait in select until there is a connection. */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000937 ret = select(maxfd+1, fdset, NULL, NULL, NULL);
938 if (ret < 0 && errno != EINTR)
939 error("select: %.100s", strerror(errno));
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000940 if (received_sigterm) {
941 log("Received signal %d; terminating.",
942 received_sigterm);
943 close_listen_socks();
944 unlink(options.pid_file);
945 exit(255);
946 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000947 if (key_used && key_do_regen) {
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000948 generate_ephemeral_server_key();
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000949 key_used = 0;
950 key_do_regen = 0;
Damien Miller34132e52000-01-14 15:45:46 +1100951 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000952 if (ret < 0)
953 continue;
954
Damien Miller37023962000-07-11 17:31:38 +1000955 for (i = 0; i < options.max_startups; i++)
956 if (startup_pipes[i] != -1 &&
957 FD_ISSET(startup_pipes[i], fdset)) {
958 /*
959 * the read end of the pipe is ready
960 * if the child has closed the pipe
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000961 * after successful authentication
Damien Miller37023962000-07-11 17:31:38 +1000962 * or if the child has died
963 */
964 close(startup_pipes[i]);
965 startup_pipes[i] = -1;
966 startups--;
967 }
Damien Miller34132e52000-01-14 15:45:46 +1100968 for (i = 0; i < num_listen_socks; i++) {
969 if (!FD_ISSET(listen_socks[i], fdset))
Damien Miller95def091999-11-25 00:26:21 +1100970 continue;
Damien Miller37023962000-07-11 17:31:38 +1000971 fromlen = sizeof(from);
972 newsock = accept(listen_socks[i], (struct sockaddr *)&from,
973 &fromlen);
974 if (newsock < 0) {
975 if (errno != EINTR && errno != EWOULDBLOCK)
976 error("accept: %.100s", strerror(errno));
977 continue;
978 }
979 if (fcntl(newsock, F_SETFL, 0) < 0) {
980 error("newsock del O_NONBLOCK: %s", strerror(errno));
981 continue;
982 }
Damien Miller942da032000-08-18 13:59:06 +1000983 if (drop_connection(startups) == 1) {
984 debug("drop connection #%d", startups);
Damien Miller37023962000-07-11 17:31:38 +1000985 close(newsock);
986 continue;
987 }
988 if (pipe(startup_p) == -1) {
989 close(newsock);
990 continue;
991 }
992
993 for (j = 0; j < options.max_startups; j++)
994 if (startup_pipes[j] == -1) {
995 startup_pipes[j] = startup_p[0];
996 if (maxfd < startup_p[0])
997 maxfd = startup_p[0];
998 startups++;
999 break;
1000 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001001
Damien Miller5428f641999-11-25 11:54:57 +11001002 /*
Damien Miller37023962000-07-11 17:31:38 +10001003 * Got connection. Fork a child to handle it, unless
1004 * we are in debugging mode.
Damien Miller5428f641999-11-25 11:54:57 +11001005 */
Damien Miller37023962000-07-11 17:31:38 +10001006 if (debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +11001007 /*
Damien Miller37023962000-07-11 17:31:38 +10001008 * In debugging mode. Close the listening
1009 * socket, and start processing the
1010 * connection without forking.
Damien Miller5428f641999-11-25 11:54:57 +11001011 */
Damien Miller37023962000-07-11 17:31:38 +10001012 debug("Server will not fork when running in debugging mode.");
Damien Miller34132e52000-01-14 15:45:46 +11001013 close_listen_socks();
Damien Miller95def091999-11-25 00:26:21 +11001014 sock_in = newsock;
1015 sock_out = newsock;
Damien Miller4d97ba22000-07-11 18:15:50 +10001016 startup_pipe = -1;
Damien Miller182ee6e2000-07-12 09:45:27 +10001017 pid = getpid();
Damien Miller95def091999-11-25 00:26:21 +11001018 break;
Damien Miller37023962000-07-11 17:31:38 +10001019 } else {
1020 /*
1021 * Normal production daemon. Fork, and have
1022 * the child process the connection. The
1023 * parent continues listening.
1024 */
1025 if ((pid = fork()) == 0) {
1026 /*
1027 * Child. Close the listening and max_startup
1028 * sockets. Start using the accepted socket.
1029 * Reinitialize logging (since our pid has
1030 * changed). We break out of the loop to handle
1031 * the connection.
1032 */
1033 startup_pipe = startup_p[1];
1034 for (j = 0; j < options.max_startups; j++)
1035 if (startup_pipes[j] != -1)
1036 close(startup_pipes[j]);
1037 close_listen_socks();
1038 sock_in = newsock;
1039 sock_out = newsock;
Kevin Stevesec84dc12000-12-13 17:45:15 +00001040 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller37023962000-07-11 17:31:38 +10001041 break;
1042 }
Damien Miller95def091999-11-25 00:26:21 +11001043 }
Damien Miller37023962000-07-11 17:31:38 +10001044
1045 /* Parent. Stay in the loop. */
1046 if (pid < 0)
1047 error("fork: %.100s", strerror(errno));
1048 else
1049 debug("Forked child %d.", pid);
1050
1051 close(startup_p[1]);
1052
1053 /* Mark that the key has been used (it was "given" to the child). */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001054 if ((options.protocol & SSH_PROTO_1) &&
1055 key_used == 0) {
1056 /* Schedule server key regeneration alarm. */
1057 signal(SIGALRM, key_regeneration_alarm);
1058 alarm(options.key_regeneration_time);
1059 key_used = 1;
1060 }
Damien Miller37023962000-07-11 17:31:38 +10001061
1062 arc4random_stir();
1063
1064 /* Close the new socket (the child is now taking care of it). */
1065 close(newsock);
Damien Miller95def091999-11-25 00:26:21 +11001066 }
Damien Miller34132e52000-01-14 15:45:46 +11001067 /* child process check (or debug mode) */
1068 if (num_listen_socks < 0)
1069 break;
Damien Miller95def091999-11-25 00:26:21 +11001070 }
1071 }
1072
1073 /* This is the child processing a new connection. */
1074
Damien Miller5428f641999-11-25 11:54:57 +11001075 /*
1076 * Disable the key regeneration alarm. We will not regenerate the
1077 * key since we are no longer in a position to give it to anyone. We
1078 * will not restart on SIGHUP since it no longer makes sense.
1079 */
Damien Miller95def091999-11-25 00:26:21 +11001080 alarm(0);
1081 signal(SIGALRM, SIG_DFL);
1082 signal(SIGHUP, SIG_DFL);
1083 signal(SIGTERM, SIG_DFL);
1084 signal(SIGQUIT, SIG_DFL);
1085 signal(SIGCHLD, SIG_DFL);
Damien Miller4e0f5e12000-08-29 11:05:50 +11001086 signal(SIGINT, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001087
Damien Miller5428f641999-11-25 11:54:57 +11001088 /*
1089 * Set socket options for the connection. We want the socket to
1090 * close as fast as possible without waiting for anything. If the
1091 * connection is not a socket, these will do nothing.
1092 */
1093 /* setsockopt(sock_in, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on)); */
Damien Miller95def091999-11-25 00:26:21 +11001094 linger.l_onoff = 1;
1095 linger.l_linger = 5;
1096 setsockopt(sock_in, SOL_SOCKET, SO_LINGER, (void *) &linger, sizeof(linger));
1097
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001098 /* Set keepalives if requested. */
1099 if (options.keepalives &&
1100 setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, (void *)&on,
1101 sizeof(on)) < 0)
1102 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
1103
Damien Miller5428f641999-11-25 11:54:57 +11001104 /*
1105 * Register our connection. This turns encryption off because we do
1106 * not have a key.
1107 */
Damien Miller95def091999-11-25 00:26:21 +11001108 packet_set_connection(sock_in, sock_out);
1109
1110 remote_port = get_remote_port();
1111 remote_ip = get_remote_ipaddr();
1112
1113 /* Check whether logins are denied from this host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001114#ifdef LIBWRAP
Damien Miller34132e52000-01-14 15:45:46 +11001115 /* XXX LIBWRAP noes not know about IPv6 */
Damien Miller95def091999-11-25 00:26:21 +11001116 {
1117 struct request_info req;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001118
Kevin Stevesec84dc12000-12-13 17:45:15 +00001119 request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, NULL);
Damien Miller95def091999-11-25 00:26:21 +11001120 fromhost(&req);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001121
Damien Miller95def091999-11-25 00:26:21 +11001122 if (!hosts_access(&req)) {
Ben Lindstrom7de696e2001-03-29 00:45:12 +00001123 refuse(&req);
Damien Miller95def091999-11-25 00:26:21 +11001124 close(sock_in);
1125 close(sock_out);
Damien Miller95def091999-11-25 00:26:21 +11001126 }
Damien Miller34132e52000-01-14 15:45:46 +11001127/*XXX IPv6 verbose("Connection from %.500s port %d", eval_client(&req), remote_port); */
Damien Miller95def091999-11-25 00:26:21 +11001128 }
Damien Miller34132e52000-01-14 15:45:46 +11001129#endif /* LIBWRAP */
Damien Miller95def091999-11-25 00:26:21 +11001130 /* Log the connection. */
1131 verbose("Connection from %.500s port %d", remote_ip, remote_port);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001132
Damien Miller5428f641999-11-25 11:54:57 +11001133 /*
1134 * We don\'t want to listen forever unless the other side
1135 * successfully authenticates itself. So we set up an alarm which is
1136 * cleared after successful authentication. A limit of zero
1137 * indicates no limit. Note that we don\'t set the alarm in debugging
1138 * mode; it is just annoying to have the server exit just when you
1139 * are about to discover the bug.
1140 */
Damien Miller95def091999-11-25 00:26:21 +11001141 signal(SIGALRM, grace_alarm_handler);
1142 if (!debug_flag)
1143 alarm(options.login_grace_time);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001144
Damien Millerb38eff82000-04-01 11:09:21 +10001145 sshd_exchange_identification(sock_in, sock_out);
Damien Miller5428f641999-11-25 11:54:57 +11001146 /*
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001147 * Check that the connection comes from a privileged port.
1148 * Rhosts-Authentication only makes sense from priviledged
Damien Miller5428f641999-11-25 11:54:57 +11001149 * programs. Of course, if the intruder has root access on his local
1150 * machine, he can connect from any port. So do not use these
1151 * authentication methods from machines that you do not trust.
1152 */
Damien Miller95def091999-11-25 00:26:21 +11001153 if (remote_port >= IPPORT_RESERVED ||
1154 remote_port < IPPORT_RESERVED / 2) {
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001155 debug("Rhosts Authentication disabled, "
Damien Miller0bc1bd82000-11-13 22:57:25 +11001156 "originating port not trusted.");
Damien Miller95def091999-11-25 00:26:21 +11001157 options.rhosts_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +11001158 }
Damien Miller34132e52000-01-14 15:45:46 +11001159#ifdef KRB4
1160 if (!packet_connection_is_ipv4() &&
1161 options.kerberos_authentication) {
1162 debug("Kerberos Authentication disabled, only available for IPv4.");
1163 options.kerberos_authentication = 0;
1164 }
1165#endif /* KRB4 */
Ben Lindstromf79aeff2001-02-10 21:27:11 +00001166#ifdef AFS
1167 /* If machine has AFS, set process authentication group. */
1168 if (k_hasafs()) {
1169 k_setpag();
1170 k_unlog();
1171 }
1172#endif /* AFS */
Damien Miller34132e52000-01-14 15:45:46 +11001173
Damien Miller95def091999-11-25 00:26:21 +11001174 packet_set_nonblocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001175
Damien Miller396691a2000-01-20 22:44:08 +11001176 /* perform the key exchange */
Damien Miller396691a2000-01-20 22:44:08 +11001177 /* authenticate user and start session */
Damien Millerefb4afe2000-04-12 18:45:05 +10001178 if (compat20) {
1179 do_ssh2_kex();
1180 do_authentication2();
1181 } else {
1182 do_ssh1_kex();
1183 do_authentication();
1184 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001185
1186#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +11001187 /* Cleanup user's ticket cache file. */
1188 if (options.kerberos_ticket_cleanup)
1189 (void) dest_tkt();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001190#endif /* KRB4 */
1191
Damien Miller95def091999-11-25 00:26:21 +11001192 /* The connection has been terminated. */
1193 verbose("Closing connection to %.100s", remote_ip);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001194
Damien Millerbeb4ba51999-12-28 15:09:35 +11001195#ifdef USE_PAM
Damien Millere72b7af1999-12-30 15:08:44 +11001196 finish_pam();
Damien Millerbeb4ba51999-12-28 15:09:35 +11001197#endif /* USE_PAM */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001198
Damien Miller95def091999-11-25 00:26:21 +11001199 packet_close();
1200 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001201}
1202
Damien Miller95def091999-11-25 00:26:21 +11001203/*
Damien Miller396691a2000-01-20 22:44:08 +11001204 * SSH1 key exchange
Damien Miller95def091999-11-25 00:26:21 +11001205 */
Damien Miller2ccf6611999-11-15 15:25:10 +11001206void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001207do_ssh1_kex(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001208{
Damien Miller95def091999-11-25 00:26:21 +11001209 int i, len;
Damien Miller396691a2000-01-20 22:44:08 +11001210 int plen, slen;
Damien Miller7650bc62001-01-30 09:27:26 +11001211 int rsafail = 0;
Damien Miller95def091999-11-25 00:26:21 +11001212 BIGNUM *session_key_int;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001213 u_char session_key[SSH_SESSION_KEY_LENGTH];
1214 u_char cookie[8];
1215 u_int cipher_type, auth_mask, protocol_flags;
Damien Miller95def091999-11-25 00:26:21 +11001216 u_int32_t rand = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001217
Damien Miller5428f641999-11-25 11:54:57 +11001218 /*
1219 * Generate check bytes that the client must send back in the user
1220 * packet in order for it to be accepted; this is used to defy ip
1221 * spoofing attacks. Note that this only works against somebody
1222 * doing IP spoofing from a remote machine; any machine on the local
1223 * network can still see outgoing packets and catch the random
1224 * cookie. This only affects rhosts authentication, and this is one
1225 * of the reasons why it is inherently insecure.
1226 */
Damien Miller95def091999-11-25 00:26:21 +11001227 for (i = 0; i < 8; i++) {
1228 if (i % 4 == 0)
1229 rand = arc4random();
Damien Miller396691a2000-01-20 22:44:08 +11001230 cookie[i] = rand & 0xff;
Damien Miller95def091999-11-25 00:26:21 +11001231 rand >>= 8;
1232 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001233
Damien Miller5428f641999-11-25 11:54:57 +11001234 /*
1235 * Send our public key. We include in the packet 64 bits of random
1236 * data that must be matched in the reply in order to prevent IP
1237 * spoofing.
1238 */
Damien Miller95def091999-11-25 00:26:21 +11001239 packet_start(SSH_SMSG_PUBLIC_KEY);
1240 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001241 packet_put_char(cookie[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001242
Damien Miller95def091999-11-25 00:26:21 +11001243 /* Store our public server RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001244 packet_put_int(BN_num_bits(sensitive_data.server_key->rsa->n));
1245 packet_put_bignum(sensitive_data.server_key->rsa->e);
1246 packet_put_bignum(sensitive_data.server_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001247
Damien Miller95def091999-11-25 00:26:21 +11001248 /* Store our public host RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001249 packet_put_int(BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
1250 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->e);
1251 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001252
Damien Miller95def091999-11-25 00:26:21 +11001253 /* Put protocol flags. */
1254 packet_put_int(SSH_PROTOFLAG_HOST_IN_FWD_OPEN);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001255
Damien Miller95def091999-11-25 00:26:21 +11001256 /* Declare which ciphers we support. */
Damien Miller874d77b2000-10-14 16:23:11 +11001257 packet_put_int(cipher_mask_ssh1(0));
Damien Miller95def091999-11-25 00:26:21 +11001258
1259 /* Declare supported authentication types. */
1260 auth_mask = 0;
1261 if (options.rhosts_authentication)
1262 auth_mask |= 1 << SSH_AUTH_RHOSTS;
1263 if (options.rhosts_rsa_authentication)
1264 auth_mask |= 1 << SSH_AUTH_RHOSTS_RSA;
1265 if (options.rsa_authentication)
1266 auth_mask |= 1 << SSH_AUTH_RSA;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001267#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +11001268 if (options.kerberos_authentication)
1269 auth_mask |= 1 << SSH_AUTH_KERBEROS;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001270#endif
1271#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +11001272 if (options.kerberos_tgt_passing)
1273 auth_mask |= 1 << SSH_PASS_KERBEROS_TGT;
1274 if (options.afs_token_passing)
1275 auth_mask |= 1 << SSH_PASS_AFS_TOKEN;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001276#endif
Ben Lindstrom551ea372001-06-05 18:56:16 +00001277 if (options.challenge_response_authentication == 1)
Damien Miller95def091999-11-25 00:26:21 +11001278 auth_mask |= 1 << SSH_AUTH_TIS;
Damien Miller95def091999-11-25 00:26:21 +11001279 if (options.password_authentication)
1280 auth_mask |= 1 << SSH_AUTH_PASSWORD;
1281 packet_put_int(auth_mask);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001282
Damien Miller95def091999-11-25 00:26:21 +11001283 /* Send the packet and wait for it to be sent. */
1284 packet_send();
1285 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001286
Damien Miller0bc1bd82000-11-13 22:57:25 +11001287 debug("Sent %d bit server key and %d bit host key.",
1288 BN_num_bits(sensitive_data.server_key->rsa->n),
1289 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001290
Damien Miller95def091999-11-25 00:26:21 +11001291 /* Read clients reply (cipher type and session key). */
1292 packet_read_expect(&plen, SSH_CMSG_SESSION_KEY);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001293
Damien Miller50945fa1999-12-09 10:31:37 +11001294 /* Get cipher type and check whether we accept this. */
Damien Miller95def091999-11-25 00:26:21 +11001295 cipher_type = packet_get_char();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001296
Damien Miller874d77b2000-10-14 16:23:11 +11001297 if (!(cipher_mask_ssh1(0) & (1 << cipher_type)))
Damien Miller50945fa1999-12-09 10:31:37 +11001298 packet_disconnect("Warning: client selects unsupported cipher.");
1299
Damien Miller95def091999-11-25 00:26:21 +11001300 /* Get check bytes from the packet. These must match those we
1301 sent earlier with the public key packet. */
1302 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001303 if (cookie[i] != packet_get_char())
Damien Miller95def091999-11-25 00:26:21 +11001304 packet_disconnect("IP Spoofing check bytes do not match.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001305
Damien Miller95def091999-11-25 00:26:21 +11001306 debug("Encryption type: %.200s", cipher_name(cipher_type));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001307
Damien Miller95def091999-11-25 00:26:21 +11001308 /* Get the encrypted integer. */
1309 session_key_int = BN_new();
1310 packet_get_bignum(session_key_int, &slen);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001311
Damien Miller95def091999-11-25 00:26:21 +11001312 protocol_flags = packet_get_int();
1313 packet_set_protocol_flags(protocol_flags);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001314
Damien Miller95def091999-11-25 00:26:21 +11001315 packet_integrity_check(plen, 1 + 8 + slen + 4, SSH_CMSG_SESSION_KEY);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001316
Damien Miller5428f641999-11-25 11:54:57 +11001317 /*
1318 * Decrypt it using our private server key and private host key (key
1319 * with larger modulus first).
1320 */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001321 if (BN_cmp(sensitive_data.server_key->rsa->n, sensitive_data.ssh1_host_key->rsa->n) > 0) {
Damien Miller7650bc62001-01-30 09:27:26 +11001322 /* Server key has bigger modulus. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001323 if (BN_num_bits(sensitive_data.server_key->rsa->n) <
1324 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1325 fatal("do_connection: %s: server_key %d < host_key %d + SSH_KEY_BITS_RESERVED %d",
1326 get_remote_ipaddr(),
1327 BN_num_bits(sensitive_data.server_key->rsa->n),
1328 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1329 SSH_KEY_BITS_RESERVED);
Damien Miller95def091999-11-25 00:26:21 +11001330 }
Damien Miller7650bc62001-01-30 09:27:26 +11001331 if (rsa_private_decrypt(session_key_int, session_key_int,
1332 sensitive_data.server_key->rsa) <= 0)
1333 rsafail++;
1334 if (rsa_private_decrypt(session_key_int, session_key_int,
1335 sensitive_data.ssh1_host_key->rsa) <= 0)
1336 rsafail++;
Damien Miller95def091999-11-25 00:26:21 +11001337 } else {
1338 /* Host key has bigger modulus (or they are equal). */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001339 if (BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) <
1340 BN_num_bits(sensitive_data.server_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1341 fatal("do_connection: %s: host_key %d < server_key %d + SSH_KEY_BITS_RESERVED %d",
1342 get_remote_ipaddr(),
1343 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1344 BN_num_bits(sensitive_data.server_key->rsa->n),
1345 SSH_KEY_BITS_RESERVED);
Damien Miller95def091999-11-25 00:26:21 +11001346 }
Damien Miller7650bc62001-01-30 09:27:26 +11001347 if (rsa_private_decrypt(session_key_int, session_key_int,
1348 sensitive_data.ssh1_host_key->rsa) < 0)
1349 rsafail++;
1350 if (rsa_private_decrypt(session_key_int, session_key_int,
1351 sensitive_data.server_key->rsa) < 0)
1352 rsafail++;
Damien Miller95def091999-11-25 00:26:21 +11001353 }
Damien Miller5428f641999-11-25 11:54:57 +11001354 /*
1355 * Extract session key from the decrypted integer. The key is in the
1356 * least significant 256 bits of the integer; the first byte of the
1357 * key is in the highest bits.
1358 */
Damien Miller7650bc62001-01-30 09:27:26 +11001359 if (!rsafail) {
1360 BN_mask_bits(session_key_int, sizeof(session_key) * 8);
1361 len = BN_num_bytes(session_key_int);
1362 if (len < 0 || len > sizeof(session_key)) {
1363 error("do_connection: bad session key len from %s: "
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001364 "session_key_int %d > sizeof(session_key) %lu",
1365 get_remote_ipaddr(), len, (u_long)sizeof(session_key));
Damien Miller7650bc62001-01-30 09:27:26 +11001366 rsafail++;
1367 } else {
1368 memset(session_key, 0, sizeof(session_key));
1369 BN_bn2bin(session_key_int,
1370 session_key + sizeof(session_key) - len);
Ben Lindstromeb648a72001-03-05 06:00:29 +00001371
1372 compute_session_id(session_id, cookie,
1373 sensitive_data.ssh1_host_key->rsa->n,
1374 sensitive_data.server_key->rsa->n);
1375 /*
1376 * Xor the first 16 bytes of the session key with the
1377 * session id.
1378 */
1379 for (i = 0; i < 16; i++)
1380 session_key[i] ^= session_id[i];
Damien Miller7650bc62001-01-30 09:27:26 +11001381 }
1382 }
1383 if (rsafail) {
Ben Lindstromeb648a72001-03-05 06:00:29 +00001384 int bytes = BN_num_bytes(session_key_int);
1385 char *buf = xmalloc(bytes);
1386 MD5_CTX md;
1387
Damien Miller7650bc62001-01-30 09:27:26 +11001388 log("do_connection: generating a fake encryption key");
Ben Lindstromeb648a72001-03-05 06:00:29 +00001389 BN_bn2bin(session_key_int, buf);
1390 MD5_Init(&md);
1391 MD5_Update(&md, buf, bytes);
1392 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1393 MD5_Final(session_key, &md);
1394 MD5_Init(&md);
1395 MD5_Update(&md, session_key, 16);
1396 MD5_Update(&md, buf, bytes);
1397 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1398 MD5_Final(session_key + 16, &md);
1399 memset(buf, 0, bytes);
1400 xfree(buf);
Ben Lindstrom941ac822001-03-05 06:25:23 +00001401 for (i = 0; i < 16; i++)
1402 session_id[i] = session_key[i] ^ session_key[i + 16];
Damien Miller7650bc62001-01-30 09:27:26 +11001403 }
Ben Lindstromeb648a72001-03-05 06:00:29 +00001404 /* Destroy the private and public keys. They will no longer be needed. */
1405 destroy_sensitive_data();
1406
Damien Miller396691a2000-01-20 22:44:08 +11001407 /* Destroy the decrypted integer. It is no longer needed. */
1408 BN_clear_free(session_key_int);
1409
Damien Miller95def091999-11-25 00:26:21 +11001410 /* Set the session key. From this on all communications will be encrypted. */
1411 packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, cipher_type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001412
Damien Miller95def091999-11-25 00:26:21 +11001413 /* Destroy our copy of the session key. It is no longer needed. */
1414 memset(session_key, 0, sizeof(session_key));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001415
Damien Miller95def091999-11-25 00:26:21 +11001416 debug("Received session key; encryption turned on.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001417
Damien Miller95def091999-11-25 00:26:21 +11001418 /* Send an acknowledgement packet. Note that this packet is sent encrypted. */
1419 packet_start(SSH_SMSG_SUCCESS);
1420 packet_send();
1421 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001422}
Damien Millerefb4afe2000-04-12 18:45:05 +10001423
1424/*
1425 * SSH2 key exchange: diffie-hellman-group1-sha1
1426 */
1427void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001428do_ssh2_kex(void)
Damien Millerefb4afe2000-04-12 18:45:05 +10001429{
Damien Millerefb4afe2000-04-12 18:45:05 +10001430 Kex *kex;
Damien Millerefb4afe2000-04-12 18:45:05 +10001431
Damien Miller78928792000-04-12 20:17:38 +10001432 if (options.ciphers != NULL) {
Damien Miller4af51302000-04-16 11:18:38 +10001433 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
Damien Miller78928792000-04-12 20:17:38 +10001434 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
1435 }
Damien Millera0ff4662001-03-30 10:49:35 +10001436 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
1437 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
1438 myproposal[PROPOSAL_ENC_ALGS_STOC] =
1439 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
1440
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001441 if (options.macs != NULL) {
1442 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
1443 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
1444 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001445 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = list_hostkey_types();
1446
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001447 /* start key exchange */
Ben Lindstrom238abf62001-04-04 17:52:53 +00001448 kex = kex_setup(myproposal);
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +00001449 kex->server = 1;
1450 kex->client_version_string=client_version_string;
1451 kex->server_version_string=server_version_string;
1452 kex->load_host_key=&get_hostkey_by_type;
Damien Millerefb4afe2000-04-12 18:45:05 +10001453
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001454 xxx_kex = kex;
1455
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001456 dispatch_run(DISPATCH_BLOCK, &kex->done, kex);
Damien Miller874d77b2000-10-14 16:23:11 +11001457
Ben Lindstrom2d90e002001-04-04 02:00:54 +00001458 session_id2 = kex->session_id;
1459 session_id2_len = kex->session_id_len;
1460
Damien Miller874d77b2000-10-14 16:23:11 +11001461#ifdef DEBUG_KEXDH
1462 /* send 1st encrypted/maced/compressed message */
1463 packet_start(SSH2_MSG_IGNORE);
1464 packet_put_cstring("markus");
1465 packet_send();
1466 packet_write_wait();
1467#endif
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +00001468 debug("KEX done");
Damien Millerefb4afe2000-04-12 18:45:05 +10001469}