blob: 6169a73365661acf3771fccbe04d8af72f691a5f [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"
Darren Tuckerd5920482004-02-29 20:11:30 +110045RCSID("$OpenBSD: sshd.c,v 1.287 2004/02/25 00:22:45 djm 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
Darren Tuckerecc9d462004-02-06 16:04:08 +1100104extern char **environ;
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000105
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000106/* Server configuration options. */
107ServerOptions options;
108
109/* Name of the server configuration file. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000110char *config_file_name = _PATH_SERVER_CONFIG_FILE;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111
Damien Miller4af51302000-04-16 11:18:38 +1000112/*
Damien Miller34132e52000-01-14 15:45:46 +1100113 * Flag indicating whether IPv4 or IPv6. This can be set on the command line.
114 * Default value is AF_UNSPEC means both IPv4 and IPv6.
115 */
116int IPv4or6 = AF_UNSPEC;
117
Damien Miller95def091999-11-25 00:26:21 +1100118/*
119 * Debug mode flag. This can be set on the command line. If debug
120 * mode is enabled, extra debugging output will be sent to the system
121 * log, the daemon will not go to background, and will exit after processing
122 * the first connection.
123 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000124int debug_flag = 0;
125
Ben Lindstrom794325a2001-08-06 21:09:07 +0000126/* Flag indicating that the daemon should only test the configuration and keys. */
127int test_flag = 0;
128
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000129/* Flag indicating that the daemon is being started from inetd. */
130int inetd_flag = 0;
131
Ben Lindstromc72745a2000-12-02 19:03:54 +0000132/* Flag indicating that sshd should not detach and become a daemon. */
133int no_daemon_flag = 0;
134
Damien Miller5ce662a1999-11-11 17:57:39 +1100135/* debug goes to stderr unless inetd_flag is set */
136int log_stderr = 0;
137
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000138/* Saved arguments to main(). */
139char **saved_argv;
Damien Millerb8c656e2000-06-28 15:22:41 +1000140int saved_argc;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000141
Damien Miller5428f641999-11-25 11:54:57 +1100142/*
Damien Miller34132e52000-01-14 15:45:46 +1100143 * The sockets that the server is listening; this is used in the SIGHUP
144 * signal handler.
Damien Miller5428f641999-11-25 11:54:57 +1100145 */
Damien Miller34132e52000-01-14 15:45:46 +1100146#define MAX_LISTEN_SOCKS 16
147int listen_socks[MAX_LISTEN_SOCKS];
148int num_listen_socks = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000149
Damien Miller5428f641999-11-25 11:54:57 +1100150/*
151 * the client's version string, passed by sshd2 in compat mode. if != NULL,
152 * sshd will skip the version-number exchange
153 */
Damien Miller95def091999-11-25 00:26:21 +1100154char *client_version_string = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000155char *server_version_string = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000156
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000157/* for rekeying XXX fixme */
158Kex *xxx_kex;
159
Damien Miller5428f641999-11-25 11:54:57 +1100160/*
161 * Any really sensitive data in the application is contained in this
162 * structure. The idea is that this structure could be locked into memory so
163 * that the pages do not get written into swap. However, there are some
164 * problems. The private key contains BIGNUMs, and we do not (in principle)
165 * have access to the internals of them, and locking just the structure is
166 * not very useful. Currently, memory locking is not implemented.
167 */
Damien Miller95def091999-11-25 00:26:21 +1100168struct {
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000169 Key *server_key; /* ephemeral server key */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100170 Key *ssh1_host_key; /* ssh1 host key */
171 Key **host_keys; /* all private host keys */
172 int have_ssh1_key;
173 int have_ssh2_key;
Ben Lindstromeb648a72001-03-05 06:00:29 +0000174 u_char ssh1_cookie[SSH_SESSION_KEY_LENGTH];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000175} sensitive_data;
176
Damien Miller5428f641999-11-25 11:54:57 +1100177/*
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000178 * Flag indicating whether the RSA server key needs to be regenerated.
179 * Is set in the SIGALRM handler and cleared when the key is regenerated.
Damien Miller5428f641999-11-25 11:54:57 +1100180 */
Ben Lindstrom5e71c542001-12-06 16:48:14 +0000181static volatile sig_atomic_t key_do_regen = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000182
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000183/* This is set to true when a signal is received. */
Ben Lindstrom5e71c542001-12-06 16:48:14 +0000184static volatile sig_atomic_t received_sighup = 0;
185static volatile sig_atomic_t received_sigterm = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000186
Damien Millerb38eff82000-04-01 11:09:21 +1000187/* session identifier, used by RSA-auth */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000188u_char session_id[16];
Damien Millerb38eff82000-04-01 11:09:21 +1000189
Damien Millereba71ba2000-04-29 23:57:08 +1000190/* same for ssh2 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000191u_char *session_id2 = NULL;
Darren Tucker502d3842003-06-28 12:38:01 +1000192u_int session_id2_len = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000193
Damien Miller942da032000-08-18 13:59:06 +1000194/* record remote hostname or ip */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000195u_int utmp_len = MAXHOSTNAMELEN;
Damien Miller942da032000-08-18 13:59:06 +1000196
Ben Lindstromd84df982001-12-06 16:35:40 +0000197/* options.max_startup sized array of fd ints */
198int *startup_pipes = NULL;
199int startup_pipe; /* in child */
200
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000201/* variables used for privilege separation */
Damien Miller8e7fb332003-02-24 12:03:03 +1100202int use_privsep;
Darren Tuckera8be9e22004-02-06 16:40:27 +1100203struct monitor *pmonitor = NULL;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000204
Darren Tuckerb9aa0a02003-07-08 22:59:59 +1000205/* message to be displayed after login */
206Buffer loginmsg;
207
Darren Tucker3e33cec2003-10-02 16:12:36 +1000208/* global authentication context */
209Authctxt *the_authctxt = NULL;
210
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000211/* Prototypes for various functions defined later in this file. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000212void destroy_sensitive_data(void);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000213void demote_sensitive_data(void);
Damien Miller98c7ad62000-03-09 21:27:49 +1100214
Ben Lindstrombba81212001-06-25 05:01:22 +0000215static void do_ssh1_kex(void);
216static void do_ssh2_kex(void);
Damien Miller874d77b2000-10-14 16:23:11 +1100217
Damien Miller98c7ad62000-03-09 21:27:49 +1100218/*
Damien Miller34132e52000-01-14 15:45:46 +1100219 * Close all listening sockets
220 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000221static void
Damien Miller34132e52000-01-14 15:45:46 +1100222close_listen_socks(void)
223{
224 int i;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000225
Damien Miller34132e52000-01-14 15:45:46 +1100226 for (i = 0; i < num_listen_socks; i++)
227 close(listen_socks[i]);
228 num_listen_socks = -1;
229}
230
Ben Lindstromd84df982001-12-06 16:35:40 +0000231static void
232close_startup_pipes(void)
233{
234 int i;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000235
Ben Lindstromd84df982001-12-06 16:35:40 +0000236 if (startup_pipes)
237 for (i = 0; i < options.max_startups; i++)
238 if (startup_pipes[i] != -1)
239 close(startup_pipes[i]);
240}
241
Damien Miller34132e52000-01-14 15:45:46 +1100242/*
Damien Miller95def091999-11-25 00:26:21 +1100243 * Signal handler for SIGHUP. Sshd execs itself when it receives SIGHUP;
244 * the effect is to reread the configuration file (and to regenerate
245 * the server key).
246 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000247static void
Damien Miller95def091999-11-25 00:26:21 +1100248sighup_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000249{
Ben Lindstrom07958482001-12-06 16:19:01 +0000250 int save_errno = errno;
251
Damien Miller95def091999-11-25 00:26:21 +1100252 received_sighup = 1;
253 signal(SIGHUP, sighup_handler);
Ben Lindstrom07958482001-12-06 16:19:01 +0000254 errno = save_errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000255}
256
Damien Miller95def091999-11-25 00:26:21 +1100257/*
258 * Called from the main program after receiving SIGHUP.
259 * Restarts the server.
260 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000261static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000262sighup_restart(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000263{
Damien Miller996acd22003-04-09 20:59:48 +1000264 logit("Received SIGHUP; restarting.");
Damien Miller34132e52000-01-14 15:45:46 +1100265 close_listen_socks();
Ben Lindstromd84df982001-12-06 16:35:40 +0000266 close_startup_pipes();
Damien Miller95def091999-11-25 00:26:21 +1100267 execv(saved_argv[0], saved_argv);
Damien Miller996acd22003-04-09 20:59:48 +1000268 logit("RESTART FAILED: av[0]='%.100s', error: %.100s.", saved_argv[0],
Ben Lindstrom822b6342002-06-23 21:38:49 +0000269 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100270 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000271}
272
Damien Miller95def091999-11-25 00:26:21 +1100273/*
274 * Generic signal handler for terminating signals in the master daemon.
Damien Miller95def091999-11-25 00:26:21 +1100275 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000276static void
Damien Miller95def091999-11-25 00:26:21 +1100277sigterm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000278{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000279 received_sigterm = sig;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000280}
281
Damien Miller95def091999-11-25 00:26:21 +1100282/*
283 * SIGCHLD handler. This is called whenever a child dies. This will then
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000284 * reap any zombies left by exited children.
Damien Miller95def091999-11-25 00:26:21 +1100285 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000286static void
Damien Miller95def091999-11-25 00:26:21 +1100287main_sigchld_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000288{
Damien Miller95def091999-11-25 00:26:21 +1100289 int save_errno = errno;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000290 pid_t pid;
Damien Miller95def091999-11-25 00:26:21 +1100291 int status;
Damien Miller431f66b1999-11-21 18:31:57 +1100292
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000293 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
294 (pid < 0 && errno == EINTR))
Damien Miller95def091999-11-25 00:26:21 +1100295 ;
Damien Miller431f66b1999-11-21 18:31:57 +1100296
Damien Miller95def091999-11-25 00:26:21 +1100297 signal(SIGCHLD, main_sigchld_handler);
298 errno = save_errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000299}
300
Damien Miller95def091999-11-25 00:26:21 +1100301/*
302 * Signal handler for the alarm after the login grace period has expired.
303 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000304static void
Damien Miller95def091999-11-25 00:26:21 +1100305grace_alarm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000306{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000307 /* XXX no idea how fix this signal handler */
308
Darren Tuckera8be9e22004-02-06 16:40:27 +1100309 if (use_privsep && pmonitor != NULL && pmonitor->m_pid > 0)
310 kill(pmonitor->m_pid, SIGALRM);
311
Damien Miller95def091999-11-25 00:26:21 +1100312 /* Log error and exit. */
Damien Millerd27a76d2002-09-27 13:22:31 +1000313 fatal("Timeout before authentication for %s", get_remote_ipaddr());
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000314}
315
Damien Miller95def091999-11-25 00:26:21 +1100316/*
Damien Miller95def091999-11-25 00:26:21 +1100317 * Signal handler for the key regeneration alarm. Note that this
318 * alarm only occurs in the daemon waiting for connections, and it does not
319 * do anything with the private key or random state before forking.
320 * Thus there should be no concurrency control/asynchronous execution
321 * problems.
322 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000323static void
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000324generate_ephemeral_server_key(void)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100325{
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000326 u_int32_t rnd = 0;
Ben Lindstromeb648a72001-03-05 06:00:29 +0000327 int i;
328
Ben Lindstroma3700052001-04-05 23:26:32 +0000329 verbose("Generating %s%d bit RSA key.",
Damien Millerff75ac42001-03-30 10:50:32 +1000330 sensitive_data.server_key ? "new " : "", options.server_key_bits);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100331 if (sensitive_data.server_key != NULL)
332 key_free(sensitive_data.server_key);
Ben Lindstroma3700052001-04-05 23:26:32 +0000333 sensitive_data.server_key = key_generate(KEY_RSA1,
Damien Millerff75ac42001-03-30 10:50:32 +1000334 options.server_key_bits);
335 verbose("RSA key generation complete.");
Ben Lindstromeb648a72001-03-05 06:00:29 +0000336
337 for (i = 0; i < SSH_SESSION_KEY_LENGTH; i++) {
338 if (i % 4 == 0)
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000339 rnd = arc4random();
340 sensitive_data.ssh1_cookie[i] = rnd & 0xff;
341 rnd >>= 8;
Ben Lindstromeb648a72001-03-05 06:00:29 +0000342 }
343 arc4random_stir();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100344}
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000345
Ben Lindstrombba81212001-06-25 05:01:22 +0000346static void
Damien Miller95def091999-11-25 00:26:21 +1100347key_regeneration_alarm(int sig)
348{
349 int save_errno = errno;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000350
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000351 signal(SIGALRM, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +1100352 errno = save_errno;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000353 key_do_regen = 1;
Damien Miller95def091999-11-25 00:26:21 +1100354}
355
Ben Lindstrombba81212001-06-25 05:01:22 +0000356static void
Damien Millerb38eff82000-04-01 11:09:21 +1000357sshd_exchange_identification(int sock_in, int sock_out)
358{
Damien Miller78928792000-04-12 20:17:38 +1000359 int i, mismatch;
Damien Millerb38eff82000-04-01 11:09:21 +1000360 int remote_major, remote_minor;
Damien Miller78928792000-04-12 20:17:38 +1000361 int major, minor;
Damien Millerb38eff82000-04-01 11:09:21 +1000362 char *s;
363 char buf[256]; /* Must not be larger than remote_version. */
364 char remote_version[256]; /* Must be at least as big as buf. */
365
Damien Miller78928792000-04-12 20:17:38 +1000366 if ((options.protocol & SSH_PROTO_1) &&
367 (options.protocol & SSH_PROTO_2)) {
368 major = PROTOCOL_MAJOR_1;
369 minor = 99;
370 } else if (options.protocol & SSH_PROTO_2) {
371 major = PROTOCOL_MAJOR_2;
372 minor = PROTOCOL_MINOR_2;
373 } else {
374 major = PROTOCOL_MAJOR_1;
375 minor = PROTOCOL_MINOR_1;
376 }
377 snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n", major, minor, SSH_VERSION);
Damien Millerb38eff82000-04-01 11:09:21 +1000378 server_version_string = xstrdup(buf);
379
Darren Tuckerfe0078a2003-07-19 19:52:28 +1000380 /* Send our protocol version identification. */
381 if (atomicio(vwrite, sock_out, server_version_string,
382 strlen(server_version_string))
383 != strlen(server_version_string)) {
384 logit("Could not write ident string to %s", get_remote_ipaddr());
Darren Tucker3e33cec2003-10-02 16:12:36 +1000385 cleanup_exit(255);
Darren Tuckerfe0078a2003-07-19 19:52:28 +1000386 }
387
388 /* Read other sides version identification. */
389 memset(buf, 0, sizeof(buf));
390 for (i = 0; i < sizeof(buf) - 1; i++) {
391 if (atomicio(read, sock_in, &buf[i], 1) != 1) {
392 logit("Did not receive identification string from %s",
393 get_remote_ipaddr());
Darren Tucker3e33cec2003-10-02 16:12:36 +1000394 cleanup_exit(255);
Damien Millerb38eff82000-04-01 11:09:21 +1000395 }
Darren Tuckerfe0078a2003-07-19 19:52:28 +1000396 if (buf[i] == '\r') {
397 buf[i] = 0;
398 /* Kludge for F-Secure Macintosh < 1.0.2 */
399 if (i == 12 &&
400 strncmp(buf, "SSH-1.5-W1.0", 12) == 0)
Damien Millerb38eff82000-04-01 11:09:21 +1000401 break;
Darren Tuckerfe0078a2003-07-19 19:52:28 +1000402 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000403 }
Darren Tuckerfe0078a2003-07-19 19:52:28 +1000404 if (buf[i] == '\n') {
405 buf[i] = 0;
406 break;
407 }
Damien Millerb38eff82000-04-01 11:09:21 +1000408 }
Darren Tuckerfe0078a2003-07-19 19:52:28 +1000409 buf[sizeof(buf) - 1] = 0;
410 client_version_string = xstrdup(buf);
Damien Millerb38eff82000-04-01 11:09:21 +1000411
412 /*
413 * Check that the versions match. In future this might accept
414 * several versions and set appropriate flags to handle them.
415 */
416 if (sscanf(client_version_string, "SSH-%d.%d-%[^\n]\n",
417 &remote_major, &remote_minor, remote_version) != 3) {
Damien Miller4af51302000-04-16 11:18:38 +1000418 s = "Protocol mismatch.\n";
Darren Tucker9f63f222003-07-03 13:46:56 +1000419 (void) atomicio(vwrite, sock_out, s, strlen(s));
Damien Millerb38eff82000-04-01 11:09:21 +1000420 close(sock_in);
421 close(sock_out);
Damien Miller996acd22003-04-09 20:59:48 +1000422 logit("Bad protocol version identification '%.100s' from %s",
Damien Millerb38eff82000-04-01 11:09:21 +1000423 client_version_string, get_remote_ipaddr());
Darren Tucker3e33cec2003-10-02 16:12:36 +1000424 cleanup_exit(255);
Damien Millerb38eff82000-04-01 11:09:21 +1000425 }
426 debug("Client protocol version %d.%d; client software version %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100427 remote_major, remote_minor, remote_version);
Damien Millerb38eff82000-04-01 11:09:21 +1000428
Damien Millerefb4afe2000-04-12 18:45:05 +1000429 compat_datafellows(remote_version);
430
Damien Millere9264972002-09-30 11:59:21 +1000431 if (datafellows & SSH_BUG_PROBE) {
Damien Miller996acd22003-04-09 20:59:48 +1000432 logit("probed from %s with %s. Don't panic.",
Damien Millere9264972002-09-30 11:59:21 +1000433 get_remote_ipaddr(), client_version_string);
Darren Tucker3e33cec2003-10-02 16:12:36 +1000434 cleanup_exit(255);
Damien Millere9264972002-09-30 11:59:21 +1000435 }
436
Damien Miller27dbe6f2001-03-19 22:36:20 +1100437 if (datafellows & SSH_BUG_SCANNER) {
Damien Miller996acd22003-04-09 20:59:48 +1000438 logit("scanned from %s with %s. Don't panic.",
Damien Miller27dbe6f2001-03-19 22:36:20 +1100439 get_remote_ipaddr(), client_version_string);
Darren Tucker3e33cec2003-10-02 16:12:36 +1000440 cleanup_exit(255);
Damien Miller27dbe6f2001-03-19 22:36:20 +1100441 }
442
Damien Miller78928792000-04-12 20:17:38 +1000443 mismatch = 0;
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000444 switch (remote_major) {
Damien Millerb38eff82000-04-01 11:09:21 +1000445 case 1:
Damien Millereba71ba2000-04-29 23:57:08 +1000446 if (remote_minor == 99) {
447 if (options.protocol & SSH_PROTO_2)
448 enable_compat20();
449 else
450 mismatch = 1;
451 break;
452 }
Damien Miller78928792000-04-12 20:17:38 +1000453 if (!(options.protocol & SSH_PROTO_1)) {
454 mismatch = 1;
455 break;
456 }
Damien Millerb38eff82000-04-01 11:09:21 +1000457 if (remote_minor < 3) {
Damien Miller37023962000-07-11 17:31:38 +1000458 packet_disconnect("Your ssh version is too old and "
Damien Millerb38eff82000-04-01 11:09:21 +1000459 "is no longer supported. Please install a newer version.");
460 } else if (remote_minor == 3) {
461 /* note that this disables agent-forwarding */
462 enable_compat13();
463 }
Damien Miller78928792000-04-12 20:17:38 +1000464 break;
Damien Millerefb4afe2000-04-12 18:45:05 +1000465 case 2:
Damien Miller78928792000-04-12 20:17:38 +1000466 if (options.protocol & SSH_PROTO_2) {
Damien Millerefb4afe2000-04-12 18:45:05 +1000467 enable_compat20();
468 break;
469 }
470 /* FALLTHROUGH */
Damien Miller4af51302000-04-16 11:18:38 +1000471 default:
Damien Miller78928792000-04-12 20:17:38 +1000472 mismatch = 1;
Damien Millerb38eff82000-04-01 11:09:21 +1000473 break;
474 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000475 chop(server_version_string);
Damien Miller78928792000-04-12 20:17:38 +1000476 debug("Local version string %.200s", server_version_string);
477
478 if (mismatch) {
479 s = "Protocol major versions differ.\n";
Darren Tucker9f63f222003-07-03 13:46:56 +1000480 (void) atomicio(vwrite, sock_out, s, strlen(s));
Damien Miller78928792000-04-12 20:17:38 +1000481 close(sock_in);
482 close(sock_out);
Damien Miller996acd22003-04-09 20:59:48 +1000483 logit("Protocol major versions differ for %s: %.200s vs. %.200s",
Damien Miller78928792000-04-12 20:17:38 +1000484 get_remote_ipaddr(),
485 server_version_string, client_version_string);
Darren Tucker3e33cec2003-10-02 16:12:36 +1000486 cleanup_exit(255);
Damien Miller78928792000-04-12 20:17:38 +1000487 }
Damien Millereba71ba2000-04-29 23:57:08 +1000488}
489
Damien Miller0bc1bd82000-11-13 22:57:25 +1100490/* Destroy the host and server keys. They will no longer be needed. */
Damien Millereba71ba2000-04-29 23:57:08 +1000491void
492destroy_sensitive_data(void)
493{
Damien Miller0bc1bd82000-11-13 22:57:25 +1100494 int i;
495
496 if (sensitive_data.server_key) {
497 key_free(sensitive_data.server_key);
498 sensitive_data.server_key = NULL;
499 }
Damien Miller9f0f5c62001-12-21 14:45:46 +1100500 for (i = 0; i < options.num_host_key_files; i++) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100501 if (sensitive_data.host_keys[i]) {
502 key_free(sensitive_data.host_keys[i]);
503 sensitive_data.host_keys[i] = NULL;
504 }
505 }
506 sensitive_data.ssh1_host_key = NULL;
Ben Lindstromeb648a72001-03-05 06:00:29 +0000507 memset(sensitive_data.ssh1_cookie, 0, SSH_SESSION_KEY_LENGTH);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100508}
Damien Miller0bc1bd82000-11-13 22:57:25 +1100509
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000510/* Demote private to public keys for network child */
511void
512demote_sensitive_data(void)
513{
514 Key *tmp;
515 int i;
516
517 if (sensitive_data.server_key) {
518 tmp = key_demote(sensitive_data.server_key);
519 key_free(sensitive_data.server_key);
520 sensitive_data.server_key = tmp;
521 }
522
523 for (i = 0; i < options.num_host_key_files; i++) {
524 if (sensitive_data.host_keys[i]) {
525 tmp = key_demote(sensitive_data.host_keys[i]);
526 key_free(sensitive_data.host_keys[i]);
527 sensitive_data.host_keys[i] = tmp;
528 if (tmp->type == KEY_RSA1)
529 sensitive_data.ssh1_host_key = tmp;
530 }
531 }
532
533 /* We do not clear ssh1_host key and cookie. XXX - Okay Niels? */
534}
535
Ben Lindstrom08105192002-03-22 02:50:06 +0000536static void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000537privsep_preauth_child(void)
538{
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000539 u_int32_t rnd[256];
Ben Lindstrom810af962002-07-04 00:11:40 +0000540 gid_t gidset[1];
Ben Lindstromc7431342002-03-22 03:11:49 +0000541 struct passwd *pw;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000542 int i;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000543
544 /* Enable challenge-response authentication for privilege separation */
545 privsep_challenge_enable();
546
547 for (i = 0; i < 256; i++)
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000548 rnd[i] = arc4random();
549 RAND_seed(rnd, sizeof(rnd));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000550
551 /* Demote the private keys to public keys. */
552 demote_sensitive_data();
553
Ben Lindstromc7431342002-03-22 03:11:49 +0000554 if ((pw = getpwnam(SSH_PRIVSEP_USER)) == NULL)
Damien Miller0150c652002-04-24 09:49:09 +1000555 fatal("Privilege separation user %s does not exist",
556 SSH_PRIVSEP_USER);
Ben Lindstromc7431342002-03-22 03:11:49 +0000557 memset(pw->pw_passwd, 0, strlen(pw->pw_passwd));
558 endpwent();
559
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000560 /* Change our root directory */
Ben Lindstrom7a7edf72002-03-22 02:42:37 +0000561 if (chroot(_PATH_PRIVSEP_CHROOT_DIR) == -1)
562 fatal("chroot(\"%s\"): %s", _PATH_PRIVSEP_CHROOT_DIR,
563 strerror(errno));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000564 if (chdir("/") == -1)
Ben Lindstrom1ee9ec32002-03-22 03:14:45 +0000565 fatal("chdir(\"/\"): %s", strerror(errno));
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000566
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000567 /* Drop our privileges */
Ben Lindstromc7431342002-03-22 03:11:49 +0000568 debug3("privsep user:group %u:%u", (u_int)pw->pw_uid,
569 (u_int)pw->pw_gid);
Ben Lindstromfbcc3f72002-06-25 23:24:18 +0000570#if 0
Darren Tuckerd5920482004-02-29 20:11:30 +1100571 /* XXX not ready, too heavy after chroot */
Ben Lindstromc7431342002-03-22 03:11:49 +0000572 do_setusercontext(pw);
Ben Lindstromfbcc3f72002-06-25 23:24:18 +0000573#else
574 gidset[0] = pw->pw_gid;
Ben Lindstromfbcc3f72002-06-25 23:24:18 +0000575 if (setgroups(1, gidset) < 0)
576 fatal("setgroups: %.100s", strerror(errno));
577 permanently_set_uid(pw);
578#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000579}
580
Darren Tucker3e33cec2003-10-02 16:12:36 +1000581static int
582privsep_preauth(Authctxt *authctxt)
Ben Lindstrom943481c2002-03-22 03:43:46 +0000583{
Ben Lindstrom943481c2002-03-22 03:43:46 +0000584 int status;
585 pid_t pid;
586
587 /* Set up unprivileged child process to deal with network data */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000588 pmonitor = monitor_init();
Ben Lindstrom943481c2002-03-22 03:43:46 +0000589 /* Store a pointer to the kex for later rekeying */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000590 pmonitor->m_pkex = &xxx_kex;
Ben Lindstrom943481c2002-03-22 03:43:46 +0000591
592 pid = fork();
593 if (pid == -1) {
594 fatal("fork of unprivileged child failed");
595 } else if (pid != 0) {
Ben Lindstromce0f6342002-06-11 16:42:49 +0000596 debug2("Network child is on pid %ld", (long)pid);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000597
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000598 close(pmonitor->m_recvfd);
Darren Tuckera8be9e22004-02-06 16:40:27 +1100599 pmonitor->m_pid = pid;
Darren Tucker3e33cec2003-10-02 16:12:36 +1000600 monitor_child_preauth(authctxt, pmonitor);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000601 close(pmonitor->m_sendfd);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000602
603 /* Sync memory */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000604 monitor_sync(pmonitor);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000605
606 /* Wait for the child's exit status */
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000607 while (waitpid(pid, &status, 0) < 0)
608 if (errno != EINTR)
609 break;
Darren Tucker3e33cec2003-10-02 16:12:36 +1000610 return (1);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000611 } else {
612 /* child */
613
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000614 close(pmonitor->m_sendfd);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000615
616 /* Demote the child */
617 if (getuid() == 0 || geteuid() == 0)
618 privsep_preauth_child();
Ben Lindstromf90f58d2002-03-26 01:53:03 +0000619 setproctitle("%s", "[net]");
Ben Lindstrom943481c2002-03-22 03:43:46 +0000620 }
Darren Tucker3e33cec2003-10-02 16:12:36 +1000621 return (0);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000622}
623
Ben Lindstrom08105192002-03-22 02:50:06 +0000624static void
Ben Lindstrom943481c2002-03-22 03:43:46 +0000625privsep_postauth(Authctxt *authctxt)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000626{
Tim Rice9dd30812002-07-07 13:43:36 -0700627#ifdef DISABLE_FD_PASSING
Tim Rice8eff3192002-06-25 15:35:15 -0700628 if (1) {
629#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000630 if (authctxt->pw->pw_uid == 0 || options.use_login) {
Tim Rice8eff3192002-06-25 15:35:15 -0700631#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000632 /* File descriptor passing is broken or root login */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000633 monitor_apply_keystate(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000634 use_privsep = 0;
635 return;
636 }
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000637
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000638 /* Authentication complete */
639 alarm(0);
640 if (startup_pipe != -1) {
641 close(startup_pipe);
642 startup_pipe = -1;
643 }
644
645 /* New socket pair */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000646 monitor_reinit(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000647
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000648 pmonitor->m_pid = fork();
649 if (pmonitor->m_pid == -1)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000650 fatal("fork of unprivileged child failed");
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000651 else if (pmonitor->m_pid != 0) {
Ben Lindstromce0f6342002-06-11 16:42:49 +0000652 debug2("User child is on pid %ld", (long)pmonitor->m_pid);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000653 close(pmonitor->m_recvfd);
654 monitor_child_postauth(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000655
656 /* NEVERREACHED */
657 exit(0);
658 }
659
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000660 close(pmonitor->m_sendfd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000661
662 /* Demote the private keys to public keys. */
663 demote_sensitive_data();
664
665 /* Drop privileges */
666 do_setusercontext(authctxt->pw);
667
668 /* It is safe now to apply the key state */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000669 monitor_apply_keystate(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000670}
671
Ben Lindstrombba81212001-06-25 05:01:22 +0000672static char *
Damien Miller0bc1bd82000-11-13 22:57:25 +1100673list_hostkey_types(void)
674{
Damien Miller0e3b8722002-01-22 23:26:38 +1100675 Buffer b;
Damien Millerf58b58c2003-11-17 21:18:23 +1100676 const char *p;
677 char *ret;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100678 int i;
Damien Miller0e3b8722002-01-22 23:26:38 +1100679
680 buffer_init(&b);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100681 for (i = 0; i < options.num_host_key_files; i++) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100682 Key *key = sensitive_data.host_keys[i];
683 if (key == NULL)
684 continue;
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000685 switch (key->type) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100686 case KEY_RSA:
687 case KEY_DSA:
Damien Miller0e3b8722002-01-22 23:26:38 +1100688 if (buffer_len(&b) > 0)
689 buffer_append(&b, ",", 1);
690 p = key_ssh_name(key);
691 buffer_append(&b, p, strlen(p));
Damien Miller0bc1bd82000-11-13 22:57:25 +1100692 break;
693 }
694 }
Damien Miller0e3b8722002-01-22 23:26:38 +1100695 buffer_append(&b, "\0", 1);
Damien Millerf58b58c2003-11-17 21:18:23 +1100696 ret = xstrdup(buffer_ptr(&b));
Damien Miller0e3b8722002-01-22 23:26:38 +1100697 buffer_free(&b);
Damien Millerf58b58c2003-11-17 21:18:23 +1100698 debug("list_hostkey_types: %s", ret);
699 return ret;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100700}
701
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000702Key *
Damien Miller0bc1bd82000-11-13 22:57:25 +1100703get_hostkey_by_type(int type)
704{
705 int i;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000706
Damien Miller9f0f5c62001-12-21 14:45:46 +1100707 for (i = 0; i < options.num_host_key_files; i++) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100708 Key *key = sensitive_data.host_keys[i];
709 if (key != NULL && key->type == type)
710 return key;
711 }
712 return NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000713}
714
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000715Key *
716get_hostkey_by_index(int ind)
717{
718 if (ind < 0 || ind >= options.num_host_key_files)
719 return (NULL);
720 return (sensitive_data.host_keys[ind]);
721}
722
723int
724get_hostkey_index(Key *key)
725{
726 int i;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000727
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000728 for (i = 0; i < options.num_host_key_files; i++) {
729 if (key == sensitive_data.host_keys[i])
730 return (i);
731 }
732 return (-1);
733}
734
Damien Miller942da032000-08-18 13:59:06 +1000735/*
736 * returns 1 if connection should be dropped, 0 otherwise.
737 * dropping starts at connection #max_startups_begin with a probability
738 * of (max_startups_rate/100). the probability increases linearly until
739 * all connections are dropped for startups > max_startups
740 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000741static int
Damien Miller942da032000-08-18 13:59:06 +1000742drop_connection(int startups)
743{
744 double p, r;
745
746 if (startups < options.max_startups_begin)
747 return 0;
748 if (startups >= options.max_startups)
749 return 1;
750 if (options.max_startups_rate == 100)
751 return 1;
752
753 p = 100 - options.max_startups_rate;
754 p *= startups - options.max_startups_begin;
755 p /= (double) (options.max_startups - options.max_startups_begin);
756 p += options.max_startups_rate;
757 p /= 100.0;
758 r = arc4random() / (double) UINT_MAX;
759
760 debug("drop_connection: p %g, r %g", p, r);
761 return (r < p) ? 1 : 0;
762}
763
Ben Lindstromade03f62001-12-06 18:22:17 +0000764static void
765usage(void)
766{
Darren Tucker4a250542003-10-03 17:57:24 +1000767 fprintf(stderr, "sshd version %s, %s\n",
768 SSH_VERSION, SSLeay_version(SSLEAY_VERSION));
Ben Lindstromade03f62001-12-06 18:22:17 +0000769 fprintf(stderr, "Usage: %s [options]\n", __progname);
770 fprintf(stderr, "Options:\n");
771 fprintf(stderr, " -f file Configuration file (default %s)\n", _PATH_SERVER_CONFIG_FILE);
772 fprintf(stderr, " -d Debugging mode (multiple -d means more debugging)\n");
773 fprintf(stderr, " -i Started from inetd\n");
774 fprintf(stderr, " -D Do not fork into daemon mode\n");
775 fprintf(stderr, " -t Only test configuration file and keys\n");
776 fprintf(stderr, " -q Quiet (no logging)\n");
777 fprintf(stderr, " -p port Listen on the specified port (default: 22)\n");
778 fprintf(stderr, " -k seconds Regenerate server key every this many seconds (default: 3600)\n");
779 fprintf(stderr, " -g seconds Grace period for authentication (default: 600)\n");
780 fprintf(stderr, " -b bits Size of server RSA key (default: 768 bits)\n");
781 fprintf(stderr, " -h file File from which to read host key (default: %s)\n",
782 _PATH_HOST_KEY_FILE);
783 fprintf(stderr, " -u len Maximum hostname length for utmp recording\n");
784 fprintf(stderr, " -4 Use IPv4 only\n");
785 fprintf(stderr, " -6 Use IPv6 only\n");
786 fprintf(stderr, " -o option Process the option as if it was read from a configuration file.\n");
787 exit(1);
788}
789
Damien Miller95def091999-11-25 00:26:21 +1100790/*
791 * Main program for the daemon.
792 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000793int
794main(int ac, char **av)
795{
Damien Miller95def091999-11-25 00:26:21 +1100796 extern char *optarg;
797 extern int optind;
Damien Miller37023962000-07-11 17:31:38 +1000798 int opt, sock_in = 0, sock_out = 0, newsock, j, i, fdsetsz, on = 1;
Damien Miller166fca82000-04-20 07:42:21 +1000799 pid_t pid;
Damien Miller34132e52000-01-14 15:45:46 +1100800 socklen_t fromlen;
Damien Miller34132e52000-01-14 15:45:46 +1100801 fd_set *fdset;
802 struct sockaddr_storage from;
Damien Miller95def091999-11-25 00:26:21 +1100803 const char *remote_ip;
804 int remote_port;
Damien Miller95def091999-11-25 00:26:21 +1100805 FILE *f;
Damien Miller34132e52000-01-14 15:45:46 +1100806 struct addrinfo *ai;
807 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Millerb9997192003-12-17 16:29:22 +1100808 char *line;
Damien Miller34132e52000-01-14 15:45:46 +1100809 int listen_sock, maxfd;
Damien Miller37023962000-07-11 17:31:38 +1000810 int startup_p[2];
811 int startups = 0;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000812 Key *key;
Darren Tucker3e33cec2003-10-02 16:12:36 +1000813 Authctxt *authctxt;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000814 int ret, key_used = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000815
Kevin Steves0ea1d9d2002-04-25 18:17:04 +0000816#ifdef HAVE_SECUREWARE
817 (void)set_auth_parameters(ac, av);
818#endif
Damien Miller59d3d5b2003-08-22 09:34:41 +1000819 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000820 init_rng();
821
Damien Millera8ed44b2003-01-10 09:53:12 +1100822 /* Save argv. Duplicate so setproctitle emulation doesn't clobber it */
Damien Millerb8c656e2000-06-28 15:22:41 +1000823 saved_argc = ac;
Damien Miller04cb5362003-05-15 21:29:10 +1000824 saved_argv = xmalloc(sizeof(*saved_argv) * (ac + 1));
Damien Millera8ed44b2003-01-10 09:53:12 +1100825 for (i = 0; i < ac; i++)
826 saved_argv[i] = xstrdup(av[i]);
Damien Miller04cb5362003-05-15 21:29:10 +1000827 saved_argv[i] = NULL;
Damien Millera8ed44b2003-01-10 09:53:12 +1100828
829#ifndef HAVE_SETPROCTITLE
830 /* Prepare for later setproctitle emulation */
831 compat_init_setproctitle(ac, av);
Damien Millerf2e3e9d2003-06-02 12:15:54 +1000832 av = saved_argv;
Damien Millera8ed44b2003-01-10 09:53:12 +1100833#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000834
Damien Miller95def091999-11-25 00:26:21 +1100835 /* Initialize configuration options to their default values. */
836 initialize_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000837
Damien Miller95def091999-11-25 00:26:21 +1100838 /* Parse command-line arguments. */
Darren Tuckerfe0078a2003-07-19 19:52:28 +1000839 while ((opt = getopt(ac, av, "f:p:b:k:h:g:u:o:dDeiqtQ46")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100840 switch (opt) {
Damien Miller34132e52000-01-14 15:45:46 +1100841 case '4':
842 IPv4or6 = AF_INET;
843 break;
844 case '6':
845 IPv4or6 = AF_INET6;
846 break;
Damien Miller95def091999-11-25 00:26:21 +1100847 case 'f':
848 config_file_name = optarg;
849 break;
850 case 'd':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000851 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100852 debug_flag = 1;
853 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000854 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3)
Damien Millere4340be2000-09-16 13:29:08 +1100855 options.log_level++;
Damien Miller95def091999-11-25 00:26:21 +1100856 break;
Ben Lindstromc72745a2000-12-02 19:03:54 +0000857 case 'D':
858 no_daemon_flag = 1;
859 break;
Ben Lindstrom9fce9f02001-04-11 23:10:09 +0000860 case 'e':
861 log_stderr = 1;
862 break;
Damien Miller95def091999-11-25 00:26:21 +1100863 case 'i':
864 inetd_flag = 1;
865 break;
866 case 'Q':
Ben Lindstromd5390202001-01-29 08:07:43 +0000867 /* ignored */
Damien Miller95def091999-11-25 00:26:21 +1100868 break;
869 case 'q':
870 options.log_level = SYSLOG_LEVEL_QUIET;
871 break;
872 case 'b':
873 options.server_key_bits = atoi(optarg);
874 break;
875 case 'p':
Damien Miller34132e52000-01-14 15:45:46 +1100876 options.ports_from_cmdline = 1;
Damien Millere4340be2000-09-16 13:29:08 +1100877 if (options.num_ports >= MAX_PORTS) {
878 fprintf(stderr, "too many ports.\n");
879 exit(1);
880 }
Ben Lindstrom19066a12001-04-12 23:39:26 +0000881 options.ports[options.num_ports++] = a2port(optarg);
882 if (options.ports[options.num_ports-1] == 0) {
883 fprintf(stderr, "Bad port number.\n");
884 exit(1);
885 }
Damien Miller95def091999-11-25 00:26:21 +1100886 break;
887 case 'g':
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000888 if ((options.login_grace_time = convtime(optarg)) == -1) {
889 fprintf(stderr, "Invalid login grace time.\n");
890 exit(1);
891 }
Damien Miller95def091999-11-25 00:26:21 +1100892 break;
893 case 'k':
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000894 if ((options.key_regeneration_time = convtime(optarg)) == -1) {
895 fprintf(stderr, "Invalid key regeneration interval.\n");
896 exit(1);
897 }
Damien Miller95def091999-11-25 00:26:21 +1100898 break;
899 case 'h':
Damien Miller0bc1bd82000-11-13 22:57:25 +1100900 if (options.num_host_key_files >= MAX_HOSTKEYS) {
901 fprintf(stderr, "too many host keys.\n");
902 exit(1);
903 }
904 options.host_key_files[options.num_host_key_files++] = optarg;
Damien Miller95def091999-11-25 00:26:21 +1100905 break;
Ben Lindstrom794325a2001-08-06 21:09:07 +0000906 case 't':
907 test_flag = 1;
908 break;
Damien Miller942da032000-08-18 13:59:06 +1000909 case 'u':
910 utmp_len = atoi(optarg);
Ben Lindstrom41daec72002-07-23 21:15:13 +0000911 if (utmp_len > MAXHOSTNAMELEN) {
912 fprintf(stderr, "Invalid utmp length.\n");
913 exit(1);
914 }
Damien Miller942da032000-08-18 13:59:06 +1000915 break;
Ben Lindstromade03f62001-12-06 18:22:17 +0000916 case 'o':
Damien Millerb9997192003-12-17 16:29:22 +1100917 line = xstrdup(optarg);
918 if (process_server_config_line(&options, line,
Ben Lindstromade03f62001-12-06 18:22:17 +0000919 "command-line", 0) != 0)
Damien Miller9f0f5c62001-12-21 14:45:46 +1100920 exit(1);
Damien Millerb9997192003-12-17 16:29:22 +1100921 xfree(line);
Ben Lindstromade03f62001-12-06 18:22:17 +0000922 break;
Damien Miller95def091999-11-25 00:26:21 +1100923 case '?':
924 default:
Ben Lindstromade03f62001-12-06 18:22:17 +0000925 usage();
926 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000927 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000928 }
Ben Lindstrom425fb022001-03-29 00:31:20 +0000929 SSLeay_add_all_algorithms();
Ben Lindstrom908afed2001-10-03 17:34:59 +0000930 channel_set_af(IPv4or6);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000931
Damien Miller34132e52000-01-14 15:45:46 +1100932 /*
933 * Force logging to stderr until we have loaded the private host
934 * key (unless started from inetd)
935 */
Kevin Stevesec84dc12000-12-13 17:45:15 +0000936 log_init(__progname,
Damien Miller5aa5d782002-02-08 22:01:54 +1100937 options.log_level == SYSLOG_LEVEL_NOT_SET ?
938 SYSLOG_LEVEL_INFO : options.log_level,
939 options.log_facility == SYSLOG_FACILITY_NOT_SET ?
940 SYSLOG_FACILITY_AUTH : options.log_facility,
Ben Lindstromc2faa4a2002-11-09 15:50:03 +0000941 log_stderr || !inetd_flag);
Damien Miller34132e52000-01-14 15:45:46 +1100942
Tim Rice81ed5182002-09-25 17:38:46 -0700943#ifdef _UNICOS
Ben Lindstrom6db66ff2001-08-06 23:29:16 +0000944 /* Cray can define user privs drop all prives now!
945 * Not needed on PRIV_SU systems!
946 */
947 drop_cray_privs();
948#endif
949
Damien Miller60bc5172001-03-19 09:38:15 +1100950 seed_rng();
951
Damien Miller95def091999-11-25 00:26:21 +1100952 /* Read server configuration options from the configuration file. */
953 read_server_config(&options, config_file_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000954
Damien Miller95def091999-11-25 00:26:21 +1100955 /* Fill in default values for those options not explicitly set. */
956 fill_default_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000957
Damien Miller95def091999-11-25 00:26:21 +1100958 /* Check that there are no remaining arguments. */
959 if (optind < ac) {
960 fprintf(stderr, "Extra argument %s.\n", av[optind]);
961 exit(1);
962 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000963
Damien Miller95def091999-11-25 00:26:21 +1100964 debug("sshd version %.100s", SSH_VERSION);
Damien Miller2ccf6611999-11-15 15:25:10 +1100965
Damien Miller0bc1bd82000-11-13 22:57:25 +1100966 /* load private host keys */
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000967 sensitive_data.host_keys = xmalloc(options.num_host_key_files *
968 sizeof(Key *));
Damien Miller9f0f5c62001-12-21 14:45:46 +1100969 for (i = 0; i < options.num_host_key_files; i++)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000970 sensitive_data.host_keys[i] = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100971 sensitive_data.server_key = NULL;
972 sensitive_data.ssh1_host_key = NULL;
973 sensitive_data.have_ssh1_key = 0;
974 sensitive_data.have_ssh2_key = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000975
Damien Miller9f0f5c62001-12-21 14:45:46 +1100976 for (i = 0; i < options.num_host_key_files; i++) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000977 key = key_load_private(options.host_key_files[i], "", NULL);
978 sensitive_data.host_keys[i] = key;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100979 if (key == NULL) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000980 error("Could not load host key: %s",
981 options.host_key_files[i]);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000982 sensitive_data.host_keys[i] = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100983 continue;
984 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000985 switch (key->type) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100986 case KEY_RSA1:
987 sensitive_data.ssh1_host_key = key;
988 sensitive_data.have_ssh1_key = 1;
989 break;
990 case KEY_RSA:
991 case KEY_DSA:
992 sensitive_data.have_ssh2_key = 1;
993 break;
994 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000995 debug("private host key: #%d type %d %s", i, key->type,
996 key_type(key));
Damien Miller0bc1bd82000-11-13 22:57:25 +1100997 }
998 if ((options.protocol & SSH_PROTO_1) && !sensitive_data.have_ssh1_key) {
Damien Miller996acd22003-04-09 20:59:48 +1000999 logit("Disabling protocol version 1. Could not load host key");
Damien Millereba71ba2000-04-29 23:57:08 +10001000 options.protocol &= ~SSH_PROTO_1;
1001 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001002 if ((options.protocol & SSH_PROTO_2) && !sensitive_data.have_ssh2_key) {
Damien Miller996acd22003-04-09 20:59:48 +10001003 logit("Disabling protocol version 2. Could not load host key");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001004 options.protocol &= ~SSH_PROTO_2;
Damien Millereba71ba2000-04-29 23:57:08 +10001005 }
Kevin Stevesadf74cd2001-02-05 14:22:50 +00001006 if (!(options.protocol & (SSH_PROTO_1|SSH_PROTO_2))) {
Damien Miller996acd22003-04-09 20:59:48 +10001007 logit("sshd: no hostkeys available -- exiting.");
Damien Miller95def091999-11-25 00:26:21 +11001008 exit(1);
1009 }
Damien Miller95def091999-11-25 00:26:21 +11001010
Damien Millereba71ba2000-04-29 23:57:08 +10001011 /* Check certain values for sanity. */
1012 if (options.protocol & SSH_PROTO_1) {
1013 if (options.server_key_bits < 512 ||
1014 options.server_key_bits > 32768) {
1015 fprintf(stderr, "Bad server key size.\n");
1016 exit(1);
1017 }
1018 /*
1019 * Check that server and host key lengths differ sufficiently. This
1020 * is necessary to make double encryption work with rsaref. Oh, I
1021 * hate software patents. I dont know if this can go? Niels
1022 */
1023 if (options.server_key_bits >
Ben Lindstrom822b6342002-06-23 21:38:49 +00001024 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) -
1025 SSH_KEY_BITS_RESERVED && options.server_key_bits <
1026 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) +
1027 SSH_KEY_BITS_RESERVED) {
Damien Millereba71ba2000-04-29 23:57:08 +10001028 options.server_key_bits =
Ben Lindstrom822b6342002-06-23 21:38:49 +00001029 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) +
1030 SSH_KEY_BITS_RESERVED;
Damien Millereba71ba2000-04-29 23:57:08 +10001031 debug("Forcing server key to %d bits to make it differ from host key.",
1032 options.server_key_bits);
1033 }
1034 }
1035
Ben Lindstroma26ea632002-06-06 20:46:25 +00001036 if (use_privsep) {
1037 struct passwd *pw;
1038 struct stat st;
1039
1040 if ((pw = getpwnam(SSH_PRIVSEP_USER)) == NULL)
1041 fatal("Privilege separation user %s does not exist",
1042 SSH_PRIVSEP_USER);
1043 if ((stat(_PATH_PRIVSEP_CHROOT_DIR, &st) == -1) ||
1044 (S_ISDIR(st.st_mode) == 0))
1045 fatal("Missing privilege separation directory: %s",
1046 _PATH_PRIVSEP_CHROOT_DIR);
Ben Lindstrom59627352002-06-27 18:02:21 +00001047
1048#ifdef HAVE_CYGWIN
1049 if (check_ntsec(_PATH_PRIVSEP_CHROOT_DIR) &&
1050 (st.st_uid != getuid () ||
1051 (st.st_mode & (S_IWGRP|S_IWOTH)) != 0))
1052#else
Ben Lindstrom2dfacb32002-06-23 00:33:47 +00001053 if (st.st_uid != 0 || (st.st_mode & (S_IWGRP|S_IWOTH)) != 0)
Ben Lindstrom59627352002-06-27 18:02:21 +00001054#endif
Damien Miller180fc5b2003-02-24 11:50:18 +11001055 fatal("%s must be owned by root and not group or "
1056 "world-writable.", _PATH_PRIVSEP_CHROOT_DIR);
Ben Lindstroma26ea632002-06-06 20:46:25 +00001057 }
1058
Ben Lindstrom794325a2001-08-06 21:09:07 +00001059 /* Configuration looks good, so exit if in test mode. */
1060 if (test_flag)
1061 exit(0);
1062
Damien Miller87aea252002-05-10 12:20:24 +10001063 /*
1064 * Clear out any supplemental groups we may have inherited. This
1065 * prevents inadvertent creation of files with bad modes (in the
Damien Millera8e06ce2003-11-21 23:48:55 +11001066 * portable version at least, it's certainly possible for PAM
1067 * to create a file, and we can't control the code in every
Damien Miller87aea252002-05-10 12:20:24 +10001068 * module which might be used).
1069 */
1070 if (setgroups(0, NULL) < 0)
1071 debug("setgroups() failed: %.200s", strerror(errno));
1072
Damien Millereba71ba2000-04-29 23:57:08 +10001073 /* Initialize the log (it is reinitialized below in case we forked). */
Damien Miller95def091999-11-25 00:26:21 +11001074 if (debug_flag && !inetd_flag)
1075 log_stderr = 1;
Kevin Stevesec84dc12000-12-13 17:45:15 +00001076 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +11001077
Damien Millereba71ba2000-04-29 23:57:08 +10001078 /*
1079 * If not in debugging mode, and not started from inetd, disconnect
1080 * from the controlling terminal, and fork. The original process
1081 * exits.
1082 */
Ben Lindstromc72745a2000-12-02 19:03:54 +00001083 if (!(debug_flag || inetd_flag || no_daemon_flag)) {
Damien Miller95def091999-11-25 00:26:21 +11001084#ifdef TIOCNOTTY
1085 int fd;
1086#endif /* TIOCNOTTY */
1087 if (daemon(0, 0) < 0)
1088 fatal("daemon() failed: %.200s", strerror(errno));
1089
1090 /* Disconnect from the controlling tty. */
1091#ifdef TIOCNOTTY
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001092 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
Damien Miller95def091999-11-25 00:26:21 +11001093 if (fd >= 0) {
1094 (void) ioctl(fd, TIOCNOTTY, NULL);
1095 close(fd);
1096 }
1097#endif /* TIOCNOTTY */
1098 }
1099 /* Reinitialize the log (because of the fork above). */
Kevin Stevesec84dc12000-12-13 17:45:15 +00001100 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +11001101
Damien Miller95def091999-11-25 00:26:21 +11001102 /* Initialize the random number generator. */
1103 arc4random_stir();
1104
1105 /* Chdir to the root directory so that the current disk can be
1106 unmounted if desired. */
1107 chdir("/");
Damien Miller9f0f5c62001-12-21 14:45:46 +11001108
Darren Tuckerecc9d462004-02-06 16:04:08 +11001109#ifndef HAVE_CYGWIN
1110 /* Clear environment */
1111 environ[0] = NULL;
1112#endif
1113
Ben Lindstromde71cda2001-03-24 00:43:26 +00001114 /* ignore SIGPIPE */
1115 signal(SIGPIPE, SIG_IGN);
Damien Miller95def091999-11-25 00:26:21 +11001116
Damien Miller95def091999-11-25 00:26:21 +11001117 /* Start listening for a socket, unless started from inetd. */
1118 if (inetd_flag) {
Ben Lindstrom206941f2001-04-15 14:27:16 +00001119 int s1;
Damien Miller95def091999-11-25 00:26:21 +11001120 s1 = dup(0); /* Make sure descriptors 0, 1, and 2 are in use. */
Ben Lindstrom206941f2001-04-15 14:27:16 +00001121 dup(s1);
Damien Miller95def091999-11-25 00:26:21 +11001122 sock_in = dup(0);
1123 sock_out = dup(1);
Damien Miller994cf142000-07-21 10:19:44 +10001124 startup_pipe = -1;
Damien Millereba71ba2000-04-29 23:57:08 +10001125 /*
1126 * We intentionally do not close the descriptors 0, 1, and 2
1127 * as our code for setting the descriptors won\'t work if
1128 * ttyfd happens to be one of those.
1129 */
Damien Miller95def091999-11-25 00:26:21 +11001130 debug("inetd sockets after dupping: %d, %d", sock_in, sock_out);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001131 if (options.protocol & SSH_PROTO_1)
Ben Lindstromca42d5f2001-03-09 18:25:32 +00001132 generate_ephemeral_server_key();
Damien Miller95def091999-11-25 00:26:21 +11001133 } else {
Damien Miller34132e52000-01-14 15:45:46 +11001134 for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
1135 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1136 continue;
1137 if (num_listen_socks >= MAX_LISTEN_SOCKS)
1138 fatal("Too many listen sockets. "
1139 "Enlarge MAX_LISTEN_SOCKS");
1140 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
1141 ntop, sizeof(ntop), strport, sizeof(strport),
1142 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
1143 error("getnameinfo failed");
1144 continue;
1145 }
1146 /* Create socket for listening. */
Damien Miller2372ace2003-05-14 13:42:23 +10001147 listen_sock = socket(ai->ai_family, ai->ai_socktype,
1148 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11001149 if (listen_sock < 0) {
1150 /* kernel may not support ipv6 */
1151 verbose("socket: %.100s", strerror(errno));
1152 continue;
1153 }
Darren Tuckerefa37062004-02-24 09:20:29 +11001154 if (fcntl(listen_sock, F_SETFL, O_NONBLOCK) < 0) {
1155 error("listen_sock O_NONBLOCK: %s", strerror(errno));
1156 close(listen_sock);
1157 continue;
1158 }
Damien Miller34132e52000-01-14 15:45:46 +11001159 /*
Damien Millere1383ce2002-09-19 11:49:37 +10001160 * Set socket options.
1161 * Allow local port reuse in TIME_WAIT.
Damien Miller34132e52000-01-14 15:45:46 +11001162 */
Damien Millere1383ce2002-09-19 11:49:37 +10001163 if (setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
1164 &on, sizeof(on)) == -1)
1165 error("setsockopt SO_REUSEADDR: %s", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001166
Damien Miller34132e52000-01-14 15:45:46 +11001167 debug("Bind to port %s on %s.", strport, ntop);
Damien Miller95def091999-11-25 00:26:21 +11001168
Damien Miller34132e52000-01-14 15:45:46 +11001169 /* Bind the socket to the desired port. */
Damien Miller0a4e27d2001-02-18 12:36:39 +11001170 if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1171 if (!ai->ai_next)
1172 error("Bind to port %s on %s failed: %.200s.",
1173 strport, ntop, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11001174 close(listen_sock);
1175 continue;
1176 }
1177 listen_socks[num_listen_socks] = listen_sock;
1178 num_listen_socks++;
Damien Miller95def091999-11-25 00:26:21 +11001179
Damien Miller34132e52000-01-14 15:45:46 +11001180 /* Start listening on the port. */
Damien Miller996acd22003-04-09 20:59:48 +10001181 logit("Server listening on %s port %s.", ntop, strport);
Darren Tucker3175eb92003-12-09 19:15:11 +11001182 if (listen(listen_sock, SSH_LISTEN_BACKLOG) < 0)
Damien Miller34132e52000-01-14 15:45:46 +11001183 fatal("listen: %.100s", strerror(errno));
1184
Damien Miller95def091999-11-25 00:26:21 +11001185 }
Damien Miller34132e52000-01-14 15:45:46 +11001186 freeaddrinfo(options.listen_addrs);
1187
1188 if (!num_listen_socks)
1189 fatal("Cannot bind any address.");
1190
Ben Lindstrom98097862001-06-25 05:10:20 +00001191 if (options.protocol & SSH_PROTO_1)
1192 generate_ephemeral_server_key();
1193
1194 /*
1195 * Arrange to restart on SIGHUP. The handler needs
1196 * listen_sock.
1197 */
1198 signal(SIGHUP, sighup_handler);
1199
1200 signal(SIGTERM, sigterm_handler);
1201 signal(SIGQUIT, sigterm_handler);
1202
1203 /* Arrange SIGCHLD to be caught. */
1204 signal(SIGCHLD, main_sigchld_handler);
1205
1206 /* Write out the pid file after the sigterm handler is setup */
Damien Miller95def091999-11-25 00:26:21 +11001207 if (!debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +11001208 /*
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001209 * Record our pid in /var/run/sshd.pid to make it
1210 * easier to kill the correct sshd. We don't want to
1211 * do this before the bind above because the bind will
Damien Miller5428f641999-11-25 11:54:57 +11001212 * fail if there already is a daemon, and this will
1213 * overwrite any old pid in the file.
1214 */
Damien Millerbac2d8a2000-09-05 16:13:06 +11001215 f = fopen(options.pid_file, "wb");
Darren Tuckere5327042003-07-03 13:40:44 +10001216 if (f == NULL) {
1217 error("Couldn't create pid file \"%s\": %s",
1218 options.pid_file, strerror(errno));
1219 } else {
Ben Lindstromce0f6342002-06-11 16:42:49 +00001220 fprintf(f, "%ld\n", (long) getpid());
Damien Miller95def091999-11-25 00:26:21 +11001221 fclose(f);
1222 }
1223 }
Damien Miller95def091999-11-25 00:26:21 +11001224
Damien Miller34132e52000-01-14 15:45:46 +11001225 /* setup fd set for listen */
Damien Miller37023962000-07-11 17:31:38 +10001226 fdset = NULL;
Damien Miller34132e52000-01-14 15:45:46 +11001227 maxfd = 0;
1228 for (i = 0; i < num_listen_socks; i++)
1229 if (listen_socks[i] > maxfd)
1230 maxfd = listen_socks[i];
Damien Miller37023962000-07-11 17:31:38 +10001231 /* pipes connected to unauthenticated childs */
1232 startup_pipes = xmalloc(options.max_startups * sizeof(int));
1233 for (i = 0; i < options.max_startups; i++)
1234 startup_pipes[i] = -1;
Damien Miller34132e52000-01-14 15:45:46 +11001235
Damien Miller5428f641999-11-25 11:54:57 +11001236 /*
1237 * Stay listening for connections until the system crashes or
1238 * the daemon is killed with a signal.
1239 */
Damien Miller95def091999-11-25 00:26:21 +11001240 for (;;) {
1241 if (received_sighup)
1242 sighup_restart();
Damien Miller37023962000-07-11 17:31:38 +10001243 if (fdset != NULL)
1244 xfree(fdset);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001245 fdsetsz = howmany(maxfd+1, NFDBITS) * sizeof(fd_mask);
Damien Miller37023962000-07-11 17:31:38 +10001246 fdset = (fd_set *)xmalloc(fdsetsz);
Damien Miller34132e52000-01-14 15:45:46 +11001247 memset(fdset, 0, fdsetsz);
Damien Miller37023962000-07-11 17:31:38 +10001248
Damien Miller34132e52000-01-14 15:45:46 +11001249 for (i = 0; i < num_listen_socks; i++)
1250 FD_SET(listen_socks[i], fdset);
Damien Miller37023962000-07-11 17:31:38 +10001251 for (i = 0; i < options.max_startups; i++)
1252 if (startup_pipes[i] != -1)
1253 FD_SET(startup_pipes[i], fdset);
1254
1255 /* Wait in select until there is a connection. */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001256 ret = select(maxfd+1, fdset, NULL, NULL, NULL);
1257 if (ret < 0 && errno != EINTR)
1258 error("select: %.100s", strerror(errno));
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001259 if (received_sigterm) {
Damien Miller996acd22003-04-09 20:59:48 +10001260 logit("Received signal %d; terminating.",
Ben Lindstromf8f065b2001-12-06 17:52:16 +00001261 (int) received_sigterm);
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001262 close_listen_socks();
1263 unlink(options.pid_file);
1264 exit(255);
1265 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001266 if (key_used && key_do_regen) {
Ben Lindstromca42d5f2001-03-09 18:25:32 +00001267 generate_ephemeral_server_key();
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001268 key_used = 0;
1269 key_do_regen = 0;
Damien Miller34132e52000-01-14 15:45:46 +11001270 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001271 if (ret < 0)
1272 continue;
1273
Damien Miller37023962000-07-11 17:31:38 +10001274 for (i = 0; i < options.max_startups; i++)
1275 if (startup_pipes[i] != -1 &&
1276 FD_ISSET(startup_pipes[i], fdset)) {
1277 /*
1278 * the read end of the pipe is ready
1279 * if the child has closed the pipe
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001280 * after successful authentication
Damien Miller37023962000-07-11 17:31:38 +10001281 * or if the child has died
1282 */
1283 close(startup_pipes[i]);
1284 startup_pipes[i] = -1;
1285 startups--;
1286 }
Damien Miller34132e52000-01-14 15:45:46 +11001287 for (i = 0; i < num_listen_socks; i++) {
1288 if (!FD_ISSET(listen_socks[i], fdset))
Damien Miller95def091999-11-25 00:26:21 +11001289 continue;
Damien Miller37023962000-07-11 17:31:38 +10001290 fromlen = sizeof(from);
1291 newsock = accept(listen_socks[i], (struct sockaddr *)&from,
1292 &fromlen);
1293 if (newsock < 0) {
1294 if (errno != EINTR && errno != EWOULDBLOCK)
1295 error("accept: %.100s", strerror(errno));
1296 continue;
1297 }
Darren Tuckerefa37062004-02-24 09:20:29 +11001298 if (fcntl(newsock, F_SETFL, 0) < 0) {
1299 error("newsock del O_NONBLOCK: %s", strerror(errno));
1300 close(newsock);
1301 continue;
1302 }
Damien Miller942da032000-08-18 13:59:06 +10001303 if (drop_connection(startups) == 1) {
1304 debug("drop connection #%d", startups);
Damien Miller37023962000-07-11 17:31:38 +10001305 close(newsock);
1306 continue;
1307 }
1308 if (pipe(startup_p) == -1) {
1309 close(newsock);
1310 continue;
1311 }
1312
1313 for (j = 0; j < options.max_startups; j++)
1314 if (startup_pipes[j] == -1) {
1315 startup_pipes[j] = startup_p[0];
1316 if (maxfd < startup_p[0])
1317 maxfd = startup_p[0];
1318 startups++;
1319 break;
1320 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001321
Damien Miller5428f641999-11-25 11:54:57 +11001322 /*
Damien Miller37023962000-07-11 17:31:38 +10001323 * Got connection. Fork a child to handle it, unless
1324 * we are in debugging mode.
Damien Miller5428f641999-11-25 11:54:57 +11001325 */
Damien Miller37023962000-07-11 17:31:38 +10001326 if (debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +11001327 /*
Damien Miller37023962000-07-11 17:31:38 +10001328 * In debugging mode. Close the listening
1329 * socket, and start processing the
1330 * connection without forking.
Damien Miller5428f641999-11-25 11:54:57 +11001331 */
Damien Miller37023962000-07-11 17:31:38 +10001332 debug("Server will not fork when running in debugging mode.");
Damien Miller34132e52000-01-14 15:45:46 +11001333 close_listen_socks();
Damien Miller95def091999-11-25 00:26:21 +11001334 sock_in = newsock;
1335 sock_out = newsock;
Damien Miller4d97ba22000-07-11 18:15:50 +10001336 startup_pipe = -1;
Damien Miller182ee6e2000-07-12 09:45:27 +10001337 pid = getpid();
Damien Miller95def091999-11-25 00:26:21 +11001338 break;
Damien Miller37023962000-07-11 17:31:38 +10001339 } else {
1340 /*
1341 * Normal production daemon. Fork, and have
1342 * the child process the connection. The
1343 * parent continues listening.
1344 */
1345 if ((pid = fork()) == 0) {
1346 /*
1347 * Child. Close the listening and max_startup
1348 * sockets. Start using the accepted socket.
1349 * Reinitialize logging (since our pid has
1350 * changed). We break out of the loop to handle
1351 * the connection.
1352 */
1353 startup_pipe = startup_p[1];
Ben Lindstromd84df982001-12-06 16:35:40 +00001354 close_startup_pipes();
Damien Miller37023962000-07-11 17:31:38 +10001355 close_listen_socks();
1356 sock_in = newsock;
1357 sock_out = newsock;
Kevin Stevesec84dc12000-12-13 17:45:15 +00001358 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller37023962000-07-11 17:31:38 +10001359 break;
1360 }
Damien Miller95def091999-11-25 00:26:21 +11001361 }
Damien Miller37023962000-07-11 17:31:38 +10001362
1363 /* Parent. Stay in the loop. */
1364 if (pid < 0)
1365 error("fork: %.100s", strerror(errno));
1366 else
Ben Lindstromce0f6342002-06-11 16:42:49 +00001367 debug("Forked child %ld.", (long)pid);
Damien Miller37023962000-07-11 17:31:38 +10001368
1369 close(startup_p[1]);
1370
1371 /* Mark that the key has been used (it was "given" to the child). */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001372 if ((options.protocol & SSH_PROTO_1) &&
1373 key_used == 0) {
1374 /* Schedule server key regeneration alarm. */
Ben Lindstrom5ade9ab2003-08-25 01:16:21 +00001375 signal(SIGALRM, key_regeneration_alarm);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001376 alarm(options.key_regeneration_time);
1377 key_used = 1;
1378 }
Damien Miller37023962000-07-11 17:31:38 +10001379
1380 arc4random_stir();
1381
1382 /* Close the new socket (the child is now taking care of it). */
1383 close(newsock);
Damien Miller95def091999-11-25 00:26:21 +11001384 }
Damien Miller34132e52000-01-14 15:45:46 +11001385 /* child process check (or debug mode) */
1386 if (num_listen_socks < 0)
1387 break;
Damien Miller95def091999-11-25 00:26:21 +11001388 }
1389 }
1390
1391 /* This is the child processing a new connection. */
1392
Damien Miller5428f641999-11-25 11:54:57 +11001393 /*
Ben Lindstrom17401b62002-05-15 16:17:56 +00001394 * Create a new session and process group since the 4.4BSD
1395 * setlogin() affects the entire process group. We don't
1396 * want the child to be able to affect the parent.
1397 */
Darren Tuckerc437cda2003-05-10 17:05:46 +10001398#if !defined(SSHD_ACQUIRES_CTTY)
Damien Miller933cc8f2003-03-10 11:38:10 +11001399 /*
Darren Tuckerc437cda2003-05-10 17:05:46 +10001400 * If setsid is called, on some platforms sshd will later acquire a
1401 * controlling terminal which will result in "could not set
1402 * controlling tty" errors.
Damien Miller933cc8f2003-03-10 11:38:10 +11001403 */
Ben Lindstrom57f08002002-06-23 00:37:10 +00001404 if (!debug_flag && !inetd_flag && setsid() < 0)
Ben Lindstrom17401b62002-05-15 16:17:56 +00001405 error("setsid: %.100s", strerror(errno));
Kevin Stevesc5041ac2002-05-21 17:50:21 +00001406#endif
Ben Lindstrom17401b62002-05-15 16:17:56 +00001407
1408 /*
Damien Miller5428f641999-11-25 11:54:57 +11001409 * Disable the key regeneration alarm. We will not regenerate the
1410 * key since we are no longer in a position to give it to anyone. We
1411 * will not restart on SIGHUP since it no longer makes sense.
1412 */
Damien Miller95def091999-11-25 00:26:21 +11001413 alarm(0);
1414 signal(SIGALRM, SIG_DFL);
1415 signal(SIGHUP, SIG_DFL);
1416 signal(SIGTERM, SIG_DFL);
1417 signal(SIGQUIT, SIG_DFL);
1418 signal(SIGCHLD, SIG_DFL);
Damien Miller4e0f5e12000-08-29 11:05:50 +11001419 signal(SIGINT, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001420
Damien Miller12c150e2003-12-17 16:31:10 +11001421 /* Set SO_KEEPALIVE if requested. */
1422 if (options.tcp_keep_alive &&
Ben Lindstrom733a2352002-03-05 01:31:28 +00001423 setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, &on,
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001424 sizeof(on)) < 0)
1425 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
1426
Damien Miller5428f641999-11-25 11:54:57 +11001427 /*
1428 * Register our connection. This turns encryption off because we do
1429 * not have a key.
1430 */
Damien Miller95def091999-11-25 00:26:21 +11001431 packet_set_connection(sock_in, sock_out);
1432
1433 remote_port = get_remote_port();
1434 remote_ip = get_remote_ipaddr();
1435
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001436#ifdef LIBWRAP
Damien Miller6a4a4b92001-11-12 11:07:11 +11001437 /* Check whether logins are denied from this host. */
Damien Miller95def091999-11-25 00:26:21 +11001438 {
1439 struct request_info req;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001440
Ben Lindstromce89dac2001-09-12 16:58:04 +00001441 request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, 0);
Damien Miller95def091999-11-25 00:26:21 +11001442 fromhost(&req);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001443
Damien Miller95def091999-11-25 00:26:21 +11001444 if (!hosts_access(&req)) {
Damien Miller6a4a4b92001-11-12 11:07:11 +11001445 debug("Connection refused by tcp wrapper");
Ben Lindstrom7de696e2001-03-29 00:45:12 +00001446 refuse(&req);
Damien Miller6a4a4b92001-11-12 11:07:11 +11001447 /* NOTREACHED */
1448 fatal("libwrap refuse returns");
Damien Miller95def091999-11-25 00:26:21 +11001449 }
Damien Miller95def091999-11-25 00:26:21 +11001450 }
Damien Miller34132e52000-01-14 15:45:46 +11001451#endif /* LIBWRAP */
Damien Miller6a4a4b92001-11-12 11:07:11 +11001452
Damien Miller95def091999-11-25 00:26:21 +11001453 /* Log the connection. */
1454 verbose("Connection from %.500s port %d", remote_ip, remote_port);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001455
Damien Miller5428f641999-11-25 11:54:57 +11001456 /*
1457 * We don\'t want to listen forever unless the other side
1458 * successfully authenticates itself. So we set up an alarm which is
1459 * cleared after successful authentication. A limit of zero
1460 * indicates no limit. Note that we don\'t set the alarm in debugging
1461 * mode; it is just annoying to have the server exit just when you
1462 * are about to discover the bug.
1463 */
Ben Lindstrom5ade9ab2003-08-25 01:16:21 +00001464 signal(SIGALRM, grace_alarm_handler);
Damien Miller95def091999-11-25 00:26:21 +11001465 if (!debug_flag)
1466 alarm(options.login_grace_time);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001467
Damien Millerb38eff82000-04-01 11:09:21 +10001468 sshd_exchange_identification(sock_in, sock_out);
Darren Tuckerec960f22003-08-13 20:37:05 +10001469
Damien Miller95def091999-11-25 00:26:21 +11001470 packet_set_nonblocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001471
Damien Millera8e06ce2003-11-21 23:48:55 +11001472 /* prepare buffers to collect authentication messages */
Darren Tuckerb9aa0a02003-07-08 22:59:59 +10001473 buffer_init(&loginmsg);
1474
Darren Tucker3e33cec2003-10-02 16:12:36 +10001475 /* allocate authentication context */
1476 authctxt = xmalloc(sizeof(*authctxt));
1477 memset(authctxt, 0, sizeof(*authctxt));
1478
1479 /* XXX global for cleanup, access from other modules */
1480 the_authctxt = authctxt;
1481
Ben Lindstrom943481c2002-03-22 03:43:46 +00001482 if (use_privsep)
Darren Tucker3e33cec2003-10-02 16:12:36 +10001483 if (privsep_preauth(authctxt) == 1)
Ben Lindstrom943481c2002-03-22 03:43:46 +00001484 goto authenticated;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001485
Damien Miller396691a2000-01-20 22:44:08 +11001486 /* perform the key exchange */
Damien Miller396691a2000-01-20 22:44:08 +11001487 /* authenticate user and start session */
Damien Millerefb4afe2000-04-12 18:45:05 +10001488 if (compat20) {
1489 do_ssh2_kex();
Darren Tucker3e33cec2003-10-02 16:12:36 +10001490 do_authentication2(authctxt);
Damien Millerefb4afe2000-04-12 18:45:05 +10001491 } else {
1492 do_ssh1_kex();
Darren Tucker3e33cec2003-10-02 16:12:36 +10001493 do_authentication(authctxt);
Damien Millerefb4afe2000-04-12 18:45:05 +10001494 }
Ben Lindstrom943481c2002-03-22 03:43:46 +00001495 /*
1496 * If we use privilege separation, the unprivileged child transfers
1497 * the current keystate and exits
1498 */
1499 if (use_privsep) {
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001500 mm_send_keystate(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001501 exit(0);
Ben Lindstrom943481c2002-03-22 03:43:46 +00001502 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001503
1504 authenticated:
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001505 /*
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001506 * In privilege separation, we fork another child and prepare
1507 * file descriptor passing.
1508 */
1509 if (use_privsep) {
Ben Lindstrom943481c2002-03-22 03:43:46 +00001510 privsep_postauth(authctxt);
1511 /* the monitor process [priv] will not return */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001512 if (!compat20)
1513 destroy_sensitive_data();
1514 }
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +00001515
Darren Tucker3e33cec2003-10-02 16:12:36 +10001516 /* Start session. */
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +00001517 do_authenticated(authctxt);
1518
Damien Miller3a5b0232002-03-13 13:19:42 +11001519 /* The connection has been terminated. */
1520 verbose("Closing connection to %.100s", remote_ip);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001521
Damien Millerbeb4ba51999-12-28 15:09:35 +11001522#ifdef USE_PAM
Damien Miller4e448a32003-05-14 15:11:48 +10001523 if (options.use_pam)
1524 finish_pam();
Damien Millerbeb4ba51999-12-28 15:09:35 +11001525#endif /* USE_PAM */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001526
Damien Miller95def091999-11-25 00:26:21 +11001527 packet_close();
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001528
1529 if (use_privsep)
1530 mm_terminate();
1531
Damien Miller95def091999-11-25 00:26:21 +11001532 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001533}
1534
Damien Miller95def091999-11-25 00:26:21 +11001535/*
Ben Lindstromabcb1452002-03-22 01:10:21 +00001536 * Decrypt session_key_int using our private server key and private host key
1537 * (key with larger modulus first).
1538 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001539int
Ben Lindstromabcb1452002-03-22 01:10:21 +00001540ssh1_session_key(BIGNUM *session_key_int)
1541{
1542 int rsafail = 0;
1543
1544 if (BN_cmp(sensitive_data.server_key->rsa->n, sensitive_data.ssh1_host_key->rsa->n) > 0) {
1545 /* Server key has bigger modulus. */
1546 if (BN_num_bits(sensitive_data.server_key->rsa->n) <
1547 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1548 fatal("do_connection: %s: server_key %d < host_key %d + SSH_KEY_BITS_RESERVED %d",
1549 get_remote_ipaddr(),
1550 BN_num_bits(sensitive_data.server_key->rsa->n),
1551 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1552 SSH_KEY_BITS_RESERVED);
1553 }
1554 if (rsa_private_decrypt(session_key_int, session_key_int,
1555 sensitive_data.server_key->rsa) <= 0)
1556 rsafail++;
1557 if (rsa_private_decrypt(session_key_int, session_key_int,
1558 sensitive_data.ssh1_host_key->rsa) <= 0)
1559 rsafail++;
1560 } else {
1561 /* Host key has bigger modulus (or they are equal). */
1562 if (BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) <
1563 BN_num_bits(sensitive_data.server_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1564 fatal("do_connection: %s: host_key %d < server_key %d + SSH_KEY_BITS_RESERVED %d",
1565 get_remote_ipaddr(),
1566 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1567 BN_num_bits(sensitive_data.server_key->rsa->n),
1568 SSH_KEY_BITS_RESERVED);
1569 }
1570 if (rsa_private_decrypt(session_key_int, session_key_int,
1571 sensitive_data.ssh1_host_key->rsa) < 0)
1572 rsafail++;
1573 if (rsa_private_decrypt(session_key_int, session_key_int,
1574 sensitive_data.server_key->rsa) < 0)
1575 rsafail++;
1576 }
1577 return (rsafail);
1578}
1579/*
Damien Miller396691a2000-01-20 22:44:08 +11001580 * SSH1 key exchange
Damien Miller95def091999-11-25 00:26:21 +11001581 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001582static void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001583do_ssh1_kex(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001584{
Damien Miller95def091999-11-25 00:26:21 +11001585 int i, len;
Damien Miller7650bc62001-01-30 09:27:26 +11001586 int rsafail = 0;
Damien Miller95def091999-11-25 00:26:21 +11001587 BIGNUM *session_key_int;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001588 u_char session_key[SSH_SESSION_KEY_LENGTH];
1589 u_char cookie[8];
1590 u_int cipher_type, auth_mask, protocol_flags;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001591 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001592
Damien Miller5428f641999-11-25 11:54:57 +11001593 /*
1594 * Generate check bytes that the client must send back in the user
1595 * packet in order for it to be accepted; this is used to defy ip
1596 * spoofing attacks. Note that this only works against somebody
1597 * doing IP spoofing from a remote machine; any machine on the local
1598 * network can still see outgoing packets and catch the random
1599 * cookie. This only affects rhosts authentication, and this is one
1600 * of the reasons why it is inherently insecure.
1601 */
Damien Miller95def091999-11-25 00:26:21 +11001602 for (i = 0; i < 8; i++) {
1603 if (i % 4 == 0)
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001604 rnd = arc4random();
1605 cookie[i] = rnd & 0xff;
1606 rnd >>= 8;
Damien Miller95def091999-11-25 00:26:21 +11001607 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001608
Damien Miller5428f641999-11-25 11:54:57 +11001609 /*
1610 * Send our public key. We include in the packet 64 bits of random
1611 * data that must be matched in the reply in order to prevent IP
1612 * spoofing.
1613 */
Damien Miller95def091999-11-25 00:26:21 +11001614 packet_start(SSH_SMSG_PUBLIC_KEY);
1615 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001616 packet_put_char(cookie[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001617
Damien Miller95def091999-11-25 00:26:21 +11001618 /* Store our public server RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001619 packet_put_int(BN_num_bits(sensitive_data.server_key->rsa->n));
1620 packet_put_bignum(sensitive_data.server_key->rsa->e);
1621 packet_put_bignum(sensitive_data.server_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001622
Damien Miller95def091999-11-25 00:26:21 +11001623 /* Store our public host RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001624 packet_put_int(BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
1625 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->e);
1626 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001627
Damien Miller95def091999-11-25 00:26:21 +11001628 /* Put protocol flags. */
1629 packet_put_int(SSH_PROTOFLAG_HOST_IN_FWD_OPEN);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001630
Damien Miller95def091999-11-25 00:26:21 +11001631 /* Declare which ciphers we support. */
Damien Miller874d77b2000-10-14 16:23:11 +11001632 packet_put_int(cipher_mask_ssh1(0));
Damien Miller95def091999-11-25 00:26:21 +11001633
1634 /* Declare supported authentication types. */
1635 auth_mask = 0;
Damien Miller95def091999-11-25 00:26:21 +11001636 if (options.rhosts_rsa_authentication)
1637 auth_mask |= 1 << SSH_AUTH_RHOSTS_RSA;
1638 if (options.rsa_authentication)
1639 auth_mask |= 1 << SSH_AUTH_RSA;
Ben Lindstrom551ea372001-06-05 18:56:16 +00001640 if (options.challenge_response_authentication == 1)
Damien Miller95def091999-11-25 00:26:21 +11001641 auth_mask |= 1 << SSH_AUTH_TIS;
Damien Miller95def091999-11-25 00:26:21 +11001642 if (options.password_authentication)
1643 auth_mask |= 1 << SSH_AUTH_PASSWORD;
1644 packet_put_int(auth_mask);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001645
Damien Miller95def091999-11-25 00:26:21 +11001646 /* Send the packet and wait for it to be sent. */
1647 packet_send();
1648 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001649
Damien Miller0bc1bd82000-11-13 22:57:25 +11001650 debug("Sent %d bit server key and %d bit host key.",
1651 BN_num_bits(sensitive_data.server_key->rsa->n),
1652 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001653
Damien Miller95def091999-11-25 00:26:21 +11001654 /* Read clients reply (cipher type and session key). */
Damien Millerdff50992002-01-22 23:16:32 +11001655 packet_read_expect(SSH_CMSG_SESSION_KEY);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001656
Damien Miller50945fa1999-12-09 10:31:37 +11001657 /* Get cipher type and check whether we accept this. */
Damien Miller95def091999-11-25 00:26:21 +11001658 cipher_type = packet_get_char();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001659
Damien Miller874d77b2000-10-14 16:23:11 +11001660 if (!(cipher_mask_ssh1(0) & (1 << cipher_type)))
Damien Miller50945fa1999-12-09 10:31:37 +11001661 packet_disconnect("Warning: client selects unsupported cipher.");
1662
Damien Miller95def091999-11-25 00:26:21 +11001663 /* Get check bytes from the packet. These must match those we
1664 sent earlier with the public key packet. */
1665 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001666 if (cookie[i] != packet_get_char())
Damien Miller95def091999-11-25 00:26:21 +11001667 packet_disconnect("IP Spoofing check bytes do not match.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001668
Damien Miller95def091999-11-25 00:26:21 +11001669 debug("Encryption type: %.200s", cipher_name(cipher_type));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001670
Damien Miller95def091999-11-25 00:26:21 +11001671 /* Get the encrypted integer. */
Damien Millerda755162002-01-22 23:09:22 +11001672 if ((session_key_int = BN_new()) == NULL)
1673 fatal("do_ssh1_kex: BN_new failed");
Damien Millerd432ccf2002-01-22 23:14:44 +11001674 packet_get_bignum(session_key_int);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001675
Damien Miller95def091999-11-25 00:26:21 +11001676 protocol_flags = packet_get_int();
1677 packet_set_protocol_flags(protocol_flags);
Damien Miller48b03fc2002-01-22 23:11:40 +11001678 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001679
Ben Lindstromabcb1452002-03-22 01:10:21 +00001680 /* Decrypt session_key_int using host/server keys */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001681 rsafail = PRIVSEP(ssh1_session_key(session_key_int));
1682
Damien Miller5428f641999-11-25 11:54:57 +11001683 /*
1684 * Extract session key from the decrypted integer. The key is in the
1685 * least significant 256 bits of the integer; the first byte of the
1686 * key is in the highest bits.
1687 */
Damien Miller7650bc62001-01-30 09:27:26 +11001688 if (!rsafail) {
1689 BN_mask_bits(session_key_int, sizeof(session_key) * 8);
1690 len = BN_num_bytes(session_key_int);
1691 if (len < 0 || len > sizeof(session_key)) {
1692 error("do_connection: bad session key len from %s: "
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001693 "session_key_int %d > sizeof(session_key) %lu",
1694 get_remote_ipaddr(), len, (u_long)sizeof(session_key));
Damien Miller7650bc62001-01-30 09:27:26 +11001695 rsafail++;
1696 } else {
1697 memset(session_key, 0, sizeof(session_key));
1698 BN_bn2bin(session_key_int,
1699 session_key + sizeof(session_key) - len);
Ben Lindstromeb648a72001-03-05 06:00:29 +00001700
1701 compute_session_id(session_id, cookie,
1702 sensitive_data.ssh1_host_key->rsa->n,
1703 sensitive_data.server_key->rsa->n);
1704 /*
1705 * Xor the first 16 bytes of the session key with the
1706 * session id.
1707 */
1708 for (i = 0; i < 16; i++)
1709 session_key[i] ^= session_id[i];
Damien Miller7650bc62001-01-30 09:27:26 +11001710 }
1711 }
1712 if (rsafail) {
Ben Lindstromeb648a72001-03-05 06:00:29 +00001713 int bytes = BN_num_bytes(session_key_int);
Ben Lindstrom13c5d3b2002-02-26 18:00:48 +00001714 u_char *buf = xmalloc(bytes);
Ben Lindstromeb648a72001-03-05 06:00:29 +00001715 MD5_CTX md;
1716
Damien Miller996acd22003-04-09 20:59:48 +10001717 logit("do_connection: generating a fake encryption key");
Ben Lindstromeb648a72001-03-05 06:00:29 +00001718 BN_bn2bin(session_key_int, buf);
1719 MD5_Init(&md);
1720 MD5_Update(&md, buf, bytes);
1721 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1722 MD5_Final(session_key, &md);
1723 MD5_Init(&md);
1724 MD5_Update(&md, session_key, 16);
1725 MD5_Update(&md, buf, bytes);
1726 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1727 MD5_Final(session_key + 16, &md);
1728 memset(buf, 0, bytes);
1729 xfree(buf);
Ben Lindstrom941ac822001-03-05 06:25:23 +00001730 for (i = 0; i < 16; i++)
1731 session_id[i] = session_key[i] ^ session_key[i + 16];
Damien Miller7650bc62001-01-30 09:27:26 +11001732 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001733 /* Destroy the private and public keys. No longer. */
Damien Miller3a5b0232002-03-13 13:19:42 +11001734 destroy_sensitive_data();
Ben Lindstromeb648a72001-03-05 06:00:29 +00001735
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001736 if (use_privsep)
1737 mm_ssh1_session_id(session_id);
1738
Damien Miller396691a2000-01-20 22:44:08 +11001739 /* Destroy the decrypted integer. It is no longer needed. */
1740 BN_clear_free(session_key_int);
1741
Damien Miller95def091999-11-25 00:26:21 +11001742 /* Set the session key. From this on all communications will be encrypted. */
1743 packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, cipher_type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001744
Damien Miller95def091999-11-25 00:26:21 +11001745 /* Destroy our copy of the session key. It is no longer needed. */
1746 memset(session_key, 0, sizeof(session_key));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001747
Damien Miller95def091999-11-25 00:26:21 +11001748 debug("Received session key; encryption turned on.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001749
Ben Lindstromf666fec2002-06-06 19:51:58 +00001750 /* Send an acknowledgment packet. Note that this packet is sent encrypted. */
Damien Miller95def091999-11-25 00:26:21 +11001751 packet_start(SSH_SMSG_SUCCESS);
1752 packet_send();
1753 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001754}
Damien Millerefb4afe2000-04-12 18:45:05 +10001755
1756/*
1757 * SSH2 key exchange: diffie-hellman-group1-sha1
1758 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001759static void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001760do_ssh2_kex(void)
Damien Millerefb4afe2000-04-12 18:45:05 +10001761{
Damien Millerefb4afe2000-04-12 18:45:05 +10001762 Kex *kex;
Damien Millerefb4afe2000-04-12 18:45:05 +10001763
Damien Miller78928792000-04-12 20:17:38 +10001764 if (options.ciphers != NULL) {
Damien Miller4af51302000-04-16 11:18:38 +10001765 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
Damien Miller78928792000-04-12 20:17:38 +10001766 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
1767 }
Damien Millera0ff4662001-03-30 10:49:35 +10001768 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
1769 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
1770 myproposal[PROPOSAL_ENC_ALGS_STOC] =
1771 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
1772
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001773 if (options.macs != NULL) {
1774 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
1775 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
1776 }
Ben Lindstrom23e0f662002-06-21 01:09:47 +00001777 if (!options.compression) {
1778 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
1779 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none";
1780 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001781 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = list_hostkey_types();
1782
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001783 /* start key exchange */
Ben Lindstrom238abf62001-04-04 17:52:53 +00001784 kex = kex_setup(myproposal);
Damien Miller8e7fb332003-02-24 12:03:03 +11001785 kex->kex[KEX_DH_GRP1_SHA1] = kexdh_server;
1786 kex->kex[KEX_DH_GEX_SHA1] = kexgex_server;
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +00001787 kex->server = 1;
1788 kex->client_version_string=client_version_string;
1789 kex->server_version_string=server_version_string;
1790 kex->load_host_key=&get_hostkey_by_type;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001791 kex->host_key_index=&get_hostkey_index;
Damien Millerefb4afe2000-04-12 18:45:05 +10001792
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001793 xxx_kex = kex;
1794
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001795 dispatch_run(DISPATCH_BLOCK, &kex->done, kex);
Damien Miller874d77b2000-10-14 16:23:11 +11001796
Ben Lindstrom2d90e002001-04-04 02:00:54 +00001797 session_id2 = kex->session_id;
1798 session_id2_len = kex->session_id_len;
1799
Damien Miller874d77b2000-10-14 16:23:11 +11001800#ifdef DEBUG_KEXDH
1801 /* send 1st encrypted/maced/compressed message */
1802 packet_start(SSH2_MSG_IGNORE);
1803 packet_put_cstring("markus");
1804 packet_send();
1805 packet_write_wait();
1806#endif
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +00001807 debug("KEX done");
Damien Millerefb4afe2000-04-12 18:45:05 +10001808}
Darren Tucker3e33cec2003-10-02 16:12:36 +10001809
1810/* server specific fatal cleanup */
1811void
1812cleanup_exit(int i)
1813{
1814 if (the_authctxt)
1815 do_cleanup(the_authctxt);
1816 _exit(i);
1817}