blob: ebb44db7562d8aeca44e26164540e03fa8241d26 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Millere4340be2000-09-16 13:29:08 +11005 * This program is the ssh daemon. It listens for connections from clients,
6 * and performs authentication, executes use commands or shell, and forwards
Damien Miller95def091999-11-25 00:26:21 +11007 * information to/from the application to the user client over an encrypted
Damien Millere4340be2000-09-16 13:29:08 +11008 * connection. This can also handle forwarding of X11, TCP/IP, and
9 * authentication agent connections.
Damien Millerefb4afe2000-04-12 18:45:05 +100010 *
Damien Millere4340be2000-09-16 13:29:08 +110011 * As far as I am concerned, the code I have written for this software
12 * can be used freely for any purpose. Any derived versions of this
13 * software must be clearly marked as such, and if the derived work is
14 * incompatible with the protocol description in the RFC file, it must be
15 * called by a name other than "ssh" or "Secure Shell".
16 *
17 * SSH2 implementation:
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000018 * Privilege Separation:
Damien Millere4340be2000-09-16 13:29:08 +110019 *
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000020 * Copyright (c) 2000, 2001, 2002 Markus Friedl. All rights reserved.
21 * Copyright (c) 2002 Niels Provos. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110022 *
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
25 * are met:
26 * 1. Redistributions of source code must retain the above copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 *
32 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
33 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
34 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
35 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
36 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
37 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
38 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
39 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
40 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
41 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110042 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100043
44#include "includes.h"
Damien Miller12c150e2003-12-17 16:31:10 +110045RCSID("$OpenBSD: sshd.c,v 1.284 2003/12/09 21:53:37 markus 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;
203struct monitor *pmonitor;
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
Damien Miller95def091999-11-25 00:26:21 +1100309 /* Log error and exit. */
Damien Millerd27a76d2002-09-27 13:22:31 +1000310 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 Lindstrom5a9d0ea2002-07-04 00:12:53 +0000323 u_int32_t rnd = 0;
Ben Lindstromeb648a72001-03-05 06:00:29 +0000324 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)
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000336 rnd = arc4random();
337 sensitive_data.ssh1_cookie[i] = rnd & 0xff;
338 rnd >>= 8;
Ben Lindstromeb648a72001-03-05 06:00:29 +0000339 }
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
Darren Tuckerfe0078a2003-07-19 19:52:28 +1000377 /* Send our protocol version identification. */
378 if (atomicio(vwrite, sock_out, server_version_string,
379 strlen(server_version_string))
380 != strlen(server_version_string)) {
381 logit("Could not write ident string to %s", get_remote_ipaddr());
Darren Tucker3e33cec2003-10-02 16:12:36 +1000382 cleanup_exit(255);
Darren Tuckerfe0078a2003-07-19 19:52:28 +1000383 }
384
385 /* Read other sides version identification. */
386 memset(buf, 0, sizeof(buf));
387 for (i = 0; i < sizeof(buf) - 1; i++) {
388 if (atomicio(read, sock_in, &buf[i], 1) != 1) {
389 logit("Did not receive identification string from %s",
390 get_remote_ipaddr());
Darren Tucker3e33cec2003-10-02 16:12:36 +1000391 cleanup_exit(255);
Damien Millerb38eff82000-04-01 11:09:21 +1000392 }
Darren Tuckerfe0078a2003-07-19 19:52:28 +1000393 if (buf[i] == '\r') {
394 buf[i] = 0;
395 /* Kludge for F-Secure Macintosh < 1.0.2 */
396 if (i == 12 &&
397 strncmp(buf, "SSH-1.5-W1.0", 12) == 0)
Damien Millerb38eff82000-04-01 11:09:21 +1000398 break;
Darren Tuckerfe0078a2003-07-19 19:52:28 +1000399 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000400 }
Darren Tuckerfe0078a2003-07-19 19:52:28 +1000401 if (buf[i] == '\n') {
402 buf[i] = 0;
403 break;
404 }
Damien Millerb38eff82000-04-01 11:09:21 +1000405 }
Darren Tuckerfe0078a2003-07-19 19:52:28 +1000406 buf[sizeof(buf) - 1] = 0;
407 client_version_string = xstrdup(buf);
Damien Millerb38eff82000-04-01 11:09:21 +1000408
409 /*
410 * Check that the versions match. In future this might accept
411 * several versions and set appropriate flags to handle them.
412 */
413 if (sscanf(client_version_string, "SSH-%d.%d-%[^\n]\n",
414 &remote_major, &remote_minor, remote_version) != 3) {
Damien Miller4af51302000-04-16 11:18:38 +1000415 s = "Protocol mismatch.\n";
Darren Tucker9f63f222003-07-03 13:46:56 +1000416 (void) atomicio(vwrite, sock_out, s, strlen(s));
Damien Millerb38eff82000-04-01 11:09:21 +1000417 close(sock_in);
418 close(sock_out);
Damien Miller996acd22003-04-09 20:59:48 +1000419 logit("Bad protocol version identification '%.100s' from %s",
Damien Millerb38eff82000-04-01 11:09:21 +1000420 client_version_string, get_remote_ipaddr());
Darren Tucker3e33cec2003-10-02 16:12:36 +1000421 cleanup_exit(255);
Damien Millerb38eff82000-04-01 11:09:21 +1000422 }
423 debug("Client protocol version %d.%d; client software version %.100s",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100424 remote_major, remote_minor, remote_version);
Damien Millerb38eff82000-04-01 11:09:21 +1000425
Damien Millerefb4afe2000-04-12 18:45:05 +1000426 compat_datafellows(remote_version);
427
Damien Millere9264972002-09-30 11:59:21 +1000428 if (datafellows & SSH_BUG_PROBE) {
Damien Miller996acd22003-04-09 20:59:48 +1000429 logit("probed from %s with %s. Don't panic.",
Damien Millere9264972002-09-30 11:59:21 +1000430 get_remote_ipaddr(), client_version_string);
Darren Tucker3e33cec2003-10-02 16:12:36 +1000431 cleanup_exit(255);
Damien Millere9264972002-09-30 11:59:21 +1000432 }
433
Damien Miller27dbe6f2001-03-19 22:36:20 +1100434 if (datafellows & SSH_BUG_SCANNER) {
Damien Miller996acd22003-04-09 20:59:48 +1000435 logit("scanned from %s with %s. Don't panic.",
Damien Miller27dbe6f2001-03-19 22:36:20 +1100436 get_remote_ipaddr(), client_version_string);
Darren Tucker3e33cec2003-10-02 16:12:36 +1000437 cleanup_exit(255);
Damien Miller27dbe6f2001-03-19 22:36:20 +1100438 }
439
Damien Miller78928792000-04-12 20:17:38 +1000440 mismatch = 0;
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000441 switch (remote_major) {
Damien Millerb38eff82000-04-01 11:09:21 +1000442 case 1:
Damien Millereba71ba2000-04-29 23:57:08 +1000443 if (remote_minor == 99) {
444 if (options.protocol & SSH_PROTO_2)
445 enable_compat20();
446 else
447 mismatch = 1;
448 break;
449 }
Damien Miller78928792000-04-12 20:17:38 +1000450 if (!(options.protocol & SSH_PROTO_1)) {
451 mismatch = 1;
452 break;
453 }
Damien Millerb38eff82000-04-01 11:09:21 +1000454 if (remote_minor < 3) {
Damien Miller37023962000-07-11 17:31:38 +1000455 packet_disconnect("Your ssh version is too old and "
Damien Millerb38eff82000-04-01 11:09:21 +1000456 "is no longer supported. Please install a newer version.");
457 } else if (remote_minor == 3) {
458 /* note that this disables agent-forwarding */
459 enable_compat13();
460 }
Damien Miller78928792000-04-12 20:17:38 +1000461 break;
Damien Millerefb4afe2000-04-12 18:45:05 +1000462 case 2:
Damien Miller78928792000-04-12 20:17:38 +1000463 if (options.protocol & SSH_PROTO_2) {
Damien Millerefb4afe2000-04-12 18:45:05 +1000464 enable_compat20();
465 break;
466 }
467 /* FALLTHROUGH */
Damien Miller4af51302000-04-16 11:18:38 +1000468 default:
Damien Miller78928792000-04-12 20:17:38 +1000469 mismatch = 1;
Damien Millerb38eff82000-04-01 11:09:21 +1000470 break;
471 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000472 chop(server_version_string);
Damien Miller78928792000-04-12 20:17:38 +1000473 debug("Local version string %.200s", server_version_string);
474
475 if (mismatch) {
476 s = "Protocol major versions differ.\n";
Darren Tucker9f63f222003-07-03 13:46:56 +1000477 (void) atomicio(vwrite, sock_out, s, strlen(s));
Damien Miller78928792000-04-12 20:17:38 +1000478 close(sock_in);
479 close(sock_out);
Damien Miller996acd22003-04-09 20:59:48 +1000480 logit("Protocol major versions differ for %s: %.200s vs. %.200s",
Damien Miller78928792000-04-12 20:17:38 +1000481 get_remote_ipaddr(),
482 server_version_string, client_version_string);
Darren Tucker3e33cec2003-10-02 16:12:36 +1000483 cleanup_exit(255);
Damien Miller78928792000-04-12 20:17:38 +1000484 }
Damien Millereba71ba2000-04-29 23:57:08 +1000485}
486
Damien Miller0bc1bd82000-11-13 22:57:25 +1100487/* Destroy the host and server keys. They will no longer be needed. */
Damien Millereba71ba2000-04-29 23:57:08 +1000488void
489destroy_sensitive_data(void)
490{
Damien Miller0bc1bd82000-11-13 22:57:25 +1100491 int i;
492
493 if (sensitive_data.server_key) {
494 key_free(sensitive_data.server_key);
495 sensitive_data.server_key = NULL;
496 }
Damien Miller9f0f5c62001-12-21 14:45:46 +1100497 for (i = 0; i < options.num_host_key_files; i++) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100498 if (sensitive_data.host_keys[i]) {
499 key_free(sensitive_data.host_keys[i]);
500 sensitive_data.host_keys[i] = NULL;
501 }
502 }
503 sensitive_data.ssh1_host_key = NULL;
Ben Lindstromeb648a72001-03-05 06:00:29 +0000504 memset(sensitive_data.ssh1_cookie, 0, SSH_SESSION_KEY_LENGTH);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100505}
Damien Miller0bc1bd82000-11-13 22:57:25 +1100506
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000507/* Demote private to public keys for network child */
508void
509demote_sensitive_data(void)
510{
511 Key *tmp;
512 int i;
513
514 if (sensitive_data.server_key) {
515 tmp = key_demote(sensitive_data.server_key);
516 key_free(sensitive_data.server_key);
517 sensitive_data.server_key = tmp;
518 }
519
520 for (i = 0; i < options.num_host_key_files; i++) {
521 if (sensitive_data.host_keys[i]) {
522 tmp = key_demote(sensitive_data.host_keys[i]);
523 key_free(sensitive_data.host_keys[i]);
524 sensitive_data.host_keys[i] = tmp;
525 if (tmp->type == KEY_RSA1)
526 sensitive_data.ssh1_host_key = tmp;
527 }
528 }
529
530 /* We do not clear ssh1_host key and cookie. XXX - Okay Niels? */
531}
532
Ben Lindstrom08105192002-03-22 02:50:06 +0000533static void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000534privsep_preauth_child(void)
535{
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000536 u_int32_t rnd[256];
Ben Lindstrom810af962002-07-04 00:11:40 +0000537 gid_t gidset[1];
Ben Lindstromc7431342002-03-22 03:11:49 +0000538 struct passwd *pw;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000539 int i;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000540
541 /* Enable challenge-response authentication for privilege separation */
542 privsep_challenge_enable();
543
544 for (i = 0; i < 256; i++)
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +0000545 rnd[i] = arc4random();
546 RAND_seed(rnd, sizeof(rnd));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000547
548 /* Demote the private keys to public keys. */
549 demote_sensitive_data();
550
Ben Lindstromc7431342002-03-22 03:11:49 +0000551 if ((pw = getpwnam(SSH_PRIVSEP_USER)) == NULL)
Damien Miller0150c652002-04-24 09:49:09 +1000552 fatal("Privilege separation user %s does not exist",
553 SSH_PRIVSEP_USER);
Ben Lindstromc7431342002-03-22 03:11:49 +0000554 memset(pw->pw_passwd, 0, strlen(pw->pw_passwd));
555 endpwent();
556
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000557 /* Change our root directory */
Ben Lindstrom7a7edf72002-03-22 02:42:37 +0000558 if (chroot(_PATH_PRIVSEP_CHROOT_DIR) == -1)
559 fatal("chroot(\"%s\"): %s", _PATH_PRIVSEP_CHROOT_DIR,
560 strerror(errno));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000561 if (chdir("/") == -1)
Ben Lindstrom1ee9ec32002-03-22 03:14:45 +0000562 fatal("chdir(\"/\"): %s", strerror(errno));
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000563
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000564 /* Drop our privileges */
Ben Lindstromc7431342002-03-22 03:11:49 +0000565 debug3("privsep user:group %u:%u", (u_int)pw->pw_uid,
566 (u_int)pw->pw_gid);
Ben Lindstromfbcc3f72002-06-25 23:24:18 +0000567#if 0
568 /* XXX not ready, to heavy after chroot */
Ben Lindstromc7431342002-03-22 03:11:49 +0000569 do_setusercontext(pw);
Ben Lindstromfbcc3f72002-06-25 23:24:18 +0000570#else
571 gidset[0] = pw->pw_gid;
Ben Lindstromfbcc3f72002-06-25 23:24:18 +0000572 if (setgroups(1, gidset) < 0)
573 fatal("setgroups: %.100s", strerror(errno));
574 permanently_set_uid(pw);
575#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000576}
577
Darren Tucker3e33cec2003-10-02 16:12:36 +1000578static int
579privsep_preauth(Authctxt *authctxt)
Ben Lindstrom943481c2002-03-22 03:43:46 +0000580{
Ben Lindstrom943481c2002-03-22 03:43:46 +0000581 int status;
582 pid_t pid;
583
584 /* Set up unprivileged child process to deal with network data */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000585 pmonitor = monitor_init();
Ben Lindstrom943481c2002-03-22 03:43:46 +0000586 /* Store a pointer to the kex for later rekeying */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000587 pmonitor->m_pkex = &xxx_kex;
Ben Lindstrom943481c2002-03-22 03:43:46 +0000588
589 pid = fork();
590 if (pid == -1) {
591 fatal("fork of unprivileged child failed");
592 } else if (pid != 0) {
Ben Lindstromce0f6342002-06-11 16:42:49 +0000593 debug2("Network child is on pid %ld", (long)pid);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000594
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000595 close(pmonitor->m_recvfd);
Darren Tucker3e33cec2003-10-02 16:12:36 +1000596 monitor_child_preauth(authctxt, pmonitor);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000597 close(pmonitor->m_sendfd);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000598
599 /* Sync memory */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000600 monitor_sync(pmonitor);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000601
602 /* Wait for the child's exit status */
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000603 while (waitpid(pid, &status, 0) < 0)
604 if (errno != EINTR)
605 break;
Darren Tucker3e33cec2003-10-02 16:12:36 +1000606 return (1);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000607 } else {
608 /* child */
609
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000610 close(pmonitor->m_sendfd);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000611
612 /* Demote the child */
613 if (getuid() == 0 || geteuid() == 0)
614 privsep_preauth_child();
Ben Lindstromf90f58d2002-03-26 01:53:03 +0000615 setproctitle("%s", "[net]");
Ben Lindstrom943481c2002-03-22 03:43:46 +0000616 }
Darren Tucker3e33cec2003-10-02 16:12:36 +1000617 return (0);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000618}
619
Ben Lindstrom08105192002-03-22 02:50:06 +0000620static void
Ben Lindstrom943481c2002-03-22 03:43:46 +0000621privsep_postauth(Authctxt *authctxt)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000622{
Tim Rice9dd30812002-07-07 13:43:36 -0700623#ifdef DISABLE_FD_PASSING
Tim Rice8eff3192002-06-25 15:35:15 -0700624 if (1) {
625#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000626 if (authctxt->pw->pw_uid == 0 || options.use_login) {
Tim Rice8eff3192002-06-25 15:35:15 -0700627#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000628 /* File descriptor passing is broken or root login */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000629 monitor_apply_keystate(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000630 use_privsep = 0;
631 return;
632 }
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000633
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000634 /* Authentication complete */
635 alarm(0);
636 if (startup_pipe != -1) {
637 close(startup_pipe);
638 startup_pipe = -1;
639 }
640
641 /* New socket pair */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000642 monitor_reinit(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000643
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000644 pmonitor->m_pid = fork();
645 if (pmonitor->m_pid == -1)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000646 fatal("fork of unprivileged child failed");
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000647 else if (pmonitor->m_pid != 0) {
Ben Lindstromce0f6342002-06-11 16:42:49 +0000648 debug2("User child is on pid %ld", (long)pmonitor->m_pid);
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000649 close(pmonitor->m_recvfd);
650 monitor_child_postauth(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000651
652 /* NEVERREACHED */
653 exit(0);
654 }
655
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000656 close(pmonitor->m_sendfd);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000657
658 /* Demote the private keys to public keys. */
659 demote_sensitive_data();
660
661 /* Drop privileges */
662 do_setusercontext(authctxt->pw);
663
664 /* It is safe now to apply the key state */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000665 monitor_apply_keystate(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000666}
667
Ben Lindstrombba81212001-06-25 05:01:22 +0000668static char *
Damien Miller0bc1bd82000-11-13 22:57:25 +1100669list_hostkey_types(void)
670{
Damien Miller0e3b8722002-01-22 23:26:38 +1100671 Buffer b;
Damien Millerf58b58c2003-11-17 21:18:23 +1100672 const char *p;
673 char *ret;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100674 int i;
Damien Miller0e3b8722002-01-22 23:26:38 +1100675
676 buffer_init(&b);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100677 for (i = 0; i < options.num_host_key_files; i++) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100678 Key *key = sensitive_data.host_keys[i];
679 if (key == NULL)
680 continue;
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000681 switch (key->type) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100682 case KEY_RSA:
683 case KEY_DSA:
Damien Miller0e3b8722002-01-22 23:26:38 +1100684 if (buffer_len(&b) > 0)
685 buffer_append(&b, ",", 1);
686 p = key_ssh_name(key);
687 buffer_append(&b, p, strlen(p));
Damien Miller0bc1bd82000-11-13 22:57:25 +1100688 break;
689 }
690 }
Damien Miller0e3b8722002-01-22 23:26:38 +1100691 buffer_append(&b, "\0", 1);
Damien Millerf58b58c2003-11-17 21:18:23 +1100692 ret = xstrdup(buffer_ptr(&b));
Damien Miller0e3b8722002-01-22 23:26:38 +1100693 buffer_free(&b);
Damien Millerf58b58c2003-11-17 21:18:23 +1100694 debug("list_hostkey_types: %s", ret);
695 return ret;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100696}
697
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000698Key *
Damien Miller0bc1bd82000-11-13 22:57:25 +1100699get_hostkey_by_type(int type)
700{
701 int i;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000702
Damien Miller9f0f5c62001-12-21 14:45:46 +1100703 for (i = 0; i < options.num_host_key_files; i++) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100704 Key *key = sensitive_data.host_keys[i];
705 if (key != NULL && key->type == type)
706 return key;
707 }
708 return NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000709}
710
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000711Key *
712get_hostkey_by_index(int ind)
713{
714 if (ind < 0 || ind >= options.num_host_key_files)
715 return (NULL);
716 return (sensitive_data.host_keys[ind]);
717}
718
719int
720get_hostkey_index(Key *key)
721{
722 int i;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000723
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000724 for (i = 0; i < options.num_host_key_files; i++) {
725 if (key == sensitive_data.host_keys[i])
726 return (i);
727 }
728 return (-1);
729}
730
Damien Miller942da032000-08-18 13:59:06 +1000731/*
732 * returns 1 if connection should be dropped, 0 otherwise.
733 * dropping starts at connection #max_startups_begin with a probability
734 * of (max_startups_rate/100). the probability increases linearly until
735 * all connections are dropped for startups > max_startups
736 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000737static int
Damien Miller942da032000-08-18 13:59:06 +1000738drop_connection(int startups)
739{
740 double p, r;
741
742 if (startups < options.max_startups_begin)
743 return 0;
744 if (startups >= options.max_startups)
745 return 1;
746 if (options.max_startups_rate == 100)
747 return 1;
748
749 p = 100 - options.max_startups_rate;
750 p *= startups - options.max_startups_begin;
751 p /= (double) (options.max_startups - options.max_startups_begin);
752 p += options.max_startups_rate;
753 p /= 100.0;
754 r = arc4random() / (double) UINT_MAX;
755
756 debug("drop_connection: p %g, r %g", p, r);
757 return (r < p) ? 1 : 0;
758}
759
Ben Lindstromade03f62001-12-06 18:22:17 +0000760static void
761usage(void)
762{
Darren Tucker4a250542003-10-03 17:57:24 +1000763 fprintf(stderr, "sshd version %s, %s\n",
764 SSH_VERSION, SSLeay_version(SSLEAY_VERSION));
Ben Lindstromade03f62001-12-06 18:22:17 +0000765 fprintf(stderr, "Usage: %s [options]\n", __progname);
766 fprintf(stderr, "Options:\n");
767 fprintf(stderr, " -f file Configuration file (default %s)\n", _PATH_SERVER_CONFIG_FILE);
768 fprintf(stderr, " -d Debugging mode (multiple -d means more debugging)\n");
769 fprintf(stderr, " -i Started from inetd\n");
770 fprintf(stderr, " -D Do not fork into daemon mode\n");
771 fprintf(stderr, " -t Only test configuration file and keys\n");
772 fprintf(stderr, " -q Quiet (no logging)\n");
773 fprintf(stderr, " -p port Listen on the specified port (default: 22)\n");
774 fprintf(stderr, " -k seconds Regenerate server key every this many seconds (default: 3600)\n");
775 fprintf(stderr, " -g seconds Grace period for authentication (default: 600)\n");
776 fprintf(stderr, " -b bits Size of server RSA key (default: 768 bits)\n");
777 fprintf(stderr, " -h file File from which to read host key (default: %s)\n",
778 _PATH_HOST_KEY_FILE);
779 fprintf(stderr, " -u len Maximum hostname length for utmp recording\n");
780 fprintf(stderr, " -4 Use IPv4 only\n");
781 fprintf(stderr, " -6 Use IPv6 only\n");
782 fprintf(stderr, " -o option Process the option as if it was read from a configuration file.\n");
783 exit(1);
784}
785
Damien Miller95def091999-11-25 00:26:21 +1100786/*
787 * Main program for the daemon.
788 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000789int
790main(int ac, char **av)
791{
Damien Miller95def091999-11-25 00:26:21 +1100792 extern char *optarg;
793 extern int optind;
Damien Miller37023962000-07-11 17:31:38 +1000794 int opt, sock_in = 0, sock_out = 0, newsock, j, i, fdsetsz, on = 1;
Damien Miller166fca82000-04-20 07:42:21 +1000795 pid_t pid;
Damien Miller34132e52000-01-14 15:45:46 +1100796 socklen_t fromlen;
Damien Miller34132e52000-01-14 15:45:46 +1100797 fd_set *fdset;
798 struct sockaddr_storage from;
Damien Miller95def091999-11-25 00:26:21 +1100799 const char *remote_ip;
800 int remote_port;
Damien Miller95def091999-11-25 00:26:21 +1100801 FILE *f;
Damien Miller34132e52000-01-14 15:45:46 +1100802 struct addrinfo *ai;
803 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
Damien Millerb9997192003-12-17 16:29:22 +1100804 char *line;
Damien Miller34132e52000-01-14 15:45:46 +1100805 int listen_sock, maxfd;
Damien Miller37023962000-07-11 17:31:38 +1000806 int startup_p[2];
807 int startups = 0;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000808 Key *key;
Darren Tucker3e33cec2003-10-02 16:12:36 +1000809 Authctxt *authctxt;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000810 int ret, key_used = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000811
Kevin Steves0ea1d9d2002-04-25 18:17:04 +0000812#ifdef HAVE_SECUREWARE
813 (void)set_auth_parameters(ac, av);
814#endif
Damien Miller59d3d5b2003-08-22 09:34:41 +1000815 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000816 init_rng();
817
Damien Millera8ed44b2003-01-10 09:53:12 +1100818 /* Save argv. Duplicate so setproctitle emulation doesn't clobber it */
Damien Millerb8c656e2000-06-28 15:22:41 +1000819 saved_argc = ac;
Damien Miller04cb5362003-05-15 21:29:10 +1000820 saved_argv = xmalloc(sizeof(*saved_argv) * (ac + 1));
Damien Millera8ed44b2003-01-10 09:53:12 +1100821 for (i = 0; i < ac; i++)
822 saved_argv[i] = xstrdup(av[i]);
Damien Miller04cb5362003-05-15 21:29:10 +1000823 saved_argv[i] = NULL;
Damien Millera8ed44b2003-01-10 09:53:12 +1100824
825#ifndef HAVE_SETPROCTITLE
826 /* Prepare for later setproctitle emulation */
827 compat_init_setproctitle(ac, av);
Damien Millerf2e3e9d2003-06-02 12:15:54 +1000828 av = saved_argv;
Damien Millera8ed44b2003-01-10 09:53:12 +1100829#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000830
Damien Miller95def091999-11-25 00:26:21 +1100831 /* Initialize configuration options to their default values. */
832 initialize_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000833
Damien Miller95def091999-11-25 00:26:21 +1100834 /* Parse command-line arguments. */
Darren Tuckerfe0078a2003-07-19 19:52:28 +1000835 while ((opt = getopt(ac, av, "f:p:b:k:h:g:u:o:dDeiqtQ46")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100836 switch (opt) {
Damien Miller34132e52000-01-14 15:45:46 +1100837 case '4':
838 IPv4or6 = AF_INET;
839 break;
840 case '6':
841 IPv4or6 = AF_INET6;
842 break;
Damien Miller95def091999-11-25 00:26:21 +1100843 case 'f':
844 config_file_name = optarg;
845 break;
846 case 'd':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000847 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100848 debug_flag = 1;
849 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000850 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3)
Damien Millere4340be2000-09-16 13:29:08 +1100851 options.log_level++;
Damien Miller95def091999-11-25 00:26:21 +1100852 break;
Ben Lindstromc72745a2000-12-02 19:03:54 +0000853 case 'D':
854 no_daemon_flag = 1;
855 break;
Ben Lindstrom9fce9f02001-04-11 23:10:09 +0000856 case 'e':
857 log_stderr = 1;
858 break;
Damien Miller95def091999-11-25 00:26:21 +1100859 case 'i':
860 inetd_flag = 1;
861 break;
862 case 'Q':
Ben Lindstromd5390202001-01-29 08:07:43 +0000863 /* ignored */
Damien Miller95def091999-11-25 00:26:21 +1100864 break;
865 case 'q':
866 options.log_level = SYSLOG_LEVEL_QUIET;
867 break;
868 case 'b':
869 options.server_key_bits = atoi(optarg);
870 break;
871 case 'p':
Damien Miller34132e52000-01-14 15:45:46 +1100872 options.ports_from_cmdline = 1;
Damien Millere4340be2000-09-16 13:29:08 +1100873 if (options.num_ports >= MAX_PORTS) {
874 fprintf(stderr, "too many ports.\n");
875 exit(1);
876 }
Ben Lindstrom19066a12001-04-12 23:39:26 +0000877 options.ports[options.num_ports++] = a2port(optarg);
878 if (options.ports[options.num_ports-1] == 0) {
879 fprintf(stderr, "Bad port number.\n");
880 exit(1);
881 }
Damien Miller95def091999-11-25 00:26:21 +1100882 break;
883 case 'g':
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000884 if ((options.login_grace_time = convtime(optarg)) == -1) {
885 fprintf(stderr, "Invalid login grace time.\n");
886 exit(1);
887 }
Damien Miller95def091999-11-25 00:26:21 +1100888 break;
889 case 'k':
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000890 if ((options.key_regeneration_time = convtime(optarg)) == -1) {
891 fprintf(stderr, "Invalid key regeneration interval.\n");
892 exit(1);
893 }
Damien Miller95def091999-11-25 00:26:21 +1100894 break;
895 case 'h':
Damien Miller0bc1bd82000-11-13 22:57:25 +1100896 if (options.num_host_key_files >= MAX_HOSTKEYS) {
897 fprintf(stderr, "too many host keys.\n");
898 exit(1);
899 }
900 options.host_key_files[options.num_host_key_files++] = optarg;
Damien Miller95def091999-11-25 00:26:21 +1100901 break;
Ben Lindstrom794325a2001-08-06 21:09:07 +0000902 case 't':
903 test_flag = 1;
904 break;
Damien Miller942da032000-08-18 13:59:06 +1000905 case 'u':
906 utmp_len = atoi(optarg);
Ben Lindstrom41daec72002-07-23 21:15:13 +0000907 if (utmp_len > MAXHOSTNAMELEN) {
908 fprintf(stderr, "Invalid utmp length.\n");
909 exit(1);
910 }
Damien Miller942da032000-08-18 13:59:06 +1000911 break;
Ben Lindstromade03f62001-12-06 18:22:17 +0000912 case 'o':
Damien Millerb9997192003-12-17 16:29:22 +1100913 line = xstrdup(optarg);
914 if (process_server_config_line(&options, line,
Ben Lindstromade03f62001-12-06 18:22:17 +0000915 "command-line", 0) != 0)
Damien Miller9f0f5c62001-12-21 14:45:46 +1100916 exit(1);
Damien Millerb9997192003-12-17 16:29:22 +1100917 xfree(line);
Ben Lindstromade03f62001-12-06 18:22:17 +0000918 break;
Damien Miller95def091999-11-25 00:26:21 +1100919 case '?':
920 default:
Ben Lindstromade03f62001-12-06 18:22:17 +0000921 usage();
922 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000923 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000924 }
Ben Lindstrom425fb022001-03-29 00:31:20 +0000925 SSLeay_add_all_algorithms();
Ben Lindstrom908afed2001-10-03 17:34:59 +0000926 channel_set_af(IPv4or6);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000927
Damien Miller34132e52000-01-14 15:45:46 +1100928 /*
929 * Force logging to stderr until we have loaded the private host
930 * key (unless started from inetd)
931 */
Kevin Stevesec84dc12000-12-13 17:45:15 +0000932 log_init(__progname,
Damien Miller5aa5d782002-02-08 22:01:54 +1100933 options.log_level == SYSLOG_LEVEL_NOT_SET ?
934 SYSLOG_LEVEL_INFO : options.log_level,
935 options.log_facility == SYSLOG_FACILITY_NOT_SET ?
936 SYSLOG_FACILITY_AUTH : options.log_facility,
Ben Lindstromc2faa4a2002-11-09 15:50:03 +0000937 log_stderr || !inetd_flag);
Damien Miller34132e52000-01-14 15:45:46 +1100938
Tim Rice81ed5182002-09-25 17:38:46 -0700939#ifdef _UNICOS
Ben Lindstrom6db66ff2001-08-06 23:29:16 +0000940 /* Cray can define user privs drop all prives now!
941 * Not needed on PRIV_SU systems!
942 */
943 drop_cray_privs();
944#endif
945
Damien Miller60bc5172001-03-19 09:38:15 +1100946 seed_rng();
947
Damien Miller95def091999-11-25 00:26:21 +1100948 /* Read server configuration options from the configuration file. */
949 read_server_config(&options, config_file_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000950
Damien Miller95def091999-11-25 00:26:21 +1100951 /* Fill in default values for those options not explicitly set. */
952 fill_default_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000953
Damien Miller95def091999-11-25 00:26:21 +1100954 /* Check that there are no remaining arguments. */
955 if (optind < ac) {
956 fprintf(stderr, "Extra argument %s.\n", av[optind]);
957 exit(1);
958 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000959
Damien Miller95def091999-11-25 00:26:21 +1100960 debug("sshd version %.100s", SSH_VERSION);
Damien Miller2ccf6611999-11-15 15:25:10 +1100961
Damien Miller0bc1bd82000-11-13 22:57:25 +1100962 /* load private host keys */
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000963 sensitive_data.host_keys = xmalloc(options.num_host_key_files *
964 sizeof(Key *));
Damien Miller9f0f5c62001-12-21 14:45:46 +1100965 for (i = 0; i < options.num_host_key_files; i++)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000966 sensitive_data.host_keys[i] = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100967 sensitive_data.server_key = NULL;
968 sensitive_data.ssh1_host_key = NULL;
969 sensitive_data.have_ssh1_key = 0;
970 sensitive_data.have_ssh2_key = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000971
Damien Miller9f0f5c62001-12-21 14:45:46 +1100972 for (i = 0; i < options.num_host_key_files; i++) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000973 key = key_load_private(options.host_key_files[i], "", NULL);
974 sensitive_data.host_keys[i] = key;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100975 if (key == NULL) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000976 error("Could not load host key: %s",
977 options.host_key_files[i]);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000978 sensitive_data.host_keys[i] = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100979 continue;
980 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000981 switch (key->type) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100982 case KEY_RSA1:
983 sensitive_data.ssh1_host_key = key;
984 sensitive_data.have_ssh1_key = 1;
985 break;
986 case KEY_RSA:
987 case KEY_DSA:
988 sensitive_data.have_ssh2_key = 1;
989 break;
990 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000991 debug("private host key: #%d type %d %s", i, key->type,
992 key_type(key));
Damien Miller0bc1bd82000-11-13 22:57:25 +1100993 }
994 if ((options.protocol & SSH_PROTO_1) && !sensitive_data.have_ssh1_key) {
Damien Miller996acd22003-04-09 20:59:48 +1000995 logit("Disabling protocol version 1. Could not load host key");
Damien Millereba71ba2000-04-29 23:57:08 +1000996 options.protocol &= ~SSH_PROTO_1;
997 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100998 if ((options.protocol & SSH_PROTO_2) && !sensitive_data.have_ssh2_key) {
Damien Miller996acd22003-04-09 20:59:48 +1000999 logit("Disabling protocol version 2. Could not load host key");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001000 options.protocol &= ~SSH_PROTO_2;
Damien Millereba71ba2000-04-29 23:57:08 +10001001 }
Kevin Stevesadf74cd2001-02-05 14:22:50 +00001002 if (!(options.protocol & (SSH_PROTO_1|SSH_PROTO_2))) {
Damien Miller996acd22003-04-09 20:59:48 +10001003 logit("sshd: no hostkeys available -- exiting.");
Damien Miller95def091999-11-25 00:26:21 +11001004 exit(1);
1005 }
Damien Miller95def091999-11-25 00:26:21 +11001006
Damien Millereba71ba2000-04-29 23:57:08 +10001007 /* Check certain values for sanity. */
1008 if (options.protocol & SSH_PROTO_1) {
1009 if (options.server_key_bits < 512 ||
1010 options.server_key_bits > 32768) {
1011 fprintf(stderr, "Bad server key size.\n");
1012 exit(1);
1013 }
1014 /*
1015 * Check that server and host key lengths differ sufficiently. This
1016 * is necessary to make double encryption work with rsaref. Oh, I
1017 * hate software patents. I dont know if this can go? Niels
1018 */
1019 if (options.server_key_bits >
Ben Lindstrom822b6342002-06-23 21:38:49 +00001020 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) -
1021 SSH_KEY_BITS_RESERVED && options.server_key_bits <
1022 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) +
1023 SSH_KEY_BITS_RESERVED) {
Damien Millereba71ba2000-04-29 23:57:08 +10001024 options.server_key_bits =
Ben Lindstrom822b6342002-06-23 21:38:49 +00001025 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) +
1026 SSH_KEY_BITS_RESERVED;
Damien Millereba71ba2000-04-29 23:57:08 +10001027 debug("Forcing server key to %d bits to make it differ from host key.",
1028 options.server_key_bits);
1029 }
1030 }
1031
Ben Lindstroma26ea632002-06-06 20:46:25 +00001032 if (use_privsep) {
1033 struct passwd *pw;
1034 struct stat st;
1035
1036 if ((pw = getpwnam(SSH_PRIVSEP_USER)) == NULL)
1037 fatal("Privilege separation user %s does not exist",
1038 SSH_PRIVSEP_USER);
1039 if ((stat(_PATH_PRIVSEP_CHROOT_DIR, &st) == -1) ||
1040 (S_ISDIR(st.st_mode) == 0))
1041 fatal("Missing privilege separation directory: %s",
1042 _PATH_PRIVSEP_CHROOT_DIR);
Ben Lindstrom59627352002-06-27 18:02:21 +00001043
1044#ifdef HAVE_CYGWIN
1045 if (check_ntsec(_PATH_PRIVSEP_CHROOT_DIR) &&
1046 (st.st_uid != getuid () ||
1047 (st.st_mode & (S_IWGRP|S_IWOTH)) != 0))
1048#else
Ben Lindstrom2dfacb32002-06-23 00:33:47 +00001049 if (st.st_uid != 0 || (st.st_mode & (S_IWGRP|S_IWOTH)) != 0)
Ben Lindstrom59627352002-06-27 18:02:21 +00001050#endif
Damien Miller180fc5b2003-02-24 11:50:18 +11001051 fatal("%s must be owned by root and not group or "
1052 "world-writable.", _PATH_PRIVSEP_CHROOT_DIR);
Ben Lindstroma26ea632002-06-06 20:46:25 +00001053 }
1054
Ben Lindstrom794325a2001-08-06 21:09:07 +00001055 /* Configuration looks good, so exit if in test mode. */
1056 if (test_flag)
1057 exit(0);
1058
Damien Miller87aea252002-05-10 12:20:24 +10001059 /*
1060 * Clear out any supplemental groups we may have inherited. This
1061 * prevents inadvertent creation of files with bad modes (in the
Damien Millera8e06ce2003-11-21 23:48:55 +11001062 * portable version at least, it's certainly possible for PAM
1063 * to create a file, and we can't control the code in every
Damien Miller87aea252002-05-10 12:20:24 +10001064 * module which might be used).
1065 */
1066 if (setgroups(0, NULL) < 0)
1067 debug("setgroups() failed: %.200s", strerror(errno));
1068
Damien Millereba71ba2000-04-29 23:57:08 +10001069 /* Initialize the log (it is reinitialized below in case we forked). */
Damien Miller95def091999-11-25 00:26:21 +11001070 if (debug_flag && !inetd_flag)
1071 log_stderr = 1;
Kevin Stevesec84dc12000-12-13 17:45:15 +00001072 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +11001073
Damien Millereba71ba2000-04-29 23:57:08 +10001074 /*
1075 * If not in debugging mode, and not started from inetd, disconnect
1076 * from the controlling terminal, and fork. The original process
1077 * exits.
1078 */
Ben Lindstromc72745a2000-12-02 19:03:54 +00001079 if (!(debug_flag || inetd_flag || no_daemon_flag)) {
Damien Miller95def091999-11-25 00:26:21 +11001080#ifdef TIOCNOTTY
1081 int fd;
1082#endif /* TIOCNOTTY */
1083 if (daemon(0, 0) < 0)
1084 fatal("daemon() failed: %.200s", strerror(errno));
1085
1086 /* Disconnect from the controlling tty. */
1087#ifdef TIOCNOTTY
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001088 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
Damien Miller95def091999-11-25 00:26:21 +11001089 if (fd >= 0) {
1090 (void) ioctl(fd, TIOCNOTTY, NULL);
1091 close(fd);
1092 }
1093#endif /* TIOCNOTTY */
1094 }
1095 /* Reinitialize the log (because of the fork above). */
Kevin Stevesec84dc12000-12-13 17:45:15 +00001096 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +11001097
Damien Miller95def091999-11-25 00:26:21 +11001098 /* Initialize the random number generator. */
1099 arc4random_stir();
1100
1101 /* Chdir to the root directory so that the current disk can be
1102 unmounted if desired. */
1103 chdir("/");
Damien Miller9f0f5c62001-12-21 14:45:46 +11001104
Darren Tuckerecc9d462004-02-06 16:04:08 +11001105#ifndef HAVE_CYGWIN
1106 /* Clear environment */
1107 environ[0] = NULL;
1108#endif
1109
Ben Lindstromde71cda2001-03-24 00:43:26 +00001110 /* ignore SIGPIPE */
1111 signal(SIGPIPE, SIG_IGN);
Damien Miller95def091999-11-25 00:26:21 +11001112
Damien Miller95def091999-11-25 00:26:21 +11001113 /* Start listening for a socket, unless started from inetd. */
1114 if (inetd_flag) {
Ben Lindstrom206941f2001-04-15 14:27:16 +00001115 int s1;
Damien Miller95def091999-11-25 00:26:21 +11001116 s1 = dup(0); /* Make sure descriptors 0, 1, and 2 are in use. */
Ben Lindstrom206941f2001-04-15 14:27:16 +00001117 dup(s1);
Damien Miller95def091999-11-25 00:26:21 +11001118 sock_in = dup(0);
1119 sock_out = dup(1);
Damien Miller994cf142000-07-21 10:19:44 +10001120 startup_pipe = -1;
Damien Millereba71ba2000-04-29 23:57:08 +10001121 /*
1122 * We intentionally do not close the descriptors 0, 1, and 2
1123 * as our code for setting the descriptors won\'t work if
1124 * ttyfd happens to be one of those.
1125 */
Damien Miller95def091999-11-25 00:26:21 +11001126 debug("inetd sockets after dupping: %d, %d", sock_in, sock_out);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001127 if (options.protocol & SSH_PROTO_1)
Ben Lindstromca42d5f2001-03-09 18:25:32 +00001128 generate_ephemeral_server_key();
Damien Miller95def091999-11-25 00:26:21 +11001129 } else {
Damien Miller34132e52000-01-14 15:45:46 +11001130 for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
1131 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1132 continue;
1133 if (num_listen_socks >= MAX_LISTEN_SOCKS)
1134 fatal("Too many listen sockets. "
1135 "Enlarge MAX_LISTEN_SOCKS");
1136 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
1137 ntop, sizeof(ntop), strport, sizeof(strport),
1138 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
1139 error("getnameinfo failed");
1140 continue;
1141 }
1142 /* Create socket for listening. */
Damien Miller2372ace2003-05-14 13:42:23 +10001143 listen_sock = socket(ai->ai_family, ai->ai_socktype,
1144 ai->ai_protocol);
Damien Miller34132e52000-01-14 15:45:46 +11001145 if (listen_sock < 0) {
1146 /* kernel may not support ipv6 */
1147 verbose("socket: %.100s", strerror(errno));
1148 continue;
1149 }
Damien Miller34132e52000-01-14 15:45:46 +11001150 /*
Damien Millere1383ce2002-09-19 11:49:37 +10001151 * Set socket options.
1152 * Allow local port reuse in TIME_WAIT.
Damien Miller34132e52000-01-14 15:45:46 +11001153 */
Damien Millere1383ce2002-09-19 11:49:37 +10001154 if (setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
1155 &on, sizeof(on)) == -1)
1156 error("setsockopt SO_REUSEADDR: %s", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001157
Damien Miller34132e52000-01-14 15:45:46 +11001158 debug("Bind to port %s on %s.", strport, ntop);
Damien Miller95def091999-11-25 00:26:21 +11001159
Damien Miller34132e52000-01-14 15:45:46 +11001160 /* Bind the socket to the desired port. */
Damien Miller0a4e27d2001-02-18 12:36:39 +11001161 if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1162 if (!ai->ai_next)
1163 error("Bind to port %s on %s failed: %.200s.",
1164 strport, ntop, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +11001165 close(listen_sock);
1166 continue;
1167 }
1168 listen_socks[num_listen_socks] = listen_sock;
1169 num_listen_socks++;
Damien Miller95def091999-11-25 00:26:21 +11001170
Damien Miller34132e52000-01-14 15:45:46 +11001171 /* Start listening on the port. */
Damien Miller996acd22003-04-09 20:59:48 +10001172 logit("Server listening on %s port %s.", ntop, strport);
Darren Tucker3175eb92003-12-09 19:15:11 +11001173 if (listen(listen_sock, SSH_LISTEN_BACKLOG) < 0)
Damien Miller34132e52000-01-14 15:45:46 +11001174 fatal("listen: %.100s", strerror(errno));
1175
Damien Miller95def091999-11-25 00:26:21 +11001176 }
Damien Miller34132e52000-01-14 15:45:46 +11001177 freeaddrinfo(options.listen_addrs);
1178
1179 if (!num_listen_socks)
1180 fatal("Cannot bind any address.");
1181
Ben Lindstrom98097862001-06-25 05:10:20 +00001182 if (options.protocol & SSH_PROTO_1)
1183 generate_ephemeral_server_key();
1184
1185 /*
1186 * Arrange to restart on SIGHUP. The handler needs
1187 * listen_sock.
1188 */
1189 signal(SIGHUP, sighup_handler);
1190
1191 signal(SIGTERM, sigterm_handler);
1192 signal(SIGQUIT, sigterm_handler);
1193
1194 /* Arrange SIGCHLD to be caught. */
1195 signal(SIGCHLD, main_sigchld_handler);
1196
1197 /* Write out the pid file after the sigterm handler is setup */
Damien Miller95def091999-11-25 00:26:21 +11001198 if (!debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +11001199 /*
Ben Lindstrom7ad97102000-12-06 01:42:49 +00001200 * Record our pid in /var/run/sshd.pid to make it
1201 * easier to kill the correct sshd. We don't want to
1202 * do this before the bind above because the bind will
Damien Miller5428f641999-11-25 11:54:57 +11001203 * fail if there already is a daemon, and this will
1204 * overwrite any old pid in the file.
1205 */
Damien Millerbac2d8a2000-09-05 16:13:06 +11001206 f = fopen(options.pid_file, "wb");
Darren Tuckere5327042003-07-03 13:40:44 +10001207 if (f == NULL) {
1208 error("Couldn't create pid file \"%s\": %s",
1209 options.pid_file, strerror(errno));
1210 } else {
Ben Lindstromce0f6342002-06-11 16:42:49 +00001211 fprintf(f, "%ld\n", (long) getpid());
Damien Miller95def091999-11-25 00:26:21 +11001212 fclose(f);
1213 }
1214 }
Damien Miller95def091999-11-25 00:26:21 +11001215
Damien Miller34132e52000-01-14 15:45:46 +11001216 /* setup fd set for listen */
Damien Miller37023962000-07-11 17:31:38 +10001217 fdset = NULL;
Damien Miller34132e52000-01-14 15:45:46 +11001218 maxfd = 0;
1219 for (i = 0; i < num_listen_socks; i++)
1220 if (listen_socks[i] > maxfd)
1221 maxfd = listen_socks[i];
Damien Miller37023962000-07-11 17:31:38 +10001222 /* pipes connected to unauthenticated childs */
1223 startup_pipes = xmalloc(options.max_startups * sizeof(int));
1224 for (i = 0; i < options.max_startups; i++)
1225 startup_pipes[i] = -1;
Damien Miller34132e52000-01-14 15:45:46 +11001226
Damien Miller5428f641999-11-25 11:54:57 +11001227 /*
1228 * Stay listening for connections until the system crashes or
1229 * the daemon is killed with a signal.
1230 */
Damien Miller95def091999-11-25 00:26:21 +11001231 for (;;) {
1232 if (received_sighup)
1233 sighup_restart();
Damien Miller37023962000-07-11 17:31:38 +10001234 if (fdset != NULL)
1235 xfree(fdset);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001236 fdsetsz = howmany(maxfd+1, NFDBITS) * sizeof(fd_mask);
Damien Miller37023962000-07-11 17:31:38 +10001237 fdset = (fd_set *)xmalloc(fdsetsz);
Damien Miller34132e52000-01-14 15:45:46 +11001238 memset(fdset, 0, fdsetsz);
Damien Miller37023962000-07-11 17:31:38 +10001239
Damien Miller34132e52000-01-14 15:45:46 +11001240 for (i = 0; i < num_listen_socks; i++)
1241 FD_SET(listen_socks[i], fdset);
Damien Miller37023962000-07-11 17:31:38 +10001242 for (i = 0; i < options.max_startups; i++)
1243 if (startup_pipes[i] != -1)
1244 FD_SET(startup_pipes[i], fdset);
1245
1246 /* Wait in select until there is a connection. */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001247 ret = select(maxfd+1, fdset, NULL, NULL, NULL);
1248 if (ret < 0 && errno != EINTR)
1249 error("select: %.100s", strerror(errno));
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001250 if (received_sigterm) {
Damien Miller996acd22003-04-09 20:59:48 +10001251 logit("Received signal %d; terminating.",
Ben Lindstromf8f065b2001-12-06 17:52:16 +00001252 (int) received_sigterm);
Ben Lindstromec46e0b2001-06-09 01:27:31 +00001253 close_listen_socks();
1254 unlink(options.pid_file);
1255 exit(255);
1256 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001257 if (key_used && key_do_regen) {
Ben Lindstromca42d5f2001-03-09 18:25:32 +00001258 generate_ephemeral_server_key();
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001259 key_used = 0;
1260 key_do_regen = 0;
Damien Miller34132e52000-01-14 15:45:46 +11001261 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001262 if (ret < 0)
1263 continue;
1264
Damien Miller37023962000-07-11 17:31:38 +10001265 for (i = 0; i < options.max_startups; i++)
1266 if (startup_pipes[i] != -1 &&
1267 FD_ISSET(startup_pipes[i], fdset)) {
1268 /*
1269 * the read end of the pipe is ready
1270 * if the child has closed the pipe
Ben Lindstrom4dccfa52000-12-28 16:40:05 +00001271 * after successful authentication
Damien Miller37023962000-07-11 17:31:38 +10001272 * or if the child has died
1273 */
1274 close(startup_pipes[i]);
1275 startup_pipes[i] = -1;
1276 startups--;
1277 }
Damien Miller34132e52000-01-14 15:45:46 +11001278 for (i = 0; i < num_listen_socks; i++) {
1279 if (!FD_ISSET(listen_socks[i], fdset))
Damien Miller95def091999-11-25 00:26:21 +11001280 continue;
Damien Miller37023962000-07-11 17:31:38 +10001281 fromlen = sizeof(from);
1282 newsock = accept(listen_socks[i], (struct sockaddr *)&from,
1283 &fromlen);
1284 if (newsock < 0) {
1285 if (errno != EINTR && errno != EWOULDBLOCK)
1286 error("accept: %.100s", strerror(errno));
1287 continue;
1288 }
Damien Miller942da032000-08-18 13:59:06 +10001289 if (drop_connection(startups) == 1) {
1290 debug("drop connection #%d", startups);
Damien Miller37023962000-07-11 17:31:38 +10001291 close(newsock);
1292 continue;
1293 }
1294 if (pipe(startup_p) == -1) {
1295 close(newsock);
1296 continue;
1297 }
1298
1299 for (j = 0; j < options.max_startups; j++)
1300 if (startup_pipes[j] == -1) {
1301 startup_pipes[j] = startup_p[0];
1302 if (maxfd < startup_p[0])
1303 maxfd = startup_p[0];
1304 startups++;
1305 break;
1306 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001307
Damien Miller5428f641999-11-25 11:54:57 +11001308 /*
Damien Miller37023962000-07-11 17:31:38 +10001309 * Got connection. Fork a child to handle it, unless
1310 * we are in debugging mode.
Damien Miller5428f641999-11-25 11:54:57 +11001311 */
Damien Miller37023962000-07-11 17:31:38 +10001312 if (debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +11001313 /*
Damien Miller37023962000-07-11 17:31:38 +10001314 * In debugging mode. Close the listening
1315 * socket, and start processing the
1316 * connection without forking.
Damien Miller5428f641999-11-25 11:54:57 +11001317 */
Damien Miller37023962000-07-11 17:31:38 +10001318 debug("Server will not fork when running in debugging mode.");
Damien Miller34132e52000-01-14 15:45:46 +11001319 close_listen_socks();
Damien Miller95def091999-11-25 00:26:21 +11001320 sock_in = newsock;
1321 sock_out = newsock;
Damien Miller4d97ba22000-07-11 18:15:50 +10001322 startup_pipe = -1;
Damien Miller182ee6e2000-07-12 09:45:27 +10001323 pid = getpid();
Damien Miller95def091999-11-25 00:26:21 +11001324 break;
Damien Miller37023962000-07-11 17:31:38 +10001325 } else {
1326 /*
1327 * Normal production daemon. Fork, and have
1328 * the child process the connection. The
1329 * parent continues listening.
1330 */
1331 if ((pid = fork()) == 0) {
1332 /*
1333 * Child. Close the listening and max_startup
1334 * sockets. Start using the accepted socket.
1335 * Reinitialize logging (since our pid has
1336 * changed). We break out of the loop to handle
1337 * the connection.
1338 */
1339 startup_pipe = startup_p[1];
Ben Lindstromd84df982001-12-06 16:35:40 +00001340 close_startup_pipes();
Damien Miller37023962000-07-11 17:31:38 +10001341 close_listen_socks();
1342 sock_in = newsock;
1343 sock_out = newsock;
Kevin Stevesec84dc12000-12-13 17:45:15 +00001344 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller37023962000-07-11 17:31:38 +10001345 break;
1346 }
Damien Miller95def091999-11-25 00:26:21 +11001347 }
Damien Miller37023962000-07-11 17:31:38 +10001348
1349 /* Parent. Stay in the loop. */
1350 if (pid < 0)
1351 error("fork: %.100s", strerror(errno));
1352 else
Ben Lindstromce0f6342002-06-11 16:42:49 +00001353 debug("Forked child %ld.", (long)pid);
Damien Miller37023962000-07-11 17:31:38 +10001354
1355 close(startup_p[1]);
1356
1357 /* Mark that the key has been used (it was "given" to the child). */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001358 if ((options.protocol & SSH_PROTO_1) &&
1359 key_used == 0) {
1360 /* Schedule server key regeneration alarm. */
Ben Lindstrom5ade9ab2003-08-25 01:16:21 +00001361 signal(SIGALRM, key_regeneration_alarm);
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001362 alarm(options.key_regeneration_time);
1363 key_used = 1;
1364 }
Damien Miller37023962000-07-11 17:31:38 +10001365
1366 arc4random_stir();
1367
1368 /* Close the new socket (the child is now taking care of it). */
1369 close(newsock);
Damien Miller95def091999-11-25 00:26:21 +11001370 }
Damien Miller34132e52000-01-14 15:45:46 +11001371 /* child process check (or debug mode) */
1372 if (num_listen_socks < 0)
1373 break;
Damien Miller95def091999-11-25 00:26:21 +11001374 }
1375 }
1376
1377 /* This is the child processing a new connection. */
1378
Damien Miller5428f641999-11-25 11:54:57 +11001379 /*
Ben Lindstrom17401b62002-05-15 16:17:56 +00001380 * Create a new session and process group since the 4.4BSD
1381 * setlogin() affects the entire process group. We don't
1382 * want the child to be able to affect the parent.
1383 */
Darren Tuckerc437cda2003-05-10 17:05:46 +10001384#if !defined(SSHD_ACQUIRES_CTTY)
Damien Miller933cc8f2003-03-10 11:38:10 +11001385 /*
Darren Tuckerc437cda2003-05-10 17:05:46 +10001386 * If setsid is called, on some platforms sshd will later acquire a
1387 * controlling terminal which will result in "could not set
1388 * controlling tty" errors.
Damien Miller933cc8f2003-03-10 11:38:10 +11001389 */
Ben Lindstrom57f08002002-06-23 00:37:10 +00001390 if (!debug_flag && !inetd_flag && setsid() < 0)
Ben Lindstrom17401b62002-05-15 16:17:56 +00001391 error("setsid: %.100s", strerror(errno));
Kevin Stevesc5041ac2002-05-21 17:50:21 +00001392#endif
Ben Lindstrom17401b62002-05-15 16:17:56 +00001393
1394 /*
Damien Miller5428f641999-11-25 11:54:57 +11001395 * Disable the key regeneration alarm. We will not regenerate the
1396 * key since we are no longer in a position to give it to anyone. We
1397 * will not restart on SIGHUP since it no longer makes sense.
1398 */
Damien Miller95def091999-11-25 00:26:21 +11001399 alarm(0);
1400 signal(SIGALRM, SIG_DFL);
1401 signal(SIGHUP, SIG_DFL);
1402 signal(SIGTERM, SIG_DFL);
1403 signal(SIGQUIT, SIG_DFL);
1404 signal(SIGCHLD, SIG_DFL);
Damien Miller4e0f5e12000-08-29 11:05:50 +11001405 signal(SIGINT, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001406
Damien Miller12c150e2003-12-17 16:31:10 +11001407 /* Set SO_KEEPALIVE if requested. */
1408 if (options.tcp_keep_alive &&
Ben Lindstrom733a2352002-03-05 01:31:28 +00001409 setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, &on,
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001410 sizeof(on)) < 0)
1411 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
1412
Damien Miller5428f641999-11-25 11:54:57 +11001413 /*
1414 * Register our connection. This turns encryption off because we do
1415 * not have a key.
1416 */
Damien Miller95def091999-11-25 00:26:21 +11001417 packet_set_connection(sock_in, sock_out);
1418
1419 remote_port = get_remote_port();
1420 remote_ip = get_remote_ipaddr();
1421
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001422#ifdef LIBWRAP
Damien Miller6a4a4b92001-11-12 11:07:11 +11001423 /* Check whether logins are denied from this host. */
Damien Miller95def091999-11-25 00:26:21 +11001424 {
1425 struct request_info req;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001426
Ben Lindstromce89dac2001-09-12 16:58:04 +00001427 request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, 0);
Damien Miller95def091999-11-25 00:26:21 +11001428 fromhost(&req);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001429
Damien Miller95def091999-11-25 00:26:21 +11001430 if (!hosts_access(&req)) {
Damien Miller6a4a4b92001-11-12 11:07:11 +11001431 debug("Connection refused by tcp wrapper");
Ben Lindstrom7de696e2001-03-29 00:45:12 +00001432 refuse(&req);
Damien Miller6a4a4b92001-11-12 11:07:11 +11001433 /* NOTREACHED */
1434 fatal("libwrap refuse returns");
Damien Miller95def091999-11-25 00:26:21 +11001435 }
Damien Miller95def091999-11-25 00:26:21 +11001436 }
Damien Miller34132e52000-01-14 15:45:46 +11001437#endif /* LIBWRAP */
Damien Miller6a4a4b92001-11-12 11:07:11 +11001438
Damien Miller95def091999-11-25 00:26:21 +11001439 /* Log the connection. */
1440 verbose("Connection from %.500s port %d", remote_ip, remote_port);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001441
Damien Miller5428f641999-11-25 11:54:57 +11001442 /*
1443 * We don\'t want to listen forever unless the other side
1444 * successfully authenticates itself. So we set up an alarm which is
1445 * cleared after successful authentication. A limit of zero
1446 * indicates no limit. Note that we don\'t set the alarm in debugging
1447 * mode; it is just annoying to have the server exit just when you
1448 * are about to discover the bug.
1449 */
Ben Lindstrom5ade9ab2003-08-25 01:16:21 +00001450 signal(SIGALRM, grace_alarm_handler);
Damien Miller95def091999-11-25 00:26:21 +11001451 if (!debug_flag)
1452 alarm(options.login_grace_time);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001453
Damien Millerb38eff82000-04-01 11:09:21 +10001454 sshd_exchange_identification(sock_in, sock_out);
Darren Tuckerec960f22003-08-13 20:37:05 +10001455
Damien Miller95def091999-11-25 00:26:21 +11001456 packet_set_nonblocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001457
Damien Millera8e06ce2003-11-21 23:48:55 +11001458 /* prepare buffers to collect authentication messages */
Darren Tuckerb9aa0a02003-07-08 22:59:59 +10001459 buffer_init(&loginmsg);
1460
Darren Tucker3e33cec2003-10-02 16:12:36 +10001461 /* allocate authentication context */
1462 authctxt = xmalloc(sizeof(*authctxt));
1463 memset(authctxt, 0, sizeof(*authctxt));
1464
1465 /* XXX global for cleanup, access from other modules */
1466 the_authctxt = authctxt;
1467
Ben Lindstrom943481c2002-03-22 03:43:46 +00001468 if (use_privsep)
Darren Tucker3e33cec2003-10-02 16:12:36 +10001469 if (privsep_preauth(authctxt) == 1)
Ben Lindstrom943481c2002-03-22 03:43:46 +00001470 goto authenticated;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001471
Damien Miller396691a2000-01-20 22:44:08 +11001472 /* perform the key exchange */
Damien Miller396691a2000-01-20 22:44:08 +11001473 /* authenticate user and start session */
Damien Millerefb4afe2000-04-12 18:45:05 +10001474 if (compat20) {
1475 do_ssh2_kex();
Darren Tucker3e33cec2003-10-02 16:12:36 +10001476 do_authentication2(authctxt);
Damien Millerefb4afe2000-04-12 18:45:05 +10001477 } else {
1478 do_ssh1_kex();
Darren Tucker3e33cec2003-10-02 16:12:36 +10001479 do_authentication(authctxt);
Damien Millerefb4afe2000-04-12 18:45:05 +10001480 }
Ben Lindstrom943481c2002-03-22 03:43:46 +00001481 /*
1482 * If we use privilege separation, the unprivileged child transfers
1483 * the current keystate and exits
1484 */
1485 if (use_privsep) {
Ben Lindstrom7339b2a2002-05-15 16:25:01 +00001486 mm_send_keystate(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001487 exit(0);
Ben Lindstrom943481c2002-03-22 03:43:46 +00001488 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001489
1490 authenticated:
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001491 /*
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001492 * In privilege separation, we fork another child and prepare
1493 * file descriptor passing.
1494 */
1495 if (use_privsep) {
Ben Lindstrom943481c2002-03-22 03:43:46 +00001496 privsep_postauth(authctxt);
1497 /* the monitor process [priv] will not return */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001498 if (!compat20)
1499 destroy_sensitive_data();
1500 }
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +00001501
Darren Tucker3e33cec2003-10-02 16:12:36 +10001502 /* Start session. */
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +00001503 do_authenticated(authctxt);
1504
Damien Miller3a5b0232002-03-13 13:19:42 +11001505 /* The connection has been terminated. */
1506 verbose("Closing connection to %.100s", remote_ip);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001507
Damien Millerbeb4ba51999-12-28 15:09:35 +11001508#ifdef USE_PAM
Damien Miller4e448a32003-05-14 15:11:48 +10001509 if (options.use_pam)
1510 finish_pam();
Damien Millerbeb4ba51999-12-28 15:09:35 +11001511#endif /* USE_PAM */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001512
Damien Miller95def091999-11-25 00:26:21 +11001513 packet_close();
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001514
1515 if (use_privsep)
1516 mm_terminate();
1517
Damien Miller95def091999-11-25 00:26:21 +11001518 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001519}
1520
Damien Miller95def091999-11-25 00:26:21 +11001521/*
Ben Lindstromabcb1452002-03-22 01:10:21 +00001522 * Decrypt session_key_int using our private server key and private host key
1523 * (key with larger modulus first).
1524 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001525int
Ben Lindstromabcb1452002-03-22 01:10:21 +00001526ssh1_session_key(BIGNUM *session_key_int)
1527{
1528 int rsafail = 0;
1529
1530 if (BN_cmp(sensitive_data.server_key->rsa->n, sensitive_data.ssh1_host_key->rsa->n) > 0) {
1531 /* Server key has bigger modulus. */
1532 if (BN_num_bits(sensitive_data.server_key->rsa->n) <
1533 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1534 fatal("do_connection: %s: server_key %d < host_key %d + SSH_KEY_BITS_RESERVED %d",
1535 get_remote_ipaddr(),
1536 BN_num_bits(sensitive_data.server_key->rsa->n),
1537 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1538 SSH_KEY_BITS_RESERVED);
1539 }
1540 if (rsa_private_decrypt(session_key_int, session_key_int,
1541 sensitive_data.server_key->rsa) <= 0)
1542 rsafail++;
1543 if (rsa_private_decrypt(session_key_int, session_key_int,
1544 sensitive_data.ssh1_host_key->rsa) <= 0)
1545 rsafail++;
1546 } else {
1547 /* Host key has bigger modulus (or they are equal). */
1548 if (BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) <
1549 BN_num_bits(sensitive_data.server_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1550 fatal("do_connection: %s: host_key %d < server_key %d + SSH_KEY_BITS_RESERVED %d",
1551 get_remote_ipaddr(),
1552 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1553 BN_num_bits(sensitive_data.server_key->rsa->n),
1554 SSH_KEY_BITS_RESERVED);
1555 }
1556 if (rsa_private_decrypt(session_key_int, session_key_int,
1557 sensitive_data.ssh1_host_key->rsa) < 0)
1558 rsafail++;
1559 if (rsa_private_decrypt(session_key_int, session_key_int,
1560 sensitive_data.server_key->rsa) < 0)
1561 rsafail++;
1562 }
1563 return (rsafail);
1564}
1565/*
Damien Miller396691a2000-01-20 22:44:08 +11001566 * SSH1 key exchange
Damien Miller95def091999-11-25 00:26:21 +11001567 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001568static void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001569do_ssh1_kex(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001570{
Damien Miller95def091999-11-25 00:26:21 +11001571 int i, len;
Damien Miller7650bc62001-01-30 09:27:26 +11001572 int rsafail = 0;
Damien Miller95def091999-11-25 00:26:21 +11001573 BIGNUM *session_key_int;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001574 u_char session_key[SSH_SESSION_KEY_LENGTH];
1575 u_char cookie[8];
1576 u_int cipher_type, auth_mask, protocol_flags;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001577 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001578
Damien Miller5428f641999-11-25 11:54:57 +11001579 /*
1580 * Generate check bytes that the client must send back in the user
1581 * packet in order for it to be accepted; this is used to defy ip
1582 * spoofing attacks. Note that this only works against somebody
1583 * doing IP spoofing from a remote machine; any machine on the local
1584 * network can still see outgoing packets and catch the random
1585 * cookie. This only affects rhosts authentication, and this is one
1586 * of the reasons why it is inherently insecure.
1587 */
Damien Miller95def091999-11-25 00:26:21 +11001588 for (i = 0; i < 8; i++) {
1589 if (i % 4 == 0)
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001590 rnd = arc4random();
1591 cookie[i] = rnd & 0xff;
1592 rnd >>= 8;
Damien Miller95def091999-11-25 00:26:21 +11001593 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001594
Damien Miller5428f641999-11-25 11:54:57 +11001595 /*
1596 * Send our public key. We include in the packet 64 bits of random
1597 * data that must be matched in the reply in order to prevent IP
1598 * spoofing.
1599 */
Damien Miller95def091999-11-25 00:26:21 +11001600 packet_start(SSH_SMSG_PUBLIC_KEY);
1601 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001602 packet_put_char(cookie[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001603
Damien Miller95def091999-11-25 00:26:21 +11001604 /* Store our public server RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001605 packet_put_int(BN_num_bits(sensitive_data.server_key->rsa->n));
1606 packet_put_bignum(sensitive_data.server_key->rsa->e);
1607 packet_put_bignum(sensitive_data.server_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001608
Damien Miller95def091999-11-25 00:26:21 +11001609 /* Store our public host RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001610 packet_put_int(BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
1611 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->e);
1612 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001613
Damien Miller95def091999-11-25 00:26:21 +11001614 /* Put protocol flags. */
1615 packet_put_int(SSH_PROTOFLAG_HOST_IN_FWD_OPEN);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001616
Damien Miller95def091999-11-25 00:26:21 +11001617 /* Declare which ciphers we support. */
Damien Miller874d77b2000-10-14 16:23:11 +11001618 packet_put_int(cipher_mask_ssh1(0));
Damien Miller95def091999-11-25 00:26:21 +11001619
1620 /* Declare supported authentication types. */
1621 auth_mask = 0;
Damien Miller95def091999-11-25 00:26:21 +11001622 if (options.rhosts_rsa_authentication)
1623 auth_mask |= 1 << SSH_AUTH_RHOSTS_RSA;
1624 if (options.rsa_authentication)
1625 auth_mask |= 1 << SSH_AUTH_RSA;
Ben Lindstrom551ea372001-06-05 18:56:16 +00001626 if (options.challenge_response_authentication == 1)
Damien Miller95def091999-11-25 00:26:21 +11001627 auth_mask |= 1 << SSH_AUTH_TIS;
Damien Miller95def091999-11-25 00:26:21 +11001628 if (options.password_authentication)
1629 auth_mask |= 1 << SSH_AUTH_PASSWORD;
1630 packet_put_int(auth_mask);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001631
Damien Miller95def091999-11-25 00:26:21 +11001632 /* Send the packet and wait for it to be sent. */
1633 packet_send();
1634 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001635
Damien Miller0bc1bd82000-11-13 22:57:25 +11001636 debug("Sent %d bit server key and %d bit host key.",
1637 BN_num_bits(sensitive_data.server_key->rsa->n),
1638 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001639
Damien Miller95def091999-11-25 00:26:21 +11001640 /* Read clients reply (cipher type and session key). */
Damien Millerdff50992002-01-22 23:16:32 +11001641 packet_read_expect(SSH_CMSG_SESSION_KEY);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001642
Damien Miller50945fa1999-12-09 10:31:37 +11001643 /* Get cipher type and check whether we accept this. */
Damien Miller95def091999-11-25 00:26:21 +11001644 cipher_type = packet_get_char();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001645
Damien Miller874d77b2000-10-14 16:23:11 +11001646 if (!(cipher_mask_ssh1(0) & (1 << cipher_type)))
Damien Miller50945fa1999-12-09 10:31:37 +11001647 packet_disconnect("Warning: client selects unsupported cipher.");
1648
Damien Miller95def091999-11-25 00:26:21 +11001649 /* Get check bytes from the packet. These must match those we
1650 sent earlier with the public key packet. */
1651 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001652 if (cookie[i] != packet_get_char())
Damien Miller95def091999-11-25 00:26:21 +11001653 packet_disconnect("IP Spoofing check bytes do not match.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001654
Damien Miller95def091999-11-25 00:26:21 +11001655 debug("Encryption type: %.200s", cipher_name(cipher_type));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001656
Damien Miller95def091999-11-25 00:26:21 +11001657 /* Get the encrypted integer. */
Damien Millerda755162002-01-22 23:09:22 +11001658 if ((session_key_int = BN_new()) == NULL)
1659 fatal("do_ssh1_kex: BN_new failed");
Damien Millerd432ccf2002-01-22 23:14:44 +11001660 packet_get_bignum(session_key_int);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001661
Damien Miller95def091999-11-25 00:26:21 +11001662 protocol_flags = packet_get_int();
1663 packet_set_protocol_flags(protocol_flags);
Damien Miller48b03fc2002-01-22 23:11:40 +11001664 packet_check_eom();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001665
Ben Lindstromabcb1452002-03-22 01:10:21 +00001666 /* Decrypt session_key_int using host/server keys */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001667 rsafail = PRIVSEP(ssh1_session_key(session_key_int));
1668
Damien Miller5428f641999-11-25 11:54:57 +11001669 /*
1670 * Extract session key from the decrypted integer. The key is in the
1671 * least significant 256 bits of the integer; the first byte of the
1672 * key is in the highest bits.
1673 */
Damien Miller7650bc62001-01-30 09:27:26 +11001674 if (!rsafail) {
1675 BN_mask_bits(session_key_int, sizeof(session_key) * 8);
1676 len = BN_num_bytes(session_key_int);
1677 if (len < 0 || len > sizeof(session_key)) {
1678 error("do_connection: bad session key len from %s: "
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001679 "session_key_int %d > sizeof(session_key) %lu",
1680 get_remote_ipaddr(), len, (u_long)sizeof(session_key));
Damien Miller7650bc62001-01-30 09:27:26 +11001681 rsafail++;
1682 } else {
1683 memset(session_key, 0, sizeof(session_key));
1684 BN_bn2bin(session_key_int,
1685 session_key + sizeof(session_key) - len);
Ben Lindstromeb648a72001-03-05 06:00:29 +00001686
1687 compute_session_id(session_id, cookie,
1688 sensitive_data.ssh1_host_key->rsa->n,
1689 sensitive_data.server_key->rsa->n);
1690 /*
1691 * Xor the first 16 bytes of the session key with the
1692 * session id.
1693 */
1694 for (i = 0; i < 16; i++)
1695 session_key[i] ^= session_id[i];
Damien Miller7650bc62001-01-30 09:27:26 +11001696 }
1697 }
1698 if (rsafail) {
Ben Lindstromeb648a72001-03-05 06:00:29 +00001699 int bytes = BN_num_bytes(session_key_int);
Ben Lindstrom13c5d3b2002-02-26 18:00:48 +00001700 u_char *buf = xmalloc(bytes);
Ben Lindstromeb648a72001-03-05 06:00:29 +00001701 MD5_CTX md;
1702
Damien Miller996acd22003-04-09 20:59:48 +10001703 logit("do_connection: generating a fake encryption key");
Ben Lindstromeb648a72001-03-05 06:00:29 +00001704 BN_bn2bin(session_key_int, buf);
1705 MD5_Init(&md);
1706 MD5_Update(&md, buf, bytes);
1707 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1708 MD5_Final(session_key, &md);
1709 MD5_Init(&md);
1710 MD5_Update(&md, session_key, 16);
1711 MD5_Update(&md, buf, bytes);
1712 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1713 MD5_Final(session_key + 16, &md);
1714 memset(buf, 0, bytes);
1715 xfree(buf);
Ben Lindstrom941ac822001-03-05 06:25:23 +00001716 for (i = 0; i < 16; i++)
1717 session_id[i] = session_key[i] ^ session_key[i + 16];
Damien Miller7650bc62001-01-30 09:27:26 +11001718 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001719 /* Destroy the private and public keys. No longer. */
Damien Miller3a5b0232002-03-13 13:19:42 +11001720 destroy_sensitive_data();
Ben Lindstromeb648a72001-03-05 06:00:29 +00001721
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001722 if (use_privsep)
1723 mm_ssh1_session_id(session_id);
1724
Damien Miller396691a2000-01-20 22:44:08 +11001725 /* Destroy the decrypted integer. It is no longer needed. */
1726 BN_clear_free(session_key_int);
1727
Damien Miller95def091999-11-25 00:26:21 +11001728 /* Set the session key. From this on all communications will be encrypted. */
1729 packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, cipher_type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001730
Damien Miller95def091999-11-25 00:26:21 +11001731 /* Destroy our copy of the session key. It is no longer needed. */
1732 memset(session_key, 0, sizeof(session_key));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001733
Damien Miller95def091999-11-25 00:26:21 +11001734 debug("Received session key; encryption turned on.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001735
Ben Lindstromf666fec2002-06-06 19:51:58 +00001736 /* Send an acknowledgment packet. Note that this packet is sent encrypted. */
Damien Miller95def091999-11-25 00:26:21 +11001737 packet_start(SSH_SMSG_SUCCESS);
1738 packet_send();
1739 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001740}
Damien Millerefb4afe2000-04-12 18:45:05 +10001741
1742/*
1743 * SSH2 key exchange: diffie-hellman-group1-sha1
1744 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001745static void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001746do_ssh2_kex(void)
Damien Millerefb4afe2000-04-12 18:45:05 +10001747{
Damien Millerefb4afe2000-04-12 18:45:05 +10001748 Kex *kex;
Damien Millerefb4afe2000-04-12 18:45:05 +10001749
Damien Miller78928792000-04-12 20:17:38 +10001750 if (options.ciphers != NULL) {
Damien Miller4af51302000-04-16 11:18:38 +10001751 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
Damien Miller78928792000-04-12 20:17:38 +10001752 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
1753 }
Damien Millera0ff4662001-03-30 10:49:35 +10001754 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
1755 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
1756 myproposal[PROPOSAL_ENC_ALGS_STOC] =
1757 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
1758
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001759 if (options.macs != NULL) {
1760 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
1761 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
1762 }
Ben Lindstrom23e0f662002-06-21 01:09:47 +00001763 if (!options.compression) {
1764 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
1765 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none";
1766 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001767 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = list_hostkey_types();
1768
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001769 /* start key exchange */
Ben Lindstrom238abf62001-04-04 17:52:53 +00001770 kex = kex_setup(myproposal);
Damien Miller8e7fb332003-02-24 12:03:03 +11001771 kex->kex[KEX_DH_GRP1_SHA1] = kexdh_server;
1772 kex->kex[KEX_DH_GEX_SHA1] = kexgex_server;
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +00001773 kex->server = 1;
1774 kex->client_version_string=client_version_string;
1775 kex->server_version_string=server_version_string;
1776 kex->load_host_key=&get_hostkey_by_type;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001777 kex->host_key_index=&get_hostkey_index;
Damien Millerefb4afe2000-04-12 18:45:05 +10001778
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001779 xxx_kex = kex;
1780
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001781 dispatch_run(DISPATCH_BLOCK, &kex->done, kex);
Damien Miller874d77b2000-10-14 16:23:11 +11001782
Ben Lindstrom2d90e002001-04-04 02:00:54 +00001783 session_id2 = kex->session_id;
1784 session_id2_len = kex->session_id_len;
1785
Damien Miller874d77b2000-10-14 16:23:11 +11001786#ifdef DEBUG_KEXDH
1787 /* send 1st encrypted/maced/compressed message */
1788 packet_start(SSH2_MSG_IGNORE);
1789 packet_put_cstring("markus");
1790 packet_send();
1791 packet_write_wait();
1792#endif
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +00001793 debug("KEX done");
Damien Millerefb4afe2000-04-12 18:45:05 +10001794}
Darren Tucker3e33cec2003-10-02 16:12:36 +10001795
1796/* server specific fatal cleanup */
1797void
1798cleanup_exit(int i)
1799{
1800 if (the_authctxt)
1801 do_cleanup(the_authctxt);
1802 _exit(i);
1803}