blob: feea3ce2c5ca3aedafa5385e2fa201f6390240a0 [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 Lindstrom23e0f662002-06-21 01:09:47 +000045RCSID("$OpenBSD: sshd.c,v 1.246 2002/06/20 23:05:56 markus 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>
Kevin Steves0ea1d9d2002-04-25 18:17:04 +000051#ifdef HAVE_SECUREWARE
52#include <sys/security.h>
53#include <prot.h>
54#endif
Ben Lindstrom226cfa02001-01-22 05:34:40 +000055
56#include "ssh.h"
57#include "ssh1.h"
58#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100059#include "xmalloc.h"
60#include "rsa.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000061#include "sshpty.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100062#include "packet.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100063#include "mpaux.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000064#include "log.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100065#include "servconf.h"
66#include "uidswap.h"
67#include "compat.h"
Damien Millerb38eff82000-04-01 11:09:21 +100068#include "buffer.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000069#include "cipher.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100070#include "kex.h"
Damien Millerb38eff82000-04-01 11:09:21 +100071#include "key.h"
Damien Miller874d77b2000-10-14 16:23:11 +110072#include "dh.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100073#include "myproposal.h"
Damien Millereba71ba2000-04-29 23:57:08 +100074#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000075#include "pathnames.h"
76#include "atomicio.h"
77#include "canohost.h"
78#include "auth.h"
79#include "misc.h"
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000080#include "dispatch.h"
Ben Lindstrom1bae4042001-10-03 17:46:39 +000081#include "channels.h"
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +000082#include "session.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000083#include "monitor_mm.h"
84#include "monitor.h"
85#include "monitor_wrap.h"
86#include "monitor_fdpass.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100087
88#ifdef LIBWRAP
89#include <tcpd.h>
90#include <syslog.h>
91int allow_severity = LOG_INFO;
92int deny_severity = LOG_WARNING;
93#endif /* LIBWRAP */
94
95#ifndef O_NOCTTY
96#define O_NOCTTY 0
97#endif
98
Ben Lindstrom49a79c02000-11-17 03:47:20 +000099#ifdef HAVE___PROGNAME
100extern char *__progname;
101#else
102char *__progname;
103#endif
104
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000105/* Server configuration options. */
106ServerOptions options;
107
108/* Name of the server configuration file. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000109char *config_file_name = _PATH_SERVER_CONFIG_FILE;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000110
Damien Miller4af51302000-04-16 11:18:38 +1000111/*
Damien Miller34132e52000-01-14 15:45:46 +1100112 * Flag indicating whether IPv4 or IPv6. This can be set on the command line.
113 * Default value is AF_UNSPEC means both IPv4 and IPv6.
114 */
Damien Miller7d80e342000-01-19 14:36:49 +1100115#ifdef IPV4_DEFAULT
116int IPv4or6 = AF_INET;
117#else
Damien Miller34132e52000-01-14 15:45:46 +1100118int IPv4or6 = AF_UNSPEC;
Damien Miller7d80e342000-01-19 14:36:49 +1100119#endif
Damien Miller34132e52000-01-14 15:45:46 +1100120
Damien Miller95def091999-11-25 00:26:21 +1100121/*
122 * Debug mode flag. This can be set on the command line. If debug
123 * mode is enabled, extra debugging output will be sent to the system
124 * log, the daemon will not go to background, and will exit after processing
125 * the first connection.
126 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000127int debug_flag = 0;
128
Ben Lindstrom794325a2001-08-06 21:09:07 +0000129/* Flag indicating that the daemon should only test the configuration and keys. */
130int test_flag = 0;
131
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000132/* Flag indicating that the daemon is being started from inetd. */
133int inetd_flag = 0;
134
Ben Lindstromc72745a2000-12-02 19:03:54 +0000135/* Flag indicating that sshd should not detach and become a daemon. */
136int no_daemon_flag = 0;
137
Damien Miller5ce662a1999-11-11 17:57:39 +1100138/* debug goes to stderr unless inetd_flag is set */
139int log_stderr = 0;
140
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000141/* Saved arguments to main(). */
142char **saved_argv;
Damien Millerb8c656e2000-06-28 15:22:41 +1000143int saved_argc;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000144
Damien Miller5428f641999-11-25 11:54:57 +1100145/*
Damien Miller34132e52000-01-14 15:45:46 +1100146 * The sockets that the server is listening; this is used in the SIGHUP
147 * signal handler.
Damien Miller5428f641999-11-25 11:54:57 +1100148 */
Damien Miller34132e52000-01-14 15:45:46 +1100149#define MAX_LISTEN_SOCKS 16
150int listen_socks[MAX_LISTEN_SOCKS];
151int num_listen_socks = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000152
Damien Miller5428f641999-11-25 11:54:57 +1100153/*
154 * the client's version string, passed by sshd2 in compat mode. if != NULL,
155 * sshd will skip the version-number exchange
156 */
Damien Miller95def091999-11-25 00:26:21 +1100157char *client_version_string = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000158char *server_version_string = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000159
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000160/* for rekeying XXX fixme */
161Kex *xxx_kex;
162
Damien Miller5428f641999-11-25 11:54:57 +1100163/*
164 * Any really sensitive data in the application is contained in this
165 * structure. The idea is that this structure could be locked into memory so
166 * that the pages do not get written into swap. However, there are some
167 * problems. The private key contains BIGNUMs, and we do not (in principle)
168 * have access to the internals of them, and locking just the structure is
169 * not very useful. Currently, memory locking is not implemented.
170 */
Damien Miller95def091999-11-25 00:26:21 +1100171struct {
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000172 Key *server_key; /* ephemeral server key */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100173 Key *ssh1_host_key; /* ssh1 host key */
174 Key **host_keys; /* all private host keys */
175 int have_ssh1_key;
176 int have_ssh2_key;
Ben Lindstromeb648a72001-03-05 06:00:29 +0000177 u_char ssh1_cookie[SSH_SESSION_KEY_LENGTH];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000178} sensitive_data;
179
Damien Miller5428f641999-11-25 11:54:57 +1100180/*
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000181 * Flag indicating whether the RSA server key needs to be regenerated.
182 * Is set in the SIGALRM handler and cleared when the key is regenerated.
Damien Miller5428f641999-11-25 11:54:57 +1100183 */
Ben Lindstrom5e71c542001-12-06 16:48:14 +0000184static volatile sig_atomic_t key_do_regen = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000185
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000186/* This is set to true when a signal is received. */
Ben Lindstrom5e71c542001-12-06 16:48:14 +0000187static volatile sig_atomic_t received_sighup = 0;
188static volatile sig_atomic_t received_sigterm = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000189
Damien Millerb38eff82000-04-01 11:09:21 +1000190/* session identifier, used by RSA-auth */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000191u_char session_id[16];
Damien Millerb38eff82000-04-01 11:09:21 +1000192
Damien Millereba71ba2000-04-29 23:57:08 +1000193/* same for ssh2 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000194u_char *session_id2 = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000195int session_id2_len = 0;
196
Damien Miller942da032000-08-18 13:59:06 +1000197/* record remote hostname or ip */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000198u_int utmp_len = MAXHOSTNAMELEN;
Damien Miller942da032000-08-18 13:59:06 +1000199
Ben Lindstromd84df982001-12-06 16:35:40 +0000200/* options.max_startup sized array of fd ints */
201int *startup_pipes = NULL;
202int startup_pipe; /* in child */
203
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000204/* variables used for privilege separation */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000205extern struct monitor *pmonitor;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000206extern int use_privsep;
207
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000208/* Prototypes for various functions defined later in this file. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000209void destroy_sensitive_data(void);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000210void demote_sensitive_data(void);
Damien Miller98c7ad62000-03-09 21:27:49 +1100211
Ben Lindstrombba81212001-06-25 05:01:22 +0000212static void do_ssh1_kex(void);
213static void do_ssh2_kex(void);
Damien Miller874d77b2000-10-14 16:23:11 +1100214
Damien Miller98c7ad62000-03-09 21:27:49 +1100215/*
Damien Miller34132e52000-01-14 15:45:46 +1100216 * Close all listening sockets
217 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000218static void
Damien Miller34132e52000-01-14 15:45:46 +1100219close_listen_socks(void)
220{
221 int i;
222 for (i = 0; i < num_listen_socks; i++)
223 close(listen_socks[i]);
224 num_listen_socks = -1;
225}
226
Ben Lindstromd84df982001-12-06 16:35:40 +0000227static void
228close_startup_pipes(void)
229{
230 int i;
231 if (startup_pipes)
232 for (i = 0; i < options.max_startups; i++)
233 if (startup_pipes[i] != -1)
234 close(startup_pipes[i]);
235}
236
Damien Miller34132e52000-01-14 15:45:46 +1100237/*
Damien Miller95def091999-11-25 00:26:21 +1100238 * Signal handler for SIGHUP. Sshd execs itself when it receives SIGHUP;
239 * the effect is to reread the configuration file (and to regenerate
240 * the server key).
241 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000242static void
Damien Miller95def091999-11-25 00:26:21 +1100243sighup_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000244{
Ben Lindstrom07958482001-12-06 16:19:01 +0000245 int save_errno = errno;
246
Damien Miller95def091999-11-25 00:26:21 +1100247 received_sighup = 1;
248 signal(SIGHUP, sighup_handler);
Ben Lindstrom07958482001-12-06 16:19:01 +0000249 errno = save_errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000250}
251
Damien Miller95def091999-11-25 00:26:21 +1100252/*
253 * Called from the main program after receiving SIGHUP.
254 * Restarts the server.
255 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000256static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000257sighup_restart(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000258{
Damien Miller95def091999-11-25 00:26:21 +1100259 log("Received SIGHUP; restarting.");
Damien Miller34132e52000-01-14 15:45:46 +1100260 close_listen_socks();
Ben Lindstromd84df982001-12-06 16:35:40 +0000261 close_startup_pipes();
Damien Miller95def091999-11-25 00:26:21 +1100262 execv(saved_argv[0], saved_argv);
Kevin Stevesec84dc12000-12-13 17:45:15 +0000263 log("RESTART FAILED: av[0]='%.100s', error: %.100s.", saved_argv[0], strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100264 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000265}
266
Damien Miller95def091999-11-25 00:26:21 +1100267/*
268 * Generic signal handler for terminating signals in the master daemon.
Damien Miller95def091999-11-25 00:26:21 +1100269 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000270static void
Damien Miller95def091999-11-25 00:26:21 +1100271sigterm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000272{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000273 received_sigterm = sig;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000274}
275
Damien Miller95def091999-11-25 00:26:21 +1100276/*
277 * SIGCHLD handler. This is called whenever a child dies. This will then
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000278 * reap any zombies left by exited children.
Damien Miller95def091999-11-25 00:26:21 +1100279 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000280static void
Damien Miller95def091999-11-25 00:26:21 +1100281main_sigchld_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000282{
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000283 pid_t pid;
Damien Miller95def091999-11-25 00:26:21 +1100284 int save_errno = errno;
285 int status;
Damien Miller431f66b1999-11-21 18:31:57 +1100286
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000287 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
288 (pid < 0 && errno == EINTR))
Damien Miller95def091999-11-25 00:26:21 +1100289 ;
Damien Miller431f66b1999-11-21 18:31:57 +1100290
Damien Miller95def091999-11-25 00:26:21 +1100291 signal(SIGCHLD, main_sigchld_handler);
292 errno = save_errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000293}
294
Damien Miller95def091999-11-25 00:26:21 +1100295/*
296 * Signal handler for the alarm after the login grace period has expired.
297 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000298static void
Damien Miller95def091999-11-25 00:26:21 +1100299grace_alarm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000300{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000301 /* XXX no idea how fix this signal handler */
302
Damien Miller95def091999-11-25 00:26:21 +1100303 /* Close the connection. */
304 packet_close();
305
306 /* Log error and exit. */
307 fatal("Timeout before authentication for %s.", get_remote_ipaddr());
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000308}
309
Damien Miller95def091999-11-25 00:26:21 +1100310/*
Damien Miller95def091999-11-25 00:26:21 +1100311 * Signal handler for the key regeneration alarm. Note that this
312 * alarm only occurs in the daemon waiting for connections, and it does not
313 * do anything with the private key or random state before forking.
314 * Thus there should be no concurrency control/asynchronous execution
315 * problems.
316 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000317static void
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000318generate_ephemeral_server_key(void)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100319{
Ben Lindstromeb648a72001-03-05 06:00:29 +0000320 u_int32_t rand = 0;
321 int i;
322
Ben Lindstroma3700052001-04-05 23:26:32 +0000323 verbose("Generating %s%d bit RSA key.",
Damien Millerff75ac42001-03-30 10:50:32 +1000324 sensitive_data.server_key ? "new " : "", options.server_key_bits);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100325 if (sensitive_data.server_key != NULL)
326 key_free(sensitive_data.server_key);
Ben Lindstroma3700052001-04-05 23:26:32 +0000327 sensitive_data.server_key = key_generate(KEY_RSA1,
Damien Millerff75ac42001-03-30 10:50:32 +1000328 options.server_key_bits);
329 verbose("RSA key generation complete.");
Ben Lindstromeb648a72001-03-05 06:00:29 +0000330
331 for (i = 0; i < SSH_SESSION_KEY_LENGTH; i++) {
332 if (i % 4 == 0)
333 rand = arc4random();
334 sensitive_data.ssh1_cookie[i] = rand & 0xff;
335 rand >>= 8;
336 }
337 arc4random_stir();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100338}
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000339
Ben Lindstrombba81212001-06-25 05:01:22 +0000340static void
Damien Miller95def091999-11-25 00:26:21 +1100341key_regeneration_alarm(int sig)
342{
343 int save_errno = errno;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000344 signal(SIGALRM, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +1100345 errno = save_errno;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000346 key_do_regen = 1;
Damien Miller95def091999-11-25 00:26:21 +1100347}
348
Ben Lindstrombba81212001-06-25 05:01:22 +0000349static void
Damien Millerb38eff82000-04-01 11:09:21 +1000350sshd_exchange_identification(int sock_in, int sock_out)
351{
Damien Miller78928792000-04-12 20:17:38 +1000352 int i, mismatch;
Damien Millerb38eff82000-04-01 11:09:21 +1000353 int remote_major, remote_minor;
Damien Miller78928792000-04-12 20:17:38 +1000354 int major, minor;
Damien Millerb38eff82000-04-01 11:09:21 +1000355 char *s;
356 char buf[256]; /* Must not be larger than remote_version. */
357 char remote_version[256]; /* Must be at least as big as buf. */
358
Damien Miller78928792000-04-12 20:17:38 +1000359 if ((options.protocol & SSH_PROTO_1) &&
360 (options.protocol & SSH_PROTO_2)) {
361 major = PROTOCOL_MAJOR_1;
362 minor = 99;
363 } else if (options.protocol & SSH_PROTO_2) {
364 major = PROTOCOL_MAJOR_2;
365 minor = PROTOCOL_MINOR_2;
366 } else {
367 major = PROTOCOL_MAJOR_1;
368 minor = PROTOCOL_MINOR_1;
369 }
370 snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n", major, minor, SSH_VERSION);
Damien Millerb38eff82000-04-01 11:09:21 +1000371 server_version_string = xstrdup(buf);
372
373 if (client_version_string == NULL) {
374 /* Send our protocol version identification. */
375 if (atomicio(write, sock_out, server_version_string, strlen(server_version_string))
376 != strlen(server_version_string)) {
Damien Millere4a0ff42001-11-12 11:06:54 +1100377 log("Could not write ident string to %s", get_remote_ipaddr());
Damien Millerb38eff82000-04-01 11:09:21 +1000378 fatal_cleanup();
379 }
380
Ben Lindstromf666fec2002-06-06 19:51:58 +0000381 /* Read other sides version identification. */
Ben Lindstroma3700052001-04-05 23:26:32 +0000382 memset(buf, 0, sizeof(buf));
Damien Millerb38eff82000-04-01 11:09:21 +1000383 for (i = 0; i < sizeof(buf) - 1; i++) {
Damien Millerbf7f4662000-06-23 10:16:38 +1000384 if (atomicio(read, sock_in, &buf[i], 1) != 1) {
Damien Millere4a0ff42001-11-12 11:06:54 +1100385 log("Did not receive identification string from %s",
Ben Lindstroma9a29e12001-02-20 01:20:47 +0000386 get_remote_ipaddr());
Damien Millerb38eff82000-04-01 11:09:21 +1000387 fatal_cleanup();
388 }
389 if (buf[i] == '\r') {
Ben Lindstrom69d8c072001-03-22 22:45:33 +0000390 buf[i] = 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100391 /* Kludge for F-Secure Macintosh < 1.0.2 */
392 if (i == 12 &&
393 strncmp(buf, "SSH-1.5-W1.0", 12) == 0)
394 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000395 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000396 }
397 if (buf[i] == '\n') {
Ben Lindstrom69d8c072001-03-22 22:45:33 +0000398 buf[i] = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000399 break;
400 }
401 }
402 buf[sizeof(buf) - 1] = 0;
403 client_version_string = xstrdup(buf);
404 }
405
406 /*
407 * Check that the versions match. In future this might accept
408 * several versions and set appropriate flags to handle them.
409 */
410 if (sscanf(client_version_string, "SSH-%d.%d-%[^\n]\n",
411 &remote_major, &remote_minor, remote_version) != 3) {
Damien Miller4af51302000-04-16 11:18:38 +1000412 s = "Protocol mismatch.\n";
Damien Millerb38eff82000-04-01 11:09:21 +1000413 (void) atomicio(write, sock_out, s, strlen(s));
414 close(sock_in);
415 close(sock_out);
416 log("Bad protocol version identification '%.100s' from %s",
417 client_version_string, get_remote_ipaddr());
418 fatal_cleanup();
419 }
420 debug("Client protocol version %d.%d; client software version %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100421 remote_major, remote_minor, remote_version);
Damien Millerb38eff82000-04-01 11:09:21 +1000422
Damien Millerefb4afe2000-04-12 18:45:05 +1000423 compat_datafellows(remote_version);
424
Damien Miller27dbe6f2001-03-19 22:36:20 +1100425 if (datafellows & SSH_BUG_SCANNER) {
426 log("scanned from %s with %s. Don't panic.",
427 get_remote_ipaddr(), client_version_string);
428 fatal_cleanup();
429 }
430
Damien Miller78928792000-04-12 20:17:38 +1000431 mismatch = 0;
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000432 switch (remote_major) {
Damien Millerb38eff82000-04-01 11:09:21 +1000433 case 1:
Damien Millereba71ba2000-04-29 23:57:08 +1000434 if (remote_minor == 99) {
435 if (options.protocol & SSH_PROTO_2)
436 enable_compat20();
437 else
438 mismatch = 1;
439 break;
440 }
Damien Miller78928792000-04-12 20:17:38 +1000441 if (!(options.protocol & SSH_PROTO_1)) {
442 mismatch = 1;
443 break;
444 }
Damien Millerb38eff82000-04-01 11:09:21 +1000445 if (remote_minor < 3) {
Damien Miller37023962000-07-11 17:31:38 +1000446 packet_disconnect("Your ssh version is too old and "
Damien Millerb38eff82000-04-01 11:09:21 +1000447 "is no longer supported. Please install a newer version.");
448 } else if (remote_minor == 3) {
449 /* note that this disables agent-forwarding */
450 enable_compat13();
451 }
Damien Miller78928792000-04-12 20:17:38 +1000452 break;
Damien Millerefb4afe2000-04-12 18:45:05 +1000453 case 2:
Damien Miller78928792000-04-12 20:17:38 +1000454 if (options.protocol & SSH_PROTO_2) {
Damien Millerefb4afe2000-04-12 18:45:05 +1000455 enable_compat20();
456 break;
457 }
458 /* FALLTHROUGH */
Damien Miller4af51302000-04-16 11:18:38 +1000459 default:
Damien Miller78928792000-04-12 20:17:38 +1000460 mismatch = 1;
Damien Millerb38eff82000-04-01 11:09:21 +1000461 break;
462 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000463 chop(server_version_string);
Damien Miller78928792000-04-12 20:17:38 +1000464 debug("Local version string %.200s", server_version_string);
465
466 if (mismatch) {
467 s = "Protocol major versions differ.\n";
468 (void) atomicio(write, sock_out, s, strlen(s));
469 close(sock_in);
470 close(sock_out);
471 log("Protocol major versions differ for %s: %.200s vs. %.200s",
472 get_remote_ipaddr(),
473 server_version_string, client_version_string);
474 fatal_cleanup();
475 }
Damien Millereba71ba2000-04-29 23:57:08 +1000476}
477
478
Damien Miller0bc1bd82000-11-13 22:57:25 +1100479/* Destroy the host and server keys. They will no longer be needed. */
Damien Millereba71ba2000-04-29 23:57:08 +1000480void
481destroy_sensitive_data(void)
482{
Damien Miller0bc1bd82000-11-13 22:57:25 +1100483 int i;
484
485 if (sensitive_data.server_key) {
486 key_free(sensitive_data.server_key);
487 sensitive_data.server_key = NULL;
488 }
Damien Miller9f0f5c62001-12-21 14:45:46 +1100489 for (i = 0; i < options.num_host_key_files; i++) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100490 if (sensitive_data.host_keys[i]) {
491 key_free(sensitive_data.host_keys[i]);
492 sensitive_data.host_keys[i] = NULL;
493 }
494 }
495 sensitive_data.ssh1_host_key = NULL;
Ben Lindstromeb648a72001-03-05 06:00:29 +0000496 memset(sensitive_data.ssh1_cookie, 0, SSH_SESSION_KEY_LENGTH);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100497}
Damien Miller0bc1bd82000-11-13 22:57:25 +1100498
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000499/* Demote private to public keys for network child */
500void
501demote_sensitive_data(void)
502{
503 Key *tmp;
504 int i;
505
506 if (sensitive_data.server_key) {
507 tmp = key_demote(sensitive_data.server_key);
508 key_free(sensitive_data.server_key);
509 sensitive_data.server_key = tmp;
510 }
511
512 for (i = 0; i < options.num_host_key_files; i++) {
513 if (sensitive_data.host_keys[i]) {
514 tmp = key_demote(sensitive_data.host_keys[i]);
515 key_free(sensitive_data.host_keys[i]);
516 sensitive_data.host_keys[i] = tmp;
517 if (tmp->type == KEY_RSA1)
518 sensitive_data.ssh1_host_key = tmp;
519 }
520 }
521
522 /* We do not clear ssh1_host key and cookie. XXX - Okay Niels? */
523}
524
Ben Lindstrom08105192002-03-22 02:50:06 +0000525static void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000526privsep_preauth_child(void)
527{
528 u_int32_t rand[256];
529 int i;
Ben Lindstromc7431342002-03-22 03:11:49 +0000530 struct passwd *pw;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000531
532 /* Enable challenge-response authentication for privilege separation */
533 privsep_challenge_enable();
534
535 for (i = 0; i < 256; i++)
536 rand[i] = arc4random();
537 RAND_seed(rand, sizeof(rand));
538
539 /* Demote the private keys to public keys. */
540 demote_sensitive_data();
541
Ben Lindstromc7431342002-03-22 03:11:49 +0000542 if ((pw = getpwnam(SSH_PRIVSEP_USER)) == NULL)
Damien Miller0150c652002-04-24 09:49:09 +1000543 fatal("Privilege separation user %s does not exist",
544 SSH_PRIVSEP_USER);
Ben Lindstromc7431342002-03-22 03:11:49 +0000545 memset(pw->pw_passwd, 0, strlen(pw->pw_passwd));
546 endpwent();
547
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000548 /* Change our root directory*/
Ben Lindstrom7a7edf72002-03-22 02:42:37 +0000549 if (chroot(_PATH_PRIVSEP_CHROOT_DIR) == -1)
550 fatal("chroot(\"%s\"): %s", _PATH_PRIVSEP_CHROOT_DIR,
551 strerror(errno));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000552 if (chdir("/") == -1)
Ben Lindstrom1ee9ec32002-03-22 03:14:45 +0000553 fatal("chdir(\"/\"): %s", strerror(errno));
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000554
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000555 /* Drop our privileges */
Ben Lindstromc7431342002-03-22 03:11:49 +0000556 debug3("privsep user:group %u:%u", (u_int)pw->pw_uid,
557 (u_int)pw->pw_gid);
558 do_setusercontext(pw);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000559}
560
Ben Lindstrom943481c2002-03-22 03:43:46 +0000561static Authctxt*
562privsep_preauth(void)
563{
564 Authctxt *authctxt = NULL;
565 int status;
566 pid_t pid;
567
568 /* Set up unprivileged child process to deal with network data */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000569 pmonitor = monitor_init();
Ben Lindstrom943481c2002-03-22 03:43:46 +0000570 /* Store a pointer to the kex for later rekeying */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000571 pmonitor->m_pkex = &xxx_kex;
Ben Lindstrom943481c2002-03-22 03:43:46 +0000572
573 pid = fork();
574 if (pid == -1) {
575 fatal("fork of unprivileged child failed");
576 } else if (pid != 0) {
Ben Lindstromce0f6342002-06-11 16:42:49 +0000577 debug2("Network child is on pid %ld", (long)pid);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000578
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000579 close(pmonitor->m_recvfd);
580 authctxt = monitor_child_preauth(pmonitor);
581 close(pmonitor->m_sendfd);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000582
583 /* Sync memory */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000584 monitor_sync(pmonitor);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000585
586 /* Wait for the child's exit status */
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000587 while (waitpid(pid, &status, 0) < 0)
588 if (errno != EINTR)
589 break;
Ben Lindstrom943481c2002-03-22 03:43:46 +0000590 return (authctxt);
591 } else {
592 /* child */
593
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000594 close(pmonitor->m_sendfd);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000595
596 /* Demote the child */
597 if (getuid() == 0 || geteuid() == 0)
598 privsep_preauth_child();
Ben Lindstromf90f58d2002-03-26 01:53:03 +0000599 setproctitle("%s", "[net]");
Ben Lindstrom943481c2002-03-22 03:43:46 +0000600 }
601 return (NULL);
602}
603
Ben Lindstrom08105192002-03-22 02:50:06 +0000604static void
Ben Lindstrom943481c2002-03-22 03:43:46 +0000605privsep_postauth(Authctxt *authctxt)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000606{
607 extern Authctxt *x_authctxt;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000608
609 /* XXX - Remote port forwarding */
610 x_authctxt = authctxt;
611
612 if (authctxt->pw->pw_uid == 0 || options.use_login) {
613 /* File descriptor passing is broken or root login */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000614 monitor_apply_keystate(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000615 use_privsep = 0;
616 return;
617 }
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000618
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000619 /* Authentication complete */
620 alarm(0);
621 if (startup_pipe != -1) {
622 close(startup_pipe);
623 startup_pipe = -1;
624 }
625
626 /* New socket pair */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000627 monitor_reinit(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000628
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000629 pmonitor->m_pid = fork();
630 if (pmonitor->m_pid == -1)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000631 fatal("fork of unprivileged child failed");
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000632 else if (pmonitor->m_pid != 0) {
Ben Lindstromce0f6342002-06-11 16:42:49 +0000633 debug2("User child is on pid %ld", (long)pmonitor->m_pid);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000634 close(pmonitor->m_recvfd);
635 monitor_child_postauth(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000636
637 /* NEVERREACHED */
638 exit(0);
639 }
640
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000641 close(pmonitor->m_sendfd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000642
643 /* Demote the private keys to public keys. */
644 demote_sensitive_data();
645
646 /* Drop privileges */
647 do_setusercontext(authctxt->pw);
648
649 /* It is safe now to apply the key state */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000650 monitor_apply_keystate(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000651}
652
Ben Lindstrombba81212001-06-25 05:01:22 +0000653static char *
Damien Miller0bc1bd82000-11-13 22:57:25 +1100654list_hostkey_types(void)
655{
Damien Miller0e3b8722002-01-22 23:26:38 +1100656 Buffer b;
657 char *p;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100658 int i;
Damien Miller0e3b8722002-01-22 23:26:38 +1100659
660 buffer_init(&b);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100661 for (i = 0; i < options.num_host_key_files; i++) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100662 Key *key = sensitive_data.host_keys[i];
663 if (key == NULL)
664 continue;
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000665 switch (key->type) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100666 case KEY_RSA:
667 case KEY_DSA:
Damien Miller0e3b8722002-01-22 23:26:38 +1100668 if (buffer_len(&b) > 0)
669 buffer_append(&b, ",", 1);
670 p = key_ssh_name(key);
671 buffer_append(&b, p, strlen(p));
Damien Miller0bc1bd82000-11-13 22:57:25 +1100672 break;
673 }
674 }
Damien Miller0e3b8722002-01-22 23:26:38 +1100675 buffer_append(&b, "\0", 1);
676 p = xstrdup(buffer_ptr(&b));
677 buffer_free(&b);
678 debug("list_hostkey_types: %s", p);
679 return p;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100680}
681
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000682Key *
Damien Miller0bc1bd82000-11-13 22:57:25 +1100683get_hostkey_by_type(int type)
684{
685 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100686 for (i = 0; i < options.num_host_key_files; i++) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100687 Key *key = sensitive_data.host_keys[i];
688 if (key != NULL && key->type == type)
689 return key;
690 }
691 return NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000692}
693
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000694Key *
695get_hostkey_by_index(int ind)
696{
697 if (ind < 0 || ind >= options.num_host_key_files)
698 return (NULL);
699 return (sensitive_data.host_keys[ind]);
700}
701
702int
703get_hostkey_index(Key *key)
704{
705 int i;
706 for (i = 0; i < options.num_host_key_files; i++) {
707 if (key == sensitive_data.host_keys[i])
708 return (i);
709 }
710 return (-1);
711}
712
Damien Miller942da032000-08-18 13:59:06 +1000713/*
714 * returns 1 if connection should be dropped, 0 otherwise.
715 * dropping starts at connection #max_startups_begin with a probability
716 * of (max_startups_rate/100). the probability increases linearly until
717 * all connections are dropped for startups > max_startups
718 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000719static int
Damien Miller942da032000-08-18 13:59:06 +1000720drop_connection(int startups)
721{
722 double p, r;
723
724 if (startups < options.max_startups_begin)
725 return 0;
726 if (startups >= options.max_startups)
727 return 1;
728 if (options.max_startups_rate == 100)
729 return 1;
730
731 p = 100 - options.max_startups_rate;
732 p *= startups - options.max_startups_begin;
733 p /= (double) (options.max_startups - options.max_startups_begin);
734 p += options.max_startups_rate;
735 p /= 100.0;
736 r = arc4random() / (double) UINT_MAX;
737
738 debug("drop_connection: p %g, r %g", p, r);
739 return (r < p) ? 1 : 0;
740}
741
Ben Lindstromade03f62001-12-06 18:22:17 +0000742static void
743usage(void)
744{
745 fprintf(stderr, "sshd version %s\n", SSH_VERSION);
746 fprintf(stderr, "Usage: %s [options]\n", __progname);
747 fprintf(stderr, "Options:\n");
748 fprintf(stderr, " -f file Configuration file (default %s)\n", _PATH_SERVER_CONFIG_FILE);
749 fprintf(stderr, " -d Debugging mode (multiple -d means more debugging)\n");
750 fprintf(stderr, " -i Started from inetd\n");
751 fprintf(stderr, " -D Do not fork into daemon mode\n");
752 fprintf(stderr, " -t Only test configuration file and keys\n");
753 fprintf(stderr, " -q Quiet (no logging)\n");
754 fprintf(stderr, " -p port Listen on the specified port (default: 22)\n");
755 fprintf(stderr, " -k seconds Regenerate server key every this many seconds (default: 3600)\n");
756 fprintf(stderr, " -g seconds Grace period for authentication (default: 600)\n");
757 fprintf(stderr, " -b bits Size of server RSA key (default: 768 bits)\n");
758 fprintf(stderr, " -h file File from which to read host key (default: %s)\n",
759 _PATH_HOST_KEY_FILE);
760 fprintf(stderr, " -u len Maximum hostname length for utmp recording\n");
761 fprintf(stderr, " -4 Use IPv4 only\n");
762 fprintf(stderr, " -6 Use IPv6 only\n");
763 fprintf(stderr, " -o option Process the option as if it was read from a configuration file.\n");
764 exit(1);
765}
766
Damien Miller95def091999-11-25 00:26:21 +1100767/*
768 * Main program for the daemon.
769 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000770int
771main(int ac, char **av)
772{
Damien Miller95def091999-11-25 00:26:21 +1100773 extern char *optarg;
774 extern int optind;
Damien Miller37023962000-07-11 17:31:38 +1000775 int opt, sock_in = 0, sock_out = 0, newsock, j, i, fdsetsz, on = 1;
Damien Miller166fca82000-04-20 07:42:21 +1000776 pid_t pid;
Damien Miller34132e52000-01-14 15:45:46 +1100777 socklen_t fromlen;
Damien Miller34132e52000-01-14 15:45:46 +1100778 fd_set *fdset;
779 struct sockaddr_storage from;
Damien Miller95def091999-11-25 00:26:21 +1100780 const char *remote_ip;
781 int remote_port;
Damien Miller95def091999-11-25 00:26:21 +1100782 FILE *f;
783 struct linger linger;
Damien Miller34132e52000-01-14 15:45:46 +1100784 struct addrinfo *ai;
785 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
786 int listen_sock, maxfd;
Damien Miller37023962000-07-11 17:31:38 +1000787 int startup_p[2];
788 int startups = 0;
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +0000789 Authctxt *authctxt;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000790 Key *key;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000791 int ret, key_used = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000792
Kevin Steves0ea1d9d2002-04-25 18:17:04 +0000793#ifdef HAVE_SECUREWARE
794 (void)set_auth_parameters(ac, av);
795#endif
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000796 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000797 init_rng();
798
Kevin Stevesec84dc12000-12-13 17:45:15 +0000799 /* Save argv. */
Damien Millerb8c656e2000-06-28 15:22:41 +1000800 saved_argc = ac;
Damien Miller95def091999-11-25 00:26:21 +1100801 saved_argv = av;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000802
Damien Miller95def091999-11-25 00:26:21 +1100803 /* Initialize configuration options to their default values. */
804 initialize_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000805
Damien Miller95def091999-11-25 00:26:21 +1100806 /* Parse command-line arguments. */
Ben Lindstromade03f62001-12-06 18:22:17 +0000807 while ((opt = getopt(ac, av, "f:p:b:k:h:g:V:u:o:dDeiqtQ46")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100808 switch (opt) {
Damien Miller34132e52000-01-14 15:45:46 +1100809 case '4':
810 IPv4or6 = AF_INET;
811 break;
812 case '6':
813 IPv4or6 = AF_INET6;
814 break;
Damien Miller95def091999-11-25 00:26:21 +1100815 case 'f':
816 config_file_name = optarg;
817 break;
818 case 'd':
Damien Millere4340be2000-09-16 13:29:08 +1100819 if (0 == debug_flag) {
820 debug_flag = 1;
821 options.log_level = SYSLOG_LEVEL_DEBUG1;
822 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
823 options.log_level++;
824 } else {
825 fprintf(stderr, "Too high debugging level.\n");
826 exit(1);
827 }
Damien Miller95def091999-11-25 00:26:21 +1100828 break;
Ben Lindstromc72745a2000-12-02 19:03:54 +0000829 case 'D':
830 no_daemon_flag = 1;
831 break;
Ben Lindstrom9fce9f02001-04-11 23:10:09 +0000832 case 'e':
833 log_stderr = 1;
834 break;
Damien Miller95def091999-11-25 00:26:21 +1100835 case 'i':
836 inetd_flag = 1;
837 break;
838 case 'Q':
Ben Lindstromd5390202001-01-29 08:07:43 +0000839 /* ignored */
Damien Miller95def091999-11-25 00:26:21 +1100840 break;
841 case 'q':
842 options.log_level = SYSLOG_LEVEL_QUIET;
843 break;
844 case 'b':
845 options.server_key_bits = atoi(optarg);
846 break;
847 case 'p':
Damien Miller34132e52000-01-14 15:45:46 +1100848 options.ports_from_cmdline = 1;
Damien Millere4340be2000-09-16 13:29:08 +1100849 if (options.num_ports >= MAX_PORTS) {
850 fprintf(stderr, "too many ports.\n");
851 exit(1);
852 }
Ben Lindstrom19066a12001-04-12 23:39:26 +0000853 options.ports[options.num_ports++] = a2port(optarg);
854 if (options.ports[options.num_ports-1] == 0) {
855 fprintf(stderr, "Bad port number.\n");
856 exit(1);
857 }
Damien Miller95def091999-11-25 00:26:21 +1100858 break;
859 case 'g':
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000860 if ((options.login_grace_time = convtime(optarg)) == -1) {
861 fprintf(stderr, "Invalid login grace time.\n");
862 exit(1);
863 }
Damien Miller95def091999-11-25 00:26:21 +1100864 break;
865 case 'k':
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000866 if ((options.key_regeneration_time = convtime(optarg)) == -1) {
867 fprintf(stderr, "Invalid key regeneration interval.\n");
868 exit(1);
869 }
Damien Miller95def091999-11-25 00:26:21 +1100870 break;
871 case 'h':
Damien Miller0bc1bd82000-11-13 22:57:25 +1100872 if (options.num_host_key_files >= MAX_HOSTKEYS) {
873 fprintf(stderr, "too many host keys.\n");
874 exit(1);
875 }
876 options.host_key_files[options.num_host_key_files++] = optarg;
Damien Miller95def091999-11-25 00:26:21 +1100877 break;
878 case 'V':
879 client_version_string = optarg;
880 /* only makes sense with inetd_flag, i.e. no listen() */
881 inetd_flag = 1;
882 break;
Ben Lindstrom794325a2001-08-06 21:09:07 +0000883 case 't':
884 test_flag = 1;
885 break;
Damien Miller942da032000-08-18 13:59:06 +1000886 case 'u':
887 utmp_len = atoi(optarg);
888 break;
Ben Lindstromade03f62001-12-06 18:22:17 +0000889 case 'o':
Damien Miller9f0f5c62001-12-21 14:45:46 +1100890 if (process_server_config_line(&options, optarg,
Ben Lindstromade03f62001-12-06 18:22:17 +0000891 "command-line", 0) != 0)
Damien Miller9f0f5c62001-12-21 14:45:46 +1100892 exit(1);
Ben Lindstromade03f62001-12-06 18:22:17 +0000893 break;
Damien Miller95def091999-11-25 00:26:21 +1100894 case '?':
895 default:
Ben Lindstromade03f62001-12-06 18:22:17 +0000896 usage();
897 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000898 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000899 }
Ben Lindstrom425fb022001-03-29 00:31:20 +0000900 SSLeay_add_all_algorithms();
Ben Lindstrom908afed2001-10-03 17:34:59 +0000901 channel_set_af(IPv4or6);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000902
Damien Miller34132e52000-01-14 15:45:46 +1100903 /*
904 * Force logging to stderr until we have loaded the private host
905 * key (unless started from inetd)
906 */
Kevin Stevesec84dc12000-12-13 17:45:15 +0000907 log_init(__progname,
Damien Miller5aa5d782002-02-08 22:01:54 +1100908 options.log_level == SYSLOG_LEVEL_NOT_SET ?
909 SYSLOG_LEVEL_INFO : options.log_level,
910 options.log_facility == SYSLOG_FACILITY_NOT_SET ?
911 SYSLOG_FACILITY_AUTH : options.log_facility,
Ben Lindstromd5390202001-01-29 08:07:43 +0000912 !inetd_flag);
Damien Miller34132e52000-01-14 15:45:46 +1100913
Ben Lindstrom6db66ff2001-08-06 23:29:16 +0000914#ifdef _CRAY
915 /* Cray can define user privs drop all prives now!
916 * Not needed on PRIV_SU systems!
917 */
918 drop_cray_privs();
919#endif
920
Damien Miller60bc5172001-03-19 09:38:15 +1100921 seed_rng();
922
Damien Miller95def091999-11-25 00:26:21 +1100923 /* Read server configuration options from the configuration file. */
924 read_server_config(&options, config_file_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000925
Damien Miller95def091999-11-25 00:26:21 +1100926 /* Fill in default values for those options not explicitly set. */
927 fill_default_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000928
Damien Miller95def091999-11-25 00:26:21 +1100929 /* Check that there are no remaining arguments. */
930 if (optind < ac) {
931 fprintf(stderr, "Extra argument %s.\n", av[optind]);
932 exit(1);
933 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000934
Damien Miller95def091999-11-25 00:26:21 +1100935 debug("sshd version %.100s", SSH_VERSION);
Damien Miller2ccf6611999-11-15 15:25:10 +1100936
Damien Miller0bc1bd82000-11-13 22:57:25 +1100937 /* load private host keys */
938 sensitive_data.host_keys = xmalloc(options.num_host_key_files*sizeof(Key*));
Damien Miller9f0f5c62001-12-21 14:45:46 +1100939 for (i = 0; i < options.num_host_key_files; i++)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000940 sensitive_data.host_keys[i] = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100941 sensitive_data.server_key = NULL;
942 sensitive_data.ssh1_host_key = NULL;
943 sensitive_data.have_ssh1_key = 0;
944 sensitive_data.have_ssh2_key = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000945
Damien Miller9f0f5c62001-12-21 14:45:46 +1100946 for (i = 0; i < options.num_host_key_files; i++) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000947 key = key_load_private(options.host_key_files[i], "", NULL);
948 sensitive_data.host_keys[i] = key;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100949 if (key == NULL) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000950 error("Could not load host key: %s",
951 options.host_key_files[i]);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000952 sensitive_data.host_keys[i] = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100953 continue;
954 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000955 switch (key->type) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100956 case KEY_RSA1:
957 sensitive_data.ssh1_host_key = key;
958 sensitive_data.have_ssh1_key = 1;
959 break;
960 case KEY_RSA:
961 case KEY_DSA:
962 sensitive_data.have_ssh2_key = 1;
963 break;
964 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000965 debug("private host key: #%d type %d %s", i, key->type,
966 key_type(key));
Damien Miller0bc1bd82000-11-13 22:57:25 +1100967 }
968 if ((options.protocol & SSH_PROTO_1) && !sensitive_data.have_ssh1_key) {
969 log("Disabling protocol version 1. Could not load host key");
Damien Millereba71ba2000-04-29 23:57:08 +1000970 options.protocol &= ~SSH_PROTO_1;
971 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100972 if ((options.protocol & SSH_PROTO_2) && !sensitive_data.have_ssh2_key) {
973 log("Disabling protocol version 2. Could not load host key");
974 options.protocol &= ~SSH_PROTO_2;
Damien Millereba71ba2000-04-29 23:57:08 +1000975 }
Kevin Stevesadf74cd2001-02-05 14:22:50 +0000976 if (!(options.protocol & (SSH_PROTO_1|SSH_PROTO_2))) {
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000977 log("sshd: no hostkeys available -- exiting.");
Damien Miller95def091999-11-25 00:26:21 +1100978 exit(1);
979 }
Damien Miller95def091999-11-25 00:26:21 +1100980
Damien Millereba71ba2000-04-29 23:57:08 +1000981 /* Check certain values for sanity. */
982 if (options.protocol & SSH_PROTO_1) {
983 if (options.server_key_bits < 512 ||
984 options.server_key_bits > 32768) {
985 fprintf(stderr, "Bad server key size.\n");
986 exit(1);
987 }
988 /*
989 * Check that server and host key lengths differ sufficiently. This
990 * is necessary to make double encryption work with rsaref. Oh, I
991 * hate software patents. I dont know if this can go? Niels
992 */
993 if (options.server_key_bits >
Damien Miller0bc1bd82000-11-13 22:57:25 +1100994 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) - SSH_KEY_BITS_RESERVED &&
Damien Millereba71ba2000-04-29 23:57:08 +1000995 options.server_key_bits <
Damien Miller0bc1bd82000-11-13 22:57:25 +1100996 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
Damien Millereba71ba2000-04-29 23:57:08 +1000997 options.server_key_bits =
Damien Miller0bc1bd82000-11-13 22:57:25 +1100998 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED;
Damien Millereba71ba2000-04-29 23:57:08 +1000999 debug("Forcing server key to %d bits to make it differ from host key.",
1000 options.server_key_bits);
1001 }
1002 }
1003
Ben Lindstroma26ea632002-06-06 20:46:25 +00001004 if (use_privsep) {
1005 struct passwd *pw;
1006 struct stat st;
1007
1008 if ((pw = getpwnam(SSH_PRIVSEP_USER)) == NULL)
1009 fatal("Privilege separation user %s does not exist",
1010 SSH_PRIVSEP_USER);
1011 if ((stat(_PATH_PRIVSEP_CHROOT_DIR, &st) == -1) ||
1012 (S_ISDIR(st.st_mode) == 0))
1013 fatal("Missing privilege separation directory: %s",
1014 _PATH_PRIVSEP_CHROOT_DIR);
1015 }
1016
Ben Lindstrom794325a2001-08-06 21:09:07 +00001017 /* Configuration looks good, so exit if in test mode. */
1018 if (test_flag)
1019 exit(0);
1020
Damien Miller87aea252002-05-10 12:20:24 +10001021 /*
1022 * Clear out any supplemental groups we may have inherited. This
1023 * prevents inadvertent creation of files with bad modes (in the
1024 * portable version at least, it's certainly possible for PAM
1025 * to create a file, and we can't control the code in every
1026 * module which might be used).
1027 */
1028 if (setgroups(0, NULL) < 0)
1029 debug("setgroups() failed: %.200s", strerror(errno));
1030
Damien Millereba71ba2000-04-29 23:57:08 +10001031 /* Initialize the log (it is reinitialized below in case we forked). */
Damien Miller95def091999-11-25 00:26:21 +11001032 if (debug_flag && !inetd_flag)
1033 log_stderr = 1;
Kevin Stevesec84dc12000-12-13 17:45:15 +00001034 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +11001035
Damien Millereba71ba2000-04-29 23:57:08 +10001036 /*
1037 * If not in debugging mode, and not started from inetd, disconnect
1038 * from the controlling terminal, and fork. The original process
1039 * exits.
1040 */
Ben Lindstromc72745a2000-12-02 19:03:54 +00001041 if (!(debug_flag || inetd_flag || no_daemon_flag)) {
Damien Miller95def091999-11-25 00:26:21 +11001042#ifdef TIOCNOTTY
1043 int fd;
1044#endif /* TIOCNOTTY */
1045 if (daemon(0, 0) < 0)
1046 fatal("daemon() failed: %.200s", strerror(errno));
1047
1048 /* Disconnect from the controlling tty. */
1049#ifdef TIOCNOTTY
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001050 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
Damien Miller95def091999-11-25 00:26:21 +11001051 if (fd >= 0) {
1052 (void) ioctl(fd, TIOCNOTTY, NULL);
1053 close(fd);
1054 }
1055#endif /* TIOCNOTTY */
1056 }
1057 /* Reinitialize the log (because of the fork above). */
Kevin Stevesec84dc12000-12-13 17:45:15 +00001058 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +11001059
Damien Miller95def091999-11-25 00:26:21 +11001060 /* Initialize the random number generator. */
1061 arc4random_stir();
1062
1063 /* Chdir to the root directory so that the current disk can be
1064 unmounted if desired. */
1065 chdir("/");
Damien Miller9f0f5c62001-12-21 14:45:46 +11001066
Ben Lindstromde71cda2001-03-24 00:43:26 +00001067 /* ignore SIGPIPE */
1068 signal(SIGPIPE, SIG_IGN);
Damien Miller95def091999-11-25 00:26:21 +11001069
Damien Miller95def091999-11-25 00:26:21 +11001070 /* Start listening for a socket, unless started from inetd. */
1071 if (inetd_flag) {
Ben Lindstrom206941f2001-04-15 14:27:16 +00001072 int s1;
Damien Miller95def091999-11-25 00:26:21 +11001073 s1 = dup(0); /* Make sure descriptors 0, 1, and 2 are in use. */
Ben Lindstrom206941f2001-04-15 14:27:16 +00001074 dup(s1);
Damien Miller95def091999-11-25 00:26:21 +11001075 sock_in = dup(0);
1076 sock_out = dup(1);
Damien Miller994cf142000-07-21 10:19:44 +10001077 startup_pipe = -1;
Damien Millereba71ba2000-04-29 23:57:08 +10001078 /*
1079 * We intentionally do not close the descriptors 0, 1, and 2
1080 * as our code for setting the descriptors won\'t work if
1081 * ttyfd happens to be one of those.
1082 */
Damien Miller95def091999-11-25 00:26:21 +11001083 debug("inetd sockets after dupping: %d, %d", sock_in, sock_out);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001084 if (options.protocol & SSH_PROTO_1)
Ben Lindstromca42d5f2001-03-09 18:25:32 +00001085 generate_ephemeral_server_key();
Damien Miller95def091999-11-25 00:26:21 +11001086 } else {
Damien Miller34132e52000-01-14 15:45:46 +11001087 for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
1088 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1089 continue;
1090 if (num_listen_socks >= MAX_LISTEN_SOCKS)
1091 fatal("Too many listen sockets. "
1092 "Enlarge MAX_LISTEN_SOCKS");
1093 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
1094 ntop, sizeof(ntop), strport, sizeof(strport),
1095 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
1096 error("getnameinfo failed");
1097 continue;
1098 }
1099 /* Create socket for listening. */
1100 listen_sock = socket(ai->ai_family, SOCK_STREAM, 0);
1101 if (listen_sock < 0) {
1102 /* kernel may not support ipv6 */
1103 verbose("socket: %.100s", strerror(errno));
1104 continue;
1105 }
1106 if (fcntl(listen_sock, F_SETFL, O_NONBLOCK) < 0) {
1107 error("listen_sock O_NONBLOCK: %s", strerror(errno));
1108 close(listen_sock);
1109 continue;
1110 }
1111 /*
1112 * Set socket options. We try to make the port
1113 * reusable and have it close as fast as possible
1114 * without waiting in unnecessary wait states on
1115 * close.
1116 */
1117 setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
Ben Lindstrom733a2352002-03-05 01:31:28 +00001118 &on, sizeof(on));
Damien Miller34132e52000-01-14 15:45:46 +11001119 linger.l_onoff = 1;
1120 linger.l_linger = 5;
1121 setsockopt(listen_sock, SOL_SOCKET, SO_LINGER,
Ben Lindstrom733a2352002-03-05 01:31:28 +00001122 &linger, sizeof(linger));
Damien Miller95def091999-11-25 00:26:21 +11001123
Damien Miller34132e52000-01-14 15:45:46 +11001124 debug("Bind to port %s on %s.", strport, ntop);
Damien Miller95def091999-11-25 00:26:21 +11001125
Damien Miller34132e52000-01-14 15:45:46 +11001126 /* Bind the socket to the desired port. */
Damien Miller0a4e27d2001-02-18 12:36:39 +11001127 if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1128 if (!ai->ai_next)
1129 error("Bind to port %s on %s failed: %.200s.",
1130 strport, ntop, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11001131 close(listen_sock);
1132 continue;
1133 }
1134 listen_socks[num_listen_socks] = listen_sock;
1135 num_listen_socks++;
Damien Miller95def091999-11-25 00:26:21 +11001136
Damien Miller34132e52000-01-14 15:45:46 +11001137 /* Start listening on the port. */
1138 log("Server listening on %s port %s.", ntop, strport);
1139 if (listen(listen_sock, 5) < 0)
1140 fatal("listen: %.100s", strerror(errno));
1141
Damien Miller95def091999-11-25 00:26:21 +11001142 }
Damien Miller34132e52000-01-14 15:45:46 +11001143 freeaddrinfo(options.listen_addrs);
1144
1145 if (!num_listen_socks)
1146 fatal("Cannot bind any address.");
1147
Ben Lindstrom98097862001-06-25 05:10:20 +00001148 if (options.protocol & SSH_PROTO_1)
1149 generate_ephemeral_server_key();
1150
1151 /*
1152 * Arrange to restart on SIGHUP. The handler needs
1153 * listen_sock.
1154 */
1155 signal(SIGHUP, sighup_handler);
1156
1157 signal(SIGTERM, sigterm_handler);
1158 signal(SIGQUIT, sigterm_handler);
1159
1160 /* Arrange SIGCHLD to be caught. */
1161 signal(SIGCHLD, main_sigchld_handler);
1162
1163 /* Write out the pid file after the sigterm handler is setup */
Damien Miller95def091999-11-25 00:26:21 +11001164 if (!debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +11001165 /*
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001166 * Record our pid in /var/run/sshd.pid to make it
1167 * easier to kill the correct sshd. We don't want to
1168 * do this before the bind above because the bind will
Damien Miller5428f641999-11-25 11:54:57 +11001169 * fail if there already is a daemon, and this will
1170 * overwrite any old pid in the file.
1171 */
Damien Millerbac2d8a2000-09-05 16:13:06 +11001172 f = fopen(options.pid_file, "wb");
Damien Miller95def091999-11-25 00:26:21 +11001173 if (f) {
Ben Lindstromce0f6342002-06-11 16:42:49 +00001174 fprintf(f, "%ld\n", (long) getpid());
Damien Miller95def091999-11-25 00:26:21 +11001175 fclose(f);
1176 }
1177 }
Damien Miller95def091999-11-25 00:26:21 +11001178
Damien Miller34132e52000-01-14 15:45:46 +11001179 /* setup fd set for listen */
Damien Miller37023962000-07-11 17:31:38 +10001180 fdset = NULL;
Damien Miller34132e52000-01-14 15:45:46 +11001181 maxfd = 0;
1182 for (i = 0; i < num_listen_socks; i++)
1183 if (listen_socks[i] > maxfd)
1184 maxfd = listen_socks[i];
Damien Miller37023962000-07-11 17:31:38 +10001185 /* pipes connected to unauthenticated childs */
1186 startup_pipes = xmalloc(options.max_startups * sizeof(int));
1187 for (i = 0; i < options.max_startups; i++)
1188 startup_pipes[i] = -1;
Damien Miller34132e52000-01-14 15:45:46 +11001189
Damien Miller5428f641999-11-25 11:54:57 +11001190 /*
1191 * Stay listening for connections until the system crashes or
1192 * the daemon is killed with a signal.
1193 */
Damien Miller95def091999-11-25 00:26:21 +11001194 for (;;) {
1195 if (received_sighup)
1196 sighup_restart();
Damien Miller37023962000-07-11 17:31:38 +10001197 if (fdset != NULL)
1198 xfree(fdset);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001199 fdsetsz = howmany(maxfd+1, NFDBITS) * sizeof(fd_mask);
Damien Miller37023962000-07-11 17:31:38 +10001200 fdset = (fd_set *)xmalloc(fdsetsz);
Damien Miller34132e52000-01-14 15:45:46 +11001201 memset(fdset, 0, fdsetsz);
Damien Miller37023962000-07-11 17:31:38 +10001202
Damien Miller34132e52000-01-14 15:45:46 +11001203 for (i = 0; i < num_listen_socks; i++)
1204 FD_SET(listen_socks[i], fdset);
Damien Miller37023962000-07-11 17:31:38 +10001205 for (i = 0; i < options.max_startups; i++)
1206 if (startup_pipes[i] != -1)
1207 FD_SET(startup_pipes[i], fdset);
1208
1209 /* Wait in select until there is a connection. */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001210 ret = select(maxfd+1, fdset, NULL, NULL, NULL);
1211 if (ret < 0 && errno != EINTR)
1212 error("select: %.100s", strerror(errno));
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001213 if (received_sigterm) {
1214 log("Received signal %d; terminating.",
Ben Lindstromf8f065b2001-12-06 17:52:16 +00001215 (int) received_sigterm);
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001216 close_listen_socks();
1217 unlink(options.pid_file);
1218 exit(255);
1219 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001220 if (key_used && key_do_regen) {
Ben Lindstromca42d5f2001-03-09 18:25:32 +00001221 generate_ephemeral_server_key();
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001222 key_used = 0;
1223 key_do_regen = 0;
Damien Miller34132e52000-01-14 15:45:46 +11001224 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001225 if (ret < 0)
1226 continue;
1227
Damien Miller37023962000-07-11 17:31:38 +10001228 for (i = 0; i < options.max_startups; i++)
1229 if (startup_pipes[i] != -1 &&
1230 FD_ISSET(startup_pipes[i], fdset)) {
1231 /*
1232 * the read end of the pipe is ready
1233 * if the child has closed the pipe
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001234 * after successful authentication
Damien Miller37023962000-07-11 17:31:38 +10001235 * or if the child has died
1236 */
1237 close(startup_pipes[i]);
1238 startup_pipes[i] = -1;
1239 startups--;
1240 }
Damien Miller34132e52000-01-14 15:45:46 +11001241 for (i = 0; i < num_listen_socks; i++) {
1242 if (!FD_ISSET(listen_socks[i], fdset))
Damien Miller95def091999-11-25 00:26:21 +11001243 continue;
Damien Miller37023962000-07-11 17:31:38 +10001244 fromlen = sizeof(from);
1245 newsock = accept(listen_socks[i], (struct sockaddr *)&from,
1246 &fromlen);
1247 if (newsock < 0) {
1248 if (errno != EINTR && errno != EWOULDBLOCK)
1249 error("accept: %.100s", strerror(errno));
1250 continue;
1251 }
1252 if (fcntl(newsock, F_SETFL, 0) < 0) {
1253 error("newsock del O_NONBLOCK: %s", strerror(errno));
Damien Miller72c336d2001-12-21 12:44:28 +11001254 close(newsock);
Damien Miller37023962000-07-11 17:31:38 +10001255 continue;
1256 }
Damien Miller942da032000-08-18 13:59:06 +10001257 if (drop_connection(startups) == 1) {
1258 debug("drop connection #%d", startups);
Damien Miller37023962000-07-11 17:31:38 +10001259 close(newsock);
1260 continue;
1261 }
1262 if (pipe(startup_p) == -1) {
1263 close(newsock);
1264 continue;
1265 }
1266
1267 for (j = 0; j < options.max_startups; j++)
1268 if (startup_pipes[j] == -1) {
1269 startup_pipes[j] = startup_p[0];
1270 if (maxfd < startup_p[0])
1271 maxfd = startup_p[0];
1272 startups++;
1273 break;
1274 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001275
Damien Miller5428f641999-11-25 11:54:57 +11001276 /*
Damien Miller37023962000-07-11 17:31:38 +10001277 * Got connection. Fork a child to handle it, unless
1278 * we are in debugging mode.
Damien Miller5428f641999-11-25 11:54:57 +11001279 */
Damien Miller37023962000-07-11 17:31:38 +10001280 if (debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +11001281 /*
Damien Miller37023962000-07-11 17:31:38 +10001282 * In debugging mode. Close the listening
1283 * socket, and start processing the
1284 * connection without forking.
Damien Miller5428f641999-11-25 11:54:57 +11001285 */
Damien Miller37023962000-07-11 17:31:38 +10001286 debug("Server will not fork when running in debugging mode.");
Damien Miller34132e52000-01-14 15:45:46 +11001287 close_listen_socks();
Damien Miller95def091999-11-25 00:26:21 +11001288 sock_in = newsock;
1289 sock_out = newsock;
Damien Miller4d97ba22000-07-11 18:15:50 +10001290 startup_pipe = -1;
Damien Miller182ee6e2000-07-12 09:45:27 +10001291 pid = getpid();
Damien Miller95def091999-11-25 00:26:21 +11001292 break;
Damien Miller37023962000-07-11 17:31:38 +10001293 } else {
1294 /*
1295 * Normal production daemon. Fork, and have
1296 * the child process the connection. The
1297 * parent continues listening.
1298 */
1299 if ((pid = fork()) == 0) {
1300 /*
1301 * Child. Close the listening and max_startup
1302 * sockets. Start using the accepted socket.
1303 * Reinitialize logging (since our pid has
1304 * changed). We break out of the loop to handle
1305 * the connection.
1306 */
1307 startup_pipe = startup_p[1];
Ben Lindstromd84df982001-12-06 16:35:40 +00001308 close_startup_pipes();
Damien Miller37023962000-07-11 17:31:38 +10001309 close_listen_socks();
1310 sock_in = newsock;
1311 sock_out = newsock;
Kevin Stevesec84dc12000-12-13 17:45:15 +00001312 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller37023962000-07-11 17:31:38 +10001313 break;
1314 }
Damien Miller95def091999-11-25 00:26:21 +11001315 }
Damien Miller37023962000-07-11 17:31:38 +10001316
1317 /* Parent. Stay in the loop. */
1318 if (pid < 0)
1319 error("fork: %.100s", strerror(errno));
1320 else
Ben Lindstromce0f6342002-06-11 16:42:49 +00001321 debug("Forked child %ld.", (long)pid);
Damien Miller37023962000-07-11 17:31:38 +10001322
1323 close(startup_p[1]);
1324
1325 /* Mark that the key has been used (it was "given" to the child). */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001326 if ((options.protocol & SSH_PROTO_1) &&
1327 key_used == 0) {
1328 /* Schedule server key regeneration alarm. */
1329 signal(SIGALRM, key_regeneration_alarm);
1330 alarm(options.key_regeneration_time);
1331 key_used = 1;
1332 }
Damien Miller37023962000-07-11 17:31:38 +10001333
1334 arc4random_stir();
1335
1336 /* Close the new socket (the child is now taking care of it). */
1337 close(newsock);
Damien Miller95def091999-11-25 00:26:21 +11001338 }
Damien Miller34132e52000-01-14 15:45:46 +11001339 /* child process check (or debug mode) */
1340 if (num_listen_socks < 0)
1341 break;
Damien Miller95def091999-11-25 00:26:21 +11001342 }
1343 }
1344
1345 /* This is the child processing a new connection. */
1346
Damien Miller5428f641999-11-25 11:54:57 +11001347 /*
Ben Lindstrom17401b62002-05-15 16:17:56 +00001348 * Create a new session and process group since the 4.4BSD
1349 * setlogin() affects the entire process group. We don't
1350 * want the child to be able to affect the parent.
1351 */
Kevin Stevesc5041ac2002-05-21 17:50:21 +00001352#if 0
1353 /* XXX: this breaks Solaris */
Ben Lindstrom17401b62002-05-15 16:17:56 +00001354 if (setsid() < 0)
1355 error("setsid: %.100s", strerror(errno));
Kevin Stevesc5041ac2002-05-21 17:50:21 +00001356#endif
Ben Lindstrom17401b62002-05-15 16:17:56 +00001357
1358 /*
Damien Miller5428f641999-11-25 11:54:57 +11001359 * Disable the key regeneration alarm. We will not regenerate the
1360 * key since we are no longer in a position to give it to anyone. We
1361 * will not restart on SIGHUP since it no longer makes sense.
1362 */
Damien Miller95def091999-11-25 00:26:21 +11001363 alarm(0);
1364 signal(SIGALRM, SIG_DFL);
1365 signal(SIGHUP, SIG_DFL);
1366 signal(SIGTERM, SIG_DFL);
1367 signal(SIGQUIT, SIG_DFL);
1368 signal(SIGCHLD, SIG_DFL);
Damien Miller4e0f5e12000-08-29 11:05:50 +11001369 signal(SIGINT, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001370
Damien Miller5428f641999-11-25 11:54:57 +11001371 /*
1372 * Set socket options for the connection. We want the socket to
1373 * close as fast as possible without waiting for anything. If the
1374 * connection is not a socket, these will do nothing.
1375 */
1376 /* setsockopt(sock_in, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on)); */
Damien Miller95def091999-11-25 00:26:21 +11001377 linger.l_onoff = 1;
1378 linger.l_linger = 5;
Ben Lindstrom733a2352002-03-05 01:31:28 +00001379 setsockopt(sock_in, SOL_SOCKET, SO_LINGER, &linger, sizeof(linger));
Damien Miller95def091999-11-25 00:26:21 +11001380
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001381 /* Set keepalives if requested. */
1382 if (options.keepalives &&
Ben Lindstrom733a2352002-03-05 01:31:28 +00001383 setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, &on,
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001384 sizeof(on)) < 0)
1385 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
1386
Damien Miller5428f641999-11-25 11:54:57 +11001387 /*
1388 * Register our connection. This turns encryption off because we do
1389 * not have a key.
1390 */
Damien Miller95def091999-11-25 00:26:21 +11001391 packet_set_connection(sock_in, sock_out);
1392
1393 remote_port = get_remote_port();
1394 remote_ip = get_remote_ipaddr();
1395
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001396#ifdef LIBWRAP
Damien Miller6a4a4b92001-11-12 11:07:11 +11001397 /* Check whether logins are denied from this host. */
Damien Miller95def091999-11-25 00:26:21 +11001398 {
1399 struct request_info req;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001400
Ben Lindstromce89dac2001-09-12 16:58:04 +00001401 request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, 0);
Damien Miller95def091999-11-25 00:26:21 +11001402 fromhost(&req);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001403
Damien Miller95def091999-11-25 00:26:21 +11001404 if (!hosts_access(&req)) {
Damien Miller6a4a4b92001-11-12 11:07:11 +11001405 debug("Connection refused by tcp wrapper");
Ben Lindstrom7de696e2001-03-29 00:45:12 +00001406 refuse(&req);
Damien Miller6a4a4b92001-11-12 11:07:11 +11001407 /* NOTREACHED */
1408 fatal("libwrap refuse returns");
Damien Miller95def091999-11-25 00:26:21 +11001409 }
Damien Miller95def091999-11-25 00:26:21 +11001410 }
Damien Miller34132e52000-01-14 15:45:46 +11001411#endif /* LIBWRAP */
Damien Miller6a4a4b92001-11-12 11:07:11 +11001412
Damien Miller95def091999-11-25 00:26:21 +11001413 /* Log the connection. */
1414 verbose("Connection from %.500s port %d", remote_ip, remote_port);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001415
Damien Miller5428f641999-11-25 11:54:57 +11001416 /*
1417 * We don\'t want to listen forever unless the other side
1418 * successfully authenticates itself. So we set up an alarm which is
1419 * cleared after successful authentication. A limit of zero
1420 * indicates no limit. Note that we don\'t set the alarm in debugging
1421 * mode; it is just annoying to have the server exit just when you
1422 * are about to discover the bug.
1423 */
Damien Miller95def091999-11-25 00:26:21 +11001424 signal(SIGALRM, grace_alarm_handler);
1425 if (!debug_flag)
1426 alarm(options.login_grace_time);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001427
Damien Millerb38eff82000-04-01 11:09:21 +10001428 sshd_exchange_identification(sock_in, sock_out);
Damien Miller5428f641999-11-25 11:54:57 +11001429 /*
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001430 * Check that the connection comes from a privileged port.
Ben Lindstromf666fec2002-06-06 19:51:58 +00001431 * Rhosts-Authentication only makes sense from privileged
Damien Miller5428f641999-11-25 11:54:57 +11001432 * programs. Of course, if the intruder has root access on his local
1433 * machine, he can connect from any port. So do not use these
1434 * authentication methods from machines that you do not trust.
1435 */
Damien Miller654c03f2002-02-13 13:54:44 +11001436 if (options.rhosts_authentication &&
1437 (remote_port >= IPPORT_RESERVED ||
1438 remote_port < IPPORT_RESERVED / 2)) {
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001439 debug("Rhosts Authentication disabled, "
Damien Miller00b61642001-11-12 10:51:23 +11001440 "originating port %d not trusted.", remote_port);
Damien Miller95def091999-11-25 00:26:21 +11001441 options.rhosts_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +11001442 }
Ben Lindstromec95ed92001-07-04 04:21:14 +00001443#if defined(KRB4) && !defined(KRB5)
Damien Miller34132e52000-01-14 15:45:46 +11001444 if (!packet_connection_is_ipv4() &&
1445 options.kerberos_authentication) {
1446 debug("Kerberos Authentication disabled, only available for IPv4.");
1447 options.kerberos_authentication = 0;
1448 }
Ben Lindstromec95ed92001-07-04 04:21:14 +00001449#endif /* KRB4 && !KRB5 */
Ben Lindstromf79aeff2001-02-10 21:27:11 +00001450#ifdef AFS
1451 /* If machine has AFS, set process authentication group. */
1452 if (k_hasafs()) {
1453 k_setpag();
1454 k_unlog();
1455 }
1456#endif /* AFS */
Damien Miller34132e52000-01-14 15:45:46 +11001457
Damien Miller95def091999-11-25 00:26:21 +11001458 packet_set_nonblocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001459
Ben Lindstrom943481c2002-03-22 03:43:46 +00001460 if (use_privsep)
1461 if ((authctxt = privsep_preauth()) != NULL)
1462 goto authenticated;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001463
Damien Miller396691a2000-01-20 22:44:08 +11001464 /* perform the key exchange */
Damien Miller396691a2000-01-20 22:44:08 +11001465 /* authenticate user and start session */
Damien Millerefb4afe2000-04-12 18:45:05 +10001466 if (compat20) {
1467 do_ssh2_kex();
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +00001468 authctxt = do_authentication2();
Damien Millerefb4afe2000-04-12 18:45:05 +10001469 } else {
1470 do_ssh1_kex();
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +00001471 authctxt = do_authentication();
Damien Millerefb4afe2000-04-12 18:45:05 +10001472 }
Ben Lindstrom943481c2002-03-22 03:43:46 +00001473 /*
1474 * If we use privilege separation, the unprivileged child transfers
1475 * the current keystate and exits
1476 */
1477 if (use_privsep) {
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001478 mm_send_keystate(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001479 exit(0);
Ben Lindstrom943481c2002-03-22 03:43:46 +00001480 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001481
1482 authenticated:
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001483 /*
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001484 * In privilege separation, we fork another child and prepare
1485 * file descriptor passing.
1486 */
1487 if (use_privsep) {
Ben Lindstrom943481c2002-03-22 03:43:46 +00001488 privsep_postauth(authctxt);
1489 /* the monitor process [priv] will not return */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001490 if (!compat20)
1491 destroy_sensitive_data();
1492 }
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +00001493
1494 /* Perform session preparation. */
1495 do_authenticated(authctxt);
1496
Damien Miller3a5b0232002-03-13 13:19:42 +11001497 /* The connection has been terminated. */
1498 verbose("Closing connection to %.100s", remote_ip);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001499
Damien Millerbeb4ba51999-12-28 15:09:35 +11001500#ifdef USE_PAM
Damien Millere72b7af1999-12-30 15:08:44 +11001501 finish_pam();
Damien Millerbeb4ba51999-12-28 15:09:35 +11001502#endif /* USE_PAM */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001503
Damien Miller95def091999-11-25 00:26:21 +11001504 packet_close();
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001505
1506 if (use_privsep)
1507 mm_terminate();
1508
Damien Miller95def091999-11-25 00:26:21 +11001509 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001510}
1511
Damien Miller95def091999-11-25 00:26:21 +11001512/*
Ben Lindstromabcb1452002-03-22 01:10:21 +00001513 * Decrypt session_key_int using our private server key and private host key
1514 * (key with larger modulus first).
1515 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001516int
Ben Lindstromabcb1452002-03-22 01:10:21 +00001517ssh1_session_key(BIGNUM *session_key_int)
1518{
1519 int rsafail = 0;
1520
1521 if (BN_cmp(sensitive_data.server_key->rsa->n, sensitive_data.ssh1_host_key->rsa->n) > 0) {
1522 /* Server key has bigger modulus. */
1523 if (BN_num_bits(sensitive_data.server_key->rsa->n) <
1524 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1525 fatal("do_connection: %s: server_key %d < host_key %d + SSH_KEY_BITS_RESERVED %d",
1526 get_remote_ipaddr(),
1527 BN_num_bits(sensitive_data.server_key->rsa->n),
1528 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1529 SSH_KEY_BITS_RESERVED);
1530 }
1531 if (rsa_private_decrypt(session_key_int, session_key_int,
1532 sensitive_data.server_key->rsa) <= 0)
1533 rsafail++;
1534 if (rsa_private_decrypt(session_key_int, session_key_int,
1535 sensitive_data.ssh1_host_key->rsa) <= 0)
1536 rsafail++;
1537 } else {
1538 /* Host key has bigger modulus (or they are equal). */
1539 if (BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) <
1540 BN_num_bits(sensitive_data.server_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1541 fatal("do_connection: %s: host_key %d < server_key %d + SSH_KEY_BITS_RESERVED %d",
1542 get_remote_ipaddr(),
1543 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1544 BN_num_bits(sensitive_data.server_key->rsa->n),
1545 SSH_KEY_BITS_RESERVED);
1546 }
1547 if (rsa_private_decrypt(session_key_int, session_key_int,
1548 sensitive_data.ssh1_host_key->rsa) < 0)
1549 rsafail++;
1550 if (rsa_private_decrypt(session_key_int, session_key_int,
1551 sensitive_data.server_key->rsa) < 0)
1552 rsafail++;
1553 }
1554 return (rsafail);
1555}
1556/*
Damien Miller396691a2000-01-20 22:44:08 +11001557 * SSH1 key exchange
Damien Miller95def091999-11-25 00:26:21 +11001558 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001559static void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001560do_ssh1_kex(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001561{
Damien Miller95def091999-11-25 00:26:21 +11001562 int i, len;
Damien Miller7650bc62001-01-30 09:27:26 +11001563 int rsafail = 0;
Damien Miller95def091999-11-25 00:26:21 +11001564 BIGNUM *session_key_int;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001565 u_char session_key[SSH_SESSION_KEY_LENGTH];
1566 u_char cookie[8];
1567 u_int cipher_type, auth_mask, protocol_flags;
Damien Miller95def091999-11-25 00:26:21 +11001568 u_int32_t rand = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001569
Damien Miller5428f641999-11-25 11:54:57 +11001570 /*
1571 * Generate check bytes that the client must send back in the user
1572 * packet in order for it to be accepted; this is used to defy ip
1573 * spoofing attacks. Note that this only works against somebody
1574 * doing IP spoofing from a remote machine; any machine on the local
1575 * network can still see outgoing packets and catch the random
1576 * cookie. This only affects rhosts authentication, and this is one
1577 * of the reasons why it is inherently insecure.
1578 */
Damien Miller95def091999-11-25 00:26:21 +11001579 for (i = 0; i < 8; i++) {
1580 if (i % 4 == 0)
1581 rand = arc4random();
Damien Miller396691a2000-01-20 22:44:08 +11001582 cookie[i] = rand & 0xff;
Damien Miller95def091999-11-25 00:26:21 +11001583 rand >>= 8;
1584 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001585
Damien Miller5428f641999-11-25 11:54:57 +11001586 /*
1587 * Send our public key. We include in the packet 64 bits of random
1588 * data that must be matched in the reply in order to prevent IP
1589 * spoofing.
1590 */
Damien Miller95def091999-11-25 00:26:21 +11001591 packet_start(SSH_SMSG_PUBLIC_KEY);
1592 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001593 packet_put_char(cookie[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001594
Damien Miller95def091999-11-25 00:26:21 +11001595 /* Store our public server RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001596 packet_put_int(BN_num_bits(sensitive_data.server_key->rsa->n));
1597 packet_put_bignum(sensitive_data.server_key->rsa->e);
1598 packet_put_bignum(sensitive_data.server_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001599
Damien Miller95def091999-11-25 00:26:21 +11001600 /* Store our public host RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001601 packet_put_int(BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
1602 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->e);
1603 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001604
Damien Miller95def091999-11-25 00:26:21 +11001605 /* Put protocol flags. */
1606 packet_put_int(SSH_PROTOFLAG_HOST_IN_FWD_OPEN);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001607
Damien Miller95def091999-11-25 00:26:21 +11001608 /* Declare which ciphers we support. */
Damien Miller874d77b2000-10-14 16:23:11 +11001609 packet_put_int(cipher_mask_ssh1(0));
Damien Miller95def091999-11-25 00:26:21 +11001610
1611 /* Declare supported authentication types. */
1612 auth_mask = 0;
1613 if (options.rhosts_authentication)
1614 auth_mask |= 1 << SSH_AUTH_RHOSTS;
1615 if (options.rhosts_rsa_authentication)
1616 auth_mask |= 1 << SSH_AUTH_RHOSTS_RSA;
1617 if (options.rsa_authentication)
1618 auth_mask |= 1 << SSH_AUTH_RSA;
Ben Lindstromec95ed92001-07-04 04:21:14 +00001619#if defined(KRB4) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +11001620 if (options.kerberos_authentication)
1621 auth_mask |= 1 << SSH_AUTH_KERBEROS;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001622#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +00001623#if defined(AFS) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +11001624 if (options.kerberos_tgt_passing)
1625 auth_mask |= 1 << SSH_PASS_KERBEROS_TGT;
Ben Lindstromec95ed92001-07-04 04:21:14 +00001626#endif
1627#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +11001628 if (options.afs_token_passing)
1629 auth_mask |= 1 << SSH_PASS_AFS_TOKEN;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001630#endif
Ben Lindstrom551ea372001-06-05 18:56:16 +00001631 if (options.challenge_response_authentication == 1)
Damien Miller95def091999-11-25 00:26:21 +11001632 auth_mask |= 1 << SSH_AUTH_TIS;
Damien Miller95def091999-11-25 00:26:21 +11001633 if (options.password_authentication)
1634 auth_mask |= 1 << SSH_AUTH_PASSWORD;
1635 packet_put_int(auth_mask);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001636
Damien Miller95def091999-11-25 00:26:21 +11001637 /* Send the packet and wait for it to be sent. */
1638 packet_send();
1639 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001640
Damien Miller0bc1bd82000-11-13 22:57:25 +11001641 debug("Sent %d bit server key and %d bit host key.",
1642 BN_num_bits(sensitive_data.server_key->rsa->n),
1643 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001644
Damien Miller95def091999-11-25 00:26:21 +11001645 /* Read clients reply (cipher type and session key). */
Damien Millerdff50992002-01-22 23:16:32 +11001646 packet_read_expect(SSH_CMSG_SESSION_KEY);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001647
Damien Miller50945fa1999-12-09 10:31:37 +11001648 /* Get cipher type and check whether we accept this. */
Damien Miller95def091999-11-25 00:26:21 +11001649 cipher_type = packet_get_char();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001650
Damien Miller874d77b2000-10-14 16:23:11 +11001651 if (!(cipher_mask_ssh1(0) & (1 << cipher_type)))
Damien Miller50945fa1999-12-09 10:31:37 +11001652 packet_disconnect("Warning: client selects unsupported cipher.");
1653
Damien Miller95def091999-11-25 00:26:21 +11001654 /* Get check bytes from the packet. These must match those we
1655 sent earlier with the public key packet. */
1656 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001657 if (cookie[i] != packet_get_char())
Damien Miller95def091999-11-25 00:26:21 +11001658 packet_disconnect("IP Spoofing check bytes do not match.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001659
Damien Miller95def091999-11-25 00:26:21 +11001660 debug("Encryption type: %.200s", cipher_name(cipher_type));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001661
Damien Miller95def091999-11-25 00:26:21 +11001662 /* Get the encrypted integer. */
Damien Millerda755162002-01-22 23:09:22 +11001663 if ((session_key_int = BN_new()) == NULL)
1664 fatal("do_ssh1_kex: BN_new failed");
Damien Millerd432ccf2002-01-22 23:14:44 +11001665 packet_get_bignum(session_key_int);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001666
Damien Miller95def091999-11-25 00:26:21 +11001667 protocol_flags = packet_get_int();
1668 packet_set_protocol_flags(protocol_flags);
Damien Miller48b03fc2002-01-22 23:11:40 +11001669 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001670
Ben Lindstromabcb1452002-03-22 01:10:21 +00001671 /* Decrypt session_key_int using host/server keys */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001672 rsafail = PRIVSEP(ssh1_session_key(session_key_int));
1673
Damien Miller5428f641999-11-25 11:54:57 +11001674 /*
1675 * Extract session key from the decrypted integer. The key is in the
1676 * least significant 256 bits of the integer; the first byte of the
1677 * key is in the highest bits.
1678 */
Damien Miller7650bc62001-01-30 09:27:26 +11001679 if (!rsafail) {
1680 BN_mask_bits(session_key_int, sizeof(session_key) * 8);
1681 len = BN_num_bytes(session_key_int);
1682 if (len < 0 || len > sizeof(session_key)) {
1683 error("do_connection: bad session key len from %s: "
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001684 "session_key_int %d > sizeof(session_key) %lu",
1685 get_remote_ipaddr(), len, (u_long)sizeof(session_key));
Damien Miller7650bc62001-01-30 09:27:26 +11001686 rsafail++;
1687 } else {
1688 memset(session_key, 0, sizeof(session_key));
1689 BN_bn2bin(session_key_int,
1690 session_key + sizeof(session_key) - len);
Ben Lindstromeb648a72001-03-05 06:00:29 +00001691
1692 compute_session_id(session_id, cookie,
1693 sensitive_data.ssh1_host_key->rsa->n,
1694 sensitive_data.server_key->rsa->n);
1695 /*
1696 * Xor the first 16 bytes of the session key with the
1697 * session id.
1698 */
1699 for (i = 0; i < 16; i++)
1700 session_key[i] ^= session_id[i];
Damien Miller7650bc62001-01-30 09:27:26 +11001701 }
1702 }
1703 if (rsafail) {
Ben Lindstromeb648a72001-03-05 06:00:29 +00001704 int bytes = BN_num_bytes(session_key_int);
Ben Lindstrom13c5d3b2002-02-26 18:00:48 +00001705 u_char *buf = xmalloc(bytes);
Ben Lindstromeb648a72001-03-05 06:00:29 +00001706 MD5_CTX md;
1707
Damien Miller7650bc62001-01-30 09:27:26 +11001708 log("do_connection: generating a fake encryption key");
Ben Lindstromeb648a72001-03-05 06:00:29 +00001709 BN_bn2bin(session_key_int, buf);
1710 MD5_Init(&md);
1711 MD5_Update(&md, buf, bytes);
1712 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1713 MD5_Final(session_key, &md);
1714 MD5_Init(&md);
1715 MD5_Update(&md, session_key, 16);
1716 MD5_Update(&md, buf, bytes);
1717 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1718 MD5_Final(session_key + 16, &md);
1719 memset(buf, 0, bytes);
1720 xfree(buf);
Ben Lindstrom941ac822001-03-05 06:25:23 +00001721 for (i = 0; i < 16; i++)
1722 session_id[i] = session_key[i] ^ session_key[i + 16];
Damien Miller7650bc62001-01-30 09:27:26 +11001723 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001724 /* Destroy the private and public keys. No longer. */
Damien Miller3a5b0232002-03-13 13:19:42 +11001725 destroy_sensitive_data();
Ben Lindstromeb648a72001-03-05 06:00:29 +00001726
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001727 if (use_privsep)
1728 mm_ssh1_session_id(session_id);
1729
Damien Miller396691a2000-01-20 22:44:08 +11001730 /* Destroy the decrypted integer. It is no longer needed. */
1731 BN_clear_free(session_key_int);
1732
Damien Miller95def091999-11-25 00:26:21 +11001733 /* Set the session key. From this on all communications will be encrypted. */
1734 packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, cipher_type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001735
Damien Miller95def091999-11-25 00:26:21 +11001736 /* Destroy our copy of the session key. It is no longer needed. */
1737 memset(session_key, 0, sizeof(session_key));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001738
Damien Miller95def091999-11-25 00:26:21 +11001739 debug("Received session key; encryption turned on.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001740
Ben Lindstromf666fec2002-06-06 19:51:58 +00001741 /* Send an acknowledgment packet. Note that this packet is sent encrypted. */
Damien Miller95def091999-11-25 00:26:21 +11001742 packet_start(SSH_SMSG_SUCCESS);
1743 packet_send();
1744 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001745}
Damien Millerefb4afe2000-04-12 18:45:05 +10001746
1747/*
1748 * SSH2 key exchange: diffie-hellman-group1-sha1
1749 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001750static void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001751do_ssh2_kex(void)
Damien Millerefb4afe2000-04-12 18:45:05 +10001752{
Damien Millerefb4afe2000-04-12 18:45:05 +10001753 Kex *kex;
Damien Millerefb4afe2000-04-12 18:45:05 +10001754
Damien Miller78928792000-04-12 20:17:38 +10001755 if (options.ciphers != NULL) {
Damien Miller4af51302000-04-16 11:18:38 +10001756 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
Damien Miller78928792000-04-12 20:17:38 +10001757 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
1758 }
Damien Millera0ff4662001-03-30 10:49:35 +10001759 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
1760 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
1761 myproposal[PROPOSAL_ENC_ALGS_STOC] =
1762 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
1763
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001764 if (options.macs != NULL) {
1765 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
1766 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
1767 }
Ben Lindstrom23e0f662002-06-21 01:09:47 +00001768 if (!options.compression) {
1769 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
1770 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none";
1771 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001772 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = list_hostkey_types();
1773
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001774 /* start key exchange */
Ben Lindstrom238abf62001-04-04 17:52:53 +00001775 kex = kex_setup(myproposal);
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +00001776 kex->server = 1;
1777 kex->client_version_string=client_version_string;
1778 kex->server_version_string=server_version_string;
1779 kex->load_host_key=&get_hostkey_by_type;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001780 kex->host_key_index=&get_hostkey_index;
Damien Millerefb4afe2000-04-12 18:45:05 +10001781
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001782 xxx_kex = kex;
1783
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001784 dispatch_run(DISPATCH_BLOCK, &kex->done, kex);
Damien Miller874d77b2000-10-14 16:23:11 +11001785
Ben Lindstrom2d90e002001-04-04 02:00:54 +00001786 session_id2 = kex->session_id;
1787 session_id2_len = kex->session_id_len;
1788
Damien Miller874d77b2000-10-14 16:23:11 +11001789#ifdef DEBUG_KEXDH
1790 /* send 1st encrypted/maced/compressed message */
1791 packet_start(SSH2_MSG_IGNORE);
1792 packet_put_cstring("markus");
1793 packet_send();
1794 packet_write_wait();
1795#endif
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +00001796 debug("KEX done");
Damien Millerefb4afe2000-04-12 18:45:05 +10001797}