blob: d60b13d66a43e0e8f0fe66a96b8d4631a245654b [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 Lindstrom2dfacb32002-06-23 00:33:47 +000045RCSID("$OpenBSD: sshd.c,v 1.247 2002/06/22 16:40:19 stevesk Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100046
Ben Lindstrom226cfa02001-01-22 05:34:40 +000047#include <openssl/dh.h>
48#include <openssl/bn.h>
Damien Miller6a47f302002-02-13 13:55:06 +110049#include <openssl/md5.h>
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000050#include <openssl/rand.h>
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);
Ben Lindstrom2dfacb32002-06-23 00:33:47 +00001015 if (st.st_uid != 0 || (st.st_mode & (S_IWGRP|S_IWOTH)) != 0)
1016 fatal("Bad owner or mode for %s",
1017 _PATH_PRIVSEP_CHROOT_DIR);
Ben Lindstroma26ea632002-06-06 20:46:25 +00001018 }
1019
Ben Lindstrom794325a2001-08-06 21:09:07 +00001020 /* Configuration looks good, so exit if in test mode. */
1021 if (test_flag)
1022 exit(0);
1023
Damien Miller87aea252002-05-10 12:20:24 +10001024 /*
1025 * Clear out any supplemental groups we may have inherited. This
1026 * prevents inadvertent creation of files with bad modes (in the
1027 * portable version at least, it's certainly possible for PAM
1028 * to create a file, and we can't control the code in every
1029 * module which might be used).
1030 */
1031 if (setgroups(0, NULL) < 0)
1032 debug("setgroups() failed: %.200s", strerror(errno));
1033
Damien Millereba71ba2000-04-29 23:57:08 +10001034 /* Initialize the log (it is reinitialized below in case we forked). */
Damien Miller95def091999-11-25 00:26:21 +11001035 if (debug_flag && !inetd_flag)
1036 log_stderr = 1;
Kevin Stevesec84dc12000-12-13 17:45:15 +00001037 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +11001038
Damien Millereba71ba2000-04-29 23:57:08 +10001039 /*
1040 * If not in debugging mode, and not started from inetd, disconnect
1041 * from the controlling terminal, and fork. The original process
1042 * exits.
1043 */
Ben Lindstromc72745a2000-12-02 19:03:54 +00001044 if (!(debug_flag || inetd_flag || no_daemon_flag)) {
Damien Miller95def091999-11-25 00:26:21 +11001045#ifdef TIOCNOTTY
1046 int fd;
1047#endif /* TIOCNOTTY */
1048 if (daemon(0, 0) < 0)
1049 fatal("daemon() failed: %.200s", strerror(errno));
1050
1051 /* Disconnect from the controlling tty. */
1052#ifdef TIOCNOTTY
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001053 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
Damien Miller95def091999-11-25 00:26:21 +11001054 if (fd >= 0) {
1055 (void) ioctl(fd, TIOCNOTTY, NULL);
1056 close(fd);
1057 }
1058#endif /* TIOCNOTTY */
1059 }
1060 /* Reinitialize the log (because of the fork above). */
Kevin Stevesec84dc12000-12-13 17:45:15 +00001061 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +11001062
Damien Miller95def091999-11-25 00:26:21 +11001063 /* Initialize the random number generator. */
1064 arc4random_stir();
1065
1066 /* Chdir to the root directory so that the current disk can be
1067 unmounted if desired. */
1068 chdir("/");
Damien Miller9f0f5c62001-12-21 14:45:46 +11001069
Ben Lindstromde71cda2001-03-24 00:43:26 +00001070 /* ignore SIGPIPE */
1071 signal(SIGPIPE, SIG_IGN);
Damien Miller95def091999-11-25 00:26:21 +11001072
Damien Miller95def091999-11-25 00:26:21 +11001073 /* Start listening for a socket, unless started from inetd. */
1074 if (inetd_flag) {
Ben Lindstrom206941f2001-04-15 14:27:16 +00001075 int s1;
Damien Miller95def091999-11-25 00:26:21 +11001076 s1 = dup(0); /* Make sure descriptors 0, 1, and 2 are in use. */
Ben Lindstrom206941f2001-04-15 14:27:16 +00001077 dup(s1);
Damien Miller95def091999-11-25 00:26:21 +11001078 sock_in = dup(0);
1079 sock_out = dup(1);
Damien Miller994cf142000-07-21 10:19:44 +10001080 startup_pipe = -1;
Damien Millereba71ba2000-04-29 23:57:08 +10001081 /*
1082 * We intentionally do not close the descriptors 0, 1, and 2
1083 * as our code for setting the descriptors won\'t work if
1084 * ttyfd happens to be one of those.
1085 */
Damien Miller95def091999-11-25 00:26:21 +11001086 debug("inetd sockets after dupping: %d, %d", sock_in, sock_out);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001087 if (options.protocol & SSH_PROTO_1)
Ben Lindstromca42d5f2001-03-09 18:25:32 +00001088 generate_ephemeral_server_key();
Damien Miller95def091999-11-25 00:26:21 +11001089 } else {
Damien Miller34132e52000-01-14 15:45:46 +11001090 for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
1091 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1092 continue;
1093 if (num_listen_socks >= MAX_LISTEN_SOCKS)
1094 fatal("Too many listen sockets. "
1095 "Enlarge MAX_LISTEN_SOCKS");
1096 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
1097 ntop, sizeof(ntop), strport, sizeof(strport),
1098 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
1099 error("getnameinfo failed");
1100 continue;
1101 }
1102 /* Create socket for listening. */
1103 listen_sock = socket(ai->ai_family, SOCK_STREAM, 0);
1104 if (listen_sock < 0) {
1105 /* kernel may not support ipv6 */
1106 verbose("socket: %.100s", strerror(errno));
1107 continue;
1108 }
1109 if (fcntl(listen_sock, F_SETFL, O_NONBLOCK) < 0) {
1110 error("listen_sock O_NONBLOCK: %s", strerror(errno));
1111 close(listen_sock);
1112 continue;
1113 }
1114 /*
1115 * Set socket options. We try to make the port
1116 * reusable and have it close as fast as possible
1117 * without waiting in unnecessary wait states on
1118 * close.
1119 */
1120 setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
Ben Lindstrom733a2352002-03-05 01:31:28 +00001121 &on, sizeof(on));
Damien Miller34132e52000-01-14 15:45:46 +11001122 linger.l_onoff = 1;
1123 linger.l_linger = 5;
1124 setsockopt(listen_sock, SOL_SOCKET, SO_LINGER,
Ben Lindstrom733a2352002-03-05 01:31:28 +00001125 &linger, sizeof(linger));
Damien Miller95def091999-11-25 00:26:21 +11001126
Damien Miller34132e52000-01-14 15:45:46 +11001127 debug("Bind to port %s on %s.", strport, ntop);
Damien Miller95def091999-11-25 00:26:21 +11001128
Damien Miller34132e52000-01-14 15:45:46 +11001129 /* Bind the socket to the desired port. */
Damien Miller0a4e27d2001-02-18 12:36:39 +11001130 if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1131 if (!ai->ai_next)
1132 error("Bind to port %s on %s failed: %.200s.",
1133 strport, ntop, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11001134 close(listen_sock);
1135 continue;
1136 }
1137 listen_socks[num_listen_socks] = listen_sock;
1138 num_listen_socks++;
Damien Miller95def091999-11-25 00:26:21 +11001139
Damien Miller34132e52000-01-14 15:45:46 +11001140 /* Start listening on the port. */
1141 log("Server listening on %s port %s.", ntop, strport);
1142 if (listen(listen_sock, 5) < 0)
1143 fatal("listen: %.100s", strerror(errno));
1144
Damien Miller95def091999-11-25 00:26:21 +11001145 }
Damien Miller34132e52000-01-14 15:45:46 +11001146 freeaddrinfo(options.listen_addrs);
1147
1148 if (!num_listen_socks)
1149 fatal("Cannot bind any address.");
1150
Ben Lindstrom98097862001-06-25 05:10:20 +00001151 if (options.protocol & SSH_PROTO_1)
1152 generate_ephemeral_server_key();
1153
1154 /*
1155 * Arrange to restart on SIGHUP. The handler needs
1156 * listen_sock.
1157 */
1158 signal(SIGHUP, sighup_handler);
1159
1160 signal(SIGTERM, sigterm_handler);
1161 signal(SIGQUIT, sigterm_handler);
1162
1163 /* Arrange SIGCHLD to be caught. */
1164 signal(SIGCHLD, main_sigchld_handler);
1165
1166 /* Write out the pid file after the sigterm handler is setup */
Damien Miller95def091999-11-25 00:26:21 +11001167 if (!debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +11001168 /*
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001169 * Record our pid in /var/run/sshd.pid to make it
1170 * easier to kill the correct sshd. We don't want to
1171 * do this before the bind above because the bind will
Damien Miller5428f641999-11-25 11:54:57 +11001172 * fail if there already is a daemon, and this will
1173 * overwrite any old pid in the file.
1174 */
Damien Millerbac2d8a2000-09-05 16:13:06 +11001175 f = fopen(options.pid_file, "wb");
Damien Miller95def091999-11-25 00:26:21 +11001176 if (f) {
Ben Lindstromce0f6342002-06-11 16:42:49 +00001177 fprintf(f, "%ld\n", (long) getpid());
Damien Miller95def091999-11-25 00:26:21 +11001178 fclose(f);
1179 }
1180 }
Damien Miller95def091999-11-25 00:26:21 +11001181
Damien Miller34132e52000-01-14 15:45:46 +11001182 /* setup fd set for listen */
Damien Miller37023962000-07-11 17:31:38 +10001183 fdset = NULL;
Damien Miller34132e52000-01-14 15:45:46 +11001184 maxfd = 0;
1185 for (i = 0; i < num_listen_socks; i++)
1186 if (listen_socks[i] > maxfd)
1187 maxfd = listen_socks[i];
Damien Miller37023962000-07-11 17:31:38 +10001188 /* pipes connected to unauthenticated childs */
1189 startup_pipes = xmalloc(options.max_startups * sizeof(int));
1190 for (i = 0; i < options.max_startups; i++)
1191 startup_pipes[i] = -1;
Damien Miller34132e52000-01-14 15:45:46 +11001192
Damien Miller5428f641999-11-25 11:54:57 +11001193 /*
1194 * Stay listening for connections until the system crashes or
1195 * the daemon is killed with a signal.
1196 */
Damien Miller95def091999-11-25 00:26:21 +11001197 for (;;) {
1198 if (received_sighup)
1199 sighup_restart();
Damien Miller37023962000-07-11 17:31:38 +10001200 if (fdset != NULL)
1201 xfree(fdset);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001202 fdsetsz = howmany(maxfd+1, NFDBITS) * sizeof(fd_mask);
Damien Miller37023962000-07-11 17:31:38 +10001203 fdset = (fd_set *)xmalloc(fdsetsz);
Damien Miller34132e52000-01-14 15:45:46 +11001204 memset(fdset, 0, fdsetsz);
Damien Miller37023962000-07-11 17:31:38 +10001205
Damien Miller34132e52000-01-14 15:45:46 +11001206 for (i = 0; i < num_listen_socks; i++)
1207 FD_SET(listen_socks[i], fdset);
Damien Miller37023962000-07-11 17:31:38 +10001208 for (i = 0; i < options.max_startups; i++)
1209 if (startup_pipes[i] != -1)
1210 FD_SET(startup_pipes[i], fdset);
1211
1212 /* Wait in select until there is a connection. */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001213 ret = select(maxfd+1, fdset, NULL, NULL, NULL);
1214 if (ret < 0 && errno != EINTR)
1215 error("select: %.100s", strerror(errno));
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001216 if (received_sigterm) {
1217 log("Received signal %d; terminating.",
Ben Lindstromf8f065b2001-12-06 17:52:16 +00001218 (int) received_sigterm);
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001219 close_listen_socks();
1220 unlink(options.pid_file);
1221 exit(255);
1222 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001223 if (key_used && key_do_regen) {
Ben Lindstromca42d5f2001-03-09 18:25:32 +00001224 generate_ephemeral_server_key();
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001225 key_used = 0;
1226 key_do_regen = 0;
Damien Miller34132e52000-01-14 15:45:46 +11001227 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001228 if (ret < 0)
1229 continue;
1230
Damien Miller37023962000-07-11 17:31:38 +10001231 for (i = 0; i < options.max_startups; i++)
1232 if (startup_pipes[i] != -1 &&
1233 FD_ISSET(startup_pipes[i], fdset)) {
1234 /*
1235 * the read end of the pipe is ready
1236 * if the child has closed the pipe
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001237 * after successful authentication
Damien Miller37023962000-07-11 17:31:38 +10001238 * or if the child has died
1239 */
1240 close(startup_pipes[i]);
1241 startup_pipes[i] = -1;
1242 startups--;
1243 }
Damien Miller34132e52000-01-14 15:45:46 +11001244 for (i = 0; i < num_listen_socks; i++) {
1245 if (!FD_ISSET(listen_socks[i], fdset))
Damien Miller95def091999-11-25 00:26:21 +11001246 continue;
Damien Miller37023962000-07-11 17:31:38 +10001247 fromlen = sizeof(from);
1248 newsock = accept(listen_socks[i], (struct sockaddr *)&from,
1249 &fromlen);
1250 if (newsock < 0) {
1251 if (errno != EINTR && errno != EWOULDBLOCK)
1252 error("accept: %.100s", strerror(errno));
1253 continue;
1254 }
1255 if (fcntl(newsock, F_SETFL, 0) < 0) {
1256 error("newsock del O_NONBLOCK: %s", strerror(errno));
Damien Miller72c336d2001-12-21 12:44:28 +11001257 close(newsock);
Damien Miller37023962000-07-11 17:31:38 +10001258 continue;
1259 }
Damien Miller942da032000-08-18 13:59:06 +10001260 if (drop_connection(startups) == 1) {
1261 debug("drop connection #%d", startups);
Damien Miller37023962000-07-11 17:31:38 +10001262 close(newsock);
1263 continue;
1264 }
1265 if (pipe(startup_p) == -1) {
1266 close(newsock);
1267 continue;
1268 }
1269
1270 for (j = 0; j < options.max_startups; j++)
1271 if (startup_pipes[j] == -1) {
1272 startup_pipes[j] = startup_p[0];
1273 if (maxfd < startup_p[0])
1274 maxfd = startup_p[0];
1275 startups++;
1276 break;
1277 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001278
Damien Miller5428f641999-11-25 11:54:57 +11001279 /*
Damien Miller37023962000-07-11 17:31:38 +10001280 * Got connection. Fork a child to handle it, unless
1281 * we are in debugging mode.
Damien Miller5428f641999-11-25 11:54:57 +11001282 */
Damien Miller37023962000-07-11 17:31:38 +10001283 if (debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +11001284 /*
Damien Miller37023962000-07-11 17:31:38 +10001285 * In debugging mode. Close the listening
1286 * socket, and start processing the
1287 * connection without forking.
Damien Miller5428f641999-11-25 11:54:57 +11001288 */
Damien Miller37023962000-07-11 17:31:38 +10001289 debug("Server will not fork when running in debugging mode.");
Damien Miller34132e52000-01-14 15:45:46 +11001290 close_listen_socks();
Damien Miller95def091999-11-25 00:26:21 +11001291 sock_in = newsock;
1292 sock_out = newsock;
Damien Miller4d97ba22000-07-11 18:15:50 +10001293 startup_pipe = -1;
Damien Miller182ee6e2000-07-12 09:45:27 +10001294 pid = getpid();
Damien Miller95def091999-11-25 00:26:21 +11001295 break;
Damien Miller37023962000-07-11 17:31:38 +10001296 } else {
1297 /*
1298 * Normal production daemon. Fork, and have
1299 * the child process the connection. The
1300 * parent continues listening.
1301 */
1302 if ((pid = fork()) == 0) {
1303 /*
1304 * Child. Close the listening and max_startup
1305 * sockets. Start using the accepted socket.
1306 * Reinitialize logging (since our pid has
1307 * changed). We break out of the loop to handle
1308 * the connection.
1309 */
1310 startup_pipe = startup_p[1];
Ben Lindstromd84df982001-12-06 16:35:40 +00001311 close_startup_pipes();
Damien Miller37023962000-07-11 17:31:38 +10001312 close_listen_socks();
1313 sock_in = newsock;
1314 sock_out = newsock;
Kevin Stevesec84dc12000-12-13 17:45:15 +00001315 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller37023962000-07-11 17:31:38 +10001316 break;
1317 }
Damien Miller95def091999-11-25 00:26:21 +11001318 }
Damien Miller37023962000-07-11 17:31:38 +10001319
1320 /* Parent. Stay in the loop. */
1321 if (pid < 0)
1322 error("fork: %.100s", strerror(errno));
1323 else
Ben Lindstromce0f6342002-06-11 16:42:49 +00001324 debug("Forked child %ld.", (long)pid);
Damien Miller37023962000-07-11 17:31:38 +10001325
1326 close(startup_p[1]);
1327
1328 /* Mark that the key has been used (it was "given" to the child). */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001329 if ((options.protocol & SSH_PROTO_1) &&
1330 key_used == 0) {
1331 /* Schedule server key regeneration alarm. */
1332 signal(SIGALRM, key_regeneration_alarm);
1333 alarm(options.key_regeneration_time);
1334 key_used = 1;
1335 }
Damien Miller37023962000-07-11 17:31:38 +10001336
1337 arc4random_stir();
1338
1339 /* Close the new socket (the child is now taking care of it). */
1340 close(newsock);
Damien Miller95def091999-11-25 00:26:21 +11001341 }
Damien Miller34132e52000-01-14 15:45:46 +11001342 /* child process check (or debug mode) */
1343 if (num_listen_socks < 0)
1344 break;
Damien Miller95def091999-11-25 00:26:21 +11001345 }
1346 }
1347
1348 /* This is the child processing a new connection. */
1349
Damien Miller5428f641999-11-25 11:54:57 +11001350 /*
Ben Lindstrom17401b62002-05-15 16:17:56 +00001351 * Create a new session and process group since the 4.4BSD
1352 * setlogin() affects the entire process group. We don't
1353 * want the child to be able to affect the parent.
1354 */
Kevin Stevesc5041ac2002-05-21 17:50:21 +00001355#if 0
1356 /* XXX: this breaks Solaris */
Ben Lindstrom17401b62002-05-15 16:17:56 +00001357 if (setsid() < 0)
1358 error("setsid: %.100s", strerror(errno));
Kevin Stevesc5041ac2002-05-21 17:50:21 +00001359#endif
Ben Lindstrom17401b62002-05-15 16:17:56 +00001360
1361 /*
Damien Miller5428f641999-11-25 11:54:57 +11001362 * Disable the key regeneration alarm. We will not regenerate the
1363 * key since we are no longer in a position to give it to anyone. We
1364 * will not restart on SIGHUP since it no longer makes sense.
1365 */
Damien Miller95def091999-11-25 00:26:21 +11001366 alarm(0);
1367 signal(SIGALRM, SIG_DFL);
1368 signal(SIGHUP, SIG_DFL);
1369 signal(SIGTERM, SIG_DFL);
1370 signal(SIGQUIT, SIG_DFL);
1371 signal(SIGCHLD, SIG_DFL);
Damien Miller4e0f5e12000-08-29 11:05:50 +11001372 signal(SIGINT, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001373
Damien Miller5428f641999-11-25 11:54:57 +11001374 /*
1375 * Set socket options for the connection. We want the socket to
1376 * close as fast as possible without waiting for anything. If the
1377 * connection is not a socket, these will do nothing.
1378 */
1379 /* setsockopt(sock_in, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on)); */
Damien Miller95def091999-11-25 00:26:21 +11001380 linger.l_onoff = 1;
1381 linger.l_linger = 5;
Ben Lindstrom733a2352002-03-05 01:31:28 +00001382 setsockopt(sock_in, SOL_SOCKET, SO_LINGER, &linger, sizeof(linger));
Damien Miller95def091999-11-25 00:26:21 +11001383
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001384 /* Set keepalives if requested. */
1385 if (options.keepalives &&
Ben Lindstrom733a2352002-03-05 01:31:28 +00001386 setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, &on,
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001387 sizeof(on)) < 0)
1388 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
1389
Damien Miller5428f641999-11-25 11:54:57 +11001390 /*
1391 * Register our connection. This turns encryption off because we do
1392 * not have a key.
1393 */
Damien Miller95def091999-11-25 00:26:21 +11001394 packet_set_connection(sock_in, sock_out);
1395
1396 remote_port = get_remote_port();
1397 remote_ip = get_remote_ipaddr();
1398
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001399#ifdef LIBWRAP
Damien Miller6a4a4b92001-11-12 11:07:11 +11001400 /* Check whether logins are denied from this host. */
Damien Miller95def091999-11-25 00:26:21 +11001401 {
1402 struct request_info req;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001403
Ben Lindstromce89dac2001-09-12 16:58:04 +00001404 request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, 0);
Damien Miller95def091999-11-25 00:26:21 +11001405 fromhost(&req);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001406
Damien Miller95def091999-11-25 00:26:21 +11001407 if (!hosts_access(&req)) {
Damien Miller6a4a4b92001-11-12 11:07:11 +11001408 debug("Connection refused by tcp wrapper");
Ben Lindstrom7de696e2001-03-29 00:45:12 +00001409 refuse(&req);
Damien Miller6a4a4b92001-11-12 11:07:11 +11001410 /* NOTREACHED */
1411 fatal("libwrap refuse returns");
Damien Miller95def091999-11-25 00:26:21 +11001412 }
Damien Miller95def091999-11-25 00:26:21 +11001413 }
Damien Miller34132e52000-01-14 15:45:46 +11001414#endif /* LIBWRAP */
Damien Miller6a4a4b92001-11-12 11:07:11 +11001415
Damien Miller95def091999-11-25 00:26:21 +11001416 /* Log the connection. */
1417 verbose("Connection from %.500s port %d", remote_ip, remote_port);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001418
Damien Miller5428f641999-11-25 11:54:57 +11001419 /*
1420 * We don\'t want to listen forever unless the other side
1421 * successfully authenticates itself. So we set up an alarm which is
1422 * cleared after successful authentication. A limit of zero
1423 * indicates no limit. Note that we don\'t set the alarm in debugging
1424 * mode; it is just annoying to have the server exit just when you
1425 * are about to discover the bug.
1426 */
Damien Miller95def091999-11-25 00:26:21 +11001427 signal(SIGALRM, grace_alarm_handler);
1428 if (!debug_flag)
1429 alarm(options.login_grace_time);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001430
Damien Millerb38eff82000-04-01 11:09:21 +10001431 sshd_exchange_identification(sock_in, sock_out);
Damien Miller5428f641999-11-25 11:54:57 +11001432 /*
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001433 * Check that the connection comes from a privileged port.
Ben Lindstromf666fec2002-06-06 19:51:58 +00001434 * Rhosts-Authentication only makes sense from privileged
Damien Miller5428f641999-11-25 11:54:57 +11001435 * programs. Of course, if the intruder has root access on his local
1436 * machine, he can connect from any port. So do not use these
1437 * authentication methods from machines that you do not trust.
1438 */
Damien Miller654c03f2002-02-13 13:54:44 +11001439 if (options.rhosts_authentication &&
1440 (remote_port >= IPPORT_RESERVED ||
1441 remote_port < IPPORT_RESERVED / 2)) {
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001442 debug("Rhosts Authentication disabled, "
Damien Miller00b61642001-11-12 10:51:23 +11001443 "originating port %d not trusted.", remote_port);
Damien Miller95def091999-11-25 00:26:21 +11001444 options.rhosts_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +11001445 }
Ben Lindstromec95ed92001-07-04 04:21:14 +00001446#if defined(KRB4) && !defined(KRB5)
Damien Miller34132e52000-01-14 15:45:46 +11001447 if (!packet_connection_is_ipv4() &&
1448 options.kerberos_authentication) {
1449 debug("Kerberos Authentication disabled, only available for IPv4.");
1450 options.kerberos_authentication = 0;
1451 }
Ben Lindstromec95ed92001-07-04 04:21:14 +00001452#endif /* KRB4 && !KRB5 */
Ben Lindstromf79aeff2001-02-10 21:27:11 +00001453#ifdef AFS
1454 /* If machine has AFS, set process authentication group. */
1455 if (k_hasafs()) {
1456 k_setpag();
1457 k_unlog();
1458 }
1459#endif /* AFS */
Damien Miller34132e52000-01-14 15:45:46 +11001460
Damien Miller95def091999-11-25 00:26:21 +11001461 packet_set_nonblocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001462
Ben Lindstrom943481c2002-03-22 03:43:46 +00001463 if (use_privsep)
1464 if ((authctxt = privsep_preauth()) != NULL)
1465 goto authenticated;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001466
Damien Miller396691a2000-01-20 22:44:08 +11001467 /* perform the key exchange */
Damien Miller396691a2000-01-20 22:44:08 +11001468 /* authenticate user and start session */
Damien Millerefb4afe2000-04-12 18:45:05 +10001469 if (compat20) {
1470 do_ssh2_kex();
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +00001471 authctxt = do_authentication2();
Damien Millerefb4afe2000-04-12 18:45:05 +10001472 } else {
1473 do_ssh1_kex();
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +00001474 authctxt = do_authentication();
Damien Millerefb4afe2000-04-12 18:45:05 +10001475 }
Ben Lindstrom943481c2002-03-22 03:43:46 +00001476 /*
1477 * If we use privilege separation, the unprivileged child transfers
1478 * the current keystate and exits
1479 */
1480 if (use_privsep) {
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001481 mm_send_keystate(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001482 exit(0);
Ben Lindstrom943481c2002-03-22 03:43:46 +00001483 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001484
1485 authenticated:
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001486 /*
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001487 * In privilege separation, we fork another child and prepare
1488 * file descriptor passing.
1489 */
1490 if (use_privsep) {
Ben Lindstrom943481c2002-03-22 03:43:46 +00001491 privsep_postauth(authctxt);
1492 /* the monitor process [priv] will not return */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001493 if (!compat20)
1494 destroy_sensitive_data();
1495 }
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +00001496
1497 /* Perform session preparation. */
1498 do_authenticated(authctxt);
1499
Damien Miller3a5b0232002-03-13 13:19:42 +11001500 /* The connection has been terminated. */
1501 verbose("Closing connection to %.100s", remote_ip);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001502
Damien Millerbeb4ba51999-12-28 15:09:35 +11001503#ifdef USE_PAM
Damien Millere72b7af1999-12-30 15:08:44 +11001504 finish_pam();
Damien Millerbeb4ba51999-12-28 15:09:35 +11001505#endif /* USE_PAM */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001506
Damien Miller95def091999-11-25 00:26:21 +11001507 packet_close();
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001508
1509 if (use_privsep)
1510 mm_terminate();
1511
Damien Miller95def091999-11-25 00:26:21 +11001512 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001513}
1514
Damien Miller95def091999-11-25 00:26:21 +11001515/*
Ben Lindstromabcb1452002-03-22 01:10:21 +00001516 * Decrypt session_key_int using our private server key and private host key
1517 * (key with larger modulus first).
1518 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001519int
Ben Lindstromabcb1452002-03-22 01:10:21 +00001520ssh1_session_key(BIGNUM *session_key_int)
1521{
1522 int rsafail = 0;
1523
1524 if (BN_cmp(sensitive_data.server_key->rsa->n, sensitive_data.ssh1_host_key->rsa->n) > 0) {
1525 /* Server key has bigger modulus. */
1526 if (BN_num_bits(sensitive_data.server_key->rsa->n) <
1527 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1528 fatal("do_connection: %s: server_key %d < host_key %d + SSH_KEY_BITS_RESERVED %d",
1529 get_remote_ipaddr(),
1530 BN_num_bits(sensitive_data.server_key->rsa->n),
1531 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1532 SSH_KEY_BITS_RESERVED);
1533 }
1534 if (rsa_private_decrypt(session_key_int, session_key_int,
1535 sensitive_data.server_key->rsa) <= 0)
1536 rsafail++;
1537 if (rsa_private_decrypt(session_key_int, session_key_int,
1538 sensitive_data.ssh1_host_key->rsa) <= 0)
1539 rsafail++;
1540 } else {
1541 /* Host key has bigger modulus (or they are equal). */
1542 if (BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) <
1543 BN_num_bits(sensitive_data.server_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1544 fatal("do_connection: %s: host_key %d < server_key %d + SSH_KEY_BITS_RESERVED %d",
1545 get_remote_ipaddr(),
1546 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1547 BN_num_bits(sensitive_data.server_key->rsa->n),
1548 SSH_KEY_BITS_RESERVED);
1549 }
1550 if (rsa_private_decrypt(session_key_int, session_key_int,
1551 sensitive_data.ssh1_host_key->rsa) < 0)
1552 rsafail++;
1553 if (rsa_private_decrypt(session_key_int, session_key_int,
1554 sensitive_data.server_key->rsa) < 0)
1555 rsafail++;
1556 }
1557 return (rsafail);
1558}
1559/*
Damien Miller396691a2000-01-20 22:44:08 +11001560 * SSH1 key exchange
Damien Miller95def091999-11-25 00:26:21 +11001561 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001562static void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001563do_ssh1_kex(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001564{
Damien Miller95def091999-11-25 00:26:21 +11001565 int i, len;
Damien Miller7650bc62001-01-30 09:27:26 +11001566 int rsafail = 0;
Damien Miller95def091999-11-25 00:26:21 +11001567 BIGNUM *session_key_int;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001568 u_char session_key[SSH_SESSION_KEY_LENGTH];
1569 u_char cookie[8];
1570 u_int cipher_type, auth_mask, protocol_flags;
Damien Miller95def091999-11-25 00:26:21 +11001571 u_int32_t rand = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001572
Damien Miller5428f641999-11-25 11:54:57 +11001573 /*
1574 * Generate check bytes that the client must send back in the user
1575 * packet in order for it to be accepted; this is used to defy ip
1576 * spoofing attacks. Note that this only works against somebody
1577 * doing IP spoofing from a remote machine; any machine on the local
1578 * network can still see outgoing packets and catch the random
1579 * cookie. This only affects rhosts authentication, and this is one
1580 * of the reasons why it is inherently insecure.
1581 */
Damien Miller95def091999-11-25 00:26:21 +11001582 for (i = 0; i < 8; i++) {
1583 if (i % 4 == 0)
1584 rand = arc4random();
Damien Miller396691a2000-01-20 22:44:08 +11001585 cookie[i] = rand & 0xff;
Damien Miller95def091999-11-25 00:26:21 +11001586 rand >>= 8;
1587 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001588
Damien Miller5428f641999-11-25 11:54:57 +11001589 /*
1590 * Send our public key. We include in the packet 64 bits of random
1591 * data that must be matched in the reply in order to prevent IP
1592 * spoofing.
1593 */
Damien Miller95def091999-11-25 00:26:21 +11001594 packet_start(SSH_SMSG_PUBLIC_KEY);
1595 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001596 packet_put_char(cookie[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001597
Damien Miller95def091999-11-25 00:26:21 +11001598 /* Store our public server RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001599 packet_put_int(BN_num_bits(sensitive_data.server_key->rsa->n));
1600 packet_put_bignum(sensitive_data.server_key->rsa->e);
1601 packet_put_bignum(sensitive_data.server_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001602
Damien Miller95def091999-11-25 00:26:21 +11001603 /* Store our public host RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001604 packet_put_int(BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
1605 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->e);
1606 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001607
Damien Miller95def091999-11-25 00:26:21 +11001608 /* Put protocol flags. */
1609 packet_put_int(SSH_PROTOFLAG_HOST_IN_FWD_OPEN);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001610
Damien Miller95def091999-11-25 00:26:21 +11001611 /* Declare which ciphers we support. */
Damien Miller874d77b2000-10-14 16:23:11 +11001612 packet_put_int(cipher_mask_ssh1(0));
Damien Miller95def091999-11-25 00:26:21 +11001613
1614 /* Declare supported authentication types. */
1615 auth_mask = 0;
1616 if (options.rhosts_authentication)
1617 auth_mask |= 1 << SSH_AUTH_RHOSTS;
1618 if (options.rhosts_rsa_authentication)
1619 auth_mask |= 1 << SSH_AUTH_RHOSTS_RSA;
1620 if (options.rsa_authentication)
1621 auth_mask |= 1 << SSH_AUTH_RSA;
Ben Lindstromec95ed92001-07-04 04:21:14 +00001622#if defined(KRB4) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +11001623 if (options.kerberos_authentication)
1624 auth_mask |= 1 << SSH_AUTH_KERBEROS;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001625#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +00001626#if defined(AFS) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +11001627 if (options.kerberos_tgt_passing)
1628 auth_mask |= 1 << SSH_PASS_KERBEROS_TGT;
Ben Lindstromec95ed92001-07-04 04:21:14 +00001629#endif
1630#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +11001631 if (options.afs_token_passing)
1632 auth_mask |= 1 << SSH_PASS_AFS_TOKEN;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001633#endif
Ben Lindstrom551ea372001-06-05 18:56:16 +00001634 if (options.challenge_response_authentication == 1)
Damien Miller95def091999-11-25 00:26:21 +11001635 auth_mask |= 1 << SSH_AUTH_TIS;
Damien Miller95def091999-11-25 00:26:21 +11001636 if (options.password_authentication)
1637 auth_mask |= 1 << SSH_AUTH_PASSWORD;
1638 packet_put_int(auth_mask);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001639
Damien Miller95def091999-11-25 00:26:21 +11001640 /* Send the packet and wait for it to be sent. */
1641 packet_send();
1642 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001643
Damien Miller0bc1bd82000-11-13 22:57:25 +11001644 debug("Sent %d bit server key and %d bit host key.",
1645 BN_num_bits(sensitive_data.server_key->rsa->n),
1646 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001647
Damien Miller95def091999-11-25 00:26:21 +11001648 /* Read clients reply (cipher type and session key). */
Damien Millerdff50992002-01-22 23:16:32 +11001649 packet_read_expect(SSH_CMSG_SESSION_KEY);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001650
Damien Miller50945fa1999-12-09 10:31:37 +11001651 /* Get cipher type and check whether we accept this. */
Damien Miller95def091999-11-25 00:26:21 +11001652 cipher_type = packet_get_char();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001653
Damien Miller874d77b2000-10-14 16:23:11 +11001654 if (!(cipher_mask_ssh1(0) & (1 << cipher_type)))
Damien Miller50945fa1999-12-09 10:31:37 +11001655 packet_disconnect("Warning: client selects unsupported cipher.");
1656
Damien Miller95def091999-11-25 00:26:21 +11001657 /* Get check bytes from the packet. These must match those we
1658 sent earlier with the public key packet. */
1659 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001660 if (cookie[i] != packet_get_char())
Damien Miller95def091999-11-25 00:26:21 +11001661 packet_disconnect("IP Spoofing check bytes do not match.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001662
Damien Miller95def091999-11-25 00:26:21 +11001663 debug("Encryption type: %.200s", cipher_name(cipher_type));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001664
Damien Miller95def091999-11-25 00:26:21 +11001665 /* Get the encrypted integer. */
Damien Millerda755162002-01-22 23:09:22 +11001666 if ((session_key_int = BN_new()) == NULL)
1667 fatal("do_ssh1_kex: BN_new failed");
Damien Millerd432ccf2002-01-22 23:14:44 +11001668 packet_get_bignum(session_key_int);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001669
Damien Miller95def091999-11-25 00:26:21 +11001670 protocol_flags = packet_get_int();
1671 packet_set_protocol_flags(protocol_flags);
Damien Miller48b03fc2002-01-22 23:11:40 +11001672 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001673
Ben Lindstromabcb1452002-03-22 01:10:21 +00001674 /* Decrypt session_key_int using host/server keys */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001675 rsafail = PRIVSEP(ssh1_session_key(session_key_int));
1676
Damien Miller5428f641999-11-25 11:54:57 +11001677 /*
1678 * Extract session key from the decrypted integer. The key is in the
1679 * least significant 256 bits of the integer; the first byte of the
1680 * key is in the highest bits.
1681 */
Damien Miller7650bc62001-01-30 09:27:26 +11001682 if (!rsafail) {
1683 BN_mask_bits(session_key_int, sizeof(session_key) * 8);
1684 len = BN_num_bytes(session_key_int);
1685 if (len < 0 || len > sizeof(session_key)) {
1686 error("do_connection: bad session key len from %s: "
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001687 "session_key_int %d > sizeof(session_key) %lu",
1688 get_remote_ipaddr(), len, (u_long)sizeof(session_key));
Damien Miller7650bc62001-01-30 09:27:26 +11001689 rsafail++;
1690 } else {
1691 memset(session_key, 0, sizeof(session_key));
1692 BN_bn2bin(session_key_int,
1693 session_key + sizeof(session_key) - len);
Ben Lindstromeb648a72001-03-05 06:00:29 +00001694
1695 compute_session_id(session_id, cookie,
1696 sensitive_data.ssh1_host_key->rsa->n,
1697 sensitive_data.server_key->rsa->n);
1698 /*
1699 * Xor the first 16 bytes of the session key with the
1700 * session id.
1701 */
1702 for (i = 0; i < 16; i++)
1703 session_key[i] ^= session_id[i];
Damien Miller7650bc62001-01-30 09:27:26 +11001704 }
1705 }
1706 if (rsafail) {
Ben Lindstromeb648a72001-03-05 06:00:29 +00001707 int bytes = BN_num_bytes(session_key_int);
Ben Lindstrom13c5d3b2002-02-26 18:00:48 +00001708 u_char *buf = xmalloc(bytes);
Ben Lindstromeb648a72001-03-05 06:00:29 +00001709 MD5_CTX md;
1710
Damien Miller7650bc62001-01-30 09:27:26 +11001711 log("do_connection: generating a fake encryption key");
Ben Lindstromeb648a72001-03-05 06:00:29 +00001712 BN_bn2bin(session_key_int, buf);
1713 MD5_Init(&md);
1714 MD5_Update(&md, buf, bytes);
1715 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1716 MD5_Final(session_key, &md);
1717 MD5_Init(&md);
1718 MD5_Update(&md, session_key, 16);
1719 MD5_Update(&md, buf, bytes);
1720 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1721 MD5_Final(session_key + 16, &md);
1722 memset(buf, 0, bytes);
1723 xfree(buf);
Ben Lindstrom941ac822001-03-05 06:25:23 +00001724 for (i = 0; i < 16; i++)
1725 session_id[i] = session_key[i] ^ session_key[i + 16];
Damien Miller7650bc62001-01-30 09:27:26 +11001726 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001727 /* Destroy the private and public keys. No longer. */
Damien Miller3a5b0232002-03-13 13:19:42 +11001728 destroy_sensitive_data();
Ben Lindstromeb648a72001-03-05 06:00:29 +00001729
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001730 if (use_privsep)
1731 mm_ssh1_session_id(session_id);
1732
Damien Miller396691a2000-01-20 22:44:08 +11001733 /* Destroy the decrypted integer. It is no longer needed. */
1734 BN_clear_free(session_key_int);
1735
Damien Miller95def091999-11-25 00:26:21 +11001736 /* Set the session key. From this on all communications will be encrypted. */
1737 packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, cipher_type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001738
Damien Miller95def091999-11-25 00:26:21 +11001739 /* Destroy our copy of the session key. It is no longer needed. */
1740 memset(session_key, 0, sizeof(session_key));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001741
Damien Miller95def091999-11-25 00:26:21 +11001742 debug("Received session key; encryption turned on.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001743
Ben Lindstromf666fec2002-06-06 19:51:58 +00001744 /* Send an acknowledgment packet. Note that this packet is sent encrypted. */
Damien Miller95def091999-11-25 00:26:21 +11001745 packet_start(SSH_SMSG_SUCCESS);
1746 packet_send();
1747 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001748}
Damien Millerefb4afe2000-04-12 18:45:05 +10001749
1750/*
1751 * SSH2 key exchange: diffie-hellman-group1-sha1
1752 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001753static void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001754do_ssh2_kex(void)
Damien Millerefb4afe2000-04-12 18:45:05 +10001755{
Damien Millerefb4afe2000-04-12 18:45:05 +10001756 Kex *kex;
Damien Millerefb4afe2000-04-12 18:45:05 +10001757
Damien Miller78928792000-04-12 20:17:38 +10001758 if (options.ciphers != NULL) {
Damien Miller4af51302000-04-16 11:18:38 +10001759 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
Damien Miller78928792000-04-12 20:17:38 +10001760 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
1761 }
Damien Millera0ff4662001-03-30 10:49:35 +10001762 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
1763 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
1764 myproposal[PROPOSAL_ENC_ALGS_STOC] =
1765 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
1766
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001767 if (options.macs != NULL) {
1768 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
1769 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
1770 }
Ben Lindstrom23e0f662002-06-21 01:09:47 +00001771 if (!options.compression) {
1772 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
1773 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none";
1774 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001775 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = list_hostkey_types();
1776
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001777 /* start key exchange */
Ben Lindstrom238abf62001-04-04 17:52:53 +00001778 kex = kex_setup(myproposal);
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +00001779 kex->server = 1;
1780 kex->client_version_string=client_version_string;
1781 kex->server_version_string=server_version_string;
1782 kex->load_host_key=&get_hostkey_by_type;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001783 kex->host_key_index=&get_hostkey_index;
Damien Millerefb4afe2000-04-12 18:45:05 +10001784
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001785 xxx_kex = kex;
1786
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001787 dispatch_run(DISPATCH_BLOCK, &kex->done, kex);
Damien Miller874d77b2000-10-14 16:23:11 +11001788
Ben Lindstrom2d90e002001-04-04 02:00:54 +00001789 session_id2 = kex->session_id;
1790 session_id2_len = kex->session_id_len;
1791
Damien Miller874d77b2000-10-14 16:23:11 +11001792#ifdef DEBUG_KEXDH
1793 /* send 1st encrypted/maced/compressed message */
1794 packet_start(SSH2_MSG_IGNORE);
1795 packet_put_cstring("markus");
1796 packet_send();
1797 packet_write_wait();
1798#endif
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +00001799 debug("KEX done");
Damien Millerefb4afe2000-04-12 18:45:05 +10001800}