blob: 705d4768b77ef753b9dd054274910e7d56815e09 [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 Lindstromce0f6342002-06-11 16:42:49 +000045RCSID("$OpenBSD: sshd.c,v 1.245 2002/06/11 05:46:20 mpech 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
Kevin Stevesbc5bb552002-05-21 17:59:13 +00001021#ifndef HAVE_CYGWIN
Damien Miller87aea252002-05-10 12:20:24 +10001022 /*
1023 * Clear out any supplemental groups we may have inherited. This
1024 * prevents inadvertent creation of files with bad modes (in the
1025 * portable version at least, it's certainly possible for PAM
1026 * to create a file, and we can't control the code in every
1027 * module which might be used).
1028 */
1029 if (setgroups(0, NULL) < 0)
1030 debug("setgroups() failed: %.200s", strerror(errno));
Kevin Stevesbc5bb552002-05-21 17:59:13 +00001031#endif /* !HAVE_CYGWIN */
Damien Miller87aea252002-05-10 12:20:24 +10001032
Damien Millereba71ba2000-04-29 23:57:08 +10001033 /* Initialize the log (it is reinitialized below in case we forked). */
Damien Miller95def091999-11-25 00:26:21 +11001034 if (debug_flag && !inetd_flag)
1035 log_stderr = 1;
Kevin Stevesec84dc12000-12-13 17:45:15 +00001036 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +11001037
Damien Millereba71ba2000-04-29 23:57:08 +10001038 /*
1039 * If not in debugging mode, and not started from inetd, disconnect
1040 * from the controlling terminal, and fork. The original process
1041 * exits.
1042 */
Ben Lindstromc72745a2000-12-02 19:03:54 +00001043 if (!(debug_flag || inetd_flag || no_daemon_flag)) {
Damien Miller95def091999-11-25 00:26:21 +11001044#ifdef TIOCNOTTY
1045 int fd;
1046#endif /* TIOCNOTTY */
1047 if (daemon(0, 0) < 0)
1048 fatal("daemon() failed: %.200s", strerror(errno));
1049
1050 /* Disconnect from the controlling tty. */
1051#ifdef TIOCNOTTY
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001052 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
Damien Miller95def091999-11-25 00:26:21 +11001053 if (fd >= 0) {
1054 (void) ioctl(fd, TIOCNOTTY, NULL);
1055 close(fd);
1056 }
1057#endif /* TIOCNOTTY */
1058 }
1059 /* Reinitialize the log (because of the fork above). */
Kevin Stevesec84dc12000-12-13 17:45:15 +00001060 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +11001061
Damien Miller95def091999-11-25 00:26:21 +11001062 /* Initialize the random number generator. */
1063 arc4random_stir();
1064
1065 /* Chdir to the root directory so that the current disk can be
1066 unmounted if desired. */
1067 chdir("/");
Damien Miller9f0f5c62001-12-21 14:45:46 +11001068
Ben Lindstromde71cda2001-03-24 00:43:26 +00001069 /* ignore SIGPIPE */
1070 signal(SIGPIPE, SIG_IGN);
Damien Miller95def091999-11-25 00:26:21 +11001071
Damien Miller95def091999-11-25 00:26:21 +11001072 /* Start listening for a socket, unless started from inetd. */
1073 if (inetd_flag) {
Ben Lindstrom206941f2001-04-15 14:27:16 +00001074 int s1;
Damien Miller95def091999-11-25 00:26:21 +11001075 s1 = dup(0); /* Make sure descriptors 0, 1, and 2 are in use. */
Ben Lindstrom206941f2001-04-15 14:27:16 +00001076 dup(s1);
Damien Miller95def091999-11-25 00:26:21 +11001077 sock_in = dup(0);
1078 sock_out = dup(1);
Damien Miller994cf142000-07-21 10:19:44 +10001079 startup_pipe = -1;
Damien Millereba71ba2000-04-29 23:57:08 +10001080 /*
1081 * We intentionally do not close the descriptors 0, 1, and 2
1082 * as our code for setting the descriptors won\'t work if
1083 * ttyfd happens to be one of those.
1084 */
Damien Miller95def091999-11-25 00:26:21 +11001085 debug("inetd sockets after dupping: %d, %d", sock_in, sock_out);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001086 if (options.protocol & SSH_PROTO_1)
Ben Lindstromca42d5f2001-03-09 18:25:32 +00001087 generate_ephemeral_server_key();
Damien Miller95def091999-11-25 00:26:21 +11001088 } else {
Damien Miller34132e52000-01-14 15:45:46 +11001089 for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
1090 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1091 continue;
1092 if (num_listen_socks >= MAX_LISTEN_SOCKS)
1093 fatal("Too many listen sockets. "
1094 "Enlarge MAX_LISTEN_SOCKS");
1095 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
1096 ntop, sizeof(ntop), strport, sizeof(strport),
1097 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
1098 error("getnameinfo failed");
1099 continue;
1100 }
1101 /* Create socket for listening. */
1102 listen_sock = socket(ai->ai_family, SOCK_STREAM, 0);
1103 if (listen_sock < 0) {
1104 /* kernel may not support ipv6 */
1105 verbose("socket: %.100s", strerror(errno));
1106 continue;
1107 }
1108 if (fcntl(listen_sock, F_SETFL, O_NONBLOCK) < 0) {
1109 error("listen_sock O_NONBLOCK: %s", strerror(errno));
1110 close(listen_sock);
1111 continue;
1112 }
1113 /*
1114 * Set socket options. We try to make the port
1115 * reusable and have it close as fast as possible
1116 * without waiting in unnecessary wait states on
1117 * close.
1118 */
1119 setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
Ben Lindstrom733a2352002-03-05 01:31:28 +00001120 &on, sizeof(on));
Damien Miller34132e52000-01-14 15:45:46 +11001121 linger.l_onoff = 1;
1122 linger.l_linger = 5;
1123 setsockopt(listen_sock, SOL_SOCKET, SO_LINGER,
Ben Lindstrom733a2352002-03-05 01:31:28 +00001124 &linger, sizeof(linger));
Damien Miller95def091999-11-25 00:26:21 +11001125
Damien Miller34132e52000-01-14 15:45:46 +11001126 debug("Bind to port %s on %s.", strport, ntop);
Damien Miller95def091999-11-25 00:26:21 +11001127
Damien Miller34132e52000-01-14 15:45:46 +11001128 /* Bind the socket to the desired port. */
Damien Miller0a4e27d2001-02-18 12:36:39 +11001129 if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1130 if (!ai->ai_next)
1131 error("Bind to port %s on %s failed: %.200s.",
1132 strport, ntop, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11001133 close(listen_sock);
1134 continue;
1135 }
1136 listen_socks[num_listen_socks] = listen_sock;
1137 num_listen_socks++;
Damien Miller95def091999-11-25 00:26:21 +11001138
Damien Miller34132e52000-01-14 15:45:46 +11001139 /* Start listening on the port. */
1140 log("Server listening on %s port %s.", ntop, strport);
1141 if (listen(listen_sock, 5) < 0)
1142 fatal("listen: %.100s", strerror(errno));
1143
Damien Miller95def091999-11-25 00:26:21 +11001144 }
Damien Miller34132e52000-01-14 15:45:46 +11001145 freeaddrinfo(options.listen_addrs);
1146
1147 if (!num_listen_socks)
1148 fatal("Cannot bind any address.");
1149
Ben Lindstrom98097862001-06-25 05:10:20 +00001150 if (options.protocol & SSH_PROTO_1)
1151 generate_ephemeral_server_key();
1152
1153 /*
1154 * Arrange to restart on SIGHUP. The handler needs
1155 * listen_sock.
1156 */
1157 signal(SIGHUP, sighup_handler);
1158
1159 signal(SIGTERM, sigterm_handler);
1160 signal(SIGQUIT, sigterm_handler);
1161
1162 /* Arrange SIGCHLD to be caught. */
1163 signal(SIGCHLD, main_sigchld_handler);
1164
1165 /* Write out the pid file after the sigterm handler is setup */
Damien Miller95def091999-11-25 00:26:21 +11001166 if (!debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +11001167 /*
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001168 * Record our pid in /var/run/sshd.pid to make it
1169 * easier to kill the correct sshd. We don't want to
1170 * do this before the bind above because the bind will
Damien Miller5428f641999-11-25 11:54:57 +11001171 * fail if there already is a daemon, and this will
1172 * overwrite any old pid in the file.
1173 */
Damien Millerbac2d8a2000-09-05 16:13:06 +11001174 f = fopen(options.pid_file, "wb");
Damien Miller95def091999-11-25 00:26:21 +11001175 if (f) {
Ben Lindstromce0f6342002-06-11 16:42:49 +00001176 fprintf(f, "%ld\n", (long) getpid());
Damien Miller95def091999-11-25 00:26:21 +11001177 fclose(f);
1178 }
1179 }
Damien Miller95def091999-11-25 00:26:21 +11001180
Damien Miller34132e52000-01-14 15:45:46 +11001181 /* setup fd set for listen */
Damien Miller37023962000-07-11 17:31:38 +10001182 fdset = NULL;
Damien Miller34132e52000-01-14 15:45:46 +11001183 maxfd = 0;
1184 for (i = 0; i < num_listen_socks; i++)
1185 if (listen_socks[i] > maxfd)
1186 maxfd = listen_socks[i];
Damien Miller37023962000-07-11 17:31:38 +10001187 /* pipes connected to unauthenticated childs */
1188 startup_pipes = xmalloc(options.max_startups * sizeof(int));
1189 for (i = 0; i < options.max_startups; i++)
1190 startup_pipes[i] = -1;
Damien Miller34132e52000-01-14 15:45:46 +11001191
Damien Miller5428f641999-11-25 11:54:57 +11001192 /*
1193 * Stay listening for connections until the system crashes or
1194 * the daemon is killed with a signal.
1195 */
Damien Miller95def091999-11-25 00:26:21 +11001196 for (;;) {
1197 if (received_sighup)
1198 sighup_restart();
Damien Miller37023962000-07-11 17:31:38 +10001199 if (fdset != NULL)
1200 xfree(fdset);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001201 fdsetsz = howmany(maxfd+1, NFDBITS) * sizeof(fd_mask);
Damien Miller37023962000-07-11 17:31:38 +10001202 fdset = (fd_set *)xmalloc(fdsetsz);
Damien Miller34132e52000-01-14 15:45:46 +11001203 memset(fdset, 0, fdsetsz);
Damien Miller37023962000-07-11 17:31:38 +10001204
Damien Miller34132e52000-01-14 15:45:46 +11001205 for (i = 0; i < num_listen_socks; i++)
1206 FD_SET(listen_socks[i], fdset);
Damien Miller37023962000-07-11 17:31:38 +10001207 for (i = 0; i < options.max_startups; i++)
1208 if (startup_pipes[i] != -1)
1209 FD_SET(startup_pipes[i], fdset);
1210
1211 /* Wait in select until there is a connection. */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001212 ret = select(maxfd+1, fdset, NULL, NULL, NULL);
1213 if (ret < 0 && errno != EINTR)
1214 error("select: %.100s", strerror(errno));
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001215 if (received_sigterm) {
1216 log("Received signal %d; terminating.",
Ben Lindstromf8f065b2001-12-06 17:52:16 +00001217 (int) received_sigterm);
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001218 close_listen_socks();
1219 unlink(options.pid_file);
1220 exit(255);
1221 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001222 if (key_used && key_do_regen) {
Ben Lindstromca42d5f2001-03-09 18:25:32 +00001223 generate_ephemeral_server_key();
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001224 key_used = 0;
1225 key_do_regen = 0;
Damien Miller34132e52000-01-14 15:45:46 +11001226 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001227 if (ret < 0)
1228 continue;
1229
Damien Miller37023962000-07-11 17:31:38 +10001230 for (i = 0; i < options.max_startups; i++)
1231 if (startup_pipes[i] != -1 &&
1232 FD_ISSET(startup_pipes[i], fdset)) {
1233 /*
1234 * the read end of the pipe is ready
1235 * if the child has closed the pipe
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001236 * after successful authentication
Damien Miller37023962000-07-11 17:31:38 +10001237 * or if the child has died
1238 */
1239 close(startup_pipes[i]);
1240 startup_pipes[i] = -1;
1241 startups--;
1242 }
Damien Miller34132e52000-01-14 15:45:46 +11001243 for (i = 0; i < num_listen_socks; i++) {
1244 if (!FD_ISSET(listen_socks[i], fdset))
Damien Miller95def091999-11-25 00:26:21 +11001245 continue;
Damien Miller37023962000-07-11 17:31:38 +10001246 fromlen = sizeof(from);
1247 newsock = accept(listen_socks[i], (struct sockaddr *)&from,
1248 &fromlen);
1249 if (newsock < 0) {
1250 if (errno != EINTR && errno != EWOULDBLOCK)
1251 error("accept: %.100s", strerror(errno));
1252 continue;
1253 }
1254 if (fcntl(newsock, F_SETFL, 0) < 0) {
1255 error("newsock del O_NONBLOCK: %s", strerror(errno));
Damien Miller72c336d2001-12-21 12:44:28 +11001256 close(newsock);
Damien Miller37023962000-07-11 17:31:38 +10001257 continue;
1258 }
Damien Miller942da032000-08-18 13:59:06 +10001259 if (drop_connection(startups) == 1) {
1260 debug("drop connection #%d", startups);
Damien Miller37023962000-07-11 17:31:38 +10001261 close(newsock);
1262 continue;
1263 }
1264 if (pipe(startup_p) == -1) {
1265 close(newsock);
1266 continue;
1267 }
1268
1269 for (j = 0; j < options.max_startups; j++)
1270 if (startup_pipes[j] == -1) {
1271 startup_pipes[j] = startup_p[0];
1272 if (maxfd < startup_p[0])
1273 maxfd = startup_p[0];
1274 startups++;
1275 break;
1276 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001277
Damien Miller5428f641999-11-25 11:54:57 +11001278 /*
Damien Miller37023962000-07-11 17:31:38 +10001279 * Got connection. Fork a child to handle it, unless
1280 * we are in debugging mode.
Damien Miller5428f641999-11-25 11:54:57 +11001281 */
Damien Miller37023962000-07-11 17:31:38 +10001282 if (debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +11001283 /*
Damien Miller37023962000-07-11 17:31:38 +10001284 * In debugging mode. Close the listening
1285 * socket, and start processing the
1286 * connection without forking.
Damien Miller5428f641999-11-25 11:54:57 +11001287 */
Damien Miller37023962000-07-11 17:31:38 +10001288 debug("Server will not fork when running in debugging mode.");
Damien Miller34132e52000-01-14 15:45:46 +11001289 close_listen_socks();
Damien Miller95def091999-11-25 00:26:21 +11001290 sock_in = newsock;
1291 sock_out = newsock;
Damien Miller4d97ba22000-07-11 18:15:50 +10001292 startup_pipe = -1;
Damien Miller182ee6e2000-07-12 09:45:27 +10001293 pid = getpid();
Damien Miller95def091999-11-25 00:26:21 +11001294 break;
Damien Miller37023962000-07-11 17:31:38 +10001295 } else {
1296 /*
1297 * Normal production daemon. Fork, and have
1298 * the child process the connection. The
1299 * parent continues listening.
1300 */
1301 if ((pid = fork()) == 0) {
1302 /*
1303 * Child. Close the listening and max_startup
1304 * sockets. Start using the accepted socket.
1305 * Reinitialize logging (since our pid has
1306 * changed). We break out of the loop to handle
1307 * the connection.
1308 */
1309 startup_pipe = startup_p[1];
Ben Lindstromd84df982001-12-06 16:35:40 +00001310 close_startup_pipes();
Damien Miller37023962000-07-11 17:31:38 +10001311 close_listen_socks();
1312 sock_in = newsock;
1313 sock_out = newsock;
Kevin Stevesec84dc12000-12-13 17:45:15 +00001314 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller37023962000-07-11 17:31:38 +10001315 break;
1316 }
Damien Miller95def091999-11-25 00:26:21 +11001317 }
Damien Miller37023962000-07-11 17:31:38 +10001318
1319 /* Parent. Stay in the loop. */
1320 if (pid < 0)
1321 error("fork: %.100s", strerror(errno));
1322 else
Ben Lindstromce0f6342002-06-11 16:42:49 +00001323 debug("Forked child %ld.", (long)pid);
Damien Miller37023962000-07-11 17:31:38 +10001324
1325 close(startup_p[1]);
1326
1327 /* Mark that the key has been used (it was "given" to the child). */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001328 if ((options.protocol & SSH_PROTO_1) &&
1329 key_used == 0) {
1330 /* Schedule server key regeneration alarm. */
1331 signal(SIGALRM, key_regeneration_alarm);
1332 alarm(options.key_regeneration_time);
1333 key_used = 1;
1334 }
Damien Miller37023962000-07-11 17:31:38 +10001335
1336 arc4random_stir();
1337
1338 /* Close the new socket (the child is now taking care of it). */
1339 close(newsock);
Damien Miller95def091999-11-25 00:26:21 +11001340 }
Damien Miller34132e52000-01-14 15:45:46 +11001341 /* child process check (or debug mode) */
1342 if (num_listen_socks < 0)
1343 break;
Damien Miller95def091999-11-25 00:26:21 +11001344 }
1345 }
1346
1347 /* This is the child processing a new connection. */
1348
Damien Miller5428f641999-11-25 11:54:57 +11001349 /*
Ben Lindstrom17401b62002-05-15 16:17:56 +00001350 * Create a new session and process group since the 4.4BSD
1351 * setlogin() affects the entire process group. We don't
1352 * want the child to be able to affect the parent.
1353 */
Kevin Stevesc5041ac2002-05-21 17:50:21 +00001354#if 0
1355 /* XXX: this breaks Solaris */
Ben Lindstrom17401b62002-05-15 16:17:56 +00001356 if (setsid() < 0)
1357 error("setsid: %.100s", strerror(errno));
Kevin Stevesc5041ac2002-05-21 17:50:21 +00001358#endif
Ben Lindstrom17401b62002-05-15 16:17:56 +00001359
1360 /*
Damien Miller5428f641999-11-25 11:54:57 +11001361 * Disable the key regeneration alarm. We will not regenerate the
1362 * key since we are no longer in a position to give it to anyone. We
1363 * will not restart on SIGHUP since it no longer makes sense.
1364 */
Damien Miller95def091999-11-25 00:26:21 +11001365 alarm(0);
1366 signal(SIGALRM, SIG_DFL);
1367 signal(SIGHUP, SIG_DFL);
1368 signal(SIGTERM, SIG_DFL);
1369 signal(SIGQUIT, SIG_DFL);
1370 signal(SIGCHLD, SIG_DFL);
Damien Miller4e0f5e12000-08-29 11:05:50 +11001371 signal(SIGINT, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001372
Damien Miller5428f641999-11-25 11:54:57 +11001373 /*
1374 * Set socket options for the connection. We want the socket to
1375 * close as fast as possible without waiting for anything. If the
1376 * connection is not a socket, these will do nothing.
1377 */
1378 /* setsockopt(sock_in, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on)); */
Damien Miller95def091999-11-25 00:26:21 +11001379 linger.l_onoff = 1;
1380 linger.l_linger = 5;
Ben Lindstrom733a2352002-03-05 01:31:28 +00001381 setsockopt(sock_in, SOL_SOCKET, SO_LINGER, &linger, sizeof(linger));
Damien Miller95def091999-11-25 00:26:21 +11001382
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001383 /* Set keepalives if requested. */
1384 if (options.keepalives &&
Ben Lindstrom733a2352002-03-05 01:31:28 +00001385 setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, &on,
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001386 sizeof(on)) < 0)
1387 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
1388
Damien Miller5428f641999-11-25 11:54:57 +11001389 /*
1390 * Register our connection. This turns encryption off because we do
1391 * not have a key.
1392 */
Damien Miller95def091999-11-25 00:26:21 +11001393 packet_set_connection(sock_in, sock_out);
1394
1395 remote_port = get_remote_port();
1396 remote_ip = get_remote_ipaddr();
1397
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001398#ifdef LIBWRAP
Damien Miller6a4a4b92001-11-12 11:07:11 +11001399 /* Check whether logins are denied from this host. */
Damien Miller95def091999-11-25 00:26:21 +11001400 {
1401 struct request_info req;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001402
Ben Lindstromce89dac2001-09-12 16:58:04 +00001403 request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, 0);
Damien Miller95def091999-11-25 00:26:21 +11001404 fromhost(&req);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001405
Damien Miller95def091999-11-25 00:26:21 +11001406 if (!hosts_access(&req)) {
Damien Miller6a4a4b92001-11-12 11:07:11 +11001407 debug("Connection refused by tcp wrapper");
Ben Lindstrom7de696e2001-03-29 00:45:12 +00001408 refuse(&req);
Damien Miller6a4a4b92001-11-12 11:07:11 +11001409 /* NOTREACHED */
1410 fatal("libwrap refuse returns");
Damien Miller95def091999-11-25 00:26:21 +11001411 }
Damien Miller95def091999-11-25 00:26:21 +11001412 }
Damien Miller34132e52000-01-14 15:45:46 +11001413#endif /* LIBWRAP */
Damien Miller6a4a4b92001-11-12 11:07:11 +11001414
Damien Miller95def091999-11-25 00:26:21 +11001415 /* Log the connection. */
1416 verbose("Connection from %.500s port %d", remote_ip, remote_port);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001417
Damien Miller5428f641999-11-25 11:54:57 +11001418 /*
1419 * We don\'t want to listen forever unless the other side
1420 * successfully authenticates itself. So we set up an alarm which is
1421 * cleared after successful authentication. A limit of zero
1422 * indicates no limit. Note that we don\'t set the alarm in debugging
1423 * mode; it is just annoying to have the server exit just when you
1424 * are about to discover the bug.
1425 */
Damien Miller95def091999-11-25 00:26:21 +11001426 signal(SIGALRM, grace_alarm_handler);
1427 if (!debug_flag)
1428 alarm(options.login_grace_time);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001429
Damien Millerb38eff82000-04-01 11:09:21 +10001430 sshd_exchange_identification(sock_in, sock_out);
Damien Miller5428f641999-11-25 11:54:57 +11001431 /*
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001432 * Check that the connection comes from a privileged port.
Ben Lindstromf666fec2002-06-06 19:51:58 +00001433 * Rhosts-Authentication only makes sense from privileged
Damien Miller5428f641999-11-25 11:54:57 +11001434 * programs. Of course, if the intruder has root access on his local
1435 * machine, he can connect from any port. So do not use these
1436 * authentication methods from machines that you do not trust.
1437 */
Damien Miller654c03f2002-02-13 13:54:44 +11001438 if (options.rhosts_authentication &&
1439 (remote_port >= IPPORT_RESERVED ||
1440 remote_port < IPPORT_RESERVED / 2)) {
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001441 debug("Rhosts Authentication disabled, "
Damien Miller00b61642001-11-12 10:51:23 +11001442 "originating port %d not trusted.", remote_port);
Damien Miller95def091999-11-25 00:26:21 +11001443 options.rhosts_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +11001444 }
Ben Lindstromec95ed92001-07-04 04:21:14 +00001445#if defined(KRB4) && !defined(KRB5)
Damien Miller34132e52000-01-14 15:45:46 +11001446 if (!packet_connection_is_ipv4() &&
1447 options.kerberos_authentication) {
1448 debug("Kerberos Authentication disabled, only available for IPv4.");
1449 options.kerberos_authentication = 0;
1450 }
Ben Lindstromec95ed92001-07-04 04:21:14 +00001451#endif /* KRB4 && !KRB5 */
Ben Lindstromf79aeff2001-02-10 21:27:11 +00001452#ifdef AFS
1453 /* If machine has AFS, set process authentication group. */
1454 if (k_hasafs()) {
1455 k_setpag();
1456 k_unlog();
1457 }
1458#endif /* AFS */
Damien Miller34132e52000-01-14 15:45:46 +11001459
Damien Miller95def091999-11-25 00:26:21 +11001460 packet_set_nonblocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001461
Ben Lindstrom943481c2002-03-22 03:43:46 +00001462 if (use_privsep)
1463 if ((authctxt = privsep_preauth()) != NULL)
1464 goto authenticated;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001465
Damien Miller396691a2000-01-20 22:44:08 +11001466 /* perform the key exchange */
Damien Miller396691a2000-01-20 22:44:08 +11001467 /* authenticate user and start session */
Damien Millerefb4afe2000-04-12 18:45:05 +10001468 if (compat20) {
1469 do_ssh2_kex();
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +00001470 authctxt = do_authentication2();
Damien Millerefb4afe2000-04-12 18:45:05 +10001471 } else {
1472 do_ssh1_kex();
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +00001473 authctxt = do_authentication();
Damien Millerefb4afe2000-04-12 18:45:05 +10001474 }
Ben Lindstrom943481c2002-03-22 03:43:46 +00001475 /*
1476 * If we use privilege separation, the unprivileged child transfers
1477 * the current keystate and exits
1478 */
1479 if (use_privsep) {
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001480 mm_send_keystate(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001481 exit(0);
Ben Lindstrom943481c2002-03-22 03:43:46 +00001482 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001483
1484 authenticated:
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001485 /*
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001486 * In privilege separation, we fork another child and prepare
1487 * file descriptor passing.
1488 */
1489 if (use_privsep) {
Ben Lindstrom943481c2002-03-22 03:43:46 +00001490 privsep_postauth(authctxt);
1491 /* the monitor process [priv] will not return */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001492 if (!compat20)
1493 destroy_sensitive_data();
1494 }
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +00001495
1496 /* Perform session preparation. */
1497 do_authenticated(authctxt);
1498
Damien Miller3a5b0232002-03-13 13:19:42 +11001499 /* The connection has been terminated. */
1500 verbose("Closing connection to %.100s", remote_ip);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001501
Damien Millerbeb4ba51999-12-28 15:09:35 +11001502#ifdef USE_PAM
Damien Millere72b7af1999-12-30 15:08:44 +11001503 finish_pam();
Damien Millerbeb4ba51999-12-28 15:09:35 +11001504#endif /* USE_PAM */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001505
Damien Miller95def091999-11-25 00:26:21 +11001506 packet_close();
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001507
1508 if (use_privsep)
1509 mm_terminate();
1510
Damien Miller95def091999-11-25 00:26:21 +11001511 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001512}
1513
Damien Miller95def091999-11-25 00:26:21 +11001514/*
Ben Lindstromabcb1452002-03-22 01:10:21 +00001515 * Decrypt session_key_int using our private server key and private host key
1516 * (key with larger modulus first).
1517 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001518int
Ben Lindstromabcb1452002-03-22 01:10:21 +00001519ssh1_session_key(BIGNUM *session_key_int)
1520{
1521 int rsafail = 0;
1522
1523 if (BN_cmp(sensitive_data.server_key->rsa->n, sensitive_data.ssh1_host_key->rsa->n) > 0) {
1524 /* Server key has bigger modulus. */
1525 if (BN_num_bits(sensitive_data.server_key->rsa->n) <
1526 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1527 fatal("do_connection: %s: server_key %d < host_key %d + SSH_KEY_BITS_RESERVED %d",
1528 get_remote_ipaddr(),
1529 BN_num_bits(sensitive_data.server_key->rsa->n),
1530 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1531 SSH_KEY_BITS_RESERVED);
1532 }
1533 if (rsa_private_decrypt(session_key_int, session_key_int,
1534 sensitive_data.server_key->rsa) <= 0)
1535 rsafail++;
1536 if (rsa_private_decrypt(session_key_int, session_key_int,
1537 sensitive_data.ssh1_host_key->rsa) <= 0)
1538 rsafail++;
1539 } else {
1540 /* Host key has bigger modulus (or they are equal). */
1541 if (BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) <
1542 BN_num_bits(sensitive_data.server_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1543 fatal("do_connection: %s: host_key %d < server_key %d + SSH_KEY_BITS_RESERVED %d",
1544 get_remote_ipaddr(),
1545 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1546 BN_num_bits(sensitive_data.server_key->rsa->n),
1547 SSH_KEY_BITS_RESERVED);
1548 }
1549 if (rsa_private_decrypt(session_key_int, session_key_int,
1550 sensitive_data.ssh1_host_key->rsa) < 0)
1551 rsafail++;
1552 if (rsa_private_decrypt(session_key_int, session_key_int,
1553 sensitive_data.server_key->rsa) < 0)
1554 rsafail++;
1555 }
1556 return (rsafail);
1557}
1558/*
Damien Miller396691a2000-01-20 22:44:08 +11001559 * SSH1 key exchange
Damien Miller95def091999-11-25 00:26:21 +11001560 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001561static void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001562do_ssh1_kex(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001563{
Damien Miller95def091999-11-25 00:26:21 +11001564 int i, len;
Damien Miller7650bc62001-01-30 09:27:26 +11001565 int rsafail = 0;
Damien Miller95def091999-11-25 00:26:21 +11001566 BIGNUM *session_key_int;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001567 u_char session_key[SSH_SESSION_KEY_LENGTH];
1568 u_char cookie[8];
1569 u_int cipher_type, auth_mask, protocol_flags;
Damien Miller95def091999-11-25 00:26:21 +11001570 u_int32_t rand = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001571
Damien Miller5428f641999-11-25 11:54:57 +11001572 /*
1573 * Generate check bytes that the client must send back in the user
1574 * packet in order for it to be accepted; this is used to defy ip
1575 * spoofing attacks. Note that this only works against somebody
1576 * doing IP spoofing from a remote machine; any machine on the local
1577 * network can still see outgoing packets and catch the random
1578 * cookie. This only affects rhosts authentication, and this is one
1579 * of the reasons why it is inherently insecure.
1580 */
Damien Miller95def091999-11-25 00:26:21 +11001581 for (i = 0; i < 8; i++) {
1582 if (i % 4 == 0)
1583 rand = arc4random();
Damien Miller396691a2000-01-20 22:44:08 +11001584 cookie[i] = rand & 0xff;
Damien Miller95def091999-11-25 00:26:21 +11001585 rand >>= 8;
1586 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001587
Damien Miller5428f641999-11-25 11:54:57 +11001588 /*
1589 * Send our public key. We include in the packet 64 bits of random
1590 * data that must be matched in the reply in order to prevent IP
1591 * spoofing.
1592 */
Damien Miller95def091999-11-25 00:26:21 +11001593 packet_start(SSH_SMSG_PUBLIC_KEY);
1594 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001595 packet_put_char(cookie[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001596
Damien Miller95def091999-11-25 00:26:21 +11001597 /* Store our public server RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001598 packet_put_int(BN_num_bits(sensitive_data.server_key->rsa->n));
1599 packet_put_bignum(sensitive_data.server_key->rsa->e);
1600 packet_put_bignum(sensitive_data.server_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001601
Damien Miller95def091999-11-25 00:26:21 +11001602 /* Store our public host RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001603 packet_put_int(BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
1604 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->e);
1605 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001606
Damien Miller95def091999-11-25 00:26:21 +11001607 /* Put protocol flags. */
1608 packet_put_int(SSH_PROTOFLAG_HOST_IN_FWD_OPEN);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001609
Damien Miller95def091999-11-25 00:26:21 +11001610 /* Declare which ciphers we support. */
Damien Miller874d77b2000-10-14 16:23:11 +11001611 packet_put_int(cipher_mask_ssh1(0));
Damien Miller95def091999-11-25 00:26:21 +11001612
1613 /* Declare supported authentication types. */
1614 auth_mask = 0;
1615 if (options.rhosts_authentication)
1616 auth_mask |= 1 << SSH_AUTH_RHOSTS;
1617 if (options.rhosts_rsa_authentication)
1618 auth_mask |= 1 << SSH_AUTH_RHOSTS_RSA;
1619 if (options.rsa_authentication)
1620 auth_mask |= 1 << SSH_AUTH_RSA;
Ben Lindstromec95ed92001-07-04 04:21:14 +00001621#if defined(KRB4) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +11001622 if (options.kerberos_authentication)
1623 auth_mask |= 1 << SSH_AUTH_KERBEROS;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001624#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +00001625#if defined(AFS) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +11001626 if (options.kerberos_tgt_passing)
1627 auth_mask |= 1 << SSH_PASS_KERBEROS_TGT;
Ben Lindstromec95ed92001-07-04 04:21:14 +00001628#endif
1629#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +11001630 if (options.afs_token_passing)
1631 auth_mask |= 1 << SSH_PASS_AFS_TOKEN;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001632#endif
Ben Lindstrom551ea372001-06-05 18:56:16 +00001633 if (options.challenge_response_authentication == 1)
Damien Miller95def091999-11-25 00:26:21 +11001634 auth_mask |= 1 << SSH_AUTH_TIS;
Damien Miller95def091999-11-25 00:26:21 +11001635 if (options.password_authentication)
1636 auth_mask |= 1 << SSH_AUTH_PASSWORD;
1637 packet_put_int(auth_mask);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001638
Damien Miller95def091999-11-25 00:26:21 +11001639 /* Send the packet and wait for it to be sent. */
1640 packet_send();
1641 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001642
Damien Miller0bc1bd82000-11-13 22:57:25 +11001643 debug("Sent %d bit server key and %d bit host key.",
1644 BN_num_bits(sensitive_data.server_key->rsa->n),
1645 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001646
Damien Miller95def091999-11-25 00:26:21 +11001647 /* Read clients reply (cipher type and session key). */
Damien Millerdff50992002-01-22 23:16:32 +11001648 packet_read_expect(SSH_CMSG_SESSION_KEY);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001649
Damien Miller50945fa1999-12-09 10:31:37 +11001650 /* Get cipher type and check whether we accept this. */
Damien Miller95def091999-11-25 00:26:21 +11001651 cipher_type = packet_get_char();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001652
Damien Miller874d77b2000-10-14 16:23:11 +11001653 if (!(cipher_mask_ssh1(0) & (1 << cipher_type)))
Damien Miller50945fa1999-12-09 10:31:37 +11001654 packet_disconnect("Warning: client selects unsupported cipher.");
1655
Damien Miller95def091999-11-25 00:26:21 +11001656 /* Get check bytes from the packet. These must match those we
1657 sent earlier with the public key packet. */
1658 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001659 if (cookie[i] != packet_get_char())
Damien Miller95def091999-11-25 00:26:21 +11001660 packet_disconnect("IP Spoofing check bytes do not match.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001661
Damien Miller95def091999-11-25 00:26:21 +11001662 debug("Encryption type: %.200s", cipher_name(cipher_type));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001663
Damien Miller95def091999-11-25 00:26:21 +11001664 /* Get the encrypted integer. */
Damien Millerda755162002-01-22 23:09:22 +11001665 if ((session_key_int = BN_new()) == NULL)
1666 fatal("do_ssh1_kex: BN_new failed");
Damien Millerd432ccf2002-01-22 23:14:44 +11001667 packet_get_bignum(session_key_int);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001668
Damien Miller95def091999-11-25 00:26:21 +11001669 protocol_flags = packet_get_int();
1670 packet_set_protocol_flags(protocol_flags);
Damien Miller48b03fc2002-01-22 23:11:40 +11001671 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001672
Ben Lindstromabcb1452002-03-22 01:10:21 +00001673 /* Decrypt session_key_int using host/server keys */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001674 rsafail = PRIVSEP(ssh1_session_key(session_key_int));
1675
Damien Miller5428f641999-11-25 11:54:57 +11001676 /*
1677 * Extract session key from the decrypted integer. The key is in the
1678 * least significant 256 bits of the integer; the first byte of the
1679 * key is in the highest bits.
1680 */
Damien Miller7650bc62001-01-30 09:27:26 +11001681 if (!rsafail) {
1682 BN_mask_bits(session_key_int, sizeof(session_key) * 8);
1683 len = BN_num_bytes(session_key_int);
1684 if (len < 0 || len > sizeof(session_key)) {
1685 error("do_connection: bad session key len from %s: "
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001686 "session_key_int %d > sizeof(session_key) %lu",
1687 get_remote_ipaddr(), len, (u_long)sizeof(session_key));
Damien Miller7650bc62001-01-30 09:27:26 +11001688 rsafail++;
1689 } else {
1690 memset(session_key, 0, sizeof(session_key));
1691 BN_bn2bin(session_key_int,
1692 session_key + sizeof(session_key) - len);
Ben Lindstromeb648a72001-03-05 06:00:29 +00001693
1694 compute_session_id(session_id, cookie,
1695 sensitive_data.ssh1_host_key->rsa->n,
1696 sensitive_data.server_key->rsa->n);
1697 /*
1698 * Xor the first 16 bytes of the session key with the
1699 * session id.
1700 */
1701 for (i = 0; i < 16; i++)
1702 session_key[i] ^= session_id[i];
Damien Miller7650bc62001-01-30 09:27:26 +11001703 }
1704 }
1705 if (rsafail) {
Ben Lindstromeb648a72001-03-05 06:00:29 +00001706 int bytes = BN_num_bytes(session_key_int);
Ben Lindstrom13c5d3b2002-02-26 18:00:48 +00001707 u_char *buf = xmalloc(bytes);
Ben Lindstromeb648a72001-03-05 06:00:29 +00001708 MD5_CTX md;
1709
Damien Miller7650bc62001-01-30 09:27:26 +11001710 log("do_connection: generating a fake encryption key");
Ben Lindstromeb648a72001-03-05 06:00:29 +00001711 BN_bn2bin(session_key_int, buf);
1712 MD5_Init(&md);
1713 MD5_Update(&md, buf, bytes);
1714 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1715 MD5_Final(session_key, &md);
1716 MD5_Init(&md);
1717 MD5_Update(&md, session_key, 16);
1718 MD5_Update(&md, buf, bytes);
1719 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1720 MD5_Final(session_key + 16, &md);
1721 memset(buf, 0, bytes);
1722 xfree(buf);
Ben Lindstrom941ac822001-03-05 06:25:23 +00001723 for (i = 0; i < 16; i++)
1724 session_id[i] = session_key[i] ^ session_key[i + 16];
Damien Miller7650bc62001-01-30 09:27:26 +11001725 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001726 /* Destroy the private and public keys. No longer. */
Damien Miller3a5b0232002-03-13 13:19:42 +11001727 destroy_sensitive_data();
Ben Lindstromeb648a72001-03-05 06:00:29 +00001728
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001729 if (use_privsep)
1730 mm_ssh1_session_id(session_id);
1731
Damien Miller396691a2000-01-20 22:44:08 +11001732 /* Destroy the decrypted integer. It is no longer needed. */
1733 BN_clear_free(session_key_int);
1734
Damien Miller95def091999-11-25 00:26:21 +11001735 /* Set the session key. From this on all communications will be encrypted. */
1736 packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, cipher_type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001737
Damien Miller95def091999-11-25 00:26:21 +11001738 /* Destroy our copy of the session key. It is no longer needed. */
1739 memset(session_key, 0, sizeof(session_key));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001740
Damien Miller95def091999-11-25 00:26:21 +11001741 debug("Received session key; encryption turned on.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001742
Ben Lindstromf666fec2002-06-06 19:51:58 +00001743 /* Send an acknowledgment packet. Note that this packet is sent encrypted. */
Damien Miller95def091999-11-25 00:26:21 +11001744 packet_start(SSH_SMSG_SUCCESS);
1745 packet_send();
1746 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001747}
Damien Millerefb4afe2000-04-12 18:45:05 +10001748
1749/*
1750 * SSH2 key exchange: diffie-hellman-group1-sha1
1751 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001752static void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001753do_ssh2_kex(void)
Damien Millerefb4afe2000-04-12 18:45:05 +10001754{
Damien Millerefb4afe2000-04-12 18:45:05 +10001755 Kex *kex;
Damien Millerefb4afe2000-04-12 18:45:05 +10001756
Damien Miller78928792000-04-12 20:17:38 +10001757 if (options.ciphers != NULL) {
Damien Miller4af51302000-04-16 11:18:38 +10001758 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
Damien Miller78928792000-04-12 20:17:38 +10001759 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
1760 }
Damien Millera0ff4662001-03-30 10:49:35 +10001761 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
1762 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
1763 myproposal[PROPOSAL_ENC_ALGS_STOC] =
1764 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
1765
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001766 if (options.macs != NULL) {
1767 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
1768 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
1769 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001770 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = list_hostkey_types();
1771
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001772 /* start key exchange */
Ben Lindstrom238abf62001-04-04 17:52:53 +00001773 kex = kex_setup(myproposal);
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +00001774 kex->server = 1;
1775 kex->client_version_string=client_version_string;
1776 kex->server_version_string=server_version_string;
1777 kex->load_host_key=&get_hostkey_by_type;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001778 kex->host_key_index=&get_hostkey_index;
Damien Millerefb4afe2000-04-12 18:45:05 +10001779
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001780 xxx_kex = kex;
1781
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001782 dispatch_run(DISPATCH_BLOCK, &kex->done, kex);
Damien Miller874d77b2000-10-14 16:23:11 +11001783
Ben Lindstrom2d90e002001-04-04 02:00:54 +00001784 session_id2 = kex->session_id;
1785 session_id2_len = kex->session_id_len;
1786
Damien Miller874d77b2000-10-14 16:23:11 +11001787#ifdef DEBUG_KEXDH
1788 /* send 1st encrypted/maced/compressed message */
1789 packet_start(SSH2_MSG_IGNORE);
1790 packet_put_cstring("markus");
1791 packet_send();
1792 packet_write_wait();
1793#endif
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +00001794 debug("KEX done");
Damien Millerefb4afe2000-04-12 18:45:05 +10001795}