blob: e73135c7b0863c7497ac803996c3829bce7a69d5 [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"
Damien Miller61d36802003-06-02 19:09:48 +100045RCSID("$OpenBSD: sshd.c,v 1.267 2003/05/29 16:58:45 deraadt 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 */
115int IPv4or6 = AF_UNSPEC;
116
Damien Miller95def091999-11-25 00:26:21 +1100117/*
118 * Debug mode flag. This can be set on the command line. If debug
119 * mode is enabled, extra debugging output will be sent to the system
120 * log, the daemon will not go to background, and will exit after processing
121 * the first connection.
122 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000123int debug_flag = 0;
124
Ben Lindstrom794325a2001-08-06 21:09:07 +0000125/* Flag indicating that the daemon should only test the configuration and keys. */
126int test_flag = 0;
127
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000128/* Flag indicating that the daemon is being started from inetd. */
129int inetd_flag = 0;
130
Ben Lindstromc72745a2000-12-02 19:03:54 +0000131/* Flag indicating that sshd should not detach and become a daemon. */
132int no_daemon_flag = 0;
133
Damien Miller5ce662a1999-11-11 17:57:39 +1100134/* debug goes to stderr unless inetd_flag is set */
135int log_stderr = 0;
136
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000137/* Saved arguments to main(). */
138char **saved_argv;
Damien Millerb8c656e2000-06-28 15:22:41 +1000139int saved_argc;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000140
Damien Miller5428f641999-11-25 11:54:57 +1100141/*
Damien Miller34132e52000-01-14 15:45:46 +1100142 * The sockets that the server is listening; this is used in the SIGHUP
143 * signal handler.
Damien Miller5428f641999-11-25 11:54:57 +1100144 */
Damien Miller34132e52000-01-14 15:45:46 +1100145#define MAX_LISTEN_SOCKS 16
146int listen_socks[MAX_LISTEN_SOCKS];
147int num_listen_socks = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000148
Damien Miller5428f641999-11-25 11:54:57 +1100149/*
150 * the client's version string, passed by sshd2 in compat mode. if != NULL,
151 * sshd will skip the version-number exchange
152 */
Damien Miller95def091999-11-25 00:26:21 +1100153char *client_version_string = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000154char *server_version_string = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000155
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000156/* for rekeying XXX fixme */
157Kex *xxx_kex;
158
Damien Miller5428f641999-11-25 11:54:57 +1100159/*
160 * Any really sensitive data in the application is contained in this
161 * structure. The idea is that this structure could be locked into memory so
162 * that the pages do not get written into swap. However, there are some
163 * problems. The private key contains BIGNUMs, and we do not (in principle)
164 * have access to the internals of them, and locking just the structure is
165 * not very useful. Currently, memory locking is not implemented.
166 */
Damien Miller95def091999-11-25 00:26:21 +1100167struct {
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000168 Key *server_key; /* ephemeral server key */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100169 Key *ssh1_host_key; /* ssh1 host key */
170 Key **host_keys; /* all private host keys */
171 int have_ssh1_key;
172 int have_ssh2_key;
Ben Lindstromeb648a72001-03-05 06:00:29 +0000173 u_char ssh1_cookie[SSH_SESSION_KEY_LENGTH];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000174} sensitive_data;
175
Damien Miller5428f641999-11-25 11:54:57 +1100176/*
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000177 * Flag indicating whether the RSA server key needs to be regenerated.
178 * Is set in the SIGALRM handler and cleared when the key is regenerated.
Damien Miller5428f641999-11-25 11:54:57 +1100179 */
Ben Lindstrom5e71c542001-12-06 16:48:14 +0000180static volatile sig_atomic_t key_do_regen = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000181
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000182/* This is set to true when a signal is received. */
Ben Lindstrom5e71c542001-12-06 16:48:14 +0000183static volatile sig_atomic_t received_sighup = 0;
184static volatile sig_atomic_t received_sigterm = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000185
Damien Millerb38eff82000-04-01 11:09:21 +1000186/* session identifier, used by RSA-auth */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000187u_char session_id[16];
Damien Millerb38eff82000-04-01 11:09:21 +1000188
Damien Millereba71ba2000-04-29 23:57:08 +1000189/* same for ssh2 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000190u_char *session_id2 = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000191int session_id2_len = 0;
192
Damien Miller942da032000-08-18 13:59:06 +1000193/* record remote hostname or ip */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000194u_int utmp_len = MAXHOSTNAMELEN;
Damien Miller942da032000-08-18 13:59:06 +1000195
Ben Lindstromd84df982001-12-06 16:35:40 +0000196/* options.max_startup sized array of fd ints */
197int *startup_pipes = NULL;
198int startup_pipe; /* in child */
199
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000200/* variables used for privilege separation */
Damien Miller8e7fb332003-02-24 12:03:03 +1100201int use_privsep;
202struct monitor *pmonitor;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000203
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000204/* Prototypes for various functions defined later in this file. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000205void destroy_sensitive_data(void);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000206void demote_sensitive_data(void);
Damien Miller98c7ad62000-03-09 21:27:49 +1100207
Ben Lindstrombba81212001-06-25 05:01:22 +0000208static void do_ssh1_kex(void);
209static void do_ssh2_kex(void);
Damien Miller874d77b2000-10-14 16:23:11 +1100210
Damien Miller98c7ad62000-03-09 21:27:49 +1100211/*
Damien Miller34132e52000-01-14 15:45:46 +1100212 * Close all listening sockets
213 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000214static void
Damien Miller34132e52000-01-14 15:45:46 +1100215close_listen_socks(void)
216{
217 int i;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000218
Damien Miller34132e52000-01-14 15:45:46 +1100219 for (i = 0; i < num_listen_socks; i++)
220 close(listen_socks[i]);
221 num_listen_socks = -1;
222}
223
Ben Lindstromd84df982001-12-06 16:35:40 +0000224static void
225close_startup_pipes(void)
226{
227 int i;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000228
Ben Lindstromd84df982001-12-06 16:35:40 +0000229 if (startup_pipes)
230 for (i = 0; i < options.max_startups; i++)
231 if (startup_pipes[i] != -1)
232 close(startup_pipes[i]);
233}
234
Damien Miller34132e52000-01-14 15:45:46 +1100235/*
Damien Miller95def091999-11-25 00:26:21 +1100236 * Signal handler for SIGHUP. Sshd execs itself when it receives SIGHUP;
237 * the effect is to reread the configuration file (and to regenerate
238 * the server key).
239 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000240static void
Damien Miller95def091999-11-25 00:26:21 +1100241sighup_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000242{
Ben Lindstrom07958482001-12-06 16:19:01 +0000243 int save_errno = errno;
244
Damien Miller95def091999-11-25 00:26:21 +1100245 received_sighup = 1;
246 signal(SIGHUP, sighup_handler);
Ben Lindstrom07958482001-12-06 16:19:01 +0000247 errno = save_errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000248}
249
Damien Miller95def091999-11-25 00:26:21 +1100250/*
251 * Called from the main program after receiving SIGHUP.
252 * Restarts the server.
253 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000254static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000255sighup_restart(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000256{
Damien Miller996acd22003-04-09 20:59:48 +1000257 logit("Received SIGHUP; restarting.");
Damien Miller34132e52000-01-14 15:45:46 +1100258 close_listen_socks();
Ben Lindstromd84df982001-12-06 16:35:40 +0000259 close_startup_pipes();
Damien Miller95def091999-11-25 00:26:21 +1100260 execv(saved_argv[0], saved_argv);
Damien Miller996acd22003-04-09 20:59:48 +1000261 logit("RESTART FAILED: av[0]='%.100s', error: %.100s.", saved_argv[0],
Ben Lindstrom822b6342002-06-23 21:38:49 +0000262 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100263 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000264}
265
Damien Miller95def091999-11-25 00:26:21 +1100266/*
267 * Generic signal handler for terminating signals in the master daemon.
Damien Miller95def091999-11-25 00:26:21 +1100268 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000269static void
Damien Miller95def091999-11-25 00:26:21 +1100270sigterm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000271{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000272 received_sigterm = sig;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000273}
274
Damien Miller95def091999-11-25 00:26:21 +1100275/*
276 * SIGCHLD handler. This is called whenever a child dies. This will then
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000277 * reap any zombies left by exited children.
Damien Miller95def091999-11-25 00:26:21 +1100278 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000279static void
Damien Miller95def091999-11-25 00:26:21 +1100280main_sigchld_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000281{
Damien Miller95def091999-11-25 00:26:21 +1100282 int save_errno = errno;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000283 pid_t pid;
Damien Miller95def091999-11-25 00:26:21 +1100284 int status;
Damien Miller431f66b1999-11-21 18:31:57 +1100285
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000286 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
287 (pid < 0 && errno == EINTR))
Damien Miller95def091999-11-25 00:26:21 +1100288 ;
Damien Miller431f66b1999-11-21 18:31:57 +1100289
Damien Miller95def091999-11-25 00:26:21 +1100290 signal(SIGCHLD, main_sigchld_handler);
291 errno = save_errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000292}
293
Damien Miller95def091999-11-25 00:26:21 +1100294/*
295 * Signal handler for the alarm after the login grace period has expired.
296 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000297static void
Damien Miller95def091999-11-25 00:26:21 +1100298grace_alarm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000299{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000300 /* XXX no idea how fix this signal handler */
301
Damien Miller95def091999-11-25 00:26:21 +1100302 /* Log error and exit. */
Damien Millerd27a76d2002-09-27 13:22:31 +1000303 fatal("Timeout before authentication for %s", get_remote_ipaddr());
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000304}
305
Damien Miller95def091999-11-25 00:26:21 +1100306/*
Damien Miller95def091999-11-25 00:26:21 +1100307 * Signal handler for the key regeneration alarm. Note that this
308 * alarm only occurs in the daemon waiting for connections, and it does not
309 * do anything with the private key or random state before forking.
310 * Thus there should be no concurrency control/asynchronous execution
311 * problems.
312 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000313static void
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000314generate_ephemeral_server_key(void)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100315{
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000316 u_int32_t rnd = 0;
Ben Lindstromeb648a72001-03-05 06:00:29 +0000317 int i;
318
Ben Lindstroma3700052001-04-05 23:26:32 +0000319 verbose("Generating %s%d bit RSA key.",
Damien Millerff75ac42001-03-30 10:50:32 +1000320 sensitive_data.server_key ? "new " : "", options.server_key_bits);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100321 if (sensitive_data.server_key != NULL)
322 key_free(sensitive_data.server_key);
Ben Lindstroma3700052001-04-05 23:26:32 +0000323 sensitive_data.server_key = key_generate(KEY_RSA1,
Damien Millerff75ac42001-03-30 10:50:32 +1000324 options.server_key_bits);
325 verbose("RSA key generation complete.");
Ben Lindstromeb648a72001-03-05 06:00:29 +0000326
327 for (i = 0; i < SSH_SESSION_KEY_LENGTH; i++) {
328 if (i % 4 == 0)
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000329 rnd = arc4random();
330 sensitive_data.ssh1_cookie[i] = rnd & 0xff;
331 rnd >>= 8;
Ben Lindstromeb648a72001-03-05 06:00:29 +0000332 }
333 arc4random_stir();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100334}
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000335
Ben Lindstrombba81212001-06-25 05:01:22 +0000336static void
Damien Miller95def091999-11-25 00:26:21 +1100337key_regeneration_alarm(int sig)
338{
339 int save_errno = errno;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000340
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000341 signal(SIGALRM, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +1100342 errno = save_errno;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000343 key_do_regen = 1;
Damien Miller95def091999-11-25 00:26:21 +1100344}
345
Ben Lindstrombba81212001-06-25 05:01:22 +0000346static void
Damien Millerb38eff82000-04-01 11:09:21 +1000347sshd_exchange_identification(int sock_in, int sock_out)
348{
Damien Miller78928792000-04-12 20:17:38 +1000349 int i, mismatch;
Damien Millerb38eff82000-04-01 11:09:21 +1000350 int remote_major, remote_minor;
Damien Miller78928792000-04-12 20:17:38 +1000351 int major, minor;
Damien Millerb38eff82000-04-01 11:09:21 +1000352 char *s;
353 char buf[256]; /* Must not be larger than remote_version. */
354 char remote_version[256]; /* Must be at least as big as buf. */
355
Damien Miller78928792000-04-12 20:17:38 +1000356 if ((options.protocol & SSH_PROTO_1) &&
357 (options.protocol & SSH_PROTO_2)) {
358 major = PROTOCOL_MAJOR_1;
359 minor = 99;
360 } else if (options.protocol & SSH_PROTO_2) {
361 major = PROTOCOL_MAJOR_2;
362 minor = PROTOCOL_MINOR_2;
363 } else {
364 major = PROTOCOL_MAJOR_1;
365 minor = PROTOCOL_MINOR_1;
366 }
367 snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n", major, minor, SSH_VERSION);
Damien Millerb38eff82000-04-01 11:09:21 +1000368 server_version_string = xstrdup(buf);
369
370 if (client_version_string == NULL) {
371 /* Send our protocol version identification. */
Ben Lindstrom5c385522002-06-23 21:23:20 +0000372 if (atomicio(write, sock_out, server_version_string,
373 strlen(server_version_string))
Damien Millerb38eff82000-04-01 11:09:21 +1000374 != strlen(server_version_string)) {
Damien Miller996acd22003-04-09 20:59:48 +1000375 logit("Could not write ident string to %s", get_remote_ipaddr());
Damien Millerb38eff82000-04-01 11:09:21 +1000376 fatal_cleanup();
377 }
378
Ben Lindstromf666fec2002-06-06 19:51:58 +0000379 /* Read other sides version identification. */
Ben Lindstroma3700052001-04-05 23:26:32 +0000380 memset(buf, 0, sizeof(buf));
Damien Millerb38eff82000-04-01 11:09:21 +1000381 for (i = 0; i < sizeof(buf) - 1; i++) {
Damien Millerbf7f4662000-06-23 10:16:38 +1000382 if (atomicio(read, sock_in, &buf[i], 1) != 1) {
Damien Miller996acd22003-04-09 20:59:48 +1000383 logit("Did not receive identification string from %s",
Ben Lindstroma9a29e12001-02-20 01:20:47 +0000384 get_remote_ipaddr());
Damien Millerb38eff82000-04-01 11:09:21 +1000385 fatal_cleanup();
386 }
387 if (buf[i] == '\r') {
Ben Lindstrom69d8c072001-03-22 22:45:33 +0000388 buf[i] = 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100389 /* Kludge for F-Secure Macintosh < 1.0.2 */
390 if (i == 12 &&
391 strncmp(buf, "SSH-1.5-W1.0", 12) == 0)
392 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000393 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000394 }
395 if (buf[i] == '\n') {
Ben Lindstrom69d8c072001-03-22 22:45:33 +0000396 buf[i] = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000397 break;
398 }
399 }
400 buf[sizeof(buf) - 1] = 0;
401 client_version_string = xstrdup(buf);
402 }
403
404 /*
405 * Check that the versions match. In future this might accept
406 * several versions and set appropriate flags to handle them.
407 */
408 if (sscanf(client_version_string, "SSH-%d.%d-%[^\n]\n",
409 &remote_major, &remote_minor, remote_version) != 3) {
Damien Miller4af51302000-04-16 11:18:38 +1000410 s = "Protocol mismatch.\n";
Damien Millerb38eff82000-04-01 11:09:21 +1000411 (void) atomicio(write, sock_out, s, strlen(s));
412 close(sock_in);
413 close(sock_out);
Damien Miller996acd22003-04-09 20:59:48 +1000414 logit("Bad protocol version identification '%.100s' from %s",
Damien Millerb38eff82000-04-01 11:09:21 +1000415 client_version_string, get_remote_ipaddr());
416 fatal_cleanup();
417 }
418 debug("Client protocol version %d.%d; client software version %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100419 remote_major, remote_minor, remote_version);
Damien Millerb38eff82000-04-01 11:09:21 +1000420
Damien Millerefb4afe2000-04-12 18:45:05 +1000421 compat_datafellows(remote_version);
422
Damien Millere9264972002-09-30 11:59:21 +1000423 if (datafellows & SSH_BUG_PROBE) {
Damien Miller996acd22003-04-09 20:59:48 +1000424 logit("probed from %s with %s. Don't panic.",
Damien Millere9264972002-09-30 11:59:21 +1000425 get_remote_ipaddr(), client_version_string);
426 fatal_cleanup();
427 }
428
Damien Miller27dbe6f2001-03-19 22:36:20 +1100429 if (datafellows & SSH_BUG_SCANNER) {
Damien Miller996acd22003-04-09 20:59:48 +1000430 logit("scanned from %s with %s. Don't panic.",
Damien Miller27dbe6f2001-03-19 22:36:20 +1100431 get_remote_ipaddr(), client_version_string);
432 fatal_cleanup();
433 }
434
Damien Miller78928792000-04-12 20:17:38 +1000435 mismatch = 0;
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000436 switch (remote_major) {
Damien Millerb38eff82000-04-01 11:09:21 +1000437 case 1:
Damien Millereba71ba2000-04-29 23:57:08 +1000438 if (remote_minor == 99) {
439 if (options.protocol & SSH_PROTO_2)
440 enable_compat20();
441 else
442 mismatch = 1;
443 break;
444 }
Damien Miller78928792000-04-12 20:17:38 +1000445 if (!(options.protocol & SSH_PROTO_1)) {
446 mismatch = 1;
447 break;
448 }
Damien Millerb38eff82000-04-01 11:09:21 +1000449 if (remote_minor < 3) {
Damien Miller37023962000-07-11 17:31:38 +1000450 packet_disconnect("Your ssh version is too old and "
Damien Millerb38eff82000-04-01 11:09:21 +1000451 "is no longer supported. Please install a newer version.");
452 } else if (remote_minor == 3) {
453 /* note that this disables agent-forwarding */
454 enable_compat13();
455 }
Damien Miller78928792000-04-12 20:17:38 +1000456 break;
Damien Millerefb4afe2000-04-12 18:45:05 +1000457 case 2:
Damien Miller78928792000-04-12 20:17:38 +1000458 if (options.protocol & SSH_PROTO_2) {
Damien Millerefb4afe2000-04-12 18:45:05 +1000459 enable_compat20();
460 break;
461 }
462 /* FALLTHROUGH */
Damien Miller4af51302000-04-16 11:18:38 +1000463 default:
Damien Miller78928792000-04-12 20:17:38 +1000464 mismatch = 1;
Damien Millerb38eff82000-04-01 11:09:21 +1000465 break;
466 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000467 chop(server_version_string);
Damien Miller78928792000-04-12 20:17:38 +1000468 debug("Local version string %.200s", server_version_string);
469
470 if (mismatch) {
471 s = "Protocol major versions differ.\n";
472 (void) atomicio(write, sock_out, s, strlen(s));
473 close(sock_in);
474 close(sock_out);
Damien Miller996acd22003-04-09 20:59:48 +1000475 logit("Protocol major versions differ for %s: %.200s vs. %.200s",
Damien Miller78928792000-04-12 20:17:38 +1000476 get_remote_ipaddr(),
477 server_version_string, client_version_string);
478 fatal_cleanup();
479 }
Damien Millereba71ba2000-04-29 23:57:08 +1000480}
481
Damien Miller0bc1bd82000-11-13 22:57:25 +1100482/* Destroy the host and server keys. They will no longer be needed. */
Damien Millereba71ba2000-04-29 23:57:08 +1000483void
484destroy_sensitive_data(void)
485{
Damien Miller0bc1bd82000-11-13 22:57:25 +1100486 int i;
487
488 if (sensitive_data.server_key) {
489 key_free(sensitive_data.server_key);
490 sensitive_data.server_key = NULL;
491 }
Damien Miller9f0f5c62001-12-21 14:45:46 +1100492 for (i = 0; i < options.num_host_key_files; i++) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100493 if (sensitive_data.host_keys[i]) {
494 key_free(sensitive_data.host_keys[i]);
495 sensitive_data.host_keys[i] = NULL;
496 }
497 }
498 sensitive_data.ssh1_host_key = NULL;
Ben Lindstromeb648a72001-03-05 06:00:29 +0000499 memset(sensitive_data.ssh1_cookie, 0, SSH_SESSION_KEY_LENGTH);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100500}
Damien Miller0bc1bd82000-11-13 22:57:25 +1100501
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000502/* Demote private to public keys for network child */
503void
504demote_sensitive_data(void)
505{
506 Key *tmp;
507 int i;
508
509 if (sensitive_data.server_key) {
510 tmp = key_demote(sensitive_data.server_key);
511 key_free(sensitive_data.server_key);
512 sensitive_data.server_key = tmp;
513 }
514
515 for (i = 0; i < options.num_host_key_files; i++) {
516 if (sensitive_data.host_keys[i]) {
517 tmp = key_demote(sensitive_data.host_keys[i]);
518 key_free(sensitive_data.host_keys[i]);
519 sensitive_data.host_keys[i] = tmp;
520 if (tmp->type == KEY_RSA1)
521 sensitive_data.ssh1_host_key = tmp;
522 }
523 }
524
525 /* We do not clear ssh1_host key and cookie. XXX - Okay Niels? */
526}
527
Ben Lindstrom08105192002-03-22 02:50:06 +0000528static void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000529privsep_preauth_child(void)
530{
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000531 u_int32_t rnd[256];
Ben Lindstrom810af962002-07-04 00:11:40 +0000532 gid_t gidset[1];
Ben Lindstromc7431342002-03-22 03:11:49 +0000533 struct passwd *pw;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000534 int i;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000535
536 /* Enable challenge-response authentication for privilege separation */
537 privsep_challenge_enable();
538
539 for (i = 0; i < 256; i++)
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000540 rnd[i] = arc4random();
541 RAND_seed(rnd, sizeof(rnd));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000542
543 /* Demote the private keys to public keys. */
544 demote_sensitive_data();
545
Ben Lindstromc7431342002-03-22 03:11:49 +0000546 if ((pw = getpwnam(SSH_PRIVSEP_USER)) == NULL)
Damien Miller0150c652002-04-24 09:49:09 +1000547 fatal("Privilege separation user %s does not exist",
548 SSH_PRIVSEP_USER);
Ben Lindstromc7431342002-03-22 03:11:49 +0000549 memset(pw->pw_passwd, 0, strlen(pw->pw_passwd));
550 endpwent();
551
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000552 /* Change our root directory */
Ben Lindstrom7a7edf72002-03-22 02:42:37 +0000553 if (chroot(_PATH_PRIVSEP_CHROOT_DIR) == -1)
554 fatal("chroot(\"%s\"): %s", _PATH_PRIVSEP_CHROOT_DIR,
555 strerror(errno));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000556 if (chdir("/") == -1)
Ben Lindstrom1ee9ec32002-03-22 03:14:45 +0000557 fatal("chdir(\"/\"): %s", strerror(errno));
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000558
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000559 /* Drop our privileges */
Ben Lindstromc7431342002-03-22 03:11:49 +0000560 debug3("privsep user:group %u:%u", (u_int)pw->pw_uid,
561 (u_int)pw->pw_gid);
Ben Lindstromfbcc3f72002-06-25 23:24:18 +0000562#if 0
563 /* XXX not ready, to heavy after chroot */
Ben Lindstromc7431342002-03-22 03:11:49 +0000564 do_setusercontext(pw);
Ben Lindstromfbcc3f72002-06-25 23:24:18 +0000565#else
566 gidset[0] = pw->pw_gid;
Damien Miller61d36802003-06-02 19:09:48 +1000567 if (setegid(pw->pw_gid) < 0)
568 fatal("setegid failed for %u", (u_int)pw->pw_gid);
Ben Lindstromfbcc3f72002-06-25 23:24:18 +0000569 if (setgid(pw->pw_gid) < 0)
Damien Miller61d36802003-06-02 19:09:48 +1000570 fatal("setgid failed for %u", (u_int)pw->pw_gid);
Ben Lindstromfbcc3f72002-06-25 23:24:18 +0000571 if (setgroups(1, gidset) < 0)
572 fatal("setgroups: %.100s", strerror(errno));
573 permanently_set_uid(pw);
574#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000575}
576
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000577static Authctxt *
Ben Lindstrom943481c2002-03-22 03:43:46 +0000578privsep_preauth(void)
579{
580 Authctxt *authctxt = NULL;
581 int status;
582 pid_t pid;
583
584 /* Set up unprivileged child process to deal with network data */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000585 pmonitor = monitor_init();
Ben Lindstrom943481c2002-03-22 03:43:46 +0000586 /* Store a pointer to the kex for later rekeying */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000587 pmonitor->m_pkex = &xxx_kex;
Ben Lindstrom943481c2002-03-22 03:43:46 +0000588
589 pid = fork();
590 if (pid == -1) {
591 fatal("fork of unprivileged child failed");
592 } else if (pid != 0) {
Ben Lindstrom264ee302002-07-23 21:01:56 +0000593 fatal_remove_cleanup((void (*) (void *)) packet_close, NULL);
594
Ben Lindstromce0f6342002-06-11 16:42:49 +0000595 debug2("Network child is on pid %ld", (long)pid);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000596
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000597 close(pmonitor->m_recvfd);
598 authctxt = monitor_child_preauth(pmonitor);
599 close(pmonitor->m_sendfd);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000600
601 /* Sync memory */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000602 monitor_sync(pmonitor);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000603
604 /* Wait for the child's exit status */
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000605 while (waitpid(pid, &status, 0) < 0)
606 if (errno != EINTR)
607 break;
Ben Lindstrom264ee302002-07-23 21:01:56 +0000608
609 /* Reinstall, since the child has finished */
610 fatal_add_cleanup((void (*) (void *)) packet_close, NULL);
611
Ben Lindstrom943481c2002-03-22 03:43:46 +0000612 return (authctxt);
613 } else {
614 /* child */
615
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000616 close(pmonitor->m_sendfd);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000617
618 /* Demote the child */
619 if (getuid() == 0 || geteuid() == 0)
620 privsep_preauth_child();
Ben Lindstromf90f58d2002-03-26 01:53:03 +0000621 setproctitle("%s", "[net]");
Ben Lindstrom943481c2002-03-22 03:43:46 +0000622 }
623 return (NULL);
624}
625
Ben Lindstrom08105192002-03-22 02:50:06 +0000626static void
Ben Lindstrom943481c2002-03-22 03:43:46 +0000627privsep_postauth(Authctxt *authctxt)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000628{
629 extern Authctxt *x_authctxt;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000630
631 /* XXX - Remote port forwarding */
632 x_authctxt = authctxt;
633
Tim Rice9dd30812002-07-07 13:43:36 -0700634#ifdef DISABLE_FD_PASSING
Tim Rice8eff3192002-06-25 15:35:15 -0700635 if (1) {
636#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000637 if (authctxt->pw->pw_uid == 0 || options.use_login) {
Tim Rice8eff3192002-06-25 15:35:15 -0700638#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000639 /* File descriptor passing is broken or root login */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000640 monitor_apply_keystate(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000641 use_privsep = 0;
642 return;
643 }
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000644
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000645 /* Authentication complete */
646 alarm(0);
647 if (startup_pipe != -1) {
648 close(startup_pipe);
649 startup_pipe = -1;
650 }
651
652 /* New socket pair */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000653 monitor_reinit(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000654
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000655 pmonitor->m_pid = fork();
656 if (pmonitor->m_pid == -1)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000657 fatal("fork of unprivileged child failed");
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000658 else if (pmonitor->m_pid != 0) {
Ben Lindstrom264ee302002-07-23 21:01:56 +0000659 fatal_remove_cleanup((void (*) (void *)) packet_close, NULL);
660
Ben Lindstromce0f6342002-06-11 16:42:49 +0000661 debug2("User child is on pid %ld", (long)pmonitor->m_pid);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000662 close(pmonitor->m_recvfd);
663 monitor_child_postauth(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000664
665 /* NEVERREACHED */
666 exit(0);
667 }
668
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000669 close(pmonitor->m_sendfd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000670
671 /* Demote the private keys to public keys. */
672 demote_sensitive_data();
673
674 /* Drop privileges */
675 do_setusercontext(authctxt->pw);
676
677 /* It is safe now to apply the key state */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000678 monitor_apply_keystate(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000679}
680
Ben Lindstrombba81212001-06-25 05:01:22 +0000681static char *
Damien Miller0bc1bd82000-11-13 22:57:25 +1100682list_hostkey_types(void)
683{
Damien Miller0e3b8722002-01-22 23:26:38 +1100684 Buffer b;
685 char *p;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100686 int i;
Damien Miller0e3b8722002-01-22 23:26:38 +1100687
688 buffer_init(&b);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100689 for (i = 0; i < options.num_host_key_files; i++) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100690 Key *key = sensitive_data.host_keys[i];
691 if (key == NULL)
692 continue;
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000693 switch (key->type) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100694 case KEY_RSA:
695 case KEY_DSA:
Damien Miller0e3b8722002-01-22 23:26:38 +1100696 if (buffer_len(&b) > 0)
697 buffer_append(&b, ",", 1);
698 p = key_ssh_name(key);
699 buffer_append(&b, p, strlen(p));
Damien Miller0bc1bd82000-11-13 22:57:25 +1100700 break;
701 }
702 }
Damien Miller0e3b8722002-01-22 23:26:38 +1100703 buffer_append(&b, "\0", 1);
704 p = xstrdup(buffer_ptr(&b));
705 buffer_free(&b);
706 debug("list_hostkey_types: %s", p);
707 return p;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100708}
709
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000710Key *
Damien Miller0bc1bd82000-11-13 22:57:25 +1100711get_hostkey_by_type(int type)
712{
713 int i;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000714
Damien Miller9f0f5c62001-12-21 14:45:46 +1100715 for (i = 0; i < options.num_host_key_files; i++) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100716 Key *key = sensitive_data.host_keys[i];
717 if (key != NULL && key->type == type)
718 return key;
719 }
720 return NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000721}
722
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000723Key *
724get_hostkey_by_index(int ind)
725{
726 if (ind < 0 || ind >= options.num_host_key_files)
727 return (NULL);
728 return (sensitive_data.host_keys[ind]);
729}
730
731int
732get_hostkey_index(Key *key)
733{
734 int i;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000735
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000736 for (i = 0; i < options.num_host_key_files; i++) {
737 if (key == sensitive_data.host_keys[i])
738 return (i);
739 }
740 return (-1);
741}
742
Damien Miller942da032000-08-18 13:59:06 +1000743/*
744 * returns 1 if connection should be dropped, 0 otherwise.
745 * dropping starts at connection #max_startups_begin with a probability
746 * of (max_startups_rate/100). the probability increases linearly until
747 * all connections are dropped for startups > max_startups
748 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000749static int
Damien Miller942da032000-08-18 13:59:06 +1000750drop_connection(int startups)
751{
752 double p, r;
753
754 if (startups < options.max_startups_begin)
755 return 0;
756 if (startups >= options.max_startups)
757 return 1;
758 if (options.max_startups_rate == 100)
759 return 1;
760
761 p = 100 - options.max_startups_rate;
762 p *= startups - options.max_startups_begin;
763 p /= (double) (options.max_startups - options.max_startups_begin);
764 p += options.max_startups_rate;
765 p /= 100.0;
766 r = arc4random() / (double) UINT_MAX;
767
768 debug("drop_connection: p %g, r %g", p, r);
769 return (r < p) ? 1 : 0;
770}
771
Ben Lindstromade03f62001-12-06 18:22:17 +0000772static void
773usage(void)
774{
775 fprintf(stderr, "sshd version %s\n", SSH_VERSION);
776 fprintf(stderr, "Usage: %s [options]\n", __progname);
777 fprintf(stderr, "Options:\n");
778 fprintf(stderr, " -f file Configuration file (default %s)\n", _PATH_SERVER_CONFIG_FILE);
779 fprintf(stderr, " -d Debugging mode (multiple -d means more debugging)\n");
780 fprintf(stderr, " -i Started from inetd\n");
781 fprintf(stderr, " -D Do not fork into daemon mode\n");
782 fprintf(stderr, " -t Only test configuration file and keys\n");
783 fprintf(stderr, " -q Quiet (no logging)\n");
784 fprintf(stderr, " -p port Listen on the specified port (default: 22)\n");
785 fprintf(stderr, " -k seconds Regenerate server key every this many seconds (default: 3600)\n");
786 fprintf(stderr, " -g seconds Grace period for authentication (default: 600)\n");
787 fprintf(stderr, " -b bits Size of server RSA key (default: 768 bits)\n");
788 fprintf(stderr, " -h file File from which to read host key (default: %s)\n",
789 _PATH_HOST_KEY_FILE);
790 fprintf(stderr, " -u len Maximum hostname length for utmp recording\n");
791 fprintf(stderr, " -4 Use IPv4 only\n");
792 fprintf(stderr, " -6 Use IPv6 only\n");
793 fprintf(stderr, " -o option Process the option as if it was read from a configuration file.\n");
794 exit(1);
795}
796
Damien Miller95def091999-11-25 00:26:21 +1100797/*
798 * Main program for the daemon.
799 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000800int
801main(int ac, char **av)
802{
Damien Miller95def091999-11-25 00:26:21 +1100803 extern char *optarg;
804 extern int optind;
Damien Miller37023962000-07-11 17:31:38 +1000805 int opt, sock_in = 0, sock_out = 0, newsock, j, i, fdsetsz, on = 1;
Damien Miller166fca82000-04-20 07:42:21 +1000806 pid_t pid;
Damien Miller34132e52000-01-14 15:45:46 +1100807 socklen_t fromlen;
Damien Miller34132e52000-01-14 15:45:46 +1100808 fd_set *fdset;
809 struct sockaddr_storage from;
Damien Miller95def091999-11-25 00:26:21 +1100810 const char *remote_ip;
811 int remote_port;
Damien Miller95def091999-11-25 00:26:21 +1100812 FILE *f;
Damien Miller34132e52000-01-14 15:45:46 +1100813 struct addrinfo *ai;
814 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
815 int listen_sock, maxfd;
Damien Miller37023962000-07-11 17:31:38 +1000816 int startup_p[2];
817 int startups = 0;
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +0000818 Authctxt *authctxt;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000819 Key *key;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000820 int ret, key_used = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000821
Kevin Steves0ea1d9d2002-04-25 18:17:04 +0000822#ifdef HAVE_SECUREWARE
823 (void)set_auth_parameters(ac, av);
824#endif
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000825 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000826 init_rng();
827
Damien Millera8ed44b2003-01-10 09:53:12 +1100828 /* Save argv. Duplicate so setproctitle emulation doesn't clobber it */
Damien Millerb8c656e2000-06-28 15:22:41 +1000829 saved_argc = ac;
Damien Miller04cb5362003-05-15 21:29:10 +1000830 saved_argv = xmalloc(sizeof(*saved_argv) * (ac + 1));
Damien Millera8ed44b2003-01-10 09:53:12 +1100831 for (i = 0; i < ac; i++)
832 saved_argv[i] = xstrdup(av[i]);
Damien Miller04cb5362003-05-15 21:29:10 +1000833 saved_argv[i] = NULL;
Damien Millera8ed44b2003-01-10 09:53:12 +1100834
835#ifndef HAVE_SETPROCTITLE
836 /* Prepare for later setproctitle emulation */
837 compat_init_setproctitle(ac, av);
Damien Millerf2e3e9d2003-06-02 12:15:54 +1000838 av = saved_argv;
Damien Millera8ed44b2003-01-10 09:53:12 +1100839#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000840
Damien Miller95def091999-11-25 00:26:21 +1100841 /* Initialize configuration options to their default values. */
842 initialize_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000843
Damien Miller95def091999-11-25 00:26:21 +1100844 /* Parse command-line arguments. */
Ben Lindstromade03f62001-12-06 18:22:17 +0000845 while ((opt = getopt(ac, av, "f:p:b:k:h:g:V:u:o:dDeiqtQ46")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100846 switch (opt) {
Damien Miller34132e52000-01-14 15:45:46 +1100847 case '4':
848 IPv4or6 = AF_INET;
849 break;
850 case '6':
851 IPv4or6 = AF_INET6;
852 break;
Damien Miller95def091999-11-25 00:26:21 +1100853 case 'f':
854 config_file_name = optarg;
855 break;
856 case 'd':
Damien Millere4340be2000-09-16 13:29:08 +1100857 if (0 == debug_flag) {
858 debug_flag = 1;
859 options.log_level = SYSLOG_LEVEL_DEBUG1;
860 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
861 options.log_level++;
862 } else {
863 fprintf(stderr, "Too high debugging level.\n");
864 exit(1);
865 }
Damien Miller95def091999-11-25 00:26:21 +1100866 break;
Ben Lindstromc72745a2000-12-02 19:03:54 +0000867 case 'D':
868 no_daemon_flag = 1;
869 break;
Ben Lindstrom9fce9f02001-04-11 23:10:09 +0000870 case 'e':
871 log_stderr = 1;
872 break;
Damien Miller95def091999-11-25 00:26:21 +1100873 case 'i':
874 inetd_flag = 1;
875 break;
876 case 'Q':
Ben Lindstromd5390202001-01-29 08:07:43 +0000877 /* ignored */
Damien Miller95def091999-11-25 00:26:21 +1100878 break;
879 case 'q':
880 options.log_level = SYSLOG_LEVEL_QUIET;
881 break;
882 case 'b':
883 options.server_key_bits = atoi(optarg);
884 break;
885 case 'p':
Damien Miller34132e52000-01-14 15:45:46 +1100886 options.ports_from_cmdline = 1;
Damien Millere4340be2000-09-16 13:29:08 +1100887 if (options.num_ports >= MAX_PORTS) {
888 fprintf(stderr, "too many ports.\n");
889 exit(1);
890 }
Ben Lindstrom19066a12001-04-12 23:39:26 +0000891 options.ports[options.num_ports++] = a2port(optarg);
892 if (options.ports[options.num_ports-1] == 0) {
893 fprintf(stderr, "Bad port number.\n");
894 exit(1);
895 }
Damien Miller95def091999-11-25 00:26:21 +1100896 break;
897 case 'g':
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000898 if ((options.login_grace_time = convtime(optarg)) == -1) {
899 fprintf(stderr, "Invalid login grace time.\n");
900 exit(1);
901 }
Damien Miller95def091999-11-25 00:26:21 +1100902 break;
903 case 'k':
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000904 if ((options.key_regeneration_time = convtime(optarg)) == -1) {
905 fprintf(stderr, "Invalid key regeneration interval.\n");
906 exit(1);
907 }
Damien Miller95def091999-11-25 00:26:21 +1100908 break;
909 case 'h':
Damien Miller0bc1bd82000-11-13 22:57:25 +1100910 if (options.num_host_key_files >= MAX_HOSTKEYS) {
911 fprintf(stderr, "too many host keys.\n");
912 exit(1);
913 }
914 options.host_key_files[options.num_host_key_files++] = optarg;
Damien Miller95def091999-11-25 00:26:21 +1100915 break;
916 case 'V':
917 client_version_string = optarg;
918 /* only makes sense with inetd_flag, i.e. no listen() */
919 inetd_flag = 1;
920 break;
Ben Lindstrom794325a2001-08-06 21:09:07 +0000921 case 't':
922 test_flag = 1;
923 break;
Damien Miller942da032000-08-18 13:59:06 +1000924 case 'u':
925 utmp_len = atoi(optarg);
Ben Lindstrom41daec72002-07-23 21:15:13 +0000926 if (utmp_len > MAXHOSTNAMELEN) {
927 fprintf(stderr, "Invalid utmp length.\n");
928 exit(1);
929 }
Damien Miller942da032000-08-18 13:59:06 +1000930 break;
Ben Lindstromade03f62001-12-06 18:22:17 +0000931 case 'o':
Damien Miller9f0f5c62001-12-21 14:45:46 +1100932 if (process_server_config_line(&options, optarg,
Ben Lindstromade03f62001-12-06 18:22:17 +0000933 "command-line", 0) != 0)
Damien Miller9f0f5c62001-12-21 14:45:46 +1100934 exit(1);
Ben Lindstromade03f62001-12-06 18:22:17 +0000935 break;
Damien Miller95def091999-11-25 00:26:21 +1100936 case '?':
937 default:
Ben Lindstromade03f62001-12-06 18:22:17 +0000938 usage();
939 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000940 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000941 }
Ben Lindstrom425fb022001-03-29 00:31:20 +0000942 SSLeay_add_all_algorithms();
Ben Lindstrom908afed2001-10-03 17:34:59 +0000943 channel_set_af(IPv4or6);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000944
Damien Miller34132e52000-01-14 15:45:46 +1100945 /*
946 * Force logging to stderr until we have loaded the private host
947 * key (unless started from inetd)
948 */
Kevin Stevesec84dc12000-12-13 17:45:15 +0000949 log_init(__progname,
Damien Miller5aa5d782002-02-08 22:01:54 +1100950 options.log_level == SYSLOG_LEVEL_NOT_SET ?
951 SYSLOG_LEVEL_INFO : options.log_level,
952 options.log_facility == SYSLOG_FACILITY_NOT_SET ?
953 SYSLOG_FACILITY_AUTH : options.log_facility,
Ben Lindstromc2faa4a2002-11-09 15:50:03 +0000954 log_stderr || !inetd_flag);
Damien Miller34132e52000-01-14 15:45:46 +1100955
Tim Rice81ed5182002-09-25 17:38:46 -0700956#ifdef _UNICOS
Ben Lindstrom6db66ff2001-08-06 23:29:16 +0000957 /* Cray can define user privs drop all prives now!
958 * Not needed on PRIV_SU systems!
959 */
960 drop_cray_privs();
961#endif
962
Damien Miller60bc5172001-03-19 09:38:15 +1100963 seed_rng();
964
Damien Miller95def091999-11-25 00:26:21 +1100965 /* Read server configuration options from the configuration file. */
966 read_server_config(&options, config_file_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000967
Damien Miller95def091999-11-25 00:26:21 +1100968 /* Fill in default values for those options not explicitly set. */
969 fill_default_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000970
Damien Miller95def091999-11-25 00:26:21 +1100971 /* Check that there are no remaining arguments. */
972 if (optind < ac) {
973 fprintf(stderr, "Extra argument %s.\n", av[optind]);
974 exit(1);
975 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000976
Damien Miller95def091999-11-25 00:26:21 +1100977 debug("sshd version %.100s", SSH_VERSION);
Damien Miller2ccf6611999-11-15 15:25:10 +1100978
Damien Miller0bc1bd82000-11-13 22:57:25 +1100979 /* load private host keys */
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000980 sensitive_data.host_keys = xmalloc(options.num_host_key_files *
981 sizeof(Key *));
Damien Miller9f0f5c62001-12-21 14:45:46 +1100982 for (i = 0; i < options.num_host_key_files; i++)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000983 sensitive_data.host_keys[i] = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100984 sensitive_data.server_key = NULL;
985 sensitive_data.ssh1_host_key = NULL;
986 sensitive_data.have_ssh1_key = 0;
987 sensitive_data.have_ssh2_key = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000988
Damien Miller9f0f5c62001-12-21 14:45:46 +1100989 for (i = 0; i < options.num_host_key_files; i++) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000990 key = key_load_private(options.host_key_files[i], "", NULL);
991 sensitive_data.host_keys[i] = key;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100992 if (key == NULL) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000993 error("Could not load host key: %s",
994 options.host_key_files[i]);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000995 sensitive_data.host_keys[i] = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100996 continue;
997 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000998 switch (key->type) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100999 case KEY_RSA1:
1000 sensitive_data.ssh1_host_key = key;
1001 sensitive_data.have_ssh1_key = 1;
1002 break;
1003 case KEY_RSA:
1004 case KEY_DSA:
1005 sensitive_data.have_ssh2_key = 1;
1006 break;
1007 }
Ben Lindstromd0fca422001-03-26 13:44:06 +00001008 debug("private host key: #%d type %d %s", i, key->type,
1009 key_type(key));
Damien Miller0bc1bd82000-11-13 22:57:25 +11001010 }
1011 if ((options.protocol & SSH_PROTO_1) && !sensitive_data.have_ssh1_key) {
Damien Miller996acd22003-04-09 20:59:48 +10001012 logit("Disabling protocol version 1. Could not load host key");
Damien Millereba71ba2000-04-29 23:57:08 +10001013 options.protocol &= ~SSH_PROTO_1;
1014 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001015 if ((options.protocol & SSH_PROTO_2) && !sensitive_data.have_ssh2_key) {
Damien Miller996acd22003-04-09 20:59:48 +10001016 logit("Disabling protocol version 2. Could not load host key");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001017 options.protocol &= ~SSH_PROTO_2;
Damien Millereba71ba2000-04-29 23:57:08 +10001018 }
Kevin Stevesadf74cd2001-02-05 14:22:50 +00001019 if (!(options.protocol & (SSH_PROTO_1|SSH_PROTO_2))) {
Damien Miller996acd22003-04-09 20:59:48 +10001020 logit("sshd: no hostkeys available -- exiting.");
Damien Miller95def091999-11-25 00:26:21 +11001021 exit(1);
1022 }
Damien Miller95def091999-11-25 00:26:21 +11001023
Damien Millereba71ba2000-04-29 23:57:08 +10001024 /* Check certain values for sanity. */
1025 if (options.protocol & SSH_PROTO_1) {
1026 if (options.server_key_bits < 512 ||
1027 options.server_key_bits > 32768) {
1028 fprintf(stderr, "Bad server key size.\n");
1029 exit(1);
1030 }
1031 /*
1032 * Check that server and host key lengths differ sufficiently. This
1033 * is necessary to make double encryption work with rsaref. Oh, I
1034 * hate software patents. I dont know if this can go? Niels
1035 */
1036 if (options.server_key_bits >
Ben Lindstrom822b6342002-06-23 21:38:49 +00001037 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) -
1038 SSH_KEY_BITS_RESERVED && options.server_key_bits <
1039 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) +
1040 SSH_KEY_BITS_RESERVED) {
Damien Millereba71ba2000-04-29 23:57:08 +10001041 options.server_key_bits =
Ben Lindstrom822b6342002-06-23 21:38:49 +00001042 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) +
1043 SSH_KEY_BITS_RESERVED;
Damien Millereba71ba2000-04-29 23:57:08 +10001044 debug("Forcing server key to %d bits to make it differ from host key.",
1045 options.server_key_bits);
1046 }
1047 }
1048
Ben Lindstroma26ea632002-06-06 20:46:25 +00001049 if (use_privsep) {
1050 struct passwd *pw;
1051 struct stat st;
1052
1053 if ((pw = getpwnam(SSH_PRIVSEP_USER)) == NULL)
1054 fatal("Privilege separation user %s does not exist",
1055 SSH_PRIVSEP_USER);
1056 if ((stat(_PATH_PRIVSEP_CHROOT_DIR, &st) == -1) ||
1057 (S_ISDIR(st.st_mode) == 0))
1058 fatal("Missing privilege separation directory: %s",
1059 _PATH_PRIVSEP_CHROOT_DIR);
Ben Lindstrom59627352002-06-27 18:02:21 +00001060
1061#ifdef HAVE_CYGWIN
1062 if (check_ntsec(_PATH_PRIVSEP_CHROOT_DIR) &&
1063 (st.st_uid != getuid () ||
1064 (st.st_mode & (S_IWGRP|S_IWOTH)) != 0))
1065#else
Ben Lindstrom2dfacb32002-06-23 00:33:47 +00001066 if (st.st_uid != 0 || (st.st_mode & (S_IWGRP|S_IWOTH)) != 0)
Ben Lindstrom59627352002-06-27 18:02:21 +00001067#endif
Damien Miller180fc5b2003-02-24 11:50:18 +11001068 fatal("%s must be owned by root and not group or "
1069 "world-writable.", _PATH_PRIVSEP_CHROOT_DIR);
Ben Lindstroma26ea632002-06-06 20:46:25 +00001070 }
1071
Ben Lindstrom794325a2001-08-06 21:09:07 +00001072 /* Configuration looks good, so exit if in test mode. */
1073 if (test_flag)
1074 exit(0);
1075
Damien Miller87aea252002-05-10 12:20:24 +10001076 /*
1077 * Clear out any supplemental groups we may have inherited. This
1078 * prevents inadvertent creation of files with bad modes (in the
1079 * portable version at least, it's certainly possible for PAM
1080 * to create a file, and we can't control the code in every
1081 * module which might be used).
1082 */
1083 if (setgroups(0, NULL) < 0)
1084 debug("setgroups() failed: %.200s", strerror(errno));
1085
Damien Millereba71ba2000-04-29 23:57:08 +10001086 /* Initialize the log (it is reinitialized below in case we forked). */
Damien Miller95def091999-11-25 00:26:21 +11001087 if (debug_flag && !inetd_flag)
1088 log_stderr = 1;
Kevin Stevesec84dc12000-12-13 17:45:15 +00001089 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +11001090
Damien Millereba71ba2000-04-29 23:57:08 +10001091 /*
1092 * If not in debugging mode, and not started from inetd, disconnect
1093 * from the controlling terminal, and fork. The original process
1094 * exits.
1095 */
Ben Lindstromc72745a2000-12-02 19:03:54 +00001096 if (!(debug_flag || inetd_flag || no_daemon_flag)) {
Damien Miller95def091999-11-25 00:26:21 +11001097#ifdef TIOCNOTTY
1098 int fd;
1099#endif /* TIOCNOTTY */
1100 if (daemon(0, 0) < 0)
1101 fatal("daemon() failed: %.200s", strerror(errno));
1102
1103 /* Disconnect from the controlling tty. */
1104#ifdef TIOCNOTTY
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001105 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
Damien Miller95def091999-11-25 00:26:21 +11001106 if (fd >= 0) {
1107 (void) ioctl(fd, TIOCNOTTY, NULL);
1108 close(fd);
1109 }
1110#endif /* TIOCNOTTY */
1111 }
1112 /* Reinitialize the log (because of the fork above). */
Kevin Stevesec84dc12000-12-13 17:45:15 +00001113 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +11001114
Damien Miller95def091999-11-25 00:26:21 +11001115 /* Initialize the random number generator. */
1116 arc4random_stir();
1117
1118 /* Chdir to the root directory so that the current disk can be
1119 unmounted if desired. */
1120 chdir("/");
Damien Miller9f0f5c62001-12-21 14:45:46 +11001121
Ben Lindstromde71cda2001-03-24 00:43:26 +00001122 /* ignore SIGPIPE */
1123 signal(SIGPIPE, SIG_IGN);
Damien Miller95def091999-11-25 00:26:21 +11001124
Damien Miller95def091999-11-25 00:26:21 +11001125 /* Start listening for a socket, unless started from inetd. */
1126 if (inetd_flag) {
Ben Lindstrom206941f2001-04-15 14:27:16 +00001127 int s1;
Damien Miller95def091999-11-25 00:26:21 +11001128 s1 = dup(0); /* Make sure descriptors 0, 1, and 2 are in use. */
Ben Lindstrom206941f2001-04-15 14:27:16 +00001129 dup(s1);
Damien Miller95def091999-11-25 00:26:21 +11001130 sock_in = dup(0);
1131 sock_out = dup(1);
Damien Miller994cf142000-07-21 10:19:44 +10001132 startup_pipe = -1;
Damien Millereba71ba2000-04-29 23:57:08 +10001133 /*
1134 * We intentionally do not close the descriptors 0, 1, and 2
1135 * as our code for setting the descriptors won\'t work if
1136 * ttyfd happens to be one of those.
1137 */
Damien Miller95def091999-11-25 00:26:21 +11001138 debug("inetd sockets after dupping: %d, %d", sock_in, sock_out);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001139 if (options.protocol & SSH_PROTO_1)
Ben Lindstromca42d5f2001-03-09 18:25:32 +00001140 generate_ephemeral_server_key();
Damien Miller95def091999-11-25 00:26:21 +11001141 } else {
Damien Miller34132e52000-01-14 15:45:46 +11001142 for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
1143 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1144 continue;
1145 if (num_listen_socks >= MAX_LISTEN_SOCKS)
1146 fatal("Too many listen sockets. "
1147 "Enlarge MAX_LISTEN_SOCKS");
1148 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
1149 ntop, sizeof(ntop), strport, sizeof(strport),
1150 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
1151 error("getnameinfo failed");
1152 continue;
1153 }
1154 /* Create socket for listening. */
Damien Miller2372ace2003-05-14 13:42:23 +10001155 listen_sock = socket(ai->ai_family, ai->ai_socktype,
1156 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11001157 if (listen_sock < 0) {
1158 /* kernel may not support ipv6 */
1159 verbose("socket: %.100s", strerror(errno));
1160 continue;
1161 }
1162 if (fcntl(listen_sock, F_SETFL, O_NONBLOCK) < 0) {
1163 error("listen_sock O_NONBLOCK: %s", strerror(errno));
1164 close(listen_sock);
1165 continue;
1166 }
1167 /*
Damien Millere1383ce2002-09-19 11:49:37 +10001168 * Set socket options.
1169 * Allow local port reuse in TIME_WAIT.
Damien Miller34132e52000-01-14 15:45:46 +11001170 */
Damien Millere1383ce2002-09-19 11:49:37 +10001171 if (setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
1172 &on, sizeof(on)) == -1)
1173 error("setsockopt SO_REUSEADDR: %s", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001174
Damien Miller34132e52000-01-14 15:45:46 +11001175 debug("Bind to port %s on %s.", strport, ntop);
Damien Miller95def091999-11-25 00:26:21 +11001176
Damien Miller34132e52000-01-14 15:45:46 +11001177 /* Bind the socket to the desired port. */
Damien Miller0a4e27d2001-02-18 12:36:39 +11001178 if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1179 if (!ai->ai_next)
1180 error("Bind to port %s on %s failed: %.200s.",
1181 strport, ntop, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11001182 close(listen_sock);
1183 continue;
1184 }
1185 listen_socks[num_listen_socks] = listen_sock;
1186 num_listen_socks++;
Damien Miller95def091999-11-25 00:26:21 +11001187
Damien Miller34132e52000-01-14 15:45:46 +11001188 /* Start listening on the port. */
Damien Miller996acd22003-04-09 20:59:48 +10001189 logit("Server listening on %s port %s.", ntop, strport);
Damien Miller34132e52000-01-14 15:45:46 +11001190 if (listen(listen_sock, 5) < 0)
1191 fatal("listen: %.100s", strerror(errno));
1192
Damien Miller95def091999-11-25 00:26:21 +11001193 }
Damien Miller34132e52000-01-14 15:45:46 +11001194 freeaddrinfo(options.listen_addrs);
1195
1196 if (!num_listen_socks)
1197 fatal("Cannot bind any address.");
1198
Ben Lindstrom98097862001-06-25 05:10:20 +00001199 if (options.protocol & SSH_PROTO_1)
1200 generate_ephemeral_server_key();
1201
1202 /*
1203 * Arrange to restart on SIGHUP. The handler needs
1204 * listen_sock.
1205 */
1206 signal(SIGHUP, sighup_handler);
1207
1208 signal(SIGTERM, sigterm_handler);
1209 signal(SIGQUIT, sigterm_handler);
1210
1211 /* Arrange SIGCHLD to be caught. */
1212 signal(SIGCHLD, main_sigchld_handler);
1213
1214 /* Write out the pid file after the sigterm handler is setup */
Damien Miller95def091999-11-25 00:26:21 +11001215 if (!debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +11001216 /*
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001217 * Record our pid in /var/run/sshd.pid to make it
1218 * easier to kill the correct sshd. We don't want to
1219 * do this before the bind above because the bind will
Damien Miller5428f641999-11-25 11:54:57 +11001220 * fail if there already is a daemon, and this will
1221 * overwrite any old pid in the file.
1222 */
Damien Millerbac2d8a2000-09-05 16:13:06 +11001223 f = fopen(options.pid_file, "wb");
Damien Miller95def091999-11-25 00:26:21 +11001224 if (f) {
Ben Lindstromce0f6342002-06-11 16:42:49 +00001225 fprintf(f, "%ld\n", (long) getpid());
Damien Miller95def091999-11-25 00:26:21 +11001226 fclose(f);
1227 }
1228 }
Damien Miller95def091999-11-25 00:26:21 +11001229
Damien Miller34132e52000-01-14 15:45:46 +11001230 /* setup fd set for listen */
Damien Miller37023962000-07-11 17:31:38 +10001231 fdset = NULL;
Damien Miller34132e52000-01-14 15:45:46 +11001232 maxfd = 0;
1233 for (i = 0; i < num_listen_socks; i++)
1234 if (listen_socks[i] > maxfd)
1235 maxfd = listen_socks[i];
Damien Miller37023962000-07-11 17:31:38 +10001236 /* pipes connected to unauthenticated childs */
1237 startup_pipes = xmalloc(options.max_startups * sizeof(int));
1238 for (i = 0; i < options.max_startups; i++)
1239 startup_pipes[i] = -1;
Damien Miller34132e52000-01-14 15:45:46 +11001240
Damien Miller5428f641999-11-25 11:54:57 +11001241 /*
1242 * Stay listening for connections until the system crashes or
1243 * the daemon is killed with a signal.
1244 */
Damien Miller95def091999-11-25 00:26:21 +11001245 for (;;) {
1246 if (received_sighup)
1247 sighup_restart();
Damien Miller37023962000-07-11 17:31:38 +10001248 if (fdset != NULL)
1249 xfree(fdset);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001250 fdsetsz = howmany(maxfd+1, NFDBITS) * sizeof(fd_mask);
Damien Miller37023962000-07-11 17:31:38 +10001251 fdset = (fd_set *)xmalloc(fdsetsz);
Damien Miller34132e52000-01-14 15:45:46 +11001252 memset(fdset, 0, fdsetsz);
Damien Miller37023962000-07-11 17:31:38 +10001253
Damien Miller34132e52000-01-14 15:45:46 +11001254 for (i = 0; i < num_listen_socks; i++)
1255 FD_SET(listen_socks[i], fdset);
Damien Miller37023962000-07-11 17:31:38 +10001256 for (i = 0; i < options.max_startups; i++)
1257 if (startup_pipes[i] != -1)
1258 FD_SET(startup_pipes[i], fdset);
1259
1260 /* Wait in select until there is a connection. */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001261 ret = select(maxfd+1, fdset, NULL, NULL, NULL);
1262 if (ret < 0 && errno != EINTR)
1263 error("select: %.100s", strerror(errno));
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001264 if (received_sigterm) {
Damien Miller996acd22003-04-09 20:59:48 +10001265 logit("Received signal %d; terminating.",
Ben Lindstromf8f065b2001-12-06 17:52:16 +00001266 (int) received_sigterm);
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001267 close_listen_socks();
1268 unlink(options.pid_file);
1269 exit(255);
1270 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001271 if (key_used && key_do_regen) {
Ben Lindstromca42d5f2001-03-09 18:25:32 +00001272 generate_ephemeral_server_key();
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001273 key_used = 0;
1274 key_do_regen = 0;
Damien Miller34132e52000-01-14 15:45:46 +11001275 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001276 if (ret < 0)
1277 continue;
1278
Damien Miller37023962000-07-11 17:31:38 +10001279 for (i = 0; i < options.max_startups; i++)
1280 if (startup_pipes[i] != -1 &&
1281 FD_ISSET(startup_pipes[i], fdset)) {
1282 /*
1283 * the read end of the pipe is ready
1284 * if the child has closed the pipe
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001285 * after successful authentication
Damien Miller37023962000-07-11 17:31:38 +10001286 * or if the child has died
1287 */
1288 close(startup_pipes[i]);
1289 startup_pipes[i] = -1;
1290 startups--;
1291 }
Damien Miller34132e52000-01-14 15:45:46 +11001292 for (i = 0; i < num_listen_socks; i++) {
1293 if (!FD_ISSET(listen_socks[i], fdset))
Damien Miller95def091999-11-25 00:26:21 +11001294 continue;
Damien Miller37023962000-07-11 17:31:38 +10001295 fromlen = sizeof(from);
1296 newsock = accept(listen_socks[i], (struct sockaddr *)&from,
1297 &fromlen);
1298 if (newsock < 0) {
1299 if (errno != EINTR && errno != EWOULDBLOCK)
1300 error("accept: %.100s", strerror(errno));
1301 continue;
1302 }
1303 if (fcntl(newsock, F_SETFL, 0) < 0) {
1304 error("newsock del O_NONBLOCK: %s", strerror(errno));
Damien Miller72c336d2001-12-21 12:44:28 +11001305 close(newsock);
Damien Miller37023962000-07-11 17:31:38 +10001306 continue;
1307 }
Damien Miller942da032000-08-18 13:59:06 +10001308 if (drop_connection(startups) == 1) {
1309 debug("drop connection #%d", startups);
Damien Miller37023962000-07-11 17:31:38 +10001310 close(newsock);
1311 continue;
1312 }
1313 if (pipe(startup_p) == -1) {
1314 close(newsock);
1315 continue;
1316 }
1317
1318 for (j = 0; j < options.max_startups; j++)
1319 if (startup_pipes[j] == -1) {
1320 startup_pipes[j] = startup_p[0];
1321 if (maxfd < startup_p[0])
1322 maxfd = startup_p[0];
1323 startups++;
1324 break;
1325 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001326
Damien Miller5428f641999-11-25 11:54:57 +11001327 /*
Damien Miller37023962000-07-11 17:31:38 +10001328 * Got connection. Fork a child to handle it, unless
1329 * we are in debugging mode.
Damien Miller5428f641999-11-25 11:54:57 +11001330 */
Damien Miller37023962000-07-11 17:31:38 +10001331 if (debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +11001332 /*
Damien Miller37023962000-07-11 17:31:38 +10001333 * In debugging mode. Close the listening
1334 * socket, and start processing the
1335 * connection without forking.
Damien Miller5428f641999-11-25 11:54:57 +11001336 */
Damien Miller37023962000-07-11 17:31:38 +10001337 debug("Server will not fork when running in debugging mode.");
Damien Miller34132e52000-01-14 15:45:46 +11001338 close_listen_socks();
Damien Miller95def091999-11-25 00:26:21 +11001339 sock_in = newsock;
1340 sock_out = newsock;
Damien Miller4d97ba22000-07-11 18:15:50 +10001341 startup_pipe = -1;
Damien Miller182ee6e2000-07-12 09:45:27 +10001342 pid = getpid();
Damien Miller95def091999-11-25 00:26:21 +11001343 break;
Damien Miller37023962000-07-11 17:31:38 +10001344 } else {
1345 /*
1346 * Normal production daemon. Fork, and have
1347 * the child process the connection. The
1348 * parent continues listening.
1349 */
1350 if ((pid = fork()) == 0) {
1351 /*
1352 * Child. Close the listening and max_startup
1353 * sockets. Start using the accepted socket.
1354 * Reinitialize logging (since our pid has
1355 * changed). We break out of the loop to handle
1356 * the connection.
1357 */
1358 startup_pipe = startup_p[1];
Ben Lindstromd84df982001-12-06 16:35:40 +00001359 close_startup_pipes();
Damien Miller37023962000-07-11 17:31:38 +10001360 close_listen_socks();
1361 sock_in = newsock;
1362 sock_out = newsock;
Kevin Stevesec84dc12000-12-13 17:45:15 +00001363 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller37023962000-07-11 17:31:38 +10001364 break;
1365 }
Damien Miller95def091999-11-25 00:26:21 +11001366 }
Damien Miller37023962000-07-11 17:31:38 +10001367
1368 /* Parent. Stay in the loop. */
1369 if (pid < 0)
1370 error("fork: %.100s", strerror(errno));
1371 else
Ben Lindstromce0f6342002-06-11 16:42:49 +00001372 debug("Forked child %ld.", (long)pid);
Damien Miller37023962000-07-11 17:31:38 +10001373
1374 close(startup_p[1]);
1375
1376 /* Mark that the key has been used (it was "given" to the child). */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001377 if ((options.protocol & SSH_PROTO_1) &&
1378 key_used == 0) {
1379 /* Schedule server key regeneration alarm. */
1380 signal(SIGALRM, key_regeneration_alarm);
1381 alarm(options.key_regeneration_time);
1382 key_used = 1;
1383 }
Damien Miller37023962000-07-11 17:31:38 +10001384
1385 arc4random_stir();
1386
1387 /* Close the new socket (the child is now taking care of it). */
1388 close(newsock);
Damien Miller95def091999-11-25 00:26:21 +11001389 }
Damien Miller34132e52000-01-14 15:45:46 +11001390 /* child process check (or debug mode) */
1391 if (num_listen_socks < 0)
1392 break;
Damien Miller95def091999-11-25 00:26:21 +11001393 }
1394 }
1395
1396 /* This is the child processing a new connection. */
1397
Damien Miller5428f641999-11-25 11:54:57 +11001398 /*
Ben Lindstrom17401b62002-05-15 16:17:56 +00001399 * Create a new session and process group since the 4.4BSD
1400 * setlogin() affects the entire process group. We don't
1401 * want the child to be able to affect the parent.
1402 */
Darren Tuckerc437cda2003-05-10 17:05:46 +10001403#if !defined(SSHD_ACQUIRES_CTTY)
Damien Miller933cc8f2003-03-10 11:38:10 +11001404 /*
Darren Tuckerc437cda2003-05-10 17:05:46 +10001405 * If setsid is called, on some platforms sshd will later acquire a
1406 * controlling terminal which will result in "could not set
1407 * controlling tty" errors.
Damien Miller933cc8f2003-03-10 11:38:10 +11001408 */
Ben Lindstrom57f08002002-06-23 00:37:10 +00001409 if (!debug_flag && !inetd_flag && setsid() < 0)
Ben Lindstrom17401b62002-05-15 16:17:56 +00001410 error("setsid: %.100s", strerror(errno));
Kevin Stevesc5041ac2002-05-21 17:50:21 +00001411#endif
Ben Lindstrom17401b62002-05-15 16:17:56 +00001412
1413 /*
Damien Miller5428f641999-11-25 11:54:57 +11001414 * Disable the key regeneration alarm. We will not regenerate the
1415 * key since we are no longer in a position to give it to anyone. We
1416 * will not restart on SIGHUP since it no longer makes sense.
1417 */
Damien Miller95def091999-11-25 00:26:21 +11001418 alarm(0);
1419 signal(SIGALRM, SIG_DFL);
1420 signal(SIGHUP, SIG_DFL);
1421 signal(SIGTERM, SIG_DFL);
1422 signal(SIGQUIT, SIG_DFL);
1423 signal(SIGCHLD, SIG_DFL);
Damien Miller4e0f5e12000-08-29 11:05:50 +11001424 signal(SIGINT, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001425
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001426 /* Set keepalives if requested. */
1427 if (options.keepalives &&
Ben Lindstrom733a2352002-03-05 01:31:28 +00001428 setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, &on,
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001429 sizeof(on)) < 0)
1430 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
1431
Damien Miller5428f641999-11-25 11:54:57 +11001432 /*
1433 * Register our connection. This turns encryption off because we do
1434 * not have a key.
1435 */
Damien Miller95def091999-11-25 00:26:21 +11001436 packet_set_connection(sock_in, sock_out);
1437
1438 remote_port = get_remote_port();
1439 remote_ip = get_remote_ipaddr();
1440
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001441#ifdef LIBWRAP
Damien Miller6a4a4b92001-11-12 11:07:11 +11001442 /* Check whether logins are denied from this host. */
Damien Miller95def091999-11-25 00:26:21 +11001443 {
1444 struct request_info req;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001445
Ben Lindstromce89dac2001-09-12 16:58:04 +00001446 request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, 0);
Damien Miller95def091999-11-25 00:26:21 +11001447 fromhost(&req);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001448
Damien Miller95def091999-11-25 00:26:21 +11001449 if (!hosts_access(&req)) {
Damien Miller6a4a4b92001-11-12 11:07:11 +11001450 debug("Connection refused by tcp wrapper");
Ben Lindstrom7de696e2001-03-29 00:45:12 +00001451 refuse(&req);
Damien Miller6a4a4b92001-11-12 11:07:11 +11001452 /* NOTREACHED */
1453 fatal("libwrap refuse returns");
Damien Miller95def091999-11-25 00:26:21 +11001454 }
Damien Miller95def091999-11-25 00:26:21 +11001455 }
Damien Miller34132e52000-01-14 15:45:46 +11001456#endif /* LIBWRAP */
Damien Miller6a4a4b92001-11-12 11:07:11 +11001457
Damien Miller95def091999-11-25 00:26:21 +11001458 /* Log the connection. */
1459 verbose("Connection from %.500s port %d", remote_ip, remote_port);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001460
Damien Miller5428f641999-11-25 11:54:57 +11001461 /*
1462 * We don\'t want to listen forever unless the other side
1463 * successfully authenticates itself. So we set up an alarm which is
1464 * cleared after successful authentication. A limit of zero
1465 * indicates no limit. Note that we don\'t set the alarm in debugging
1466 * mode; it is just annoying to have the server exit just when you
1467 * are about to discover the bug.
1468 */
Damien Miller95def091999-11-25 00:26:21 +11001469 signal(SIGALRM, grace_alarm_handler);
1470 if (!debug_flag)
1471 alarm(options.login_grace_time);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001472
Damien Millerb38eff82000-04-01 11:09:21 +10001473 sshd_exchange_identification(sock_in, sock_out);
Damien Miller5428f641999-11-25 11:54:57 +11001474 /*
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001475 * Check that the connection comes from a privileged port.
Ben Lindstromf666fec2002-06-06 19:51:58 +00001476 * Rhosts-Authentication only makes sense from privileged
Damien Miller5428f641999-11-25 11:54:57 +11001477 * programs. Of course, if the intruder has root access on his local
1478 * machine, he can connect from any port. So do not use these
1479 * authentication methods from machines that you do not trust.
1480 */
Damien Miller654c03f2002-02-13 13:54:44 +11001481 if (options.rhosts_authentication &&
1482 (remote_port >= IPPORT_RESERVED ||
1483 remote_port < IPPORT_RESERVED / 2)) {
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001484 debug("Rhosts Authentication disabled, "
Damien Miller00b61642001-11-12 10:51:23 +11001485 "originating port %d not trusted.", remote_port);
Damien Miller95def091999-11-25 00:26:21 +11001486 options.rhosts_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +11001487 }
Ben Lindstromec95ed92001-07-04 04:21:14 +00001488#if defined(KRB4) && !defined(KRB5)
Damien Miller34132e52000-01-14 15:45:46 +11001489 if (!packet_connection_is_ipv4() &&
1490 options.kerberos_authentication) {
1491 debug("Kerberos Authentication disabled, only available for IPv4.");
1492 options.kerberos_authentication = 0;
1493 }
Ben Lindstromec95ed92001-07-04 04:21:14 +00001494#endif /* KRB4 && !KRB5 */
Ben Lindstromf79aeff2001-02-10 21:27:11 +00001495#ifdef AFS
1496 /* If machine has AFS, set process authentication group. */
1497 if (k_hasafs()) {
1498 k_setpag();
1499 k_unlog();
1500 }
1501#endif /* AFS */
Damien Miller34132e52000-01-14 15:45:46 +11001502
Damien Miller95def091999-11-25 00:26:21 +11001503 packet_set_nonblocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001504
Ben Lindstrom943481c2002-03-22 03:43:46 +00001505 if (use_privsep)
1506 if ((authctxt = privsep_preauth()) != NULL)
1507 goto authenticated;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001508
Damien Miller396691a2000-01-20 22:44:08 +11001509 /* perform the key exchange */
Damien Miller396691a2000-01-20 22:44:08 +11001510 /* authenticate user and start session */
Damien Millerefb4afe2000-04-12 18:45:05 +10001511 if (compat20) {
1512 do_ssh2_kex();
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +00001513 authctxt = do_authentication2();
Damien Millerefb4afe2000-04-12 18:45:05 +10001514 } else {
1515 do_ssh1_kex();
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +00001516 authctxt = do_authentication();
Damien Millerefb4afe2000-04-12 18:45:05 +10001517 }
Ben Lindstrom943481c2002-03-22 03:43:46 +00001518 /*
1519 * If we use privilege separation, the unprivileged child transfers
1520 * the current keystate and exits
1521 */
1522 if (use_privsep) {
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001523 mm_send_keystate(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001524 exit(0);
Ben Lindstrom943481c2002-03-22 03:43:46 +00001525 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001526
1527 authenticated:
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001528 /*
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001529 * In privilege separation, we fork another child and prepare
1530 * file descriptor passing.
1531 */
1532 if (use_privsep) {
Ben Lindstrom943481c2002-03-22 03:43:46 +00001533 privsep_postauth(authctxt);
1534 /* the monitor process [priv] will not return */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001535 if (!compat20)
1536 destroy_sensitive_data();
1537 }
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +00001538
1539 /* Perform session preparation. */
1540 do_authenticated(authctxt);
1541
Damien Miller3a5b0232002-03-13 13:19:42 +11001542 /* The connection has been terminated. */
1543 verbose("Closing connection to %.100s", remote_ip);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001544
Damien Millerbeb4ba51999-12-28 15:09:35 +11001545#ifdef USE_PAM
Damien Miller4e448a32003-05-14 15:11:48 +10001546 if (options.use_pam)
1547 finish_pam();
Damien Millerbeb4ba51999-12-28 15:09:35 +11001548#endif /* USE_PAM */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001549
Damien Miller95def091999-11-25 00:26:21 +11001550 packet_close();
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001551
1552 if (use_privsep)
1553 mm_terminate();
1554
Damien Miller95def091999-11-25 00:26:21 +11001555 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001556}
1557
Damien Miller95def091999-11-25 00:26:21 +11001558/*
Ben Lindstromabcb1452002-03-22 01:10:21 +00001559 * Decrypt session_key_int using our private server key and private host key
1560 * (key with larger modulus first).
1561 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001562int
Ben Lindstromabcb1452002-03-22 01:10:21 +00001563ssh1_session_key(BIGNUM *session_key_int)
1564{
1565 int rsafail = 0;
1566
1567 if (BN_cmp(sensitive_data.server_key->rsa->n, sensitive_data.ssh1_host_key->rsa->n) > 0) {
1568 /* Server key has bigger modulus. */
1569 if (BN_num_bits(sensitive_data.server_key->rsa->n) <
1570 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1571 fatal("do_connection: %s: server_key %d < host_key %d + SSH_KEY_BITS_RESERVED %d",
1572 get_remote_ipaddr(),
1573 BN_num_bits(sensitive_data.server_key->rsa->n),
1574 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1575 SSH_KEY_BITS_RESERVED);
1576 }
1577 if (rsa_private_decrypt(session_key_int, session_key_int,
1578 sensitive_data.server_key->rsa) <= 0)
1579 rsafail++;
1580 if (rsa_private_decrypt(session_key_int, session_key_int,
1581 sensitive_data.ssh1_host_key->rsa) <= 0)
1582 rsafail++;
1583 } else {
1584 /* Host key has bigger modulus (or they are equal). */
1585 if (BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) <
1586 BN_num_bits(sensitive_data.server_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1587 fatal("do_connection: %s: host_key %d < server_key %d + SSH_KEY_BITS_RESERVED %d",
1588 get_remote_ipaddr(),
1589 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1590 BN_num_bits(sensitive_data.server_key->rsa->n),
1591 SSH_KEY_BITS_RESERVED);
1592 }
1593 if (rsa_private_decrypt(session_key_int, session_key_int,
1594 sensitive_data.ssh1_host_key->rsa) < 0)
1595 rsafail++;
1596 if (rsa_private_decrypt(session_key_int, session_key_int,
1597 sensitive_data.server_key->rsa) < 0)
1598 rsafail++;
1599 }
1600 return (rsafail);
1601}
1602/*
Damien Miller396691a2000-01-20 22:44:08 +11001603 * SSH1 key exchange
Damien Miller95def091999-11-25 00:26:21 +11001604 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001605static void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001606do_ssh1_kex(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001607{
Damien Miller95def091999-11-25 00:26:21 +11001608 int i, len;
Damien Miller7650bc62001-01-30 09:27:26 +11001609 int rsafail = 0;
Damien Miller95def091999-11-25 00:26:21 +11001610 BIGNUM *session_key_int;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001611 u_char session_key[SSH_SESSION_KEY_LENGTH];
1612 u_char cookie[8];
1613 u_int cipher_type, auth_mask, protocol_flags;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001614 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001615
Damien Miller5428f641999-11-25 11:54:57 +11001616 /*
1617 * Generate check bytes that the client must send back in the user
1618 * packet in order for it to be accepted; this is used to defy ip
1619 * spoofing attacks. Note that this only works against somebody
1620 * doing IP spoofing from a remote machine; any machine on the local
1621 * network can still see outgoing packets and catch the random
1622 * cookie. This only affects rhosts authentication, and this is one
1623 * of the reasons why it is inherently insecure.
1624 */
Damien Miller95def091999-11-25 00:26:21 +11001625 for (i = 0; i < 8; i++) {
1626 if (i % 4 == 0)
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001627 rnd = arc4random();
1628 cookie[i] = rnd & 0xff;
1629 rnd >>= 8;
Damien Miller95def091999-11-25 00:26:21 +11001630 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001631
Damien Miller5428f641999-11-25 11:54:57 +11001632 /*
1633 * Send our public key. We include in the packet 64 bits of random
1634 * data that must be matched in the reply in order to prevent IP
1635 * spoofing.
1636 */
Damien Miller95def091999-11-25 00:26:21 +11001637 packet_start(SSH_SMSG_PUBLIC_KEY);
1638 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001639 packet_put_char(cookie[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001640
Damien Miller95def091999-11-25 00:26:21 +11001641 /* Store our public server RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001642 packet_put_int(BN_num_bits(sensitive_data.server_key->rsa->n));
1643 packet_put_bignum(sensitive_data.server_key->rsa->e);
1644 packet_put_bignum(sensitive_data.server_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001645
Damien Miller95def091999-11-25 00:26:21 +11001646 /* Store our public host RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001647 packet_put_int(BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
1648 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->e);
1649 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001650
Damien Miller95def091999-11-25 00:26:21 +11001651 /* Put protocol flags. */
1652 packet_put_int(SSH_PROTOFLAG_HOST_IN_FWD_OPEN);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001653
Damien Miller95def091999-11-25 00:26:21 +11001654 /* Declare which ciphers we support. */
Damien Miller874d77b2000-10-14 16:23:11 +11001655 packet_put_int(cipher_mask_ssh1(0));
Damien Miller95def091999-11-25 00:26:21 +11001656
1657 /* Declare supported authentication types. */
1658 auth_mask = 0;
1659 if (options.rhosts_authentication)
1660 auth_mask |= 1 << SSH_AUTH_RHOSTS;
1661 if (options.rhosts_rsa_authentication)
1662 auth_mask |= 1 << SSH_AUTH_RHOSTS_RSA;
1663 if (options.rsa_authentication)
1664 auth_mask |= 1 << SSH_AUTH_RSA;
Ben Lindstromec95ed92001-07-04 04:21:14 +00001665#if defined(KRB4) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +11001666 if (options.kerberos_authentication)
1667 auth_mask |= 1 << SSH_AUTH_KERBEROS;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001668#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +00001669#if defined(AFS) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +11001670 if (options.kerberos_tgt_passing)
1671 auth_mask |= 1 << SSH_PASS_KERBEROS_TGT;
Ben Lindstromec95ed92001-07-04 04:21:14 +00001672#endif
1673#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +11001674 if (options.afs_token_passing)
1675 auth_mask |= 1 << SSH_PASS_AFS_TOKEN;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001676#endif
Ben Lindstrom551ea372001-06-05 18:56:16 +00001677 if (options.challenge_response_authentication == 1)
Damien Miller95def091999-11-25 00:26:21 +11001678 auth_mask |= 1 << SSH_AUTH_TIS;
Damien Miller95def091999-11-25 00:26:21 +11001679 if (options.password_authentication)
1680 auth_mask |= 1 << SSH_AUTH_PASSWORD;
1681 packet_put_int(auth_mask);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001682
Damien Miller95def091999-11-25 00:26:21 +11001683 /* Send the packet and wait for it to be sent. */
1684 packet_send();
1685 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001686
Damien Miller0bc1bd82000-11-13 22:57:25 +11001687 debug("Sent %d bit server key and %d bit host key.",
1688 BN_num_bits(sensitive_data.server_key->rsa->n),
1689 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001690
Damien Miller95def091999-11-25 00:26:21 +11001691 /* Read clients reply (cipher type and session key). */
Damien Millerdff50992002-01-22 23:16:32 +11001692 packet_read_expect(SSH_CMSG_SESSION_KEY);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001693
Damien Miller50945fa1999-12-09 10:31:37 +11001694 /* Get cipher type and check whether we accept this. */
Damien Miller95def091999-11-25 00:26:21 +11001695 cipher_type = packet_get_char();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001696
Damien Miller874d77b2000-10-14 16:23:11 +11001697 if (!(cipher_mask_ssh1(0) & (1 << cipher_type)))
Damien Miller50945fa1999-12-09 10:31:37 +11001698 packet_disconnect("Warning: client selects unsupported cipher.");
1699
Damien Miller95def091999-11-25 00:26:21 +11001700 /* Get check bytes from the packet. These must match those we
1701 sent earlier with the public key packet. */
1702 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001703 if (cookie[i] != packet_get_char())
Damien Miller95def091999-11-25 00:26:21 +11001704 packet_disconnect("IP Spoofing check bytes do not match.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001705
Damien Miller95def091999-11-25 00:26:21 +11001706 debug("Encryption type: %.200s", cipher_name(cipher_type));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001707
Damien Miller95def091999-11-25 00:26:21 +11001708 /* Get the encrypted integer. */
Damien Millerda755162002-01-22 23:09:22 +11001709 if ((session_key_int = BN_new()) == NULL)
1710 fatal("do_ssh1_kex: BN_new failed");
Damien Millerd432ccf2002-01-22 23:14:44 +11001711 packet_get_bignum(session_key_int);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001712
Damien Miller95def091999-11-25 00:26:21 +11001713 protocol_flags = packet_get_int();
1714 packet_set_protocol_flags(protocol_flags);
Damien Miller48b03fc2002-01-22 23:11:40 +11001715 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001716
Ben Lindstromabcb1452002-03-22 01:10:21 +00001717 /* Decrypt session_key_int using host/server keys */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001718 rsafail = PRIVSEP(ssh1_session_key(session_key_int));
1719
Damien Miller5428f641999-11-25 11:54:57 +11001720 /*
1721 * Extract session key from the decrypted integer. The key is in the
1722 * least significant 256 bits of the integer; the first byte of the
1723 * key is in the highest bits.
1724 */
Damien Miller7650bc62001-01-30 09:27:26 +11001725 if (!rsafail) {
1726 BN_mask_bits(session_key_int, sizeof(session_key) * 8);
1727 len = BN_num_bytes(session_key_int);
1728 if (len < 0 || len > sizeof(session_key)) {
1729 error("do_connection: bad session key len from %s: "
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001730 "session_key_int %d > sizeof(session_key) %lu",
1731 get_remote_ipaddr(), len, (u_long)sizeof(session_key));
Damien Miller7650bc62001-01-30 09:27:26 +11001732 rsafail++;
1733 } else {
1734 memset(session_key, 0, sizeof(session_key));
1735 BN_bn2bin(session_key_int,
1736 session_key + sizeof(session_key) - len);
Ben Lindstromeb648a72001-03-05 06:00:29 +00001737
1738 compute_session_id(session_id, cookie,
1739 sensitive_data.ssh1_host_key->rsa->n,
1740 sensitive_data.server_key->rsa->n);
1741 /*
1742 * Xor the first 16 bytes of the session key with the
1743 * session id.
1744 */
1745 for (i = 0; i < 16; i++)
1746 session_key[i] ^= session_id[i];
Damien Miller7650bc62001-01-30 09:27:26 +11001747 }
1748 }
1749 if (rsafail) {
Ben Lindstromeb648a72001-03-05 06:00:29 +00001750 int bytes = BN_num_bytes(session_key_int);
Ben Lindstrom13c5d3b2002-02-26 18:00:48 +00001751 u_char *buf = xmalloc(bytes);
Ben Lindstromeb648a72001-03-05 06:00:29 +00001752 MD5_CTX md;
1753
Damien Miller996acd22003-04-09 20:59:48 +10001754 logit("do_connection: generating a fake encryption key");
Ben Lindstromeb648a72001-03-05 06:00:29 +00001755 BN_bn2bin(session_key_int, buf);
1756 MD5_Init(&md);
1757 MD5_Update(&md, buf, bytes);
1758 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1759 MD5_Final(session_key, &md);
1760 MD5_Init(&md);
1761 MD5_Update(&md, session_key, 16);
1762 MD5_Update(&md, buf, bytes);
1763 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1764 MD5_Final(session_key + 16, &md);
1765 memset(buf, 0, bytes);
1766 xfree(buf);
Ben Lindstrom941ac822001-03-05 06:25:23 +00001767 for (i = 0; i < 16; i++)
1768 session_id[i] = session_key[i] ^ session_key[i + 16];
Damien Miller7650bc62001-01-30 09:27:26 +11001769 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001770 /* Destroy the private and public keys. No longer. */
Damien Miller3a5b0232002-03-13 13:19:42 +11001771 destroy_sensitive_data();
Ben Lindstromeb648a72001-03-05 06:00:29 +00001772
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001773 if (use_privsep)
1774 mm_ssh1_session_id(session_id);
1775
Damien Miller396691a2000-01-20 22:44:08 +11001776 /* Destroy the decrypted integer. It is no longer needed. */
1777 BN_clear_free(session_key_int);
1778
Damien Miller95def091999-11-25 00:26:21 +11001779 /* Set the session key. From this on all communications will be encrypted. */
1780 packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, cipher_type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001781
Damien Miller95def091999-11-25 00:26:21 +11001782 /* Destroy our copy of the session key. It is no longer needed. */
1783 memset(session_key, 0, sizeof(session_key));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001784
Damien Miller95def091999-11-25 00:26:21 +11001785 debug("Received session key; encryption turned on.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001786
Ben Lindstromf666fec2002-06-06 19:51:58 +00001787 /* Send an acknowledgment packet. Note that this packet is sent encrypted. */
Damien Miller95def091999-11-25 00:26:21 +11001788 packet_start(SSH_SMSG_SUCCESS);
1789 packet_send();
1790 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001791}
Damien Millerefb4afe2000-04-12 18:45:05 +10001792
1793/*
1794 * SSH2 key exchange: diffie-hellman-group1-sha1
1795 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001796static void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001797do_ssh2_kex(void)
Damien Millerefb4afe2000-04-12 18:45:05 +10001798{
Damien Millerefb4afe2000-04-12 18:45:05 +10001799 Kex *kex;
Damien Millerefb4afe2000-04-12 18:45:05 +10001800
Damien Miller78928792000-04-12 20:17:38 +10001801 if (options.ciphers != NULL) {
Damien Miller4af51302000-04-16 11:18:38 +10001802 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
Damien Miller78928792000-04-12 20:17:38 +10001803 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
1804 }
Damien Millera0ff4662001-03-30 10:49:35 +10001805 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
1806 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
1807 myproposal[PROPOSAL_ENC_ALGS_STOC] =
1808 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
1809
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001810 if (options.macs != NULL) {
1811 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
1812 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
1813 }
Ben Lindstrom23e0f662002-06-21 01:09:47 +00001814 if (!options.compression) {
1815 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
1816 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none";
1817 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001818 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = list_hostkey_types();
1819
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001820 /* start key exchange */
Ben Lindstrom238abf62001-04-04 17:52:53 +00001821 kex = kex_setup(myproposal);
Damien Miller8e7fb332003-02-24 12:03:03 +11001822 kex->kex[KEX_DH_GRP1_SHA1] = kexdh_server;
1823 kex->kex[KEX_DH_GEX_SHA1] = kexgex_server;
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +00001824 kex->server = 1;
1825 kex->client_version_string=client_version_string;
1826 kex->server_version_string=server_version_string;
1827 kex->load_host_key=&get_hostkey_by_type;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001828 kex->host_key_index=&get_hostkey_index;
Damien Millerefb4afe2000-04-12 18:45:05 +10001829
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001830 xxx_kex = kex;
1831
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001832 dispatch_run(DISPATCH_BLOCK, &kex->done, kex);
Damien Miller874d77b2000-10-14 16:23:11 +11001833
Ben Lindstrom2d90e002001-04-04 02:00:54 +00001834 session_id2 = kex->session_id;
1835 session_id2_len = kex->session_id_len;
1836
Damien Miller874d77b2000-10-14 16:23:11 +11001837#ifdef DEBUG_KEXDH
1838 /* send 1st encrypted/maced/compressed message */
1839 packet_start(SSH2_MSG_IGNORE);
1840 packet_put_cstring("markus");
1841 packet_send();
1842 packet_write_wait();
1843#endif
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +00001844 debug("KEX done");
Damien Millerefb4afe2000-04-12 18:45:05 +10001845}