blob: 541e9932ea8e3a46e90fcd4f55b1d880c7eb1448 [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:
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000018 * Privilege Separation:
Damien Millere4340be2000-09-16 13:29:08 +110019 *
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000020 * Copyright (c) 2000, 2001, 2002 Markus Friedl. All rights reserved.
21 * Copyright (c) 2002 Niels Provos. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110022 *
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
25 * are met:
26 * 1. Redistributions of source code must retain the above copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 *
32 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
33 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
34 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
35 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
36 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
37 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
38 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
39 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
40 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
41 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110042 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100043
44#include "includes.h"
Ben Lindstromf90f58d2002-03-26 01:53:03 +000045RCSID("$OpenBSD: sshd.c,v 1.238 2002/03/23 20:57:26 stevesk Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100046
Ben Lindstrom226cfa02001-01-22 05:34:40 +000047#include <openssl/dh.h>
48#include <openssl/bn.h>
Damien Miller6a47f302002-02-13 13:55:06 +110049#include <openssl/md5.h>
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000050#include <openssl/rand.h>
Ben Lindstrom226cfa02001-01-22 05:34:40 +000051
52#include "ssh.h"
53#include "ssh1.h"
54#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100055#include "xmalloc.h"
56#include "rsa.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000057#include "sshpty.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100058#include "packet.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100059#include "mpaux.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000060#include "log.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100061#include "servconf.h"
62#include "uidswap.h"
63#include "compat.h"
Damien Millerb38eff82000-04-01 11:09:21 +100064#include "buffer.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000065#include "cipher.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100066#include "kex.h"
Damien Millerb38eff82000-04-01 11:09:21 +100067#include "key.h"
Damien Miller874d77b2000-10-14 16:23:11 +110068#include "dh.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100069#include "myproposal.h"
Damien Millereba71ba2000-04-29 23:57:08 +100070#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000071#include "pathnames.h"
72#include "atomicio.h"
73#include "canohost.h"
74#include "auth.h"
75#include "misc.h"
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000076#include "dispatch.h"
Ben Lindstrom1bae4042001-10-03 17:46:39 +000077#include "channels.h"
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +000078#include "session.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000079#include "monitor_mm.h"
80#include "monitor.h"
81#include "monitor_wrap.h"
82#include "monitor_fdpass.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100083
84#ifdef LIBWRAP
85#include <tcpd.h>
86#include <syslog.h>
87int allow_severity = LOG_INFO;
88int deny_severity = LOG_WARNING;
89#endif /* LIBWRAP */
90
91#ifndef O_NOCTTY
92#define O_NOCTTY 0
93#endif
94
Ben Lindstrom49a79c02000-11-17 03:47:20 +000095#ifdef HAVE___PROGNAME
96extern char *__progname;
97#else
98char *__progname;
99#endif
100
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000101/* Server configuration options. */
102ServerOptions options;
103
104/* Name of the server configuration file. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000105char *config_file_name = _PATH_SERVER_CONFIG_FILE;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000106
Damien Miller4af51302000-04-16 11:18:38 +1000107/*
Damien Miller34132e52000-01-14 15:45:46 +1100108 * Flag indicating whether IPv4 or IPv6. This can be set on the command line.
109 * Default value is AF_UNSPEC means both IPv4 and IPv6.
110 */
Damien Miller7d80e342000-01-19 14:36:49 +1100111#ifdef IPV4_DEFAULT
112int IPv4or6 = AF_INET;
113#else
Damien Miller34132e52000-01-14 15:45:46 +1100114int IPv4or6 = AF_UNSPEC;
Damien Miller7d80e342000-01-19 14:36:49 +1100115#endif
Damien Miller34132e52000-01-14 15:45:46 +1100116
Damien Miller95def091999-11-25 00:26:21 +1100117/*
118 * Debug mode flag. This can be set on the command line. If debug
119 * mode is enabled, extra debugging output will be sent to the system
120 * log, the daemon will not go to background, and will exit after processing
121 * the first connection.
122 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000123int debug_flag = 0;
124
Ben Lindstrom794325a2001-08-06 21:09:07 +0000125/* Flag indicating that the daemon should only test the configuration and keys. */
126int test_flag = 0;
127
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000128/* Flag indicating that the daemon is being started from inetd. */
129int inetd_flag = 0;
130
Ben Lindstromc72745a2000-12-02 19:03:54 +0000131/* Flag indicating that sshd should not detach and become a daemon. */
132int no_daemon_flag = 0;
133
Damien Miller5ce662a1999-11-11 17:57:39 +1100134/* debug goes to stderr unless inetd_flag is set */
135int log_stderr = 0;
136
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000137/* Saved arguments to main(). */
138char **saved_argv;
Damien Millerb8c656e2000-06-28 15:22:41 +1000139int saved_argc;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000140
Damien Miller5428f641999-11-25 11:54:57 +1100141/*
Damien Miller34132e52000-01-14 15:45:46 +1100142 * The sockets that the server is listening; this is used in the SIGHUP
143 * signal handler.
Damien Miller5428f641999-11-25 11:54:57 +1100144 */
Damien Miller34132e52000-01-14 15:45:46 +1100145#define MAX_LISTEN_SOCKS 16
146int listen_socks[MAX_LISTEN_SOCKS];
147int num_listen_socks = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000148
Damien Miller5428f641999-11-25 11:54:57 +1100149/*
150 * the client's version string, passed by sshd2 in compat mode. if != NULL,
151 * sshd will skip the version-number exchange
152 */
Damien Miller95def091999-11-25 00:26:21 +1100153char *client_version_string = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000154char *server_version_string = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000155
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000156/* for rekeying XXX fixme */
157Kex *xxx_kex;
158
Damien Miller5428f641999-11-25 11:54:57 +1100159/*
160 * Any really sensitive data in the application is contained in this
161 * structure. The idea is that this structure could be locked into memory so
162 * that the pages do not get written into swap. However, there are some
163 * problems. The private key contains BIGNUMs, and we do not (in principle)
164 * have access to the internals of them, and locking just the structure is
165 * not very useful. Currently, memory locking is not implemented.
166 */
Damien Miller95def091999-11-25 00:26:21 +1100167struct {
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000168 Key *server_key; /* ephemeral server key */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100169 Key *ssh1_host_key; /* ssh1 host key */
170 Key **host_keys; /* all private host keys */
171 int have_ssh1_key;
172 int have_ssh2_key;
Ben Lindstromeb648a72001-03-05 06:00:29 +0000173 u_char ssh1_cookie[SSH_SESSION_KEY_LENGTH];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000174} sensitive_data;
175
Damien Miller5428f641999-11-25 11:54:57 +1100176/*
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000177 * Flag indicating whether the RSA server key needs to be regenerated.
178 * Is set in the SIGALRM handler and cleared when the key is regenerated.
Damien Miller5428f641999-11-25 11:54:57 +1100179 */
Ben Lindstrom5e71c542001-12-06 16:48:14 +0000180static volatile sig_atomic_t key_do_regen = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000181
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000182/* This is set to true when a signal is received. */
Ben Lindstrom5e71c542001-12-06 16:48:14 +0000183static volatile sig_atomic_t received_sighup = 0;
184static volatile sig_atomic_t received_sigterm = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000185
Damien Millerb38eff82000-04-01 11:09:21 +1000186/* session identifier, used by RSA-auth */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000187u_char session_id[16];
Damien Millerb38eff82000-04-01 11:09:21 +1000188
Damien Millereba71ba2000-04-29 23:57:08 +1000189/* same for ssh2 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000190u_char *session_id2 = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000191int session_id2_len = 0;
192
Damien Miller942da032000-08-18 13:59:06 +1000193/* record remote hostname or ip */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000194u_int utmp_len = MAXHOSTNAMELEN;
Damien Miller942da032000-08-18 13:59:06 +1000195
Ben Lindstromd84df982001-12-06 16:35:40 +0000196/* options.max_startup sized array of fd ints */
197int *startup_pipes = NULL;
198int startup_pipe; /* in child */
199
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000200/* variables used for privilege separation */
201extern struct monitor *monitor;
202extern int use_privsep;
203
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000204/* Prototypes for various functions defined later in this file. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000205void destroy_sensitive_data(void);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000206void demote_sensitive_data(void);
Damien Miller98c7ad62000-03-09 21:27:49 +1100207
Ben Lindstrombba81212001-06-25 05:01:22 +0000208static void do_ssh1_kex(void);
209static void do_ssh2_kex(void);
Damien Miller874d77b2000-10-14 16:23:11 +1100210
Damien Miller98c7ad62000-03-09 21:27:49 +1100211/*
Damien Miller34132e52000-01-14 15:45:46 +1100212 * Close all listening sockets
213 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000214static void
Damien Miller34132e52000-01-14 15:45:46 +1100215close_listen_socks(void)
216{
217 int i;
218 for (i = 0; i < num_listen_socks; i++)
219 close(listen_socks[i]);
220 num_listen_socks = -1;
221}
222
Ben Lindstromd84df982001-12-06 16:35:40 +0000223static void
224close_startup_pipes(void)
225{
226 int i;
227 if (startup_pipes)
228 for (i = 0; i < options.max_startups; i++)
229 if (startup_pipes[i] != -1)
230 close(startup_pipes[i]);
231}
232
Damien Miller34132e52000-01-14 15:45:46 +1100233/*
Damien Miller95def091999-11-25 00:26:21 +1100234 * Signal handler for SIGHUP. Sshd execs itself when it receives SIGHUP;
235 * the effect is to reread the configuration file (and to regenerate
236 * the server key).
237 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000238static void
Damien Miller95def091999-11-25 00:26:21 +1100239sighup_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000240{
Ben Lindstrom07958482001-12-06 16:19:01 +0000241 int save_errno = errno;
242
Damien Miller95def091999-11-25 00:26:21 +1100243 received_sighup = 1;
244 signal(SIGHUP, sighup_handler);
Ben Lindstrom07958482001-12-06 16:19:01 +0000245 errno = save_errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000246}
247
Damien Miller95def091999-11-25 00:26:21 +1100248/*
249 * Called from the main program after receiving SIGHUP.
250 * Restarts the server.
251 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000252static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000253sighup_restart(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000254{
Damien Miller95def091999-11-25 00:26:21 +1100255 log("Received SIGHUP; restarting.");
Damien Miller34132e52000-01-14 15:45:46 +1100256 close_listen_socks();
Ben Lindstromd84df982001-12-06 16:35:40 +0000257 close_startup_pipes();
Damien Miller95def091999-11-25 00:26:21 +1100258 execv(saved_argv[0], saved_argv);
Kevin Stevesec84dc12000-12-13 17:45:15 +0000259 log("RESTART FAILED: av[0]='%.100s', error: %.100s.", saved_argv[0], strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100260 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000261}
262
Damien Miller95def091999-11-25 00:26:21 +1100263/*
264 * Generic signal handler for terminating signals in the master daemon.
Damien Miller95def091999-11-25 00:26:21 +1100265 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000266static void
Damien Miller95def091999-11-25 00:26:21 +1100267sigterm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000268{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000269 received_sigterm = sig;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000270}
271
Damien Miller95def091999-11-25 00:26:21 +1100272/*
273 * SIGCHLD handler. This is called whenever a child dies. This will then
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000274 * reap any zombies left by exited children.
Damien Miller95def091999-11-25 00:26:21 +1100275 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000276static void
Damien Miller95def091999-11-25 00:26:21 +1100277main_sigchld_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000278{
Damien Miller95def091999-11-25 00:26:21 +1100279 int save_errno = errno;
280 int status;
Damien Miller431f66b1999-11-21 18:31:57 +1100281
Damien Miller95def091999-11-25 00:26:21 +1100282 while (waitpid(-1, &status, WNOHANG) > 0)
283 ;
Damien Miller431f66b1999-11-21 18:31:57 +1100284
Damien Miller95def091999-11-25 00:26:21 +1100285 signal(SIGCHLD, main_sigchld_handler);
286 errno = save_errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000287}
288
Damien Miller95def091999-11-25 00:26:21 +1100289/*
290 * Signal handler for the alarm after the login grace period has expired.
291 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000292static void
Damien Miller95def091999-11-25 00:26:21 +1100293grace_alarm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000294{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000295 /* XXX no idea how fix this signal handler */
296
Damien Miller95def091999-11-25 00:26:21 +1100297 /* Close the connection. */
298 packet_close();
299
300 /* Log error and exit. */
301 fatal("Timeout before authentication for %s.", get_remote_ipaddr());
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000302}
303
Damien Miller95def091999-11-25 00:26:21 +1100304/*
Damien Miller95def091999-11-25 00:26:21 +1100305 * Signal handler for the key regeneration alarm. Note that this
306 * alarm only occurs in the daemon waiting for connections, and it does not
307 * do anything with the private key or random state before forking.
308 * Thus there should be no concurrency control/asynchronous execution
309 * problems.
310 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000311static void
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000312generate_ephemeral_server_key(void)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100313{
Ben Lindstromeb648a72001-03-05 06:00:29 +0000314 u_int32_t rand = 0;
315 int i;
316
Ben Lindstroma3700052001-04-05 23:26:32 +0000317 verbose("Generating %s%d bit RSA key.",
Damien Millerff75ac42001-03-30 10:50:32 +1000318 sensitive_data.server_key ? "new " : "", options.server_key_bits);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100319 if (sensitive_data.server_key != NULL)
320 key_free(sensitive_data.server_key);
Ben Lindstroma3700052001-04-05 23:26:32 +0000321 sensitive_data.server_key = key_generate(KEY_RSA1,
Damien Millerff75ac42001-03-30 10:50:32 +1000322 options.server_key_bits);
323 verbose("RSA key generation complete.");
Ben Lindstromeb648a72001-03-05 06:00:29 +0000324
325 for (i = 0; i < SSH_SESSION_KEY_LENGTH; i++) {
326 if (i % 4 == 0)
327 rand = arc4random();
328 sensitive_data.ssh1_cookie[i] = rand & 0xff;
329 rand >>= 8;
330 }
331 arc4random_stir();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100332}
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000333
Ben Lindstrombba81212001-06-25 05:01:22 +0000334static void
Damien Miller95def091999-11-25 00:26:21 +1100335key_regeneration_alarm(int sig)
336{
337 int save_errno = errno;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000338 signal(SIGALRM, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +1100339 errno = save_errno;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000340 key_do_regen = 1;
Damien Miller95def091999-11-25 00:26:21 +1100341}
342
Ben Lindstrombba81212001-06-25 05:01:22 +0000343static void
Damien Millerb38eff82000-04-01 11:09:21 +1000344sshd_exchange_identification(int sock_in, int sock_out)
345{
Damien Miller78928792000-04-12 20:17:38 +1000346 int i, mismatch;
Damien Millerb38eff82000-04-01 11:09:21 +1000347 int remote_major, remote_minor;
Damien Miller78928792000-04-12 20:17:38 +1000348 int major, minor;
Damien Millerb38eff82000-04-01 11:09:21 +1000349 char *s;
350 char buf[256]; /* Must not be larger than remote_version. */
351 char remote_version[256]; /* Must be at least as big as buf. */
352
Damien Miller78928792000-04-12 20:17:38 +1000353 if ((options.protocol & SSH_PROTO_1) &&
354 (options.protocol & SSH_PROTO_2)) {
355 major = PROTOCOL_MAJOR_1;
356 minor = 99;
357 } else if (options.protocol & SSH_PROTO_2) {
358 major = PROTOCOL_MAJOR_2;
359 minor = PROTOCOL_MINOR_2;
360 } else {
361 major = PROTOCOL_MAJOR_1;
362 minor = PROTOCOL_MINOR_1;
363 }
364 snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n", major, minor, SSH_VERSION);
Damien Millerb38eff82000-04-01 11:09:21 +1000365 server_version_string = xstrdup(buf);
366
367 if (client_version_string == NULL) {
368 /* Send our protocol version identification. */
369 if (atomicio(write, sock_out, server_version_string, strlen(server_version_string))
370 != strlen(server_version_string)) {
Damien Millere4a0ff42001-11-12 11:06:54 +1100371 log("Could not write ident string to %s", get_remote_ipaddr());
Damien Millerb38eff82000-04-01 11:09:21 +1000372 fatal_cleanup();
373 }
374
Ben Lindstrom5393f932001-02-15 03:17:13 +0000375 /* Read other side's version identification. */
Ben Lindstroma3700052001-04-05 23:26:32 +0000376 memset(buf, 0, sizeof(buf));
Damien Millerb38eff82000-04-01 11:09:21 +1000377 for (i = 0; i < sizeof(buf) - 1; i++) {
Damien Millerbf7f4662000-06-23 10:16:38 +1000378 if (atomicio(read, sock_in, &buf[i], 1) != 1) {
Damien Millere4a0ff42001-11-12 11:06:54 +1100379 log("Did not receive identification string from %s",
Ben Lindstroma9a29e12001-02-20 01:20:47 +0000380 get_remote_ipaddr());
Damien Millerb38eff82000-04-01 11:09:21 +1000381 fatal_cleanup();
382 }
383 if (buf[i] == '\r') {
Ben Lindstrom69d8c072001-03-22 22:45:33 +0000384 buf[i] = 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100385 /* Kludge for F-Secure Macintosh < 1.0.2 */
386 if (i == 12 &&
387 strncmp(buf, "SSH-1.5-W1.0", 12) == 0)
388 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000389 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000390 }
391 if (buf[i] == '\n') {
Ben Lindstrom69d8c072001-03-22 22:45:33 +0000392 buf[i] = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000393 break;
394 }
395 }
396 buf[sizeof(buf) - 1] = 0;
397 client_version_string = xstrdup(buf);
398 }
399
400 /*
401 * Check that the versions match. In future this might accept
402 * several versions and set appropriate flags to handle them.
403 */
404 if (sscanf(client_version_string, "SSH-%d.%d-%[^\n]\n",
405 &remote_major, &remote_minor, remote_version) != 3) {
Damien Miller4af51302000-04-16 11:18:38 +1000406 s = "Protocol mismatch.\n";
Damien Millerb38eff82000-04-01 11:09:21 +1000407 (void) atomicio(write, sock_out, s, strlen(s));
408 close(sock_in);
409 close(sock_out);
410 log("Bad protocol version identification '%.100s' from %s",
411 client_version_string, get_remote_ipaddr());
412 fatal_cleanup();
413 }
414 debug("Client protocol version %d.%d; client software version %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100415 remote_major, remote_minor, remote_version);
Damien Millerb38eff82000-04-01 11:09:21 +1000416
Damien Millerefb4afe2000-04-12 18:45:05 +1000417 compat_datafellows(remote_version);
418
Damien Miller27dbe6f2001-03-19 22:36:20 +1100419 if (datafellows & SSH_BUG_SCANNER) {
420 log("scanned from %s with %s. Don't panic.",
421 get_remote_ipaddr(), client_version_string);
422 fatal_cleanup();
423 }
424
Damien Miller78928792000-04-12 20:17:38 +1000425 mismatch = 0;
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000426 switch (remote_major) {
Damien Millerb38eff82000-04-01 11:09:21 +1000427 case 1:
Damien Millereba71ba2000-04-29 23:57:08 +1000428 if (remote_minor == 99) {
429 if (options.protocol & SSH_PROTO_2)
430 enable_compat20();
431 else
432 mismatch = 1;
433 break;
434 }
Damien Miller78928792000-04-12 20:17:38 +1000435 if (!(options.protocol & SSH_PROTO_1)) {
436 mismatch = 1;
437 break;
438 }
Damien Millerb38eff82000-04-01 11:09:21 +1000439 if (remote_minor < 3) {
Damien Miller37023962000-07-11 17:31:38 +1000440 packet_disconnect("Your ssh version is too old and "
Damien Millerb38eff82000-04-01 11:09:21 +1000441 "is no longer supported. Please install a newer version.");
442 } else if (remote_minor == 3) {
443 /* note that this disables agent-forwarding */
444 enable_compat13();
445 }
Damien Miller78928792000-04-12 20:17:38 +1000446 break;
Damien Millerefb4afe2000-04-12 18:45:05 +1000447 case 2:
Damien Miller78928792000-04-12 20:17:38 +1000448 if (options.protocol & SSH_PROTO_2) {
Damien Millerefb4afe2000-04-12 18:45:05 +1000449 enable_compat20();
450 break;
451 }
452 /* FALLTHROUGH */
Damien Miller4af51302000-04-16 11:18:38 +1000453 default:
Damien Miller78928792000-04-12 20:17:38 +1000454 mismatch = 1;
Damien Millerb38eff82000-04-01 11:09:21 +1000455 break;
456 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000457 chop(server_version_string);
Damien Miller78928792000-04-12 20:17:38 +1000458 debug("Local version string %.200s", server_version_string);
459
460 if (mismatch) {
461 s = "Protocol major versions differ.\n";
462 (void) atomicio(write, sock_out, s, strlen(s));
463 close(sock_in);
464 close(sock_out);
465 log("Protocol major versions differ for %s: %.200s vs. %.200s",
466 get_remote_ipaddr(),
467 server_version_string, client_version_string);
468 fatal_cleanup();
469 }
Damien Millereba71ba2000-04-29 23:57:08 +1000470}
471
472
Damien Miller0bc1bd82000-11-13 22:57:25 +1100473/* Destroy the host and server keys. They will no longer be needed. */
Damien Millereba71ba2000-04-29 23:57:08 +1000474void
475destroy_sensitive_data(void)
476{
Damien Miller0bc1bd82000-11-13 22:57:25 +1100477 int i;
478
479 if (sensitive_data.server_key) {
480 key_free(sensitive_data.server_key);
481 sensitive_data.server_key = NULL;
482 }
Damien Miller9f0f5c62001-12-21 14:45:46 +1100483 for (i = 0; i < options.num_host_key_files; i++) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100484 if (sensitive_data.host_keys[i]) {
485 key_free(sensitive_data.host_keys[i]);
486 sensitive_data.host_keys[i] = NULL;
487 }
488 }
489 sensitive_data.ssh1_host_key = NULL;
Ben Lindstromeb648a72001-03-05 06:00:29 +0000490 memset(sensitive_data.ssh1_cookie, 0, SSH_SESSION_KEY_LENGTH);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100491}
Damien Miller0bc1bd82000-11-13 22:57:25 +1100492
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000493/* Demote private to public keys for network child */
494void
495demote_sensitive_data(void)
496{
497 Key *tmp;
498 int i;
499
500 if (sensitive_data.server_key) {
501 tmp = key_demote(sensitive_data.server_key);
502 key_free(sensitive_data.server_key);
503 sensitive_data.server_key = tmp;
504 }
505
506 for (i = 0; i < options.num_host_key_files; i++) {
507 if (sensitive_data.host_keys[i]) {
508 tmp = key_demote(sensitive_data.host_keys[i]);
509 key_free(sensitive_data.host_keys[i]);
510 sensitive_data.host_keys[i] = tmp;
511 if (tmp->type == KEY_RSA1)
512 sensitive_data.ssh1_host_key = tmp;
513 }
514 }
515
516 /* We do not clear ssh1_host key and cookie. XXX - Okay Niels? */
517}
518
Ben Lindstrom08105192002-03-22 02:50:06 +0000519static void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000520privsep_preauth_child(void)
521{
522 u_int32_t rand[256];
523 int i;
Ben Lindstromc7431342002-03-22 03:11:49 +0000524 struct passwd *pw;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000525
526 /* Enable challenge-response authentication for privilege separation */
527 privsep_challenge_enable();
528
529 for (i = 0; i < 256; i++)
530 rand[i] = arc4random();
531 RAND_seed(rand, sizeof(rand));
532
533 /* Demote the private keys to public keys. */
534 demote_sensitive_data();
535
Ben Lindstromc7431342002-03-22 03:11:49 +0000536 if ((pw = getpwnam(SSH_PRIVSEP_USER)) == NULL)
537 fatal("%s: no user", SSH_PRIVSEP_USER);
538 memset(pw->pw_passwd, 0, strlen(pw->pw_passwd));
539 endpwent();
540
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000541 /* Change our root directory*/
Ben Lindstrom7a7edf72002-03-22 02:42:37 +0000542 if (chroot(_PATH_PRIVSEP_CHROOT_DIR) == -1)
543 fatal("chroot(\"%s\"): %s", _PATH_PRIVSEP_CHROOT_DIR,
544 strerror(errno));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000545 if (chdir("/") == -1)
Ben Lindstrom1ee9ec32002-03-22 03:14:45 +0000546 fatal("chdir(\"/\"): %s", strerror(errno));
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000547
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000548 /* Drop our privileges */
Ben Lindstromc7431342002-03-22 03:11:49 +0000549 debug3("privsep user:group %u:%u", (u_int)pw->pw_uid,
550 (u_int)pw->pw_gid);
551 do_setusercontext(pw);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000552}
553
Ben Lindstrom943481c2002-03-22 03:43:46 +0000554static Authctxt*
555privsep_preauth(void)
556{
557 Authctxt *authctxt = NULL;
558 int status;
559 pid_t pid;
560
561 /* Set up unprivileged child process to deal with network data */
562 monitor = monitor_init();
563 /* Store a pointer to the kex for later rekeying */
564 monitor->m_pkex = &xxx_kex;
565
566 pid = fork();
567 if (pid == -1) {
568 fatal("fork of unprivileged child failed");
569 } else if (pid != 0) {
570 debug2("Network child is on pid %d", pid);
571
572 close(monitor->m_recvfd);
573 authctxt = monitor_child_preauth(monitor);
574 close(monitor->m_sendfd);
575
576 /* Sync memory */
577 monitor_sync(monitor);
578
579 /* Wait for the child's exit status */
580 waitpid(pid, &status, 0);
581
582 return (authctxt);
583 } else {
584 /* child */
585
586 close(monitor->m_sendfd);
587
588 /* Demote the child */
589 if (getuid() == 0 || geteuid() == 0)
590 privsep_preauth_child();
Ben Lindstromf90f58d2002-03-26 01:53:03 +0000591 setproctitle("%s", "[net]");
Ben Lindstrom943481c2002-03-22 03:43:46 +0000592 }
593 return (NULL);
594}
595
Ben Lindstrom08105192002-03-22 02:50:06 +0000596static void
Ben Lindstrom943481c2002-03-22 03:43:46 +0000597privsep_postauth(Authctxt *authctxt)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000598{
599 extern Authctxt *x_authctxt;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000600
601 /* XXX - Remote port forwarding */
602 x_authctxt = authctxt;
603
604 if (authctxt->pw->pw_uid == 0 || options.use_login) {
605 /* File descriptor passing is broken or root login */
606 monitor_apply_keystate(monitor);
607 use_privsep = 0;
608 return;
609 }
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000610
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000611 /* Authentication complete */
612 alarm(0);
613 if (startup_pipe != -1) {
614 close(startup_pipe);
615 startup_pipe = -1;
616 }
617
618 /* New socket pair */
619 monitor_reinit(monitor);
620
621 monitor->m_pid = fork();
622 if (monitor->m_pid == -1)
623 fatal("fork of unprivileged child failed");
624 else if (monitor->m_pid != 0) {
Ben Lindstrom943481c2002-03-22 03:43:46 +0000625 debug2("User child is on pid %d", monitor->m_pid);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000626 close(monitor->m_recvfd);
627 monitor_child_postauth(monitor);
628
629 /* NEVERREACHED */
630 exit(0);
631 }
632
633 close(monitor->m_sendfd);
634
635 /* Demote the private keys to public keys. */
636 demote_sensitive_data();
637
638 /* Drop privileges */
639 do_setusercontext(authctxt->pw);
640
641 /* It is safe now to apply the key state */
642 monitor_apply_keystate(monitor);
643}
644
Ben Lindstrombba81212001-06-25 05:01:22 +0000645static char *
Damien Miller0bc1bd82000-11-13 22:57:25 +1100646list_hostkey_types(void)
647{
Damien Miller0e3b8722002-01-22 23:26:38 +1100648 Buffer b;
649 char *p;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100650 int i;
Damien Miller0e3b8722002-01-22 23:26:38 +1100651
652 buffer_init(&b);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100653 for (i = 0; i < options.num_host_key_files; i++) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100654 Key *key = sensitive_data.host_keys[i];
655 if (key == NULL)
656 continue;
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000657 switch (key->type) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100658 case KEY_RSA:
659 case KEY_DSA:
Damien Miller0e3b8722002-01-22 23:26:38 +1100660 if (buffer_len(&b) > 0)
661 buffer_append(&b, ",", 1);
662 p = key_ssh_name(key);
663 buffer_append(&b, p, strlen(p));
Damien Miller0bc1bd82000-11-13 22:57:25 +1100664 break;
665 }
666 }
Damien Miller0e3b8722002-01-22 23:26:38 +1100667 buffer_append(&b, "\0", 1);
668 p = xstrdup(buffer_ptr(&b));
669 buffer_free(&b);
670 debug("list_hostkey_types: %s", p);
671 return p;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100672}
673
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000674Key *
Damien Miller0bc1bd82000-11-13 22:57:25 +1100675get_hostkey_by_type(int type)
676{
677 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100678 for (i = 0; i < options.num_host_key_files; i++) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100679 Key *key = sensitive_data.host_keys[i];
680 if (key != NULL && key->type == type)
681 return key;
682 }
683 return NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000684}
685
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000686Key *
687get_hostkey_by_index(int ind)
688{
689 if (ind < 0 || ind >= options.num_host_key_files)
690 return (NULL);
691 return (sensitive_data.host_keys[ind]);
692}
693
694int
695get_hostkey_index(Key *key)
696{
697 int i;
698 for (i = 0; i < options.num_host_key_files; i++) {
699 if (key == sensitive_data.host_keys[i])
700 return (i);
701 }
702 return (-1);
703}
704
Damien Miller942da032000-08-18 13:59:06 +1000705/*
706 * returns 1 if connection should be dropped, 0 otherwise.
707 * dropping starts at connection #max_startups_begin with a probability
708 * of (max_startups_rate/100). the probability increases linearly until
709 * all connections are dropped for startups > max_startups
710 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000711static int
Damien Miller942da032000-08-18 13:59:06 +1000712drop_connection(int startups)
713{
714 double p, r;
715
716 if (startups < options.max_startups_begin)
717 return 0;
718 if (startups >= options.max_startups)
719 return 1;
720 if (options.max_startups_rate == 100)
721 return 1;
722
723 p = 100 - options.max_startups_rate;
724 p *= startups - options.max_startups_begin;
725 p /= (double) (options.max_startups - options.max_startups_begin);
726 p += options.max_startups_rate;
727 p /= 100.0;
728 r = arc4random() / (double) UINT_MAX;
729
730 debug("drop_connection: p %g, r %g", p, r);
731 return (r < p) ? 1 : 0;
732}
733
Ben Lindstromade03f62001-12-06 18:22:17 +0000734static void
735usage(void)
736{
737 fprintf(stderr, "sshd version %s\n", SSH_VERSION);
738 fprintf(stderr, "Usage: %s [options]\n", __progname);
739 fprintf(stderr, "Options:\n");
740 fprintf(stderr, " -f file Configuration file (default %s)\n", _PATH_SERVER_CONFIG_FILE);
741 fprintf(stderr, " -d Debugging mode (multiple -d means more debugging)\n");
742 fprintf(stderr, " -i Started from inetd\n");
743 fprintf(stderr, " -D Do not fork into daemon mode\n");
744 fprintf(stderr, " -t Only test configuration file and keys\n");
745 fprintf(stderr, " -q Quiet (no logging)\n");
746 fprintf(stderr, " -p port Listen on the specified port (default: 22)\n");
747 fprintf(stderr, " -k seconds Regenerate server key every this many seconds (default: 3600)\n");
748 fprintf(stderr, " -g seconds Grace period for authentication (default: 600)\n");
749 fprintf(stderr, " -b bits Size of server RSA key (default: 768 bits)\n");
750 fprintf(stderr, " -h file File from which to read host key (default: %s)\n",
751 _PATH_HOST_KEY_FILE);
752 fprintf(stderr, " -u len Maximum hostname length for utmp recording\n");
753 fprintf(stderr, " -4 Use IPv4 only\n");
754 fprintf(stderr, " -6 Use IPv6 only\n");
755 fprintf(stderr, " -o option Process the option as if it was read from a configuration file.\n");
756 exit(1);
757}
758
Damien Miller95def091999-11-25 00:26:21 +1100759/*
760 * Main program for the daemon.
761 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000762int
763main(int ac, char **av)
764{
Damien Miller95def091999-11-25 00:26:21 +1100765 extern char *optarg;
766 extern int optind;
Damien Miller37023962000-07-11 17:31:38 +1000767 int opt, sock_in = 0, sock_out = 0, newsock, j, i, fdsetsz, on = 1;
Damien Miller166fca82000-04-20 07:42:21 +1000768 pid_t pid;
Damien Miller34132e52000-01-14 15:45:46 +1100769 socklen_t fromlen;
Damien Miller34132e52000-01-14 15:45:46 +1100770 fd_set *fdset;
771 struct sockaddr_storage from;
Damien Miller95def091999-11-25 00:26:21 +1100772 const char *remote_ip;
773 int remote_port;
Damien Miller95def091999-11-25 00:26:21 +1100774 FILE *f;
775 struct linger linger;
Damien Miller34132e52000-01-14 15:45:46 +1100776 struct addrinfo *ai;
777 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
778 int listen_sock, maxfd;
Damien Miller37023962000-07-11 17:31:38 +1000779 int startup_p[2];
780 int startups = 0;
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +0000781 Authctxt *authctxt;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000782 Key *key;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000783 int ret, key_used = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000784
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000785 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000786 init_rng();
787
Kevin Stevesec84dc12000-12-13 17:45:15 +0000788 /* Save argv. */
Damien Millerb8c656e2000-06-28 15:22:41 +1000789 saved_argc = ac;
Damien Miller95def091999-11-25 00:26:21 +1100790 saved_argv = av;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000791
Damien Miller95def091999-11-25 00:26:21 +1100792 /* Initialize configuration options to their default values. */
793 initialize_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000794
Damien Miller95def091999-11-25 00:26:21 +1100795 /* Parse command-line arguments. */
Ben Lindstromade03f62001-12-06 18:22:17 +0000796 while ((opt = getopt(ac, av, "f:p:b:k:h:g:V:u:o:dDeiqtQ46")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100797 switch (opt) {
Damien Miller34132e52000-01-14 15:45:46 +1100798 case '4':
799 IPv4or6 = AF_INET;
800 break;
801 case '6':
802 IPv4or6 = AF_INET6;
803 break;
Damien Miller95def091999-11-25 00:26:21 +1100804 case 'f':
805 config_file_name = optarg;
806 break;
807 case 'd':
Damien Millere4340be2000-09-16 13:29:08 +1100808 if (0 == debug_flag) {
809 debug_flag = 1;
810 options.log_level = SYSLOG_LEVEL_DEBUG1;
811 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
812 options.log_level++;
813 } else {
814 fprintf(stderr, "Too high debugging level.\n");
815 exit(1);
816 }
Damien Miller95def091999-11-25 00:26:21 +1100817 break;
Ben Lindstromc72745a2000-12-02 19:03:54 +0000818 case 'D':
819 no_daemon_flag = 1;
820 break;
Ben Lindstrom9fce9f02001-04-11 23:10:09 +0000821 case 'e':
822 log_stderr = 1;
823 break;
Damien Miller95def091999-11-25 00:26:21 +1100824 case 'i':
825 inetd_flag = 1;
826 break;
827 case 'Q':
Ben Lindstromd5390202001-01-29 08:07:43 +0000828 /* ignored */
Damien Miller95def091999-11-25 00:26:21 +1100829 break;
830 case 'q':
831 options.log_level = SYSLOG_LEVEL_QUIET;
832 break;
833 case 'b':
834 options.server_key_bits = atoi(optarg);
835 break;
836 case 'p':
Damien Miller34132e52000-01-14 15:45:46 +1100837 options.ports_from_cmdline = 1;
Damien Millere4340be2000-09-16 13:29:08 +1100838 if (options.num_ports >= MAX_PORTS) {
839 fprintf(stderr, "too many ports.\n");
840 exit(1);
841 }
Ben Lindstrom19066a12001-04-12 23:39:26 +0000842 options.ports[options.num_ports++] = a2port(optarg);
843 if (options.ports[options.num_ports-1] == 0) {
844 fprintf(stderr, "Bad port number.\n");
845 exit(1);
846 }
Damien Miller95def091999-11-25 00:26:21 +1100847 break;
848 case 'g':
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000849 if ((options.login_grace_time = convtime(optarg)) == -1) {
850 fprintf(stderr, "Invalid login grace time.\n");
851 exit(1);
852 }
Damien Miller95def091999-11-25 00:26:21 +1100853 break;
854 case 'k':
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000855 if ((options.key_regeneration_time = convtime(optarg)) == -1) {
856 fprintf(stderr, "Invalid key regeneration interval.\n");
857 exit(1);
858 }
Damien Miller95def091999-11-25 00:26:21 +1100859 break;
860 case 'h':
Damien Miller0bc1bd82000-11-13 22:57:25 +1100861 if (options.num_host_key_files >= MAX_HOSTKEYS) {
862 fprintf(stderr, "too many host keys.\n");
863 exit(1);
864 }
865 options.host_key_files[options.num_host_key_files++] = optarg;
Damien Miller95def091999-11-25 00:26:21 +1100866 break;
867 case 'V':
868 client_version_string = optarg;
869 /* only makes sense with inetd_flag, i.e. no listen() */
870 inetd_flag = 1;
871 break;
Ben Lindstrom794325a2001-08-06 21:09:07 +0000872 case 't':
873 test_flag = 1;
874 break;
Damien Miller942da032000-08-18 13:59:06 +1000875 case 'u':
876 utmp_len = atoi(optarg);
877 break;
Ben Lindstromade03f62001-12-06 18:22:17 +0000878 case 'o':
Damien Miller9f0f5c62001-12-21 14:45:46 +1100879 if (process_server_config_line(&options, optarg,
Ben Lindstromade03f62001-12-06 18:22:17 +0000880 "command-line", 0) != 0)
Damien Miller9f0f5c62001-12-21 14:45:46 +1100881 exit(1);
Ben Lindstromade03f62001-12-06 18:22:17 +0000882 break;
Damien Miller95def091999-11-25 00:26:21 +1100883 case '?':
884 default:
Ben Lindstromade03f62001-12-06 18:22:17 +0000885 usage();
886 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000887 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000888 }
Ben Lindstrom425fb022001-03-29 00:31:20 +0000889 SSLeay_add_all_algorithms();
Ben Lindstrom908afed2001-10-03 17:34:59 +0000890 channel_set_af(IPv4or6);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000891
Damien Miller34132e52000-01-14 15:45:46 +1100892 /*
893 * Force logging to stderr until we have loaded the private host
894 * key (unless started from inetd)
895 */
Kevin Stevesec84dc12000-12-13 17:45:15 +0000896 log_init(__progname,
Damien Miller5aa5d782002-02-08 22:01:54 +1100897 options.log_level == SYSLOG_LEVEL_NOT_SET ?
898 SYSLOG_LEVEL_INFO : options.log_level,
899 options.log_facility == SYSLOG_FACILITY_NOT_SET ?
900 SYSLOG_FACILITY_AUTH : options.log_facility,
Ben Lindstromd5390202001-01-29 08:07:43 +0000901 !inetd_flag);
Damien Miller34132e52000-01-14 15:45:46 +1100902
Ben Lindstrom6db66ff2001-08-06 23:29:16 +0000903#ifdef _CRAY
904 /* Cray can define user privs drop all prives now!
905 * Not needed on PRIV_SU systems!
906 */
907 drop_cray_privs();
908#endif
909
Damien Miller60bc5172001-03-19 09:38:15 +1100910 seed_rng();
911
Damien Miller95def091999-11-25 00:26:21 +1100912 /* Read server configuration options from the configuration file. */
913 read_server_config(&options, config_file_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000914
Damien Miller95def091999-11-25 00:26:21 +1100915 /* Fill in default values for those options not explicitly set. */
916 fill_default_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000917
Damien Miller95def091999-11-25 00:26:21 +1100918 /* Check that there are no remaining arguments. */
919 if (optind < ac) {
920 fprintf(stderr, "Extra argument %s.\n", av[optind]);
921 exit(1);
922 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000923
Damien Miller95def091999-11-25 00:26:21 +1100924 debug("sshd version %.100s", SSH_VERSION);
Damien Miller2ccf6611999-11-15 15:25:10 +1100925
Damien Miller0bc1bd82000-11-13 22:57:25 +1100926 /* load private host keys */
927 sensitive_data.host_keys = xmalloc(options.num_host_key_files*sizeof(Key*));
Damien Miller9f0f5c62001-12-21 14:45:46 +1100928 for (i = 0; i < options.num_host_key_files; i++)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000929 sensitive_data.host_keys[i] = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100930 sensitive_data.server_key = NULL;
931 sensitive_data.ssh1_host_key = NULL;
932 sensitive_data.have_ssh1_key = 0;
933 sensitive_data.have_ssh2_key = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000934
Damien Miller9f0f5c62001-12-21 14:45:46 +1100935 for (i = 0; i < options.num_host_key_files; i++) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000936 key = key_load_private(options.host_key_files[i], "", NULL);
937 sensitive_data.host_keys[i] = key;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100938 if (key == NULL) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000939 error("Could not load host key: %s",
940 options.host_key_files[i]);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000941 sensitive_data.host_keys[i] = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100942 continue;
943 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000944 switch (key->type) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100945 case KEY_RSA1:
946 sensitive_data.ssh1_host_key = key;
947 sensitive_data.have_ssh1_key = 1;
948 break;
949 case KEY_RSA:
950 case KEY_DSA:
951 sensitive_data.have_ssh2_key = 1;
952 break;
953 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000954 debug("private host key: #%d type %d %s", i, key->type,
955 key_type(key));
Damien Miller0bc1bd82000-11-13 22:57:25 +1100956 }
957 if ((options.protocol & SSH_PROTO_1) && !sensitive_data.have_ssh1_key) {
958 log("Disabling protocol version 1. Could not load host key");
Damien Millereba71ba2000-04-29 23:57:08 +1000959 options.protocol &= ~SSH_PROTO_1;
960 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100961 if ((options.protocol & SSH_PROTO_2) && !sensitive_data.have_ssh2_key) {
962 log("Disabling protocol version 2. Could not load host key");
963 options.protocol &= ~SSH_PROTO_2;
Damien Millereba71ba2000-04-29 23:57:08 +1000964 }
Kevin Stevesadf74cd2001-02-05 14:22:50 +0000965 if (!(options.protocol & (SSH_PROTO_1|SSH_PROTO_2))) {
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000966 log("sshd: no hostkeys available -- exiting.");
Damien Miller95def091999-11-25 00:26:21 +1100967 exit(1);
968 }
Damien Miller95def091999-11-25 00:26:21 +1100969
Damien Millereba71ba2000-04-29 23:57:08 +1000970 /* Check certain values for sanity. */
971 if (options.protocol & SSH_PROTO_1) {
972 if (options.server_key_bits < 512 ||
973 options.server_key_bits > 32768) {
974 fprintf(stderr, "Bad server key size.\n");
975 exit(1);
976 }
977 /*
978 * Check that server and host key lengths differ sufficiently. This
979 * is necessary to make double encryption work with rsaref. Oh, I
980 * hate software patents. I dont know if this can go? Niels
981 */
982 if (options.server_key_bits >
Damien Miller0bc1bd82000-11-13 22:57:25 +1100983 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) - SSH_KEY_BITS_RESERVED &&
Damien Millereba71ba2000-04-29 23:57:08 +1000984 options.server_key_bits <
Damien Miller0bc1bd82000-11-13 22:57:25 +1100985 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
Damien Millereba71ba2000-04-29 23:57:08 +1000986 options.server_key_bits =
Damien Miller0bc1bd82000-11-13 22:57:25 +1100987 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED;
Damien Millereba71ba2000-04-29 23:57:08 +1000988 debug("Forcing server key to %d bits to make it differ from host key.",
989 options.server_key_bits);
990 }
991 }
992
Ben Lindstrom794325a2001-08-06 21:09:07 +0000993 /* Configuration looks good, so exit if in test mode. */
994 if (test_flag)
995 exit(0);
996
Damien Miller78315eb2000-09-29 23:01:36 +1100997#ifdef HAVE_SCO_PROTECTED_PW
998 (void) set_auth_parameters(ac, av);
999#endif
1000
Damien Millereba71ba2000-04-29 23:57:08 +10001001 /* Initialize the log (it is reinitialized below in case we forked). */
Damien Miller95def091999-11-25 00:26:21 +11001002 if (debug_flag && !inetd_flag)
1003 log_stderr = 1;
Kevin Stevesec84dc12000-12-13 17:45:15 +00001004 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +11001005
Damien Millereba71ba2000-04-29 23:57:08 +10001006 /*
1007 * If not in debugging mode, and not started from inetd, disconnect
1008 * from the controlling terminal, and fork. The original process
1009 * exits.
1010 */
Ben Lindstromc72745a2000-12-02 19:03:54 +00001011 if (!(debug_flag || inetd_flag || no_daemon_flag)) {
Damien Miller95def091999-11-25 00:26:21 +11001012#ifdef TIOCNOTTY
1013 int fd;
1014#endif /* TIOCNOTTY */
1015 if (daemon(0, 0) < 0)
1016 fatal("daemon() failed: %.200s", strerror(errno));
1017
1018 /* Disconnect from the controlling tty. */
1019#ifdef TIOCNOTTY
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001020 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
Damien Miller95def091999-11-25 00:26:21 +11001021 if (fd >= 0) {
1022 (void) ioctl(fd, TIOCNOTTY, NULL);
1023 close(fd);
1024 }
1025#endif /* TIOCNOTTY */
1026 }
1027 /* Reinitialize the log (because of the fork above). */
Kevin Stevesec84dc12000-12-13 17:45:15 +00001028 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +11001029
Damien Miller95def091999-11-25 00:26:21 +11001030 /* Initialize the random number generator. */
1031 arc4random_stir();
1032
1033 /* Chdir to the root directory so that the current disk can be
1034 unmounted if desired. */
1035 chdir("/");
Damien Miller9f0f5c62001-12-21 14:45:46 +11001036
Ben Lindstromde71cda2001-03-24 00:43:26 +00001037 /* ignore SIGPIPE */
1038 signal(SIGPIPE, SIG_IGN);
Damien Miller95def091999-11-25 00:26:21 +11001039
Damien Miller95def091999-11-25 00:26:21 +11001040 /* Start listening for a socket, unless started from inetd. */
1041 if (inetd_flag) {
Ben Lindstrom206941f2001-04-15 14:27:16 +00001042 int s1;
Damien Miller95def091999-11-25 00:26:21 +11001043 s1 = dup(0); /* Make sure descriptors 0, 1, and 2 are in use. */
Ben Lindstrom206941f2001-04-15 14:27:16 +00001044 dup(s1);
Damien Miller95def091999-11-25 00:26:21 +11001045 sock_in = dup(0);
1046 sock_out = dup(1);
Damien Miller994cf142000-07-21 10:19:44 +10001047 startup_pipe = -1;
Damien Millereba71ba2000-04-29 23:57:08 +10001048 /*
1049 * We intentionally do not close the descriptors 0, 1, and 2
1050 * as our code for setting the descriptors won\'t work if
1051 * ttyfd happens to be one of those.
1052 */
Damien Miller95def091999-11-25 00:26:21 +11001053 debug("inetd sockets after dupping: %d, %d", sock_in, sock_out);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001054 if (options.protocol & SSH_PROTO_1)
Ben Lindstromca42d5f2001-03-09 18:25:32 +00001055 generate_ephemeral_server_key();
Damien Miller95def091999-11-25 00:26:21 +11001056 } else {
Damien Miller34132e52000-01-14 15:45:46 +11001057 for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
1058 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1059 continue;
1060 if (num_listen_socks >= MAX_LISTEN_SOCKS)
1061 fatal("Too many listen sockets. "
1062 "Enlarge MAX_LISTEN_SOCKS");
1063 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
1064 ntop, sizeof(ntop), strport, sizeof(strport),
1065 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
1066 error("getnameinfo failed");
1067 continue;
1068 }
1069 /* Create socket for listening. */
1070 listen_sock = socket(ai->ai_family, SOCK_STREAM, 0);
1071 if (listen_sock < 0) {
1072 /* kernel may not support ipv6 */
1073 verbose("socket: %.100s", strerror(errno));
1074 continue;
1075 }
1076 if (fcntl(listen_sock, F_SETFL, O_NONBLOCK) < 0) {
1077 error("listen_sock O_NONBLOCK: %s", strerror(errno));
1078 close(listen_sock);
1079 continue;
1080 }
1081 /*
1082 * Set socket options. We try to make the port
1083 * reusable and have it close as fast as possible
1084 * without waiting in unnecessary wait states on
1085 * close.
1086 */
1087 setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
Ben Lindstrom733a2352002-03-05 01:31:28 +00001088 &on, sizeof(on));
Damien Miller34132e52000-01-14 15:45:46 +11001089 linger.l_onoff = 1;
1090 linger.l_linger = 5;
1091 setsockopt(listen_sock, SOL_SOCKET, SO_LINGER,
Ben Lindstrom733a2352002-03-05 01:31:28 +00001092 &linger, sizeof(linger));
Damien Miller95def091999-11-25 00:26:21 +11001093
Damien Miller34132e52000-01-14 15:45:46 +11001094 debug("Bind to port %s on %s.", strport, ntop);
Damien Miller95def091999-11-25 00:26:21 +11001095
Damien Miller34132e52000-01-14 15:45:46 +11001096 /* Bind the socket to the desired port. */
Damien Miller0a4e27d2001-02-18 12:36:39 +11001097 if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1098 if (!ai->ai_next)
1099 error("Bind to port %s on %s failed: %.200s.",
1100 strport, ntop, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11001101 close(listen_sock);
1102 continue;
1103 }
1104 listen_socks[num_listen_socks] = listen_sock;
1105 num_listen_socks++;
Damien Miller95def091999-11-25 00:26:21 +11001106
Damien Miller34132e52000-01-14 15:45:46 +11001107 /* Start listening on the port. */
1108 log("Server listening on %s port %s.", ntop, strport);
1109 if (listen(listen_sock, 5) < 0)
1110 fatal("listen: %.100s", strerror(errno));
1111
Damien Miller95def091999-11-25 00:26:21 +11001112 }
Damien Miller34132e52000-01-14 15:45:46 +11001113 freeaddrinfo(options.listen_addrs);
1114
1115 if (!num_listen_socks)
1116 fatal("Cannot bind any address.");
1117
Ben Lindstrom98097862001-06-25 05:10:20 +00001118 if (options.protocol & SSH_PROTO_1)
1119 generate_ephemeral_server_key();
1120
1121 /*
1122 * Arrange to restart on SIGHUP. The handler needs
1123 * listen_sock.
1124 */
1125 signal(SIGHUP, sighup_handler);
1126
1127 signal(SIGTERM, sigterm_handler);
1128 signal(SIGQUIT, sigterm_handler);
1129
1130 /* Arrange SIGCHLD to be caught. */
1131 signal(SIGCHLD, main_sigchld_handler);
1132
1133 /* Write out the pid file after the sigterm handler is setup */
Damien Miller95def091999-11-25 00:26:21 +11001134 if (!debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +11001135 /*
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001136 * Record our pid in /var/run/sshd.pid to make it
1137 * easier to kill the correct sshd. We don't want to
1138 * do this before the bind above because the bind will
Damien Miller5428f641999-11-25 11:54:57 +11001139 * fail if there already is a daemon, and this will
1140 * overwrite any old pid in the file.
1141 */
Damien Millerbac2d8a2000-09-05 16:13:06 +11001142 f = fopen(options.pid_file, "wb");
Damien Miller95def091999-11-25 00:26:21 +11001143 if (f) {
Ben Lindstrom46c16222000-12-22 01:43:59 +00001144 fprintf(f, "%u\n", (u_int) getpid());
Damien Miller95def091999-11-25 00:26:21 +11001145 fclose(f);
1146 }
1147 }
Damien Miller95def091999-11-25 00:26:21 +11001148
Damien Miller34132e52000-01-14 15:45:46 +11001149 /* setup fd set for listen */
Damien Miller37023962000-07-11 17:31:38 +10001150 fdset = NULL;
Damien Miller34132e52000-01-14 15:45:46 +11001151 maxfd = 0;
1152 for (i = 0; i < num_listen_socks; i++)
1153 if (listen_socks[i] > maxfd)
1154 maxfd = listen_socks[i];
Damien Miller37023962000-07-11 17:31:38 +10001155 /* pipes connected to unauthenticated childs */
1156 startup_pipes = xmalloc(options.max_startups * sizeof(int));
1157 for (i = 0; i < options.max_startups; i++)
1158 startup_pipes[i] = -1;
Damien Miller34132e52000-01-14 15:45:46 +11001159
Damien Miller5428f641999-11-25 11:54:57 +11001160 /*
1161 * Stay listening for connections until the system crashes or
1162 * the daemon is killed with a signal.
1163 */
Damien Miller95def091999-11-25 00:26:21 +11001164 for (;;) {
1165 if (received_sighup)
1166 sighup_restart();
Damien Miller37023962000-07-11 17:31:38 +10001167 if (fdset != NULL)
1168 xfree(fdset);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001169 fdsetsz = howmany(maxfd+1, NFDBITS) * sizeof(fd_mask);
Damien Miller37023962000-07-11 17:31:38 +10001170 fdset = (fd_set *)xmalloc(fdsetsz);
Damien Miller34132e52000-01-14 15:45:46 +11001171 memset(fdset, 0, fdsetsz);
Damien Miller37023962000-07-11 17:31:38 +10001172
Damien Miller34132e52000-01-14 15:45:46 +11001173 for (i = 0; i < num_listen_socks; i++)
1174 FD_SET(listen_socks[i], fdset);
Damien Miller37023962000-07-11 17:31:38 +10001175 for (i = 0; i < options.max_startups; i++)
1176 if (startup_pipes[i] != -1)
1177 FD_SET(startup_pipes[i], fdset);
1178
1179 /* Wait in select until there is a connection. */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001180 ret = select(maxfd+1, fdset, NULL, NULL, NULL);
1181 if (ret < 0 && errno != EINTR)
1182 error("select: %.100s", strerror(errno));
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001183 if (received_sigterm) {
1184 log("Received signal %d; terminating.",
Ben Lindstromf8f065b2001-12-06 17:52:16 +00001185 (int) received_sigterm);
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001186 close_listen_socks();
1187 unlink(options.pid_file);
1188 exit(255);
1189 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001190 if (key_used && key_do_regen) {
Ben Lindstromca42d5f2001-03-09 18:25:32 +00001191 generate_ephemeral_server_key();
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001192 key_used = 0;
1193 key_do_regen = 0;
Damien Miller34132e52000-01-14 15:45:46 +11001194 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001195 if (ret < 0)
1196 continue;
1197
Damien Miller37023962000-07-11 17:31:38 +10001198 for (i = 0; i < options.max_startups; i++)
1199 if (startup_pipes[i] != -1 &&
1200 FD_ISSET(startup_pipes[i], fdset)) {
1201 /*
1202 * the read end of the pipe is ready
1203 * if the child has closed the pipe
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001204 * after successful authentication
Damien Miller37023962000-07-11 17:31:38 +10001205 * or if the child has died
1206 */
1207 close(startup_pipes[i]);
1208 startup_pipes[i] = -1;
1209 startups--;
1210 }
Damien Miller34132e52000-01-14 15:45:46 +11001211 for (i = 0; i < num_listen_socks; i++) {
1212 if (!FD_ISSET(listen_socks[i], fdset))
Damien Miller95def091999-11-25 00:26:21 +11001213 continue;
Damien Miller37023962000-07-11 17:31:38 +10001214 fromlen = sizeof(from);
1215 newsock = accept(listen_socks[i], (struct sockaddr *)&from,
1216 &fromlen);
1217 if (newsock < 0) {
1218 if (errno != EINTR && errno != EWOULDBLOCK)
1219 error("accept: %.100s", strerror(errno));
1220 continue;
1221 }
1222 if (fcntl(newsock, F_SETFL, 0) < 0) {
1223 error("newsock del O_NONBLOCK: %s", strerror(errno));
Damien Miller72c336d2001-12-21 12:44:28 +11001224 close(newsock);
Damien Miller37023962000-07-11 17:31:38 +10001225 continue;
1226 }
Damien Miller942da032000-08-18 13:59:06 +10001227 if (drop_connection(startups) == 1) {
1228 debug("drop connection #%d", startups);
Damien Miller37023962000-07-11 17:31:38 +10001229 close(newsock);
1230 continue;
1231 }
1232 if (pipe(startup_p) == -1) {
1233 close(newsock);
1234 continue;
1235 }
1236
1237 for (j = 0; j < options.max_startups; j++)
1238 if (startup_pipes[j] == -1) {
1239 startup_pipes[j] = startup_p[0];
1240 if (maxfd < startup_p[0])
1241 maxfd = startup_p[0];
1242 startups++;
1243 break;
1244 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001245
Damien Miller5428f641999-11-25 11:54:57 +11001246 /*
Damien Miller37023962000-07-11 17:31:38 +10001247 * Got connection. Fork a child to handle it, unless
1248 * we are in debugging mode.
Damien Miller5428f641999-11-25 11:54:57 +11001249 */
Damien Miller37023962000-07-11 17:31:38 +10001250 if (debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +11001251 /*
Damien Miller37023962000-07-11 17:31:38 +10001252 * In debugging mode. Close the listening
1253 * socket, and start processing the
1254 * connection without forking.
Damien Miller5428f641999-11-25 11:54:57 +11001255 */
Damien Miller37023962000-07-11 17:31:38 +10001256 debug("Server will not fork when running in debugging mode.");
Damien Miller34132e52000-01-14 15:45:46 +11001257 close_listen_socks();
Damien Miller95def091999-11-25 00:26:21 +11001258 sock_in = newsock;
1259 sock_out = newsock;
Damien Miller4d97ba22000-07-11 18:15:50 +10001260 startup_pipe = -1;
Damien Miller182ee6e2000-07-12 09:45:27 +10001261 pid = getpid();
Damien Miller95def091999-11-25 00:26:21 +11001262 break;
Damien Miller37023962000-07-11 17:31:38 +10001263 } else {
1264 /*
1265 * Normal production daemon. Fork, and have
1266 * the child process the connection. The
1267 * parent continues listening.
1268 */
1269 if ((pid = fork()) == 0) {
1270 /*
1271 * Child. Close the listening and max_startup
1272 * sockets. Start using the accepted socket.
1273 * Reinitialize logging (since our pid has
1274 * changed). We break out of the loop to handle
1275 * the connection.
1276 */
1277 startup_pipe = startup_p[1];
Ben Lindstromd84df982001-12-06 16:35:40 +00001278 close_startup_pipes();
Damien Miller37023962000-07-11 17:31:38 +10001279 close_listen_socks();
1280 sock_in = newsock;
1281 sock_out = newsock;
Kevin Stevesec84dc12000-12-13 17:45:15 +00001282 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller37023962000-07-11 17:31:38 +10001283 break;
1284 }
Damien Miller95def091999-11-25 00:26:21 +11001285 }
Damien Miller37023962000-07-11 17:31:38 +10001286
1287 /* Parent. Stay in the loop. */
1288 if (pid < 0)
1289 error("fork: %.100s", strerror(errno));
1290 else
1291 debug("Forked child %d.", pid);
1292
1293 close(startup_p[1]);
1294
1295 /* Mark that the key has been used (it was "given" to the child). */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001296 if ((options.protocol & SSH_PROTO_1) &&
1297 key_used == 0) {
1298 /* Schedule server key regeneration alarm. */
1299 signal(SIGALRM, key_regeneration_alarm);
1300 alarm(options.key_regeneration_time);
1301 key_used = 1;
1302 }
Damien Miller37023962000-07-11 17:31:38 +10001303
1304 arc4random_stir();
1305
1306 /* Close the new socket (the child is now taking care of it). */
1307 close(newsock);
Damien Miller95def091999-11-25 00:26:21 +11001308 }
Damien Miller34132e52000-01-14 15:45:46 +11001309 /* child process check (or debug mode) */
1310 if (num_listen_socks < 0)
1311 break;
Damien Miller95def091999-11-25 00:26:21 +11001312 }
1313 }
1314
1315 /* This is the child processing a new connection. */
1316
Damien Miller5428f641999-11-25 11:54:57 +11001317 /*
1318 * Disable the key regeneration alarm. We will not regenerate the
1319 * key since we are no longer in a position to give it to anyone. We
1320 * will not restart on SIGHUP since it no longer makes sense.
1321 */
Damien Miller95def091999-11-25 00:26:21 +11001322 alarm(0);
1323 signal(SIGALRM, SIG_DFL);
1324 signal(SIGHUP, SIG_DFL);
1325 signal(SIGTERM, SIG_DFL);
1326 signal(SIGQUIT, SIG_DFL);
1327 signal(SIGCHLD, SIG_DFL);
Damien Miller4e0f5e12000-08-29 11:05:50 +11001328 signal(SIGINT, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001329
Damien Miller5428f641999-11-25 11:54:57 +11001330 /*
1331 * Set socket options for the connection. We want the socket to
1332 * close as fast as possible without waiting for anything. If the
1333 * connection is not a socket, these will do nothing.
1334 */
1335 /* setsockopt(sock_in, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on)); */
Damien Miller95def091999-11-25 00:26:21 +11001336 linger.l_onoff = 1;
1337 linger.l_linger = 5;
Ben Lindstrom733a2352002-03-05 01:31:28 +00001338 setsockopt(sock_in, SOL_SOCKET, SO_LINGER, &linger, sizeof(linger));
Damien Miller95def091999-11-25 00:26:21 +11001339
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001340 /* Set keepalives if requested. */
1341 if (options.keepalives &&
Ben Lindstrom733a2352002-03-05 01:31:28 +00001342 setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, &on,
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001343 sizeof(on)) < 0)
1344 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
1345
Damien Miller5428f641999-11-25 11:54:57 +11001346 /*
1347 * Register our connection. This turns encryption off because we do
1348 * not have a key.
1349 */
Damien Miller95def091999-11-25 00:26:21 +11001350 packet_set_connection(sock_in, sock_out);
1351
1352 remote_port = get_remote_port();
1353 remote_ip = get_remote_ipaddr();
1354
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001355#ifdef LIBWRAP
Damien Miller6a4a4b92001-11-12 11:07:11 +11001356 /* Check whether logins are denied from this host. */
Damien Miller95def091999-11-25 00:26:21 +11001357 {
1358 struct request_info req;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001359
Ben Lindstromce89dac2001-09-12 16:58:04 +00001360 request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, 0);
Damien Miller95def091999-11-25 00:26:21 +11001361 fromhost(&req);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001362
Damien Miller95def091999-11-25 00:26:21 +11001363 if (!hosts_access(&req)) {
Damien Miller6a4a4b92001-11-12 11:07:11 +11001364 debug("Connection refused by tcp wrapper");
Ben Lindstrom7de696e2001-03-29 00:45:12 +00001365 refuse(&req);
Damien Miller6a4a4b92001-11-12 11:07:11 +11001366 /* NOTREACHED */
1367 fatal("libwrap refuse returns");
Damien Miller95def091999-11-25 00:26:21 +11001368 }
Damien Miller95def091999-11-25 00:26:21 +11001369 }
Damien Miller34132e52000-01-14 15:45:46 +11001370#endif /* LIBWRAP */
Damien Miller6a4a4b92001-11-12 11:07:11 +11001371
Damien Miller95def091999-11-25 00:26:21 +11001372 /* Log the connection. */
1373 verbose("Connection from %.500s port %d", remote_ip, remote_port);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001374
Damien Miller5428f641999-11-25 11:54:57 +11001375 /*
1376 * We don\'t want to listen forever unless the other side
1377 * successfully authenticates itself. So we set up an alarm which is
1378 * cleared after successful authentication. A limit of zero
1379 * indicates no limit. Note that we don\'t set the alarm in debugging
1380 * mode; it is just annoying to have the server exit just when you
1381 * are about to discover the bug.
1382 */
Damien Miller95def091999-11-25 00:26:21 +11001383 signal(SIGALRM, grace_alarm_handler);
1384 if (!debug_flag)
1385 alarm(options.login_grace_time);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001386
Damien Millerb38eff82000-04-01 11:09:21 +10001387 sshd_exchange_identification(sock_in, sock_out);
Damien Miller5428f641999-11-25 11:54:57 +11001388 /*
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001389 * Check that the connection comes from a privileged port.
1390 * Rhosts-Authentication only makes sense from priviledged
Damien Miller5428f641999-11-25 11:54:57 +11001391 * programs. Of course, if the intruder has root access on his local
1392 * machine, he can connect from any port. So do not use these
1393 * authentication methods from machines that you do not trust.
1394 */
Damien Miller654c03f2002-02-13 13:54:44 +11001395 if (options.rhosts_authentication &&
1396 (remote_port >= IPPORT_RESERVED ||
1397 remote_port < IPPORT_RESERVED / 2)) {
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001398 debug("Rhosts Authentication disabled, "
Damien Miller00b61642001-11-12 10:51:23 +11001399 "originating port %d not trusted.", remote_port);
Damien Miller95def091999-11-25 00:26:21 +11001400 options.rhosts_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +11001401 }
Ben Lindstromec95ed92001-07-04 04:21:14 +00001402#if defined(KRB4) && !defined(KRB5)
Damien Miller34132e52000-01-14 15:45:46 +11001403 if (!packet_connection_is_ipv4() &&
1404 options.kerberos_authentication) {
1405 debug("Kerberos Authentication disabled, only available for IPv4.");
1406 options.kerberos_authentication = 0;
1407 }
Ben Lindstromec95ed92001-07-04 04:21:14 +00001408#endif /* KRB4 && !KRB5 */
Ben Lindstromf79aeff2001-02-10 21:27:11 +00001409#ifdef AFS
1410 /* If machine has AFS, set process authentication group. */
1411 if (k_hasafs()) {
1412 k_setpag();
1413 k_unlog();
1414 }
1415#endif /* AFS */
Damien Miller34132e52000-01-14 15:45:46 +11001416
Damien Miller95def091999-11-25 00:26:21 +11001417 packet_set_nonblocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001418
Ben Lindstrom943481c2002-03-22 03:43:46 +00001419 if (use_privsep)
1420 if ((authctxt = privsep_preauth()) != NULL)
1421 goto authenticated;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001422
Damien Miller396691a2000-01-20 22:44:08 +11001423 /* perform the key exchange */
Damien Miller396691a2000-01-20 22:44:08 +11001424 /* authenticate user and start session */
Damien Millerefb4afe2000-04-12 18:45:05 +10001425 if (compat20) {
1426 do_ssh2_kex();
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +00001427 authctxt = do_authentication2();
Damien Millerefb4afe2000-04-12 18:45:05 +10001428 } else {
1429 do_ssh1_kex();
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +00001430 authctxt = do_authentication();
Damien Millerefb4afe2000-04-12 18:45:05 +10001431 }
Ben Lindstrom943481c2002-03-22 03:43:46 +00001432 /*
1433 * If we use privilege separation, the unprivileged child transfers
1434 * the current keystate and exits
1435 */
1436 if (use_privsep) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001437 mm_send_keystate(monitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001438 exit(0);
Ben Lindstrom943481c2002-03-22 03:43:46 +00001439 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001440
1441 authenticated:
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001442 /*
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001443 * In privilege separation, we fork another child and prepare
1444 * file descriptor passing.
1445 */
1446 if (use_privsep) {
Ben Lindstrom943481c2002-03-22 03:43:46 +00001447 privsep_postauth(authctxt);
1448 /* the monitor process [priv] will not return */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001449 if (!compat20)
1450 destroy_sensitive_data();
1451 }
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +00001452
1453 /* Perform session preparation. */
1454 do_authenticated(authctxt);
1455
Damien Miller3a5b0232002-03-13 13:19:42 +11001456 /* The connection has been terminated. */
1457 verbose("Closing connection to %.100s", remote_ip);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001458
Damien Millerbeb4ba51999-12-28 15:09:35 +11001459#ifdef USE_PAM
Damien Millere72b7af1999-12-30 15:08:44 +11001460 finish_pam();
Damien Millerbeb4ba51999-12-28 15:09:35 +11001461#endif /* USE_PAM */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001462
Damien Miller95def091999-11-25 00:26:21 +11001463 packet_close();
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001464
1465 if (use_privsep)
1466 mm_terminate();
1467
Damien Miller95def091999-11-25 00:26:21 +11001468 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001469}
1470
Damien Miller95def091999-11-25 00:26:21 +11001471/*
Ben Lindstromabcb1452002-03-22 01:10:21 +00001472 * Decrypt session_key_int using our private server key and private host key
1473 * (key with larger modulus first).
1474 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001475int
Ben Lindstromabcb1452002-03-22 01:10:21 +00001476ssh1_session_key(BIGNUM *session_key_int)
1477{
1478 int rsafail = 0;
1479
1480 if (BN_cmp(sensitive_data.server_key->rsa->n, sensitive_data.ssh1_host_key->rsa->n) > 0) {
1481 /* Server key has bigger modulus. */
1482 if (BN_num_bits(sensitive_data.server_key->rsa->n) <
1483 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1484 fatal("do_connection: %s: server_key %d < host_key %d + SSH_KEY_BITS_RESERVED %d",
1485 get_remote_ipaddr(),
1486 BN_num_bits(sensitive_data.server_key->rsa->n),
1487 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1488 SSH_KEY_BITS_RESERVED);
1489 }
1490 if (rsa_private_decrypt(session_key_int, session_key_int,
1491 sensitive_data.server_key->rsa) <= 0)
1492 rsafail++;
1493 if (rsa_private_decrypt(session_key_int, session_key_int,
1494 sensitive_data.ssh1_host_key->rsa) <= 0)
1495 rsafail++;
1496 } else {
1497 /* Host key has bigger modulus (or they are equal). */
1498 if (BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) <
1499 BN_num_bits(sensitive_data.server_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1500 fatal("do_connection: %s: host_key %d < server_key %d + SSH_KEY_BITS_RESERVED %d",
1501 get_remote_ipaddr(),
1502 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1503 BN_num_bits(sensitive_data.server_key->rsa->n),
1504 SSH_KEY_BITS_RESERVED);
1505 }
1506 if (rsa_private_decrypt(session_key_int, session_key_int,
1507 sensitive_data.ssh1_host_key->rsa) < 0)
1508 rsafail++;
1509 if (rsa_private_decrypt(session_key_int, session_key_int,
1510 sensitive_data.server_key->rsa) < 0)
1511 rsafail++;
1512 }
1513 return (rsafail);
1514}
1515/*
Damien Miller396691a2000-01-20 22:44:08 +11001516 * SSH1 key exchange
Damien Miller95def091999-11-25 00:26:21 +11001517 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001518static void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001519do_ssh1_kex(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001520{
Damien Miller95def091999-11-25 00:26:21 +11001521 int i, len;
Damien Miller7650bc62001-01-30 09:27:26 +11001522 int rsafail = 0;
Damien Miller95def091999-11-25 00:26:21 +11001523 BIGNUM *session_key_int;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001524 u_char session_key[SSH_SESSION_KEY_LENGTH];
1525 u_char cookie[8];
1526 u_int cipher_type, auth_mask, protocol_flags;
Damien Miller95def091999-11-25 00:26:21 +11001527 u_int32_t rand = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001528
Damien Miller5428f641999-11-25 11:54:57 +11001529 /*
1530 * Generate check bytes that the client must send back in the user
1531 * packet in order for it to be accepted; this is used to defy ip
1532 * spoofing attacks. Note that this only works against somebody
1533 * doing IP spoofing from a remote machine; any machine on the local
1534 * network can still see outgoing packets and catch the random
1535 * cookie. This only affects rhosts authentication, and this is one
1536 * of the reasons why it is inherently insecure.
1537 */
Damien Miller95def091999-11-25 00:26:21 +11001538 for (i = 0; i < 8; i++) {
1539 if (i % 4 == 0)
1540 rand = arc4random();
Damien Miller396691a2000-01-20 22:44:08 +11001541 cookie[i] = rand & 0xff;
Damien Miller95def091999-11-25 00:26:21 +11001542 rand >>= 8;
1543 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001544
Damien Miller5428f641999-11-25 11:54:57 +11001545 /*
1546 * Send our public key. We include in the packet 64 bits of random
1547 * data that must be matched in the reply in order to prevent IP
1548 * spoofing.
1549 */
Damien Miller95def091999-11-25 00:26:21 +11001550 packet_start(SSH_SMSG_PUBLIC_KEY);
1551 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001552 packet_put_char(cookie[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001553
Damien Miller95def091999-11-25 00:26:21 +11001554 /* Store our public server RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001555 packet_put_int(BN_num_bits(sensitive_data.server_key->rsa->n));
1556 packet_put_bignum(sensitive_data.server_key->rsa->e);
1557 packet_put_bignum(sensitive_data.server_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001558
Damien Miller95def091999-11-25 00:26:21 +11001559 /* Store our public host RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001560 packet_put_int(BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
1561 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->e);
1562 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001563
Damien Miller95def091999-11-25 00:26:21 +11001564 /* Put protocol flags. */
1565 packet_put_int(SSH_PROTOFLAG_HOST_IN_FWD_OPEN);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001566
Damien Miller95def091999-11-25 00:26:21 +11001567 /* Declare which ciphers we support. */
Damien Miller874d77b2000-10-14 16:23:11 +11001568 packet_put_int(cipher_mask_ssh1(0));
Damien Miller95def091999-11-25 00:26:21 +11001569
1570 /* Declare supported authentication types. */
1571 auth_mask = 0;
1572 if (options.rhosts_authentication)
1573 auth_mask |= 1 << SSH_AUTH_RHOSTS;
1574 if (options.rhosts_rsa_authentication)
1575 auth_mask |= 1 << SSH_AUTH_RHOSTS_RSA;
1576 if (options.rsa_authentication)
1577 auth_mask |= 1 << SSH_AUTH_RSA;
Ben Lindstromec95ed92001-07-04 04:21:14 +00001578#if defined(KRB4) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +11001579 if (options.kerberos_authentication)
1580 auth_mask |= 1 << SSH_AUTH_KERBEROS;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001581#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +00001582#if defined(AFS) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +11001583 if (options.kerberos_tgt_passing)
1584 auth_mask |= 1 << SSH_PASS_KERBEROS_TGT;
Ben Lindstromec95ed92001-07-04 04:21:14 +00001585#endif
1586#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +11001587 if (options.afs_token_passing)
1588 auth_mask |= 1 << SSH_PASS_AFS_TOKEN;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001589#endif
Ben Lindstrom551ea372001-06-05 18:56:16 +00001590 if (options.challenge_response_authentication == 1)
Damien Miller95def091999-11-25 00:26:21 +11001591 auth_mask |= 1 << SSH_AUTH_TIS;
Damien Miller95def091999-11-25 00:26:21 +11001592 if (options.password_authentication)
1593 auth_mask |= 1 << SSH_AUTH_PASSWORD;
1594 packet_put_int(auth_mask);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001595
Damien Miller95def091999-11-25 00:26:21 +11001596 /* Send the packet and wait for it to be sent. */
1597 packet_send();
1598 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001599
Damien Miller0bc1bd82000-11-13 22:57:25 +11001600 debug("Sent %d bit server key and %d bit host key.",
1601 BN_num_bits(sensitive_data.server_key->rsa->n),
1602 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001603
Damien Miller95def091999-11-25 00:26:21 +11001604 /* Read clients reply (cipher type and session key). */
Damien Millerdff50992002-01-22 23:16:32 +11001605 packet_read_expect(SSH_CMSG_SESSION_KEY);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001606
Damien Miller50945fa1999-12-09 10:31:37 +11001607 /* Get cipher type and check whether we accept this. */
Damien Miller95def091999-11-25 00:26:21 +11001608 cipher_type = packet_get_char();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001609
Damien Miller874d77b2000-10-14 16:23:11 +11001610 if (!(cipher_mask_ssh1(0) & (1 << cipher_type)))
Damien Miller50945fa1999-12-09 10:31:37 +11001611 packet_disconnect("Warning: client selects unsupported cipher.");
1612
Damien Miller95def091999-11-25 00:26:21 +11001613 /* Get check bytes from the packet. These must match those we
1614 sent earlier with the public key packet. */
1615 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001616 if (cookie[i] != packet_get_char())
Damien Miller95def091999-11-25 00:26:21 +11001617 packet_disconnect("IP Spoofing check bytes do not match.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001618
Damien Miller95def091999-11-25 00:26:21 +11001619 debug("Encryption type: %.200s", cipher_name(cipher_type));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001620
Damien Miller95def091999-11-25 00:26:21 +11001621 /* Get the encrypted integer. */
Damien Millerda755162002-01-22 23:09:22 +11001622 if ((session_key_int = BN_new()) == NULL)
1623 fatal("do_ssh1_kex: BN_new failed");
Damien Millerd432ccf2002-01-22 23:14:44 +11001624 packet_get_bignum(session_key_int);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001625
Damien Miller95def091999-11-25 00:26:21 +11001626 protocol_flags = packet_get_int();
1627 packet_set_protocol_flags(protocol_flags);
Damien Miller48b03fc2002-01-22 23:11:40 +11001628 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001629
Ben Lindstromabcb1452002-03-22 01:10:21 +00001630 /* Decrypt session_key_int using host/server keys */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001631 rsafail = PRIVSEP(ssh1_session_key(session_key_int));
1632
Damien Miller5428f641999-11-25 11:54:57 +11001633 /*
1634 * Extract session key from the decrypted integer. The key is in the
1635 * least significant 256 bits of the integer; the first byte of the
1636 * key is in the highest bits.
1637 */
Damien Miller7650bc62001-01-30 09:27:26 +11001638 if (!rsafail) {
1639 BN_mask_bits(session_key_int, sizeof(session_key) * 8);
1640 len = BN_num_bytes(session_key_int);
1641 if (len < 0 || len > sizeof(session_key)) {
1642 error("do_connection: bad session key len from %s: "
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001643 "session_key_int %d > sizeof(session_key) %lu",
1644 get_remote_ipaddr(), len, (u_long)sizeof(session_key));
Damien Miller7650bc62001-01-30 09:27:26 +11001645 rsafail++;
1646 } else {
1647 memset(session_key, 0, sizeof(session_key));
1648 BN_bn2bin(session_key_int,
1649 session_key + sizeof(session_key) - len);
Ben Lindstromeb648a72001-03-05 06:00:29 +00001650
1651 compute_session_id(session_id, cookie,
1652 sensitive_data.ssh1_host_key->rsa->n,
1653 sensitive_data.server_key->rsa->n);
1654 /*
1655 * Xor the first 16 bytes of the session key with the
1656 * session id.
1657 */
1658 for (i = 0; i < 16; i++)
1659 session_key[i] ^= session_id[i];
Damien Miller7650bc62001-01-30 09:27:26 +11001660 }
1661 }
1662 if (rsafail) {
Ben Lindstromeb648a72001-03-05 06:00:29 +00001663 int bytes = BN_num_bytes(session_key_int);
Ben Lindstrom13c5d3b2002-02-26 18:00:48 +00001664 u_char *buf = xmalloc(bytes);
Ben Lindstromeb648a72001-03-05 06:00:29 +00001665 MD5_CTX md;
1666
Damien Miller7650bc62001-01-30 09:27:26 +11001667 log("do_connection: generating a fake encryption key");
Ben Lindstromeb648a72001-03-05 06:00:29 +00001668 BN_bn2bin(session_key_int, buf);
1669 MD5_Init(&md);
1670 MD5_Update(&md, buf, bytes);
1671 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1672 MD5_Final(session_key, &md);
1673 MD5_Init(&md);
1674 MD5_Update(&md, session_key, 16);
1675 MD5_Update(&md, buf, bytes);
1676 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1677 MD5_Final(session_key + 16, &md);
1678 memset(buf, 0, bytes);
1679 xfree(buf);
Ben Lindstrom941ac822001-03-05 06:25:23 +00001680 for (i = 0; i < 16; i++)
1681 session_id[i] = session_key[i] ^ session_key[i + 16];
Damien Miller7650bc62001-01-30 09:27:26 +11001682 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001683 /* Destroy the private and public keys. No longer. */
Damien Miller3a5b0232002-03-13 13:19:42 +11001684 destroy_sensitive_data();
Ben Lindstromeb648a72001-03-05 06:00:29 +00001685
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001686 if (use_privsep)
1687 mm_ssh1_session_id(session_id);
1688
Damien Miller396691a2000-01-20 22:44:08 +11001689 /* Destroy the decrypted integer. It is no longer needed. */
1690 BN_clear_free(session_key_int);
1691
Damien Miller95def091999-11-25 00:26:21 +11001692 /* Set the session key. From this on all communications will be encrypted. */
1693 packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, cipher_type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001694
Damien Miller95def091999-11-25 00:26:21 +11001695 /* Destroy our copy of the session key. It is no longer needed. */
1696 memset(session_key, 0, sizeof(session_key));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001697
Damien Miller95def091999-11-25 00:26:21 +11001698 debug("Received session key; encryption turned on.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001699
Damien Miller95def091999-11-25 00:26:21 +11001700 /* Send an acknowledgement packet. Note that this packet is sent encrypted. */
1701 packet_start(SSH_SMSG_SUCCESS);
1702 packet_send();
1703 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001704}
Damien Millerefb4afe2000-04-12 18:45:05 +10001705
1706/*
1707 * SSH2 key exchange: diffie-hellman-group1-sha1
1708 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001709static void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001710do_ssh2_kex(void)
Damien Millerefb4afe2000-04-12 18:45:05 +10001711{
Damien Millerefb4afe2000-04-12 18:45:05 +10001712 Kex *kex;
Damien Millerefb4afe2000-04-12 18:45:05 +10001713
Damien Miller78928792000-04-12 20:17:38 +10001714 if (options.ciphers != NULL) {
Damien Miller4af51302000-04-16 11:18:38 +10001715 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
Damien Miller78928792000-04-12 20:17:38 +10001716 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
1717 }
Damien Millera0ff4662001-03-30 10:49:35 +10001718 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
1719 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
1720 myproposal[PROPOSAL_ENC_ALGS_STOC] =
1721 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
1722
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001723 if (options.macs != NULL) {
1724 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
1725 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
1726 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001727 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = list_hostkey_types();
1728
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001729 /* start key exchange */
Ben Lindstrom238abf62001-04-04 17:52:53 +00001730 kex = kex_setup(myproposal);
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +00001731 kex->server = 1;
1732 kex->client_version_string=client_version_string;
1733 kex->server_version_string=server_version_string;
1734 kex->load_host_key=&get_hostkey_by_type;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001735 kex->host_key_index=&get_hostkey_index;
Damien Millerefb4afe2000-04-12 18:45:05 +10001736
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001737 xxx_kex = kex;
1738
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001739 dispatch_run(DISPATCH_BLOCK, &kex->done, kex);
Damien Miller874d77b2000-10-14 16:23:11 +11001740
Ben Lindstrom2d90e002001-04-04 02:00:54 +00001741 session_id2 = kex->session_id;
1742 session_id2_len = kex->session_id_len;
1743
Damien Miller874d77b2000-10-14 16:23:11 +11001744#ifdef DEBUG_KEXDH
1745 /* send 1st encrypted/maced/compressed message */
1746 packet_start(SSH2_MSG_IGNORE);
1747 packet_put_cstring("markus");
1748 packet_send();
1749 packet_write_wait();
1750#endif
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +00001751 debug("KEX done");
Damien Millerefb4afe2000-04-12 18:45:05 +10001752}