blob: 025f71101784199c4d615f58cfabf8017ccd9f4e [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Millere4340be2000-09-16 13:29:08 +11005 * This program is the ssh daemon. It listens for connections from clients,
6 * and performs authentication, executes use commands or shell, and forwards
Damien Miller95def091999-11-25 00:26:21 +11007 * information to/from the application to the user client over an encrypted
Damien Millere4340be2000-09-16 13:29:08 +11008 * connection. This can also handle forwarding of X11, TCP/IP, and
9 * authentication agent connections.
Damien Millerefb4afe2000-04-12 18:45:05 +100010 *
Damien Millere4340be2000-09-16 13:29:08 +110011 * As far as I am concerned, the code I have written for this software
12 * can be used freely for any purpose. Any derived versions of this
13 * software must be clearly marked as such, and if the derived work is
14 * incompatible with the protocol description in the RFC file, it must be
15 * called by a name other than "ssh" or "Secure Shell".
16 *
17 * SSH2 implementation:
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000018 * Privilege Separation:
Damien Millere4340be2000-09-16 13:29:08 +110019 *
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000020 * Copyright (c) 2000, 2001, 2002 Markus Friedl. All rights reserved.
21 * Copyright (c) 2002 Niels Provos. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110022 *
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
25 * are met:
26 * 1. Redistributions of source code must retain the above copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 *
32 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
33 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
34 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
35 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
36 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
37 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
38 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
39 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
40 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
41 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110042 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100043
44#include "includes.h"
Ben Lindstrom822b6342002-06-23 21:38:49 +000045RCSID("$OpenBSD: sshd.c,v 1.250 2002/06/23 10:29:52 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 */
Damien Miller7d80e342000-01-19 14:36:49 +1100115#ifdef IPV4_DEFAULT
116int IPv4or6 = AF_INET;
117#else
Damien Miller34132e52000-01-14 15:45:46 +1100118int IPv4or6 = AF_UNSPEC;
Damien Miller7d80e342000-01-19 14:36:49 +1100119#endif
Damien Miller34132e52000-01-14 15:45:46 +1100120
Damien Miller95def091999-11-25 00:26:21 +1100121/*
122 * Debug mode flag. This can be set on the command line. If debug
123 * mode is enabled, extra debugging output will be sent to the system
124 * log, the daemon will not go to background, and will exit after processing
125 * the first connection.
126 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000127int debug_flag = 0;
128
Ben Lindstrom794325a2001-08-06 21:09:07 +0000129/* Flag indicating that the daemon should only test the configuration and keys. */
130int test_flag = 0;
131
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000132/* Flag indicating that the daemon is being started from inetd. */
133int inetd_flag = 0;
134
Ben Lindstromc72745a2000-12-02 19:03:54 +0000135/* Flag indicating that sshd should not detach and become a daemon. */
136int no_daemon_flag = 0;
137
Damien Miller5ce662a1999-11-11 17:57:39 +1100138/* debug goes to stderr unless inetd_flag is set */
139int log_stderr = 0;
140
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000141/* Saved arguments to main(). */
142char **saved_argv;
Damien Millerb8c656e2000-06-28 15:22:41 +1000143int saved_argc;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000144
Damien Miller5428f641999-11-25 11:54:57 +1100145/*
Damien Miller34132e52000-01-14 15:45:46 +1100146 * The sockets that the server is listening; this is used in the SIGHUP
147 * signal handler.
Damien Miller5428f641999-11-25 11:54:57 +1100148 */
Damien Miller34132e52000-01-14 15:45:46 +1100149#define MAX_LISTEN_SOCKS 16
150int listen_socks[MAX_LISTEN_SOCKS];
151int num_listen_socks = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000152
Damien Miller5428f641999-11-25 11:54:57 +1100153/*
154 * the client's version string, passed by sshd2 in compat mode. if != NULL,
155 * sshd will skip the version-number exchange
156 */
Damien Miller95def091999-11-25 00:26:21 +1100157char *client_version_string = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000158char *server_version_string = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000159
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000160/* for rekeying XXX fixme */
161Kex *xxx_kex;
162
Damien Miller5428f641999-11-25 11:54:57 +1100163/*
164 * Any really sensitive data in the application is contained in this
165 * structure. The idea is that this structure could be locked into memory so
166 * that the pages do not get written into swap. However, there are some
167 * problems. The private key contains BIGNUMs, and we do not (in principle)
168 * have access to the internals of them, and locking just the structure is
169 * not very useful. Currently, memory locking is not implemented.
170 */
Damien Miller95def091999-11-25 00:26:21 +1100171struct {
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000172 Key *server_key; /* ephemeral server key */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100173 Key *ssh1_host_key; /* ssh1 host key */
174 Key **host_keys; /* all private host keys */
175 int have_ssh1_key;
176 int have_ssh2_key;
Ben Lindstromeb648a72001-03-05 06:00:29 +0000177 u_char ssh1_cookie[SSH_SESSION_KEY_LENGTH];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000178} sensitive_data;
179
Damien Miller5428f641999-11-25 11:54:57 +1100180/*
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000181 * Flag indicating whether the RSA server key needs to be regenerated.
182 * Is set in the SIGALRM handler and cleared when the key is regenerated.
Damien Miller5428f641999-11-25 11:54:57 +1100183 */
Ben Lindstrom5e71c542001-12-06 16:48:14 +0000184static volatile sig_atomic_t key_do_regen = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000185
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000186/* This is set to true when a signal is received. */
Ben Lindstrom5e71c542001-12-06 16:48:14 +0000187static volatile sig_atomic_t received_sighup = 0;
188static volatile sig_atomic_t received_sigterm = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000189
Damien Millerb38eff82000-04-01 11:09:21 +1000190/* session identifier, used by RSA-auth */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000191u_char session_id[16];
Damien Millerb38eff82000-04-01 11:09:21 +1000192
Damien Millereba71ba2000-04-29 23:57:08 +1000193/* same for ssh2 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000194u_char *session_id2 = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000195int session_id2_len = 0;
196
Damien Miller942da032000-08-18 13:59:06 +1000197/* record remote hostname or ip */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000198u_int utmp_len = MAXHOSTNAMELEN;
Damien Miller942da032000-08-18 13:59:06 +1000199
Ben Lindstromd84df982001-12-06 16:35:40 +0000200/* options.max_startup sized array of fd ints */
201int *startup_pipes = NULL;
202int startup_pipe; /* in child */
203
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000204/* variables used for privilege separation */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000205extern struct monitor *pmonitor;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000206extern int use_privsep;
207
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000208/* Prototypes for various functions defined later in this file. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000209void destroy_sensitive_data(void);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000210void demote_sensitive_data(void);
Damien Miller98c7ad62000-03-09 21:27:49 +1100211
Ben Lindstrombba81212001-06-25 05:01:22 +0000212static void do_ssh1_kex(void);
213static void do_ssh2_kex(void);
Damien Miller874d77b2000-10-14 16:23:11 +1100214
Damien Miller98c7ad62000-03-09 21:27:49 +1100215/*
Damien Miller34132e52000-01-14 15:45:46 +1100216 * Close all listening sockets
217 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000218static void
Damien Miller34132e52000-01-14 15:45:46 +1100219close_listen_socks(void)
220{
221 int i;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000222
Damien Miller34132e52000-01-14 15:45:46 +1100223 for (i = 0; i < num_listen_socks; i++)
224 close(listen_socks[i]);
225 num_listen_socks = -1;
226}
227
Ben Lindstromd84df982001-12-06 16:35:40 +0000228static void
229close_startup_pipes(void)
230{
231 int i;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000232
Ben Lindstromd84df982001-12-06 16:35:40 +0000233 if (startup_pipes)
234 for (i = 0; i < options.max_startups; i++)
235 if (startup_pipes[i] != -1)
236 close(startup_pipes[i]);
237}
238
Damien Miller34132e52000-01-14 15:45:46 +1100239/*
Damien Miller95def091999-11-25 00:26:21 +1100240 * Signal handler for SIGHUP. Sshd execs itself when it receives SIGHUP;
241 * the effect is to reread the configuration file (and to regenerate
242 * the server key).
243 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000244static void
Damien Miller95def091999-11-25 00:26:21 +1100245sighup_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000246{
Ben Lindstrom07958482001-12-06 16:19:01 +0000247 int save_errno = errno;
248
Damien Miller95def091999-11-25 00:26:21 +1100249 received_sighup = 1;
250 signal(SIGHUP, sighup_handler);
Ben Lindstrom07958482001-12-06 16:19:01 +0000251 errno = save_errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000252}
253
Damien Miller95def091999-11-25 00:26:21 +1100254/*
255 * Called from the main program after receiving SIGHUP.
256 * Restarts the server.
257 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000258static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000259sighup_restart(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000260{
Damien Miller95def091999-11-25 00:26:21 +1100261 log("Received SIGHUP; restarting.");
Damien Miller34132e52000-01-14 15:45:46 +1100262 close_listen_socks();
Ben Lindstromd84df982001-12-06 16:35:40 +0000263 close_startup_pipes();
Damien Miller95def091999-11-25 00:26:21 +1100264 execv(saved_argv[0], saved_argv);
Ben Lindstrom822b6342002-06-23 21:38:49 +0000265 log("RESTART FAILED: av[0]='%.100s', error: %.100s.", saved_argv[0],
266 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100267 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000268}
269
Damien Miller95def091999-11-25 00:26:21 +1100270/*
271 * Generic signal handler for terminating signals in the master daemon.
Damien Miller95def091999-11-25 00:26:21 +1100272 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000273static void
Damien Miller95def091999-11-25 00:26:21 +1100274sigterm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000275{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000276 received_sigterm = sig;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000277}
278
Damien Miller95def091999-11-25 00:26:21 +1100279/*
280 * SIGCHLD handler. This is called whenever a child dies. This will then
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000281 * reap any zombies left by exited children.
Damien Miller95def091999-11-25 00:26:21 +1100282 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000283static void
Damien Miller95def091999-11-25 00:26:21 +1100284main_sigchld_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000285{
Damien Miller95def091999-11-25 00:26:21 +1100286 int save_errno = errno;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000287 pid_t pid;
Damien Miller95def091999-11-25 00:26:21 +1100288 int status;
Damien Miller431f66b1999-11-21 18:31:57 +1100289
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000290 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
291 (pid < 0 && errno == EINTR))
Damien Miller95def091999-11-25 00:26:21 +1100292 ;
Damien Miller431f66b1999-11-21 18:31:57 +1100293
Damien Miller95def091999-11-25 00:26:21 +1100294 signal(SIGCHLD, main_sigchld_handler);
295 errno = save_errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000296}
297
Damien Miller95def091999-11-25 00:26:21 +1100298/*
299 * Signal handler for the alarm after the login grace period has expired.
300 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000301static void
Damien Miller95def091999-11-25 00:26:21 +1100302grace_alarm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000303{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000304 /* XXX no idea how fix this signal handler */
305
Damien Miller95def091999-11-25 00:26:21 +1100306 /* Close the connection. */
307 packet_close();
308
309 /* Log error and exit. */
310 fatal("Timeout before authentication for %s.", get_remote_ipaddr());
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000311}
312
Damien Miller95def091999-11-25 00:26:21 +1100313/*
Damien Miller95def091999-11-25 00:26:21 +1100314 * Signal handler for the key regeneration alarm. Note that this
315 * alarm only occurs in the daemon waiting for connections, and it does not
316 * do anything with the private key or random state before forking.
317 * Thus there should be no concurrency control/asynchronous execution
318 * problems.
319 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000320static void
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000321generate_ephemeral_server_key(void)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100322{
Ben Lindstromeb648a72001-03-05 06:00:29 +0000323 u_int32_t rand = 0;
324 int i;
325
Ben Lindstroma3700052001-04-05 23:26:32 +0000326 verbose("Generating %s%d bit RSA key.",
Damien Millerff75ac42001-03-30 10:50:32 +1000327 sensitive_data.server_key ? "new " : "", options.server_key_bits);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100328 if (sensitive_data.server_key != NULL)
329 key_free(sensitive_data.server_key);
Ben Lindstroma3700052001-04-05 23:26:32 +0000330 sensitive_data.server_key = key_generate(KEY_RSA1,
Damien Millerff75ac42001-03-30 10:50:32 +1000331 options.server_key_bits);
332 verbose("RSA key generation complete.");
Ben Lindstromeb648a72001-03-05 06:00:29 +0000333
334 for (i = 0; i < SSH_SESSION_KEY_LENGTH; i++) {
335 if (i % 4 == 0)
336 rand = arc4random();
337 sensitive_data.ssh1_cookie[i] = rand & 0xff;
338 rand >>= 8;
339 }
340 arc4random_stir();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100341}
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000342
Ben Lindstrombba81212001-06-25 05:01:22 +0000343static void
Damien Miller95def091999-11-25 00:26:21 +1100344key_regeneration_alarm(int sig)
345{
346 int save_errno = errno;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000347
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000348 signal(SIGALRM, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +1100349 errno = save_errno;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000350 key_do_regen = 1;
Damien Miller95def091999-11-25 00:26:21 +1100351}
352
Ben Lindstrombba81212001-06-25 05:01:22 +0000353static void
Damien Millerb38eff82000-04-01 11:09:21 +1000354sshd_exchange_identification(int sock_in, int sock_out)
355{
Damien Miller78928792000-04-12 20:17:38 +1000356 int i, mismatch;
Damien Millerb38eff82000-04-01 11:09:21 +1000357 int remote_major, remote_minor;
Damien Miller78928792000-04-12 20:17:38 +1000358 int major, minor;
Damien Millerb38eff82000-04-01 11:09:21 +1000359 char *s;
360 char buf[256]; /* Must not be larger than remote_version. */
361 char remote_version[256]; /* Must be at least as big as buf. */
362
Damien Miller78928792000-04-12 20:17:38 +1000363 if ((options.protocol & SSH_PROTO_1) &&
364 (options.protocol & SSH_PROTO_2)) {
365 major = PROTOCOL_MAJOR_1;
366 minor = 99;
367 } else if (options.protocol & SSH_PROTO_2) {
368 major = PROTOCOL_MAJOR_2;
369 minor = PROTOCOL_MINOR_2;
370 } else {
371 major = PROTOCOL_MAJOR_1;
372 minor = PROTOCOL_MINOR_1;
373 }
374 snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n", major, minor, SSH_VERSION);
Damien Millerb38eff82000-04-01 11:09:21 +1000375 server_version_string = xstrdup(buf);
376
377 if (client_version_string == NULL) {
378 /* Send our protocol version identification. */
Ben Lindstrom5c385522002-06-23 21:23:20 +0000379 if (atomicio(write, sock_out, server_version_string,
380 strlen(server_version_string))
Damien Millerb38eff82000-04-01 11:09:21 +1000381 != strlen(server_version_string)) {
Damien Millere4a0ff42001-11-12 11:06:54 +1100382 log("Could not write ident string to %s", get_remote_ipaddr());
Damien Millerb38eff82000-04-01 11:09:21 +1000383 fatal_cleanup();
384 }
385
Ben Lindstromf666fec2002-06-06 19:51:58 +0000386 /* Read other sides version identification. */
Ben Lindstroma3700052001-04-05 23:26:32 +0000387 memset(buf, 0, sizeof(buf));
Damien Millerb38eff82000-04-01 11:09:21 +1000388 for (i = 0; i < sizeof(buf) - 1; i++) {
Damien Millerbf7f4662000-06-23 10:16:38 +1000389 if (atomicio(read, sock_in, &buf[i], 1) != 1) {
Damien Millere4a0ff42001-11-12 11:06:54 +1100390 log("Did not receive identification string from %s",
Ben Lindstroma9a29e12001-02-20 01:20:47 +0000391 get_remote_ipaddr());
Damien Millerb38eff82000-04-01 11:09:21 +1000392 fatal_cleanup();
393 }
394 if (buf[i] == '\r') {
Ben Lindstrom69d8c072001-03-22 22:45:33 +0000395 buf[i] = 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100396 /* Kludge for F-Secure Macintosh < 1.0.2 */
397 if (i == 12 &&
398 strncmp(buf, "SSH-1.5-W1.0", 12) == 0)
399 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000400 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000401 }
402 if (buf[i] == '\n') {
Ben Lindstrom69d8c072001-03-22 22:45:33 +0000403 buf[i] = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000404 break;
405 }
406 }
407 buf[sizeof(buf) - 1] = 0;
408 client_version_string = xstrdup(buf);
409 }
410
411 /*
412 * Check that the versions match. In future this might accept
413 * several versions and set appropriate flags to handle them.
414 */
415 if (sscanf(client_version_string, "SSH-%d.%d-%[^\n]\n",
416 &remote_major, &remote_minor, remote_version) != 3) {
Damien Miller4af51302000-04-16 11:18:38 +1000417 s = "Protocol mismatch.\n";
Damien Millerb38eff82000-04-01 11:09:21 +1000418 (void) atomicio(write, sock_out, s, strlen(s));
419 close(sock_in);
420 close(sock_out);
421 log("Bad protocol version identification '%.100s' from %s",
422 client_version_string, get_remote_ipaddr());
423 fatal_cleanup();
424 }
425 debug("Client protocol version %d.%d; client software version %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100426 remote_major, remote_minor, remote_version);
Damien Millerb38eff82000-04-01 11:09:21 +1000427
Damien Millerefb4afe2000-04-12 18:45:05 +1000428 compat_datafellows(remote_version);
429
Damien Miller27dbe6f2001-03-19 22:36:20 +1100430 if (datafellows & SSH_BUG_SCANNER) {
431 log("scanned from %s with %s. Don't panic.",
432 get_remote_ipaddr(), client_version_string);
433 fatal_cleanup();
434 }
435
Damien Miller78928792000-04-12 20:17:38 +1000436 mismatch = 0;
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000437 switch (remote_major) {
Damien Millerb38eff82000-04-01 11:09:21 +1000438 case 1:
Damien Millereba71ba2000-04-29 23:57:08 +1000439 if (remote_minor == 99) {
440 if (options.protocol & SSH_PROTO_2)
441 enable_compat20();
442 else
443 mismatch = 1;
444 break;
445 }
Damien Miller78928792000-04-12 20:17:38 +1000446 if (!(options.protocol & SSH_PROTO_1)) {
447 mismatch = 1;
448 break;
449 }
Damien Millerb38eff82000-04-01 11:09:21 +1000450 if (remote_minor < 3) {
Damien Miller37023962000-07-11 17:31:38 +1000451 packet_disconnect("Your ssh version is too old and "
Damien Millerb38eff82000-04-01 11:09:21 +1000452 "is no longer supported. Please install a newer version.");
453 } else if (remote_minor == 3) {
454 /* note that this disables agent-forwarding */
455 enable_compat13();
456 }
Damien Miller78928792000-04-12 20:17:38 +1000457 break;
Damien Millerefb4afe2000-04-12 18:45:05 +1000458 case 2:
Damien Miller78928792000-04-12 20:17:38 +1000459 if (options.protocol & SSH_PROTO_2) {
Damien Millerefb4afe2000-04-12 18:45:05 +1000460 enable_compat20();
461 break;
462 }
463 /* FALLTHROUGH */
Damien Miller4af51302000-04-16 11:18:38 +1000464 default:
Damien Miller78928792000-04-12 20:17:38 +1000465 mismatch = 1;
Damien Millerb38eff82000-04-01 11:09:21 +1000466 break;
467 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000468 chop(server_version_string);
Damien Miller78928792000-04-12 20:17:38 +1000469 debug("Local version string %.200s", server_version_string);
470
471 if (mismatch) {
472 s = "Protocol major versions differ.\n";
473 (void) atomicio(write, sock_out, s, strlen(s));
474 close(sock_in);
475 close(sock_out);
476 log("Protocol major versions differ for %s: %.200s vs. %.200s",
477 get_remote_ipaddr(),
478 server_version_string, client_version_string);
479 fatal_cleanup();
480 }
Damien Millereba71ba2000-04-29 23:57:08 +1000481}
482
Damien Miller0bc1bd82000-11-13 22:57:25 +1100483/* Destroy the host and server keys. They will no longer be needed. */
Damien Millereba71ba2000-04-29 23:57:08 +1000484void
485destroy_sensitive_data(void)
486{
Damien Miller0bc1bd82000-11-13 22:57:25 +1100487 int i;
488
489 if (sensitive_data.server_key) {
490 key_free(sensitive_data.server_key);
491 sensitive_data.server_key = NULL;
492 }
Damien Miller9f0f5c62001-12-21 14:45:46 +1100493 for (i = 0; i < options.num_host_key_files; i++) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100494 if (sensitive_data.host_keys[i]) {
495 key_free(sensitive_data.host_keys[i]);
496 sensitive_data.host_keys[i] = NULL;
497 }
498 }
499 sensitive_data.ssh1_host_key = NULL;
Ben Lindstromeb648a72001-03-05 06:00:29 +0000500 memset(sensitive_data.ssh1_cookie, 0, SSH_SESSION_KEY_LENGTH);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100501}
Damien Miller0bc1bd82000-11-13 22:57:25 +1100502
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000503/* Demote private to public keys for network child */
504void
505demote_sensitive_data(void)
506{
507 Key *tmp;
508 int i;
509
510 if (sensitive_data.server_key) {
511 tmp = key_demote(sensitive_data.server_key);
512 key_free(sensitive_data.server_key);
513 sensitive_data.server_key = tmp;
514 }
515
516 for (i = 0; i < options.num_host_key_files; i++) {
517 if (sensitive_data.host_keys[i]) {
518 tmp = key_demote(sensitive_data.host_keys[i]);
519 key_free(sensitive_data.host_keys[i]);
520 sensitive_data.host_keys[i] = tmp;
521 if (tmp->type == KEY_RSA1)
522 sensitive_data.ssh1_host_key = tmp;
523 }
524 }
525
526 /* We do not clear ssh1_host key and cookie. XXX - Okay Niels? */
527}
528
Ben Lindstrom08105192002-03-22 02:50:06 +0000529static void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000530privsep_preauth_child(void)
531{
532 u_int32_t rand[256];
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++)
540 rand[i] = arc4random();
541 RAND_seed(rand, sizeof(rand));
542
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 Lindstrom7a2073c2002-03-22 02:30:41 +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);
562 do_setusercontext(pw);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000563}
564
Ben Lindstrom943481c2002-03-22 03:43:46 +0000565static Authctxt*
566privsep_preauth(void)
567{
568 Authctxt *authctxt = NULL;
569 int status;
570 pid_t pid;
571
572 /* Set up unprivileged child process to deal with network data */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000573 pmonitor = monitor_init();
Ben Lindstrom943481c2002-03-22 03:43:46 +0000574 /* Store a pointer to the kex for later rekeying */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000575 pmonitor->m_pkex = &xxx_kex;
Ben Lindstrom943481c2002-03-22 03:43:46 +0000576
577 pid = fork();
578 if (pid == -1) {
579 fatal("fork of unprivileged child failed");
580 } else if (pid != 0) {
Ben Lindstromce0f6342002-06-11 16:42:49 +0000581 debug2("Network child is on pid %ld", (long)pid);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000582
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000583 close(pmonitor->m_recvfd);
584 authctxt = monitor_child_preauth(pmonitor);
585 close(pmonitor->m_sendfd);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000586
587 /* Sync memory */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000588 monitor_sync(pmonitor);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000589
590 /* Wait for the child's exit status */
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000591 while (waitpid(pid, &status, 0) < 0)
592 if (errno != EINTR)
593 break;
Ben Lindstrom943481c2002-03-22 03:43:46 +0000594 return (authctxt);
595 } else {
596 /* child */
597
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000598 close(pmonitor->m_sendfd);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000599
600 /* Demote the child */
601 if (getuid() == 0 || geteuid() == 0)
602 privsep_preauth_child();
Ben Lindstromf90f58d2002-03-26 01:53:03 +0000603 setproctitle("%s", "[net]");
Ben Lindstrom943481c2002-03-22 03:43:46 +0000604 }
605 return (NULL);
606}
607
Ben Lindstrom08105192002-03-22 02:50:06 +0000608static void
Ben Lindstrom943481c2002-03-22 03:43:46 +0000609privsep_postauth(Authctxt *authctxt)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000610{
611 extern Authctxt *x_authctxt;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000612
613 /* XXX - Remote port forwarding */
614 x_authctxt = authctxt;
615
616 if (authctxt->pw->pw_uid == 0 || options.use_login) {
617 /* File descriptor passing is broken or root login */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000618 monitor_apply_keystate(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000619 use_privsep = 0;
620 return;
621 }
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000622
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000623 /* Authentication complete */
624 alarm(0);
625 if (startup_pipe != -1) {
626 close(startup_pipe);
627 startup_pipe = -1;
628 }
629
630 /* New socket pair */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000631 monitor_reinit(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000632
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000633 pmonitor->m_pid = fork();
634 if (pmonitor->m_pid == -1)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000635 fatal("fork of unprivileged child failed");
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000636 else if (pmonitor->m_pid != 0) {
Ben Lindstromce0f6342002-06-11 16:42:49 +0000637 debug2("User child is on pid %ld", (long)pmonitor->m_pid);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000638 close(pmonitor->m_recvfd);
639 monitor_child_postauth(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000640
641 /* NEVERREACHED */
642 exit(0);
643 }
644
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000645 close(pmonitor->m_sendfd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000646
647 /* Demote the private keys to public keys. */
648 demote_sensitive_data();
649
650 /* Drop privileges */
651 do_setusercontext(authctxt->pw);
652
653 /* It is safe now to apply the key state */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000654 monitor_apply_keystate(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000655}
656
Ben Lindstrombba81212001-06-25 05:01:22 +0000657static char *
Damien Miller0bc1bd82000-11-13 22:57:25 +1100658list_hostkey_types(void)
659{
Damien Miller0e3b8722002-01-22 23:26:38 +1100660 Buffer b;
661 char *p;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100662 int i;
Damien Miller0e3b8722002-01-22 23:26:38 +1100663
664 buffer_init(&b);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100665 for (i = 0; i < options.num_host_key_files; i++) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100666 Key *key = sensitive_data.host_keys[i];
667 if (key == NULL)
668 continue;
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000669 switch (key->type) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100670 case KEY_RSA:
671 case KEY_DSA:
Damien Miller0e3b8722002-01-22 23:26:38 +1100672 if (buffer_len(&b) > 0)
673 buffer_append(&b, ",", 1);
674 p = key_ssh_name(key);
675 buffer_append(&b, p, strlen(p));
Damien Miller0bc1bd82000-11-13 22:57:25 +1100676 break;
677 }
678 }
Damien Miller0e3b8722002-01-22 23:26:38 +1100679 buffer_append(&b, "\0", 1);
680 p = xstrdup(buffer_ptr(&b));
681 buffer_free(&b);
682 debug("list_hostkey_types: %s", p);
683 return p;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100684}
685
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000686Key *
Damien Miller0bc1bd82000-11-13 22:57:25 +1100687get_hostkey_by_type(int type)
688{
689 int i;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000690
Damien Miller9f0f5c62001-12-21 14:45:46 +1100691 for (i = 0; i < options.num_host_key_files; i++) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100692 Key *key = sensitive_data.host_keys[i];
693 if (key != NULL && key->type == type)
694 return key;
695 }
696 return NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000697}
698
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000699Key *
700get_hostkey_by_index(int ind)
701{
702 if (ind < 0 || ind >= options.num_host_key_files)
703 return (NULL);
704 return (sensitive_data.host_keys[ind]);
705}
706
707int
708get_hostkey_index(Key *key)
709{
710 int i;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000711
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000712 for (i = 0; i < options.num_host_key_files; i++) {
713 if (key == sensitive_data.host_keys[i])
714 return (i);
715 }
716 return (-1);
717}
718
Damien Miller942da032000-08-18 13:59:06 +1000719/*
720 * returns 1 if connection should be dropped, 0 otherwise.
721 * dropping starts at connection #max_startups_begin with a probability
722 * of (max_startups_rate/100). the probability increases linearly until
723 * all connections are dropped for startups > max_startups
724 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000725static int
Damien Miller942da032000-08-18 13:59:06 +1000726drop_connection(int startups)
727{
728 double p, r;
729
730 if (startups < options.max_startups_begin)
731 return 0;
732 if (startups >= options.max_startups)
733 return 1;
734 if (options.max_startups_rate == 100)
735 return 1;
736
737 p = 100 - options.max_startups_rate;
738 p *= startups - options.max_startups_begin;
739 p /= (double) (options.max_startups - options.max_startups_begin);
740 p += options.max_startups_rate;
741 p /= 100.0;
742 r = arc4random() / (double) UINT_MAX;
743
744 debug("drop_connection: p %g, r %g", p, r);
745 return (r < p) ? 1 : 0;
746}
747
Ben Lindstromade03f62001-12-06 18:22:17 +0000748static void
749usage(void)
750{
751 fprintf(stderr, "sshd version %s\n", SSH_VERSION);
752 fprintf(stderr, "Usage: %s [options]\n", __progname);
753 fprintf(stderr, "Options:\n");
754 fprintf(stderr, " -f file Configuration file (default %s)\n", _PATH_SERVER_CONFIG_FILE);
755 fprintf(stderr, " -d Debugging mode (multiple -d means more debugging)\n");
756 fprintf(stderr, " -i Started from inetd\n");
757 fprintf(stderr, " -D Do not fork into daemon mode\n");
758 fprintf(stderr, " -t Only test configuration file and keys\n");
759 fprintf(stderr, " -q Quiet (no logging)\n");
760 fprintf(stderr, " -p port Listen on the specified port (default: 22)\n");
761 fprintf(stderr, " -k seconds Regenerate server key every this many seconds (default: 3600)\n");
762 fprintf(stderr, " -g seconds Grace period for authentication (default: 600)\n");
763 fprintf(stderr, " -b bits Size of server RSA key (default: 768 bits)\n");
764 fprintf(stderr, " -h file File from which to read host key (default: %s)\n",
765 _PATH_HOST_KEY_FILE);
766 fprintf(stderr, " -u len Maximum hostname length for utmp recording\n");
767 fprintf(stderr, " -4 Use IPv4 only\n");
768 fprintf(stderr, " -6 Use IPv6 only\n");
769 fprintf(stderr, " -o option Process the option as if it was read from a configuration file.\n");
770 exit(1);
771}
772
Damien Miller95def091999-11-25 00:26:21 +1100773/*
774 * Main program for the daemon.
775 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000776int
777main(int ac, char **av)
778{
Damien Miller95def091999-11-25 00:26:21 +1100779 extern char *optarg;
780 extern int optind;
Damien Miller37023962000-07-11 17:31:38 +1000781 int opt, sock_in = 0, sock_out = 0, newsock, j, i, fdsetsz, on = 1;
Damien Miller166fca82000-04-20 07:42:21 +1000782 pid_t pid;
Damien Miller34132e52000-01-14 15:45:46 +1100783 socklen_t fromlen;
Damien Miller34132e52000-01-14 15:45:46 +1100784 fd_set *fdset;
785 struct sockaddr_storage from;
Damien Miller95def091999-11-25 00:26:21 +1100786 const char *remote_ip;
787 int remote_port;
Damien Miller95def091999-11-25 00:26:21 +1100788 FILE *f;
789 struct linger linger;
Damien Miller34132e52000-01-14 15:45:46 +1100790 struct addrinfo *ai;
791 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
792 int listen_sock, maxfd;
Damien Miller37023962000-07-11 17:31:38 +1000793 int startup_p[2];
794 int startups = 0;
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +0000795 Authctxt *authctxt;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000796 Key *key;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000797 int ret, key_used = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000798
Kevin Steves0ea1d9d2002-04-25 18:17:04 +0000799#ifdef HAVE_SECUREWARE
800 (void)set_auth_parameters(ac, av);
801#endif
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000802 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000803 init_rng();
804
Kevin Stevesec84dc12000-12-13 17:45:15 +0000805 /* Save argv. */
Damien Millerb8c656e2000-06-28 15:22:41 +1000806 saved_argc = ac;
Damien Miller95def091999-11-25 00:26:21 +1100807 saved_argv = av;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000808
Damien Miller95def091999-11-25 00:26:21 +1100809 /* Initialize configuration options to their default values. */
810 initialize_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000811
Damien Miller95def091999-11-25 00:26:21 +1100812 /* Parse command-line arguments. */
Ben Lindstromade03f62001-12-06 18:22:17 +0000813 while ((opt = getopt(ac, av, "f:p:b:k:h:g:V:u:o:dDeiqtQ46")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100814 switch (opt) {
Damien Miller34132e52000-01-14 15:45:46 +1100815 case '4':
816 IPv4or6 = AF_INET;
817 break;
818 case '6':
819 IPv4or6 = AF_INET6;
820 break;
Damien Miller95def091999-11-25 00:26:21 +1100821 case 'f':
822 config_file_name = optarg;
823 break;
824 case 'd':
Damien Millere4340be2000-09-16 13:29:08 +1100825 if (0 == debug_flag) {
826 debug_flag = 1;
827 options.log_level = SYSLOG_LEVEL_DEBUG1;
828 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
829 options.log_level++;
830 } else {
831 fprintf(stderr, "Too high debugging level.\n");
832 exit(1);
833 }
Damien Miller95def091999-11-25 00:26:21 +1100834 break;
Ben Lindstromc72745a2000-12-02 19:03:54 +0000835 case 'D':
836 no_daemon_flag = 1;
837 break;
Ben Lindstrom9fce9f02001-04-11 23:10:09 +0000838 case 'e':
839 log_stderr = 1;
840 break;
Damien Miller95def091999-11-25 00:26:21 +1100841 case 'i':
842 inetd_flag = 1;
843 break;
844 case 'Q':
Ben Lindstromd5390202001-01-29 08:07:43 +0000845 /* ignored */
Damien Miller95def091999-11-25 00:26:21 +1100846 break;
847 case 'q':
848 options.log_level = SYSLOG_LEVEL_QUIET;
849 break;
850 case 'b':
851 options.server_key_bits = atoi(optarg);
852 break;
853 case 'p':
Damien Miller34132e52000-01-14 15:45:46 +1100854 options.ports_from_cmdline = 1;
Damien Millere4340be2000-09-16 13:29:08 +1100855 if (options.num_ports >= MAX_PORTS) {
856 fprintf(stderr, "too many ports.\n");
857 exit(1);
858 }
Ben Lindstrom19066a12001-04-12 23:39:26 +0000859 options.ports[options.num_ports++] = a2port(optarg);
860 if (options.ports[options.num_ports-1] == 0) {
861 fprintf(stderr, "Bad port number.\n");
862 exit(1);
863 }
Damien Miller95def091999-11-25 00:26:21 +1100864 break;
865 case 'g':
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000866 if ((options.login_grace_time = convtime(optarg)) == -1) {
867 fprintf(stderr, "Invalid login grace time.\n");
868 exit(1);
869 }
Damien Miller95def091999-11-25 00:26:21 +1100870 break;
871 case 'k':
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000872 if ((options.key_regeneration_time = convtime(optarg)) == -1) {
873 fprintf(stderr, "Invalid key regeneration interval.\n");
874 exit(1);
875 }
Damien Miller95def091999-11-25 00:26:21 +1100876 break;
877 case 'h':
Damien Miller0bc1bd82000-11-13 22:57:25 +1100878 if (options.num_host_key_files >= MAX_HOSTKEYS) {
879 fprintf(stderr, "too many host keys.\n");
880 exit(1);
881 }
882 options.host_key_files[options.num_host_key_files++] = optarg;
Damien Miller95def091999-11-25 00:26:21 +1100883 break;
884 case 'V':
885 client_version_string = optarg;
886 /* only makes sense with inetd_flag, i.e. no listen() */
887 inetd_flag = 1;
888 break;
Ben Lindstrom794325a2001-08-06 21:09:07 +0000889 case 't':
890 test_flag = 1;
891 break;
Damien Miller942da032000-08-18 13:59:06 +1000892 case 'u':
893 utmp_len = atoi(optarg);
894 break;
Ben Lindstromade03f62001-12-06 18:22:17 +0000895 case 'o':
Damien Miller9f0f5c62001-12-21 14:45:46 +1100896 if (process_server_config_line(&options, optarg,
Ben Lindstromade03f62001-12-06 18:22:17 +0000897 "command-line", 0) != 0)
Damien Miller9f0f5c62001-12-21 14:45:46 +1100898 exit(1);
Ben Lindstromade03f62001-12-06 18:22:17 +0000899 break;
Damien Miller95def091999-11-25 00:26:21 +1100900 case '?':
901 default:
Ben Lindstromade03f62001-12-06 18:22:17 +0000902 usage();
903 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000904 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000905 }
Ben Lindstrom425fb022001-03-29 00:31:20 +0000906 SSLeay_add_all_algorithms();
Ben Lindstrom908afed2001-10-03 17:34:59 +0000907 channel_set_af(IPv4or6);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000908
Damien Miller34132e52000-01-14 15:45:46 +1100909 /*
910 * Force logging to stderr until we have loaded the private host
911 * key (unless started from inetd)
912 */
Kevin Stevesec84dc12000-12-13 17:45:15 +0000913 log_init(__progname,
Damien Miller5aa5d782002-02-08 22:01:54 +1100914 options.log_level == SYSLOG_LEVEL_NOT_SET ?
915 SYSLOG_LEVEL_INFO : options.log_level,
916 options.log_facility == SYSLOG_FACILITY_NOT_SET ?
917 SYSLOG_FACILITY_AUTH : options.log_facility,
Ben Lindstromd5390202001-01-29 08:07:43 +0000918 !inetd_flag);
Damien Miller34132e52000-01-14 15:45:46 +1100919
Ben Lindstrom6db66ff2001-08-06 23:29:16 +0000920#ifdef _CRAY
921 /* Cray can define user privs drop all prives now!
922 * Not needed on PRIV_SU systems!
923 */
924 drop_cray_privs();
925#endif
926
Damien Miller60bc5172001-03-19 09:38:15 +1100927 seed_rng();
928
Damien Miller95def091999-11-25 00:26:21 +1100929 /* Read server configuration options from the configuration file. */
930 read_server_config(&options, config_file_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000931
Damien Miller95def091999-11-25 00:26:21 +1100932 /* Fill in default values for those options not explicitly set. */
933 fill_default_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000934
Damien Miller95def091999-11-25 00:26:21 +1100935 /* Check that there are no remaining arguments. */
936 if (optind < ac) {
937 fprintf(stderr, "Extra argument %s.\n", av[optind]);
938 exit(1);
939 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000940
Damien Miller95def091999-11-25 00:26:21 +1100941 debug("sshd version %.100s", SSH_VERSION);
Damien Miller2ccf6611999-11-15 15:25:10 +1100942
Damien Miller0bc1bd82000-11-13 22:57:25 +1100943 /* load private host keys */
944 sensitive_data.host_keys = xmalloc(options.num_host_key_files*sizeof(Key*));
Damien Miller9f0f5c62001-12-21 14:45:46 +1100945 for (i = 0; i < options.num_host_key_files; i++)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000946 sensitive_data.host_keys[i] = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100947 sensitive_data.server_key = NULL;
948 sensitive_data.ssh1_host_key = NULL;
949 sensitive_data.have_ssh1_key = 0;
950 sensitive_data.have_ssh2_key = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000951
Damien Miller9f0f5c62001-12-21 14:45:46 +1100952 for (i = 0; i < options.num_host_key_files; i++) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000953 key = key_load_private(options.host_key_files[i], "", NULL);
954 sensitive_data.host_keys[i] = key;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100955 if (key == NULL) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000956 error("Could not load host key: %s",
957 options.host_key_files[i]);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000958 sensitive_data.host_keys[i] = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100959 continue;
960 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000961 switch (key->type) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100962 case KEY_RSA1:
963 sensitive_data.ssh1_host_key = key;
964 sensitive_data.have_ssh1_key = 1;
965 break;
966 case KEY_RSA:
967 case KEY_DSA:
968 sensitive_data.have_ssh2_key = 1;
969 break;
970 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000971 debug("private host key: #%d type %d %s", i, key->type,
972 key_type(key));
Damien Miller0bc1bd82000-11-13 22:57:25 +1100973 }
974 if ((options.protocol & SSH_PROTO_1) && !sensitive_data.have_ssh1_key) {
975 log("Disabling protocol version 1. Could not load host key");
Damien Millereba71ba2000-04-29 23:57:08 +1000976 options.protocol &= ~SSH_PROTO_1;
977 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100978 if ((options.protocol & SSH_PROTO_2) && !sensitive_data.have_ssh2_key) {
979 log("Disabling protocol version 2. Could not load host key");
980 options.protocol &= ~SSH_PROTO_2;
Damien Millereba71ba2000-04-29 23:57:08 +1000981 }
Kevin Stevesadf74cd2001-02-05 14:22:50 +0000982 if (!(options.protocol & (SSH_PROTO_1|SSH_PROTO_2))) {
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000983 log("sshd: no hostkeys available -- exiting.");
Damien Miller95def091999-11-25 00:26:21 +1100984 exit(1);
985 }
Damien Miller95def091999-11-25 00:26:21 +1100986
Damien Millereba71ba2000-04-29 23:57:08 +1000987 /* Check certain values for sanity. */
988 if (options.protocol & SSH_PROTO_1) {
989 if (options.server_key_bits < 512 ||
990 options.server_key_bits > 32768) {
991 fprintf(stderr, "Bad server key size.\n");
992 exit(1);
993 }
994 /*
995 * Check that server and host key lengths differ sufficiently. This
996 * is necessary to make double encryption work with rsaref. Oh, I
997 * hate software patents. I dont know if this can go? Niels
998 */
999 if (options.server_key_bits >
Ben Lindstrom822b6342002-06-23 21:38:49 +00001000 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) -
1001 SSH_KEY_BITS_RESERVED && options.server_key_bits <
1002 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) +
1003 SSH_KEY_BITS_RESERVED) {
Damien Millereba71ba2000-04-29 23:57:08 +10001004 options.server_key_bits =
Ben Lindstrom822b6342002-06-23 21:38:49 +00001005 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) +
1006 SSH_KEY_BITS_RESERVED;
Damien Millereba71ba2000-04-29 23:57:08 +10001007 debug("Forcing server key to %d bits to make it differ from host key.",
1008 options.server_key_bits);
1009 }
1010 }
1011
Ben Lindstroma26ea632002-06-06 20:46:25 +00001012 if (use_privsep) {
1013 struct passwd *pw;
1014 struct stat st;
1015
1016 if ((pw = getpwnam(SSH_PRIVSEP_USER)) == NULL)
1017 fatal("Privilege separation user %s does not exist",
1018 SSH_PRIVSEP_USER);
1019 if ((stat(_PATH_PRIVSEP_CHROOT_DIR, &st) == -1) ||
1020 (S_ISDIR(st.st_mode) == 0))
1021 fatal("Missing privilege separation directory: %s",
1022 _PATH_PRIVSEP_CHROOT_DIR);
Ben Lindstrom2dfacb32002-06-23 00:33:47 +00001023 if (st.st_uid != 0 || (st.st_mode & (S_IWGRP|S_IWOTH)) != 0)
1024 fatal("Bad owner or mode for %s",
1025 _PATH_PRIVSEP_CHROOT_DIR);
Ben Lindstroma26ea632002-06-06 20:46:25 +00001026 }
1027
Ben Lindstrom794325a2001-08-06 21:09:07 +00001028 /* Configuration looks good, so exit if in test mode. */
1029 if (test_flag)
1030 exit(0);
1031
Damien Miller87aea252002-05-10 12:20:24 +10001032 /*
1033 * Clear out any supplemental groups we may have inherited. This
1034 * prevents inadvertent creation of files with bad modes (in the
1035 * portable version at least, it's certainly possible for PAM
1036 * to create a file, and we can't control the code in every
1037 * module which might be used).
1038 */
1039 if (setgroups(0, NULL) < 0)
1040 debug("setgroups() failed: %.200s", strerror(errno));
1041
Damien Millereba71ba2000-04-29 23:57:08 +10001042 /* Initialize the log (it is reinitialized below in case we forked). */
Damien Miller95def091999-11-25 00:26:21 +11001043 if (debug_flag && !inetd_flag)
1044 log_stderr = 1;
Kevin Stevesec84dc12000-12-13 17:45:15 +00001045 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +11001046
Damien Millereba71ba2000-04-29 23:57:08 +10001047 /*
1048 * If not in debugging mode, and not started from inetd, disconnect
1049 * from the controlling terminal, and fork. The original process
1050 * exits.
1051 */
Ben Lindstromc72745a2000-12-02 19:03:54 +00001052 if (!(debug_flag || inetd_flag || no_daemon_flag)) {
Damien Miller95def091999-11-25 00:26:21 +11001053#ifdef TIOCNOTTY
1054 int fd;
1055#endif /* TIOCNOTTY */
1056 if (daemon(0, 0) < 0)
1057 fatal("daemon() failed: %.200s", strerror(errno));
1058
1059 /* Disconnect from the controlling tty. */
1060#ifdef TIOCNOTTY
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001061 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
Damien Miller95def091999-11-25 00:26:21 +11001062 if (fd >= 0) {
1063 (void) ioctl(fd, TIOCNOTTY, NULL);
1064 close(fd);
1065 }
1066#endif /* TIOCNOTTY */
1067 }
1068 /* Reinitialize the log (because of the fork above). */
Kevin Stevesec84dc12000-12-13 17:45:15 +00001069 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +11001070
Damien Miller95def091999-11-25 00:26:21 +11001071 /* Initialize the random number generator. */
1072 arc4random_stir();
1073
1074 /* Chdir to the root directory so that the current disk can be
1075 unmounted if desired. */
1076 chdir("/");
Damien Miller9f0f5c62001-12-21 14:45:46 +11001077
Ben Lindstromde71cda2001-03-24 00:43:26 +00001078 /* ignore SIGPIPE */
1079 signal(SIGPIPE, SIG_IGN);
Damien Miller95def091999-11-25 00:26:21 +11001080
Damien Miller95def091999-11-25 00:26:21 +11001081 /* Start listening for a socket, unless started from inetd. */
1082 if (inetd_flag) {
Ben Lindstrom206941f2001-04-15 14:27:16 +00001083 int s1;
Damien Miller95def091999-11-25 00:26:21 +11001084 s1 = dup(0); /* Make sure descriptors 0, 1, and 2 are in use. */
Ben Lindstrom206941f2001-04-15 14:27:16 +00001085 dup(s1);
Damien Miller95def091999-11-25 00:26:21 +11001086 sock_in = dup(0);
1087 sock_out = dup(1);
Damien Miller994cf142000-07-21 10:19:44 +10001088 startup_pipe = -1;
Damien Millereba71ba2000-04-29 23:57:08 +10001089 /*
1090 * We intentionally do not close the descriptors 0, 1, and 2
1091 * as our code for setting the descriptors won\'t work if
1092 * ttyfd happens to be one of those.
1093 */
Damien Miller95def091999-11-25 00:26:21 +11001094 debug("inetd sockets after dupping: %d, %d", sock_in, sock_out);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001095 if (options.protocol & SSH_PROTO_1)
Ben Lindstromca42d5f2001-03-09 18:25:32 +00001096 generate_ephemeral_server_key();
Damien Miller95def091999-11-25 00:26:21 +11001097 } else {
Damien Miller34132e52000-01-14 15:45:46 +11001098 for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
1099 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1100 continue;
1101 if (num_listen_socks >= MAX_LISTEN_SOCKS)
1102 fatal("Too many listen sockets. "
1103 "Enlarge MAX_LISTEN_SOCKS");
1104 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
1105 ntop, sizeof(ntop), strport, sizeof(strport),
1106 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
1107 error("getnameinfo failed");
1108 continue;
1109 }
1110 /* Create socket for listening. */
1111 listen_sock = socket(ai->ai_family, SOCK_STREAM, 0);
1112 if (listen_sock < 0) {
1113 /* kernel may not support ipv6 */
1114 verbose("socket: %.100s", strerror(errno));
1115 continue;
1116 }
1117 if (fcntl(listen_sock, F_SETFL, O_NONBLOCK) < 0) {
1118 error("listen_sock O_NONBLOCK: %s", strerror(errno));
1119 close(listen_sock);
1120 continue;
1121 }
1122 /*
1123 * Set socket options. We try to make the port
1124 * reusable and have it close as fast as possible
1125 * without waiting in unnecessary wait states on
1126 * close.
1127 */
1128 setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
Ben Lindstrom733a2352002-03-05 01:31:28 +00001129 &on, sizeof(on));
Damien Miller34132e52000-01-14 15:45:46 +11001130 linger.l_onoff = 1;
1131 linger.l_linger = 5;
1132 setsockopt(listen_sock, SOL_SOCKET, SO_LINGER,
Ben Lindstrom733a2352002-03-05 01:31:28 +00001133 &linger, sizeof(linger));
Damien Miller95def091999-11-25 00:26:21 +11001134
Damien Miller34132e52000-01-14 15:45:46 +11001135 debug("Bind to port %s on %s.", strport, ntop);
Damien Miller95def091999-11-25 00:26:21 +11001136
Damien Miller34132e52000-01-14 15:45:46 +11001137 /* Bind the socket to the desired port. */
Damien Miller0a4e27d2001-02-18 12:36:39 +11001138 if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1139 if (!ai->ai_next)
1140 error("Bind to port %s on %s failed: %.200s.",
1141 strport, ntop, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11001142 close(listen_sock);
1143 continue;
1144 }
1145 listen_socks[num_listen_socks] = listen_sock;
1146 num_listen_socks++;
Damien Miller95def091999-11-25 00:26:21 +11001147
Damien Miller34132e52000-01-14 15:45:46 +11001148 /* Start listening on the port. */
1149 log("Server listening on %s port %s.", ntop, strport);
1150 if (listen(listen_sock, 5) < 0)
1151 fatal("listen: %.100s", strerror(errno));
1152
Damien Miller95def091999-11-25 00:26:21 +11001153 }
Damien Miller34132e52000-01-14 15:45:46 +11001154 freeaddrinfo(options.listen_addrs);
1155
1156 if (!num_listen_socks)
1157 fatal("Cannot bind any address.");
1158
Ben Lindstrom98097862001-06-25 05:10:20 +00001159 if (options.protocol & SSH_PROTO_1)
1160 generate_ephemeral_server_key();
1161
1162 /*
1163 * Arrange to restart on SIGHUP. The handler needs
1164 * listen_sock.
1165 */
1166 signal(SIGHUP, sighup_handler);
1167
1168 signal(SIGTERM, sigterm_handler);
1169 signal(SIGQUIT, sigterm_handler);
1170
1171 /* Arrange SIGCHLD to be caught. */
1172 signal(SIGCHLD, main_sigchld_handler);
1173
1174 /* Write out the pid file after the sigterm handler is setup */
Damien Miller95def091999-11-25 00:26:21 +11001175 if (!debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +11001176 /*
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001177 * Record our pid in /var/run/sshd.pid to make it
1178 * easier to kill the correct sshd. We don't want to
1179 * do this before the bind above because the bind will
Damien Miller5428f641999-11-25 11:54:57 +11001180 * fail if there already is a daemon, and this will
1181 * overwrite any old pid in the file.
1182 */
Damien Millerbac2d8a2000-09-05 16:13:06 +11001183 f = fopen(options.pid_file, "wb");
Damien Miller95def091999-11-25 00:26:21 +11001184 if (f) {
Ben Lindstromce0f6342002-06-11 16:42:49 +00001185 fprintf(f, "%ld\n", (long) getpid());
Damien Miller95def091999-11-25 00:26:21 +11001186 fclose(f);
1187 }
1188 }
Damien Miller95def091999-11-25 00:26:21 +11001189
Damien Miller34132e52000-01-14 15:45:46 +11001190 /* setup fd set for listen */
Damien Miller37023962000-07-11 17:31:38 +10001191 fdset = NULL;
Damien Miller34132e52000-01-14 15:45:46 +11001192 maxfd = 0;
1193 for (i = 0; i < num_listen_socks; i++)
1194 if (listen_socks[i] > maxfd)
1195 maxfd = listen_socks[i];
Damien Miller37023962000-07-11 17:31:38 +10001196 /* pipes connected to unauthenticated childs */
1197 startup_pipes = xmalloc(options.max_startups * sizeof(int));
1198 for (i = 0; i < options.max_startups; i++)
1199 startup_pipes[i] = -1;
Damien Miller34132e52000-01-14 15:45:46 +11001200
Damien Miller5428f641999-11-25 11:54:57 +11001201 /*
1202 * Stay listening for connections until the system crashes or
1203 * the daemon is killed with a signal.
1204 */
Damien Miller95def091999-11-25 00:26:21 +11001205 for (;;) {
1206 if (received_sighup)
1207 sighup_restart();
Damien Miller37023962000-07-11 17:31:38 +10001208 if (fdset != NULL)
1209 xfree(fdset);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001210 fdsetsz = howmany(maxfd+1, NFDBITS) * sizeof(fd_mask);
Damien Miller37023962000-07-11 17:31:38 +10001211 fdset = (fd_set *)xmalloc(fdsetsz);
Damien Miller34132e52000-01-14 15:45:46 +11001212 memset(fdset, 0, fdsetsz);
Damien Miller37023962000-07-11 17:31:38 +10001213
Damien Miller34132e52000-01-14 15:45:46 +11001214 for (i = 0; i < num_listen_socks; i++)
1215 FD_SET(listen_socks[i], fdset);
Damien Miller37023962000-07-11 17:31:38 +10001216 for (i = 0; i < options.max_startups; i++)
1217 if (startup_pipes[i] != -1)
1218 FD_SET(startup_pipes[i], fdset);
1219
1220 /* Wait in select until there is a connection. */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001221 ret = select(maxfd+1, fdset, NULL, NULL, NULL);
1222 if (ret < 0 && errno != EINTR)
1223 error("select: %.100s", strerror(errno));
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001224 if (received_sigterm) {
1225 log("Received signal %d; terminating.",
Ben Lindstromf8f065b2001-12-06 17:52:16 +00001226 (int) received_sigterm);
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001227 close_listen_socks();
1228 unlink(options.pid_file);
1229 exit(255);
1230 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001231 if (key_used && key_do_regen) {
Ben Lindstromca42d5f2001-03-09 18:25:32 +00001232 generate_ephemeral_server_key();
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001233 key_used = 0;
1234 key_do_regen = 0;
Damien Miller34132e52000-01-14 15:45:46 +11001235 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001236 if (ret < 0)
1237 continue;
1238
Damien Miller37023962000-07-11 17:31:38 +10001239 for (i = 0; i < options.max_startups; i++)
1240 if (startup_pipes[i] != -1 &&
1241 FD_ISSET(startup_pipes[i], fdset)) {
1242 /*
1243 * the read end of the pipe is ready
1244 * if the child has closed the pipe
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001245 * after successful authentication
Damien Miller37023962000-07-11 17:31:38 +10001246 * or if the child has died
1247 */
1248 close(startup_pipes[i]);
1249 startup_pipes[i] = -1;
1250 startups--;
1251 }
Damien Miller34132e52000-01-14 15:45:46 +11001252 for (i = 0; i < num_listen_socks; i++) {
1253 if (!FD_ISSET(listen_socks[i], fdset))
Damien Miller95def091999-11-25 00:26:21 +11001254 continue;
Damien Miller37023962000-07-11 17:31:38 +10001255 fromlen = sizeof(from);
1256 newsock = accept(listen_socks[i], (struct sockaddr *)&from,
1257 &fromlen);
1258 if (newsock < 0) {
1259 if (errno != EINTR && errno != EWOULDBLOCK)
1260 error("accept: %.100s", strerror(errno));
1261 continue;
1262 }
1263 if (fcntl(newsock, F_SETFL, 0) < 0) {
1264 error("newsock del O_NONBLOCK: %s", strerror(errno));
Damien Miller72c336d2001-12-21 12:44:28 +11001265 close(newsock);
Damien Miller37023962000-07-11 17:31:38 +10001266 continue;
1267 }
Damien Miller942da032000-08-18 13:59:06 +10001268 if (drop_connection(startups) == 1) {
1269 debug("drop connection #%d", startups);
Damien Miller37023962000-07-11 17:31:38 +10001270 close(newsock);
1271 continue;
1272 }
1273 if (pipe(startup_p) == -1) {
1274 close(newsock);
1275 continue;
1276 }
1277
1278 for (j = 0; j < options.max_startups; j++)
1279 if (startup_pipes[j] == -1) {
1280 startup_pipes[j] = startup_p[0];
1281 if (maxfd < startup_p[0])
1282 maxfd = startup_p[0];
1283 startups++;
1284 break;
1285 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001286
Damien Miller5428f641999-11-25 11:54:57 +11001287 /*
Damien Miller37023962000-07-11 17:31:38 +10001288 * Got connection. Fork a child to handle it, unless
1289 * we are in debugging mode.
Damien Miller5428f641999-11-25 11:54:57 +11001290 */
Damien Miller37023962000-07-11 17:31:38 +10001291 if (debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +11001292 /*
Damien Miller37023962000-07-11 17:31:38 +10001293 * In debugging mode. Close the listening
1294 * socket, and start processing the
1295 * connection without forking.
Damien Miller5428f641999-11-25 11:54:57 +11001296 */
Damien Miller37023962000-07-11 17:31:38 +10001297 debug("Server will not fork when running in debugging mode.");
Damien Miller34132e52000-01-14 15:45:46 +11001298 close_listen_socks();
Damien Miller95def091999-11-25 00:26:21 +11001299 sock_in = newsock;
1300 sock_out = newsock;
Damien Miller4d97ba22000-07-11 18:15:50 +10001301 startup_pipe = -1;
Damien Miller182ee6e2000-07-12 09:45:27 +10001302 pid = getpid();
Damien Miller95def091999-11-25 00:26:21 +11001303 break;
Damien Miller37023962000-07-11 17:31:38 +10001304 } else {
1305 /*
1306 * Normal production daemon. Fork, and have
1307 * the child process the connection. The
1308 * parent continues listening.
1309 */
1310 if ((pid = fork()) == 0) {
1311 /*
1312 * Child. Close the listening and max_startup
1313 * sockets. Start using the accepted socket.
1314 * Reinitialize logging (since our pid has
1315 * changed). We break out of the loop to handle
1316 * the connection.
1317 */
1318 startup_pipe = startup_p[1];
Ben Lindstromd84df982001-12-06 16:35:40 +00001319 close_startup_pipes();
Damien Miller37023962000-07-11 17:31:38 +10001320 close_listen_socks();
1321 sock_in = newsock;
1322 sock_out = newsock;
Kevin Stevesec84dc12000-12-13 17:45:15 +00001323 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller37023962000-07-11 17:31:38 +10001324 break;
1325 }
Damien Miller95def091999-11-25 00:26:21 +11001326 }
Damien Miller37023962000-07-11 17:31:38 +10001327
1328 /* Parent. Stay in the loop. */
1329 if (pid < 0)
1330 error("fork: %.100s", strerror(errno));
1331 else
Ben Lindstromce0f6342002-06-11 16:42:49 +00001332 debug("Forked child %ld.", (long)pid);
Damien Miller37023962000-07-11 17:31:38 +10001333
1334 close(startup_p[1]);
1335
1336 /* Mark that the key has been used (it was "given" to the child). */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001337 if ((options.protocol & SSH_PROTO_1) &&
1338 key_used == 0) {
1339 /* Schedule server key regeneration alarm. */
1340 signal(SIGALRM, key_regeneration_alarm);
1341 alarm(options.key_regeneration_time);
1342 key_used = 1;
1343 }
Damien Miller37023962000-07-11 17:31:38 +10001344
1345 arc4random_stir();
1346
1347 /* Close the new socket (the child is now taking care of it). */
1348 close(newsock);
Damien Miller95def091999-11-25 00:26:21 +11001349 }
Damien Miller34132e52000-01-14 15:45:46 +11001350 /* child process check (or debug mode) */
1351 if (num_listen_socks < 0)
1352 break;
Damien Miller95def091999-11-25 00:26:21 +11001353 }
1354 }
1355
1356 /* This is the child processing a new connection. */
1357
Damien Miller5428f641999-11-25 11:54:57 +11001358 /*
Ben Lindstrom17401b62002-05-15 16:17:56 +00001359 * Create a new session and process group since the 4.4BSD
1360 * setlogin() affects the entire process group. We don't
1361 * want the child to be able to affect the parent.
1362 */
Kevin Stevesc5041ac2002-05-21 17:50:21 +00001363#if 0
1364 /* XXX: this breaks Solaris */
Ben Lindstrom57f08002002-06-23 00:37:10 +00001365 if (!debug_flag && !inetd_flag && setsid() < 0)
Ben Lindstrom17401b62002-05-15 16:17:56 +00001366 error("setsid: %.100s", strerror(errno));
Kevin Stevesc5041ac2002-05-21 17:50:21 +00001367#endif
Ben Lindstrom17401b62002-05-15 16:17:56 +00001368
1369 /*
Damien Miller5428f641999-11-25 11:54:57 +11001370 * Disable the key regeneration alarm. We will not regenerate the
1371 * key since we are no longer in a position to give it to anyone. We
1372 * will not restart on SIGHUP since it no longer makes sense.
1373 */
Damien Miller95def091999-11-25 00:26:21 +11001374 alarm(0);
1375 signal(SIGALRM, SIG_DFL);
1376 signal(SIGHUP, SIG_DFL);
1377 signal(SIGTERM, SIG_DFL);
1378 signal(SIGQUIT, SIG_DFL);
1379 signal(SIGCHLD, SIG_DFL);
Damien Miller4e0f5e12000-08-29 11:05:50 +11001380 signal(SIGINT, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001381
Damien Miller5428f641999-11-25 11:54:57 +11001382 /*
1383 * Set socket options for the connection. We want the socket to
1384 * close as fast as possible without waiting for anything. If the
1385 * connection is not a socket, these will do nothing.
1386 */
1387 /* setsockopt(sock_in, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on)); */
Damien Miller95def091999-11-25 00:26:21 +11001388 linger.l_onoff = 1;
1389 linger.l_linger = 5;
Ben Lindstrom733a2352002-03-05 01:31:28 +00001390 setsockopt(sock_in, SOL_SOCKET, SO_LINGER, &linger, sizeof(linger));
Damien Miller95def091999-11-25 00:26:21 +11001391
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001392 /* Set keepalives if requested. */
1393 if (options.keepalives &&
Ben Lindstrom733a2352002-03-05 01:31:28 +00001394 setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, &on,
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001395 sizeof(on)) < 0)
1396 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
1397
Damien Miller5428f641999-11-25 11:54:57 +11001398 /*
1399 * Register our connection. This turns encryption off because we do
1400 * not have a key.
1401 */
Damien Miller95def091999-11-25 00:26:21 +11001402 packet_set_connection(sock_in, sock_out);
1403
1404 remote_port = get_remote_port();
1405 remote_ip = get_remote_ipaddr();
1406
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001407#ifdef LIBWRAP
Damien Miller6a4a4b92001-11-12 11:07:11 +11001408 /* Check whether logins are denied from this host. */
Damien Miller95def091999-11-25 00:26:21 +11001409 {
1410 struct request_info req;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001411
Ben Lindstromce89dac2001-09-12 16:58:04 +00001412 request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, 0);
Damien Miller95def091999-11-25 00:26:21 +11001413 fromhost(&req);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001414
Damien Miller95def091999-11-25 00:26:21 +11001415 if (!hosts_access(&req)) {
Damien Miller6a4a4b92001-11-12 11:07:11 +11001416 debug("Connection refused by tcp wrapper");
Ben Lindstrom7de696e2001-03-29 00:45:12 +00001417 refuse(&req);
Damien Miller6a4a4b92001-11-12 11:07:11 +11001418 /* NOTREACHED */
1419 fatal("libwrap refuse returns");
Damien Miller95def091999-11-25 00:26:21 +11001420 }
Damien Miller95def091999-11-25 00:26:21 +11001421 }
Damien Miller34132e52000-01-14 15:45:46 +11001422#endif /* LIBWRAP */
Damien Miller6a4a4b92001-11-12 11:07:11 +11001423
Damien Miller95def091999-11-25 00:26:21 +11001424 /* Log the connection. */
1425 verbose("Connection from %.500s port %d", remote_ip, remote_port);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001426
Damien Miller5428f641999-11-25 11:54:57 +11001427 /*
1428 * We don\'t want to listen forever unless the other side
1429 * successfully authenticates itself. So we set up an alarm which is
1430 * cleared after successful authentication. A limit of zero
1431 * indicates no limit. Note that we don\'t set the alarm in debugging
1432 * mode; it is just annoying to have the server exit just when you
1433 * are about to discover the bug.
1434 */
Damien Miller95def091999-11-25 00:26:21 +11001435 signal(SIGALRM, grace_alarm_handler);
1436 if (!debug_flag)
1437 alarm(options.login_grace_time);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001438
Damien Millerb38eff82000-04-01 11:09:21 +10001439 sshd_exchange_identification(sock_in, sock_out);
Damien Miller5428f641999-11-25 11:54:57 +11001440 /*
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001441 * Check that the connection comes from a privileged port.
Ben Lindstromf666fec2002-06-06 19:51:58 +00001442 * Rhosts-Authentication only makes sense from privileged
Damien Miller5428f641999-11-25 11:54:57 +11001443 * programs. Of course, if the intruder has root access on his local
1444 * machine, he can connect from any port. So do not use these
1445 * authentication methods from machines that you do not trust.
1446 */
Damien Miller654c03f2002-02-13 13:54:44 +11001447 if (options.rhosts_authentication &&
1448 (remote_port >= IPPORT_RESERVED ||
1449 remote_port < IPPORT_RESERVED / 2)) {
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001450 debug("Rhosts Authentication disabled, "
Damien Miller00b61642001-11-12 10:51:23 +11001451 "originating port %d not trusted.", remote_port);
Damien Miller95def091999-11-25 00:26:21 +11001452 options.rhosts_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +11001453 }
Ben Lindstromec95ed92001-07-04 04:21:14 +00001454#if defined(KRB4) && !defined(KRB5)
Damien Miller34132e52000-01-14 15:45:46 +11001455 if (!packet_connection_is_ipv4() &&
1456 options.kerberos_authentication) {
1457 debug("Kerberos Authentication disabled, only available for IPv4.");
1458 options.kerberos_authentication = 0;
1459 }
Ben Lindstromec95ed92001-07-04 04:21:14 +00001460#endif /* KRB4 && !KRB5 */
Ben Lindstromf79aeff2001-02-10 21:27:11 +00001461#ifdef AFS
1462 /* If machine has AFS, set process authentication group. */
1463 if (k_hasafs()) {
1464 k_setpag();
1465 k_unlog();
1466 }
1467#endif /* AFS */
Damien Miller34132e52000-01-14 15:45:46 +11001468
Damien Miller95def091999-11-25 00:26:21 +11001469 packet_set_nonblocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001470
Ben Lindstrom943481c2002-03-22 03:43:46 +00001471 if (use_privsep)
1472 if ((authctxt = privsep_preauth()) != NULL)
1473 goto authenticated;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001474
Damien Miller396691a2000-01-20 22:44:08 +11001475 /* perform the key exchange */
Damien Miller396691a2000-01-20 22:44:08 +11001476 /* authenticate user and start session */
Damien Millerefb4afe2000-04-12 18:45:05 +10001477 if (compat20) {
1478 do_ssh2_kex();
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +00001479 authctxt = do_authentication2();
Damien Millerefb4afe2000-04-12 18:45:05 +10001480 } else {
1481 do_ssh1_kex();
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +00001482 authctxt = do_authentication();
Damien Millerefb4afe2000-04-12 18:45:05 +10001483 }
Ben Lindstrom943481c2002-03-22 03:43:46 +00001484 /*
1485 * If we use privilege separation, the unprivileged child transfers
1486 * the current keystate and exits
1487 */
1488 if (use_privsep) {
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001489 mm_send_keystate(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001490 exit(0);
Ben Lindstrom943481c2002-03-22 03:43:46 +00001491 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001492
1493 authenticated:
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001494 /*
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001495 * In privilege separation, we fork another child and prepare
1496 * file descriptor passing.
1497 */
1498 if (use_privsep) {
Ben Lindstrom943481c2002-03-22 03:43:46 +00001499 privsep_postauth(authctxt);
1500 /* the monitor process [priv] will not return */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001501 if (!compat20)
1502 destroy_sensitive_data();
1503 }
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +00001504
1505 /* Perform session preparation. */
1506 do_authenticated(authctxt);
1507
Damien Miller3a5b0232002-03-13 13:19:42 +11001508 /* The connection has been terminated. */
1509 verbose("Closing connection to %.100s", remote_ip);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001510
Damien Millerbeb4ba51999-12-28 15:09:35 +11001511#ifdef USE_PAM
Damien Millere72b7af1999-12-30 15:08:44 +11001512 finish_pam();
Damien Millerbeb4ba51999-12-28 15:09:35 +11001513#endif /* USE_PAM */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001514
Damien Miller95def091999-11-25 00:26:21 +11001515 packet_close();
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001516
1517 if (use_privsep)
1518 mm_terminate();
1519
Damien Miller95def091999-11-25 00:26:21 +11001520 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001521}
1522
Damien Miller95def091999-11-25 00:26:21 +11001523/*
Ben Lindstromabcb1452002-03-22 01:10:21 +00001524 * Decrypt session_key_int using our private server key and private host key
1525 * (key with larger modulus first).
1526 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001527int
Ben Lindstromabcb1452002-03-22 01:10:21 +00001528ssh1_session_key(BIGNUM *session_key_int)
1529{
1530 int rsafail = 0;
1531
1532 if (BN_cmp(sensitive_data.server_key->rsa->n, sensitive_data.ssh1_host_key->rsa->n) > 0) {
1533 /* Server key has bigger modulus. */
1534 if (BN_num_bits(sensitive_data.server_key->rsa->n) <
1535 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1536 fatal("do_connection: %s: server_key %d < host_key %d + SSH_KEY_BITS_RESERVED %d",
1537 get_remote_ipaddr(),
1538 BN_num_bits(sensitive_data.server_key->rsa->n),
1539 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1540 SSH_KEY_BITS_RESERVED);
1541 }
1542 if (rsa_private_decrypt(session_key_int, session_key_int,
1543 sensitive_data.server_key->rsa) <= 0)
1544 rsafail++;
1545 if (rsa_private_decrypt(session_key_int, session_key_int,
1546 sensitive_data.ssh1_host_key->rsa) <= 0)
1547 rsafail++;
1548 } else {
1549 /* Host key has bigger modulus (or they are equal). */
1550 if (BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) <
1551 BN_num_bits(sensitive_data.server_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1552 fatal("do_connection: %s: host_key %d < server_key %d + SSH_KEY_BITS_RESERVED %d",
1553 get_remote_ipaddr(),
1554 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1555 BN_num_bits(sensitive_data.server_key->rsa->n),
1556 SSH_KEY_BITS_RESERVED);
1557 }
1558 if (rsa_private_decrypt(session_key_int, session_key_int,
1559 sensitive_data.ssh1_host_key->rsa) < 0)
1560 rsafail++;
1561 if (rsa_private_decrypt(session_key_int, session_key_int,
1562 sensitive_data.server_key->rsa) < 0)
1563 rsafail++;
1564 }
1565 return (rsafail);
1566}
1567/*
Damien Miller396691a2000-01-20 22:44:08 +11001568 * SSH1 key exchange
Damien Miller95def091999-11-25 00:26:21 +11001569 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001570static void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001571do_ssh1_kex(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001572{
Damien Miller95def091999-11-25 00:26:21 +11001573 int i, len;
Damien Miller7650bc62001-01-30 09:27:26 +11001574 int rsafail = 0;
Damien Miller95def091999-11-25 00:26:21 +11001575 BIGNUM *session_key_int;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001576 u_char session_key[SSH_SESSION_KEY_LENGTH];
1577 u_char cookie[8];
1578 u_int cipher_type, auth_mask, protocol_flags;
Damien Miller95def091999-11-25 00:26:21 +11001579 u_int32_t rand = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001580
Damien Miller5428f641999-11-25 11:54:57 +11001581 /*
1582 * Generate check bytes that the client must send back in the user
1583 * packet in order for it to be accepted; this is used to defy ip
1584 * spoofing attacks. Note that this only works against somebody
1585 * doing IP spoofing from a remote machine; any machine on the local
1586 * network can still see outgoing packets and catch the random
1587 * cookie. This only affects rhosts authentication, and this is one
1588 * of the reasons why it is inherently insecure.
1589 */
Damien Miller95def091999-11-25 00:26:21 +11001590 for (i = 0; i < 8; i++) {
1591 if (i % 4 == 0)
1592 rand = arc4random();
Damien Miller396691a2000-01-20 22:44:08 +11001593 cookie[i] = rand & 0xff;
Damien Miller95def091999-11-25 00:26:21 +11001594 rand >>= 8;
1595 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001596
Damien Miller5428f641999-11-25 11:54:57 +11001597 /*
1598 * Send our public key. We include in the packet 64 bits of random
1599 * data that must be matched in the reply in order to prevent IP
1600 * spoofing.
1601 */
Damien Miller95def091999-11-25 00:26:21 +11001602 packet_start(SSH_SMSG_PUBLIC_KEY);
1603 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001604 packet_put_char(cookie[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001605
Damien Miller95def091999-11-25 00:26:21 +11001606 /* Store our public server RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001607 packet_put_int(BN_num_bits(sensitive_data.server_key->rsa->n));
1608 packet_put_bignum(sensitive_data.server_key->rsa->e);
1609 packet_put_bignum(sensitive_data.server_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001610
Damien Miller95def091999-11-25 00:26:21 +11001611 /* Store our public host RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001612 packet_put_int(BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
1613 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->e);
1614 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001615
Damien Miller95def091999-11-25 00:26:21 +11001616 /* Put protocol flags. */
1617 packet_put_int(SSH_PROTOFLAG_HOST_IN_FWD_OPEN);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001618
Damien Miller95def091999-11-25 00:26:21 +11001619 /* Declare which ciphers we support. */
Damien Miller874d77b2000-10-14 16:23:11 +11001620 packet_put_int(cipher_mask_ssh1(0));
Damien Miller95def091999-11-25 00:26:21 +11001621
1622 /* Declare supported authentication types. */
1623 auth_mask = 0;
1624 if (options.rhosts_authentication)
1625 auth_mask |= 1 << SSH_AUTH_RHOSTS;
1626 if (options.rhosts_rsa_authentication)
1627 auth_mask |= 1 << SSH_AUTH_RHOSTS_RSA;
1628 if (options.rsa_authentication)
1629 auth_mask |= 1 << SSH_AUTH_RSA;
Ben Lindstromec95ed92001-07-04 04:21:14 +00001630#if defined(KRB4) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +11001631 if (options.kerberos_authentication)
1632 auth_mask |= 1 << SSH_AUTH_KERBEROS;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001633#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +00001634#if defined(AFS) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +11001635 if (options.kerberos_tgt_passing)
1636 auth_mask |= 1 << SSH_PASS_KERBEROS_TGT;
Ben Lindstromec95ed92001-07-04 04:21:14 +00001637#endif
1638#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +11001639 if (options.afs_token_passing)
1640 auth_mask |= 1 << SSH_PASS_AFS_TOKEN;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001641#endif
Ben Lindstrom551ea372001-06-05 18:56:16 +00001642 if (options.challenge_response_authentication == 1)
Damien Miller95def091999-11-25 00:26:21 +11001643 auth_mask |= 1 << SSH_AUTH_TIS;
Damien Miller95def091999-11-25 00:26:21 +11001644 if (options.password_authentication)
1645 auth_mask |= 1 << SSH_AUTH_PASSWORD;
1646 packet_put_int(auth_mask);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001647
Damien Miller95def091999-11-25 00:26:21 +11001648 /* Send the packet and wait for it to be sent. */
1649 packet_send();
1650 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001651
Damien Miller0bc1bd82000-11-13 22:57:25 +11001652 debug("Sent %d bit server key and %d bit host key.",
1653 BN_num_bits(sensitive_data.server_key->rsa->n),
1654 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001655
Damien Miller95def091999-11-25 00:26:21 +11001656 /* Read clients reply (cipher type and session key). */
Damien Millerdff50992002-01-22 23:16:32 +11001657 packet_read_expect(SSH_CMSG_SESSION_KEY);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001658
Damien Miller50945fa1999-12-09 10:31:37 +11001659 /* Get cipher type and check whether we accept this. */
Damien Miller95def091999-11-25 00:26:21 +11001660 cipher_type = packet_get_char();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001661
Damien Miller874d77b2000-10-14 16:23:11 +11001662 if (!(cipher_mask_ssh1(0) & (1 << cipher_type)))
Damien Miller50945fa1999-12-09 10:31:37 +11001663 packet_disconnect("Warning: client selects unsupported cipher.");
1664
Damien Miller95def091999-11-25 00:26:21 +11001665 /* Get check bytes from the packet. These must match those we
1666 sent earlier with the public key packet. */
1667 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001668 if (cookie[i] != packet_get_char())
Damien Miller95def091999-11-25 00:26:21 +11001669 packet_disconnect("IP Spoofing check bytes do not match.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001670
Damien Miller95def091999-11-25 00:26:21 +11001671 debug("Encryption type: %.200s", cipher_name(cipher_type));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001672
Damien Miller95def091999-11-25 00:26:21 +11001673 /* Get the encrypted integer. */
Damien Millerda755162002-01-22 23:09:22 +11001674 if ((session_key_int = BN_new()) == NULL)
1675 fatal("do_ssh1_kex: BN_new failed");
Damien Millerd432ccf2002-01-22 23:14:44 +11001676 packet_get_bignum(session_key_int);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001677
Damien Miller95def091999-11-25 00:26:21 +11001678 protocol_flags = packet_get_int();
1679 packet_set_protocol_flags(protocol_flags);
Damien Miller48b03fc2002-01-22 23:11:40 +11001680 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001681
Ben Lindstromabcb1452002-03-22 01:10:21 +00001682 /* Decrypt session_key_int using host/server keys */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001683 rsafail = PRIVSEP(ssh1_session_key(session_key_int));
1684
Damien Miller5428f641999-11-25 11:54:57 +11001685 /*
1686 * Extract session key from the decrypted integer. The key is in the
1687 * least significant 256 bits of the integer; the first byte of the
1688 * key is in the highest bits.
1689 */
Damien Miller7650bc62001-01-30 09:27:26 +11001690 if (!rsafail) {
1691 BN_mask_bits(session_key_int, sizeof(session_key) * 8);
1692 len = BN_num_bytes(session_key_int);
1693 if (len < 0 || len > sizeof(session_key)) {
1694 error("do_connection: bad session key len from %s: "
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001695 "session_key_int %d > sizeof(session_key) %lu",
1696 get_remote_ipaddr(), len, (u_long)sizeof(session_key));
Damien Miller7650bc62001-01-30 09:27:26 +11001697 rsafail++;
1698 } else {
1699 memset(session_key, 0, sizeof(session_key));
1700 BN_bn2bin(session_key_int,
1701 session_key + sizeof(session_key) - len);
Ben Lindstromeb648a72001-03-05 06:00:29 +00001702
1703 compute_session_id(session_id, cookie,
1704 sensitive_data.ssh1_host_key->rsa->n,
1705 sensitive_data.server_key->rsa->n);
1706 /*
1707 * Xor the first 16 bytes of the session key with the
1708 * session id.
1709 */
1710 for (i = 0; i < 16; i++)
1711 session_key[i] ^= session_id[i];
Damien Miller7650bc62001-01-30 09:27:26 +11001712 }
1713 }
1714 if (rsafail) {
Ben Lindstromeb648a72001-03-05 06:00:29 +00001715 int bytes = BN_num_bytes(session_key_int);
Ben Lindstrom13c5d3b2002-02-26 18:00:48 +00001716 u_char *buf = xmalloc(bytes);
Ben Lindstromeb648a72001-03-05 06:00:29 +00001717 MD5_CTX md;
1718
Damien Miller7650bc62001-01-30 09:27:26 +11001719 log("do_connection: generating a fake encryption key");
Ben Lindstromeb648a72001-03-05 06:00:29 +00001720 BN_bn2bin(session_key_int, buf);
1721 MD5_Init(&md);
1722 MD5_Update(&md, buf, bytes);
1723 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1724 MD5_Final(session_key, &md);
1725 MD5_Init(&md);
1726 MD5_Update(&md, session_key, 16);
1727 MD5_Update(&md, buf, bytes);
1728 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1729 MD5_Final(session_key + 16, &md);
1730 memset(buf, 0, bytes);
1731 xfree(buf);
Ben Lindstrom941ac822001-03-05 06:25:23 +00001732 for (i = 0; i < 16; i++)
1733 session_id[i] = session_key[i] ^ session_key[i + 16];
Damien Miller7650bc62001-01-30 09:27:26 +11001734 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001735 /* Destroy the private and public keys. No longer. */
Damien Miller3a5b0232002-03-13 13:19:42 +11001736 destroy_sensitive_data();
Ben Lindstromeb648a72001-03-05 06:00:29 +00001737
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001738 if (use_privsep)
1739 mm_ssh1_session_id(session_id);
1740
Damien Miller396691a2000-01-20 22:44:08 +11001741 /* Destroy the decrypted integer. It is no longer needed. */
1742 BN_clear_free(session_key_int);
1743
Damien Miller95def091999-11-25 00:26:21 +11001744 /* Set the session key. From this on all communications will be encrypted. */
1745 packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, cipher_type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001746
Damien Miller95def091999-11-25 00:26:21 +11001747 /* Destroy our copy of the session key. It is no longer needed. */
1748 memset(session_key, 0, sizeof(session_key));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001749
Damien Miller95def091999-11-25 00:26:21 +11001750 debug("Received session key; encryption turned on.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001751
Ben Lindstromf666fec2002-06-06 19:51:58 +00001752 /* Send an acknowledgment packet. Note that this packet is sent encrypted. */
Damien Miller95def091999-11-25 00:26:21 +11001753 packet_start(SSH_SMSG_SUCCESS);
1754 packet_send();
1755 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001756}
Damien Millerefb4afe2000-04-12 18:45:05 +10001757
1758/*
1759 * SSH2 key exchange: diffie-hellman-group1-sha1
1760 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001761static void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001762do_ssh2_kex(void)
Damien Millerefb4afe2000-04-12 18:45:05 +10001763{
Damien Millerefb4afe2000-04-12 18:45:05 +10001764 Kex *kex;
Damien Millerefb4afe2000-04-12 18:45:05 +10001765
Damien Miller78928792000-04-12 20:17:38 +10001766 if (options.ciphers != NULL) {
Damien Miller4af51302000-04-16 11:18:38 +10001767 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
Damien Miller78928792000-04-12 20:17:38 +10001768 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
1769 }
Damien Millera0ff4662001-03-30 10:49:35 +10001770 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
1771 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
1772 myproposal[PROPOSAL_ENC_ALGS_STOC] =
1773 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
1774
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001775 if (options.macs != NULL) {
1776 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
1777 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
1778 }
Ben Lindstrom23e0f662002-06-21 01:09:47 +00001779 if (!options.compression) {
1780 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
1781 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none";
1782 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001783 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = list_hostkey_types();
1784
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001785 /* start key exchange */
Ben Lindstrom238abf62001-04-04 17:52:53 +00001786 kex = kex_setup(myproposal);
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}