blob: dd5d7ab2ca61db2327b28eb22fe3499f0a8d5a41 [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:
18 *
19 * Copyright (c) 2000 Markus Friedl. All rights reserved.
20 *
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
23 * are met:
24 * 1. Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the distribution.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110040 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041
42#include "includes.h"
Ben Lindstromec95ed92001-07-04 04:21:14 +000043RCSID("$OpenBSD: sshd.c,v 1.202 2001/06/26 16:15:25 dugsong Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100044
Ben Lindstrom226cfa02001-01-22 05:34:40 +000045#include <openssl/dh.h>
46#include <openssl/bn.h>
47#include <openssl/hmac.h>
48
49#include "ssh.h"
50#include "ssh1.h"
51#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100052#include "xmalloc.h"
53#include "rsa.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000054#include "sshpty.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100055#include "packet.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100056#include "mpaux.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000057#include "log.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100058#include "servconf.h"
59#include "uidswap.h"
60#include "compat.h"
Damien Millerb38eff82000-04-01 11:09:21 +100061#include "buffer.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000062#include "cipher.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100063#include "kex.h"
Damien Millerb38eff82000-04-01 11:09:21 +100064#include "key.h"
Damien Miller874d77b2000-10-14 16:23:11 +110065#include "dh.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100066#include "myproposal.h"
Damien Millereba71ba2000-04-29 23:57:08 +100067#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000068#include "pathnames.h"
69#include "atomicio.h"
70#include "canohost.h"
71#include "auth.h"
72#include "misc.h"
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000073#include "dispatch.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074
75#ifdef LIBWRAP
76#include <tcpd.h>
77#include <syslog.h>
78int allow_severity = LOG_INFO;
79int deny_severity = LOG_WARNING;
80#endif /* LIBWRAP */
81
82#ifndef O_NOCTTY
83#define O_NOCTTY 0
84#endif
85
Ben Lindstrom49a79c02000-11-17 03:47:20 +000086#ifdef HAVE___PROGNAME
87extern char *__progname;
88#else
89char *__progname;
90#endif
91
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092/* Server configuration options. */
93ServerOptions options;
94
95/* Name of the server configuration file. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +000096char *config_file_name = _PATH_SERVER_CONFIG_FILE;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100097
Damien Miller4af51302000-04-16 11:18:38 +100098/*
Damien Miller34132e52000-01-14 15:45:46 +110099 * Flag indicating whether IPv4 or IPv6. This can be set on the command line.
100 * Default value is AF_UNSPEC means both IPv4 and IPv6.
101 */
Damien Miller7d80e342000-01-19 14:36:49 +1100102#ifdef IPV4_DEFAULT
103int IPv4or6 = AF_INET;
104#else
Damien Miller34132e52000-01-14 15:45:46 +1100105int IPv4or6 = AF_UNSPEC;
Damien Miller7d80e342000-01-19 14:36:49 +1100106#endif
Damien Miller34132e52000-01-14 15:45:46 +1100107
Damien Miller95def091999-11-25 00:26:21 +1100108/*
109 * Debug mode flag. This can be set on the command line. If debug
110 * mode is enabled, extra debugging output will be sent to the system
111 * log, the daemon will not go to background, and will exit after processing
112 * the first connection.
113 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000114int debug_flag = 0;
115
116/* Flag indicating that the daemon is being started from inetd. */
117int inetd_flag = 0;
118
Ben Lindstromc72745a2000-12-02 19:03:54 +0000119/* Flag indicating that sshd should not detach and become a daemon. */
120int no_daemon_flag = 0;
121
Damien Miller5ce662a1999-11-11 17:57:39 +1100122/* debug goes to stderr unless inetd_flag is set */
123int log_stderr = 0;
124
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000125/* Saved arguments to main(). */
126char **saved_argv;
Damien Millerb8c656e2000-06-28 15:22:41 +1000127int saved_argc;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000128
Damien Miller5428f641999-11-25 11:54:57 +1100129/*
Damien Miller34132e52000-01-14 15:45:46 +1100130 * The sockets that the server is listening; this is used in the SIGHUP
131 * signal handler.
Damien Miller5428f641999-11-25 11:54:57 +1100132 */
Damien Miller34132e52000-01-14 15:45:46 +1100133#define MAX_LISTEN_SOCKS 16
134int listen_socks[MAX_LISTEN_SOCKS];
135int num_listen_socks = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000136
Damien Miller5428f641999-11-25 11:54:57 +1100137/*
138 * the client's version string, passed by sshd2 in compat mode. if != NULL,
139 * sshd will skip the version-number exchange
140 */
Damien Miller95def091999-11-25 00:26:21 +1100141char *client_version_string = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000142char *server_version_string = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000143
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000144/* for rekeying XXX fixme */
145Kex *xxx_kex;
146
Damien Miller5428f641999-11-25 11:54:57 +1100147/*
148 * Any really sensitive data in the application is contained in this
149 * structure. The idea is that this structure could be locked into memory so
150 * that the pages do not get written into swap. However, there are some
151 * problems. The private key contains BIGNUMs, and we do not (in principle)
152 * have access to the internals of them, and locking just the structure is
153 * not very useful. Currently, memory locking is not implemented.
154 */
Damien Miller95def091999-11-25 00:26:21 +1100155struct {
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000156 Key *server_key; /* ephemeral server key */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100157 Key *ssh1_host_key; /* ssh1 host key */
158 Key **host_keys; /* all private host keys */
159 int have_ssh1_key;
160 int have_ssh2_key;
Ben Lindstromeb648a72001-03-05 06:00:29 +0000161 u_char ssh1_cookie[SSH_SESSION_KEY_LENGTH];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000162} sensitive_data;
163
Damien Miller5428f641999-11-25 11:54:57 +1100164/*
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000165 * Flag indicating whether the RSA server key needs to be regenerated.
166 * Is set in the SIGALRM handler and cleared when the key is regenerated.
Damien Miller5428f641999-11-25 11:54:57 +1100167 */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000168int key_do_regen = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000169
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000170/* This is set to true when a signal is received. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000171int received_sighup = 0;
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000172int received_sigterm = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000173
Damien Millerb38eff82000-04-01 11:09:21 +1000174/* session identifier, used by RSA-auth */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000175u_char session_id[16];
Damien Millerb38eff82000-04-01 11:09:21 +1000176
Damien Millereba71ba2000-04-29 23:57:08 +1000177/* same for ssh2 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000178u_char *session_id2 = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000179int session_id2_len = 0;
180
Damien Miller942da032000-08-18 13:59:06 +1000181/* record remote hostname or ip */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000182u_int utmp_len = MAXHOSTNAMELEN;
Damien Miller942da032000-08-18 13:59:06 +1000183
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000184/* Prototypes for various functions defined later in this file. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000185void destroy_sensitive_data(void);
Damien Miller98c7ad62000-03-09 21:27:49 +1100186
Ben Lindstrombba81212001-06-25 05:01:22 +0000187static void do_ssh1_kex(void);
188static void do_ssh2_kex(void);
Damien Miller874d77b2000-10-14 16:23:11 +1100189
Damien Miller98c7ad62000-03-09 21:27:49 +1100190/*
Damien Miller34132e52000-01-14 15:45:46 +1100191 * Close all listening sockets
192 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000193static void
Damien Miller34132e52000-01-14 15:45:46 +1100194close_listen_socks(void)
195{
196 int i;
197 for (i = 0; i < num_listen_socks; i++)
198 close(listen_socks[i]);
199 num_listen_socks = -1;
200}
201
202/*
Damien Miller95def091999-11-25 00:26:21 +1100203 * Signal handler for SIGHUP. Sshd execs itself when it receives SIGHUP;
204 * the effect is to reread the configuration file (and to regenerate
205 * the server key).
206 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000207static void
Damien Miller95def091999-11-25 00:26:21 +1100208sighup_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000209{
Damien Miller95def091999-11-25 00:26:21 +1100210 received_sighup = 1;
211 signal(SIGHUP, sighup_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000212}
213
Damien Miller95def091999-11-25 00:26:21 +1100214/*
215 * Called from the main program after receiving SIGHUP.
216 * Restarts the server.
217 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000218static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000219sighup_restart(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000220{
Damien Miller95def091999-11-25 00:26:21 +1100221 log("Received SIGHUP; restarting.");
Damien Miller34132e52000-01-14 15:45:46 +1100222 close_listen_socks();
Damien Miller95def091999-11-25 00:26:21 +1100223 execv(saved_argv[0], saved_argv);
Kevin Stevesec84dc12000-12-13 17:45:15 +0000224 log("RESTART FAILED: av[0]='%.100s', error: %.100s.", saved_argv[0], strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100225 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000226}
227
Damien Miller95def091999-11-25 00:26:21 +1100228/*
229 * Generic signal handler for terminating signals in the master daemon.
Damien Miller95def091999-11-25 00:26:21 +1100230 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000231static void
Damien Miller95def091999-11-25 00:26:21 +1100232sigterm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000233{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000234 received_sigterm = sig;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000235}
236
Damien Miller95def091999-11-25 00:26:21 +1100237/*
238 * SIGCHLD handler. This is called whenever a child dies. This will then
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000239 * reap any zombies left by exited children.
Damien Miller95def091999-11-25 00:26:21 +1100240 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000241static void
Damien Miller95def091999-11-25 00:26:21 +1100242main_sigchld_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000243{
Damien Miller95def091999-11-25 00:26:21 +1100244 int save_errno = errno;
245 int status;
Damien Miller431f66b1999-11-21 18:31:57 +1100246
Damien Miller95def091999-11-25 00:26:21 +1100247 while (waitpid(-1, &status, WNOHANG) > 0)
248 ;
Damien Miller431f66b1999-11-21 18:31:57 +1100249
Damien Miller95def091999-11-25 00:26:21 +1100250 signal(SIGCHLD, main_sigchld_handler);
251 errno = save_errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000252}
253
Damien Miller95def091999-11-25 00:26:21 +1100254/*
255 * Signal handler for the alarm after the login grace period has expired.
256 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000257static void
Damien Miller95def091999-11-25 00:26:21 +1100258grace_alarm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000259{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000260 /* XXX no idea how fix this signal handler */
261
Damien Miller95def091999-11-25 00:26:21 +1100262 /* Close the connection. */
263 packet_close();
264
265 /* Log error and exit. */
266 fatal("Timeout before authentication for %s.", get_remote_ipaddr());
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000267}
268
Damien Miller95def091999-11-25 00:26:21 +1100269/*
Damien Miller95def091999-11-25 00:26:21 +1100270 * Signal handler for the key regeneration alarm. Note that this
271 * alarm only occurs in the daemon waiting for connections, and it does not
272 * do anything with the private key or random state before forking.
273 * Thus there should be no concurrency control/asynchronous execution
274 * problems.
275 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000276static void
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000277generate_ephemeral_server_key(void)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100278{
Ben Lindstromeb648a72001-03-05 06:00:29 +0000279 u_int32_t rand = 0;
280 int i;
281
Ben Lindstroma3700052001-04-05 23:26:32 +0000282 verbose("Generating %s%d bit RSA key.",
Damien Millerff75ac42001-03-30 10:50:32 +1000283 sensitive_data.server_key ? "new " : "", options.server_key_bits);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100284 if (sensitive_data.server_key != NULL)
285 key_free(sensitive_data.server_key);
Ben Lindstroma3700052001-04-05 23:26:32 +0000286 sensitive_data.server_key = key_generate(KEY_RSA1,
Damien Millerff75ac42001-03-30 10:50:32 +1000287 options.server_key_bits);
288 verbose("RSA key generation complete.");
Ben Lindstromeb648a72001-03-05 06:00:29 +0000289
290 for (i = 0; i < SSH_SESSION_KEY_LENGTH; i++) {
291 if (i % 4 == 0)
292 rand = arc4random();
293 sensitive_data.ssh1_cookie[i] = rand & 0xff;
294 rand >>= 8;
295 }
296 arc4random_stir();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100297}
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000298
Ben Lindstrombba81212001-06-25 05:01:22 +0000299static void
Damien Miller95def091999-11-25 00:26:21 +1100300key_regeneration_alarm(int sig)
301{
302 int save_errno = errno;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000303 signal(SIGALRM, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +1100304 errno = save_errno;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000305 key_do_regen = 1;
Damien Miller95def091999-11-25 00:26:21 +1100306}
307
Ben Lindstrombba81212001-06-25 05:01:22 +0000308static void
Damien Millerb38eff82000-04-01 11:09:21 +1000309sshd_exchange_identification(int sock_in, int sock_out)
310{
Damien Miller78928792000-04-12 20:17:38 +1000311 int i, mismatch;
Damien Millerb38eff82000-04-01 11:09:21 +1000312 int remote_major, remote_minor;
Damien Miller78928792000-04-12 20:17:38 +1000313 int major, minor;
Damien Millerb38eff82000-04-01 11:09:21 +1000314 char *s;
315 char buf[256]; /* Must not be larger than remote_version. */
316 char remote_version[256]; /* Must be at least as big as buf. */
317
Damien Miller78928792000-04-12 20:17:38 +1000318 if ((options.protocol & SSH_PROTO_1) &&
319 (options.protocol & SSH_PROTO_2)) {
320 major = PROTOCOL_MAJOR_1;
321 minor = 99;
322 } else if (options.protocol & SSH_PROTO_2) {
323 major = PROTOCOL_MAJOR_2;
324 minor = PROTOCOL_MINOR_2;
325 } else {
326 major = PROTOCOL_MAJOR_1;
327 minor = PROTOCOL_MINOR_1;
328 }
329 snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n", major, minor, SSH_VERSION);
Damien Millerb38eff82000-04-01 11:09:21 +1000330 server_version_string = xstrdup(buf);
331
332 if (client_version_string == NULL) {
333 /* Send our protocol version identification. */
334 if (atomicio(write, sock_out, server_version_string, strlen(server_version_string))
335 != strlen(server_version_string)) {
336 log("Could not write ident string to %s.", get_remote_ipaddr());
337 fatal_cleanup();
338 }
339
Ben Lindstrom5393f932001-02-15 03:17:13 +0000340 /* Read other side's version identification. */
Ben Lindstroma3700052001-04-05 23:26:32 +0000341 memset(buf, 0, sizeof(buf));
Damien Millerb38eff82000-04-01 11:09:21 +1000342 for (i = 0; i < sizeof(buf) - 1; i++) {
Damien Millerbf7f4662000-06-23 10:16:38 +1000343 if (atomicio(read, sock_in, &buf[i], 1) != 1) {
Ben Lindstroma9a29e12001-02-20 01:20:47 +0000344 log("Did not receive identification string from %s.",
345 get_remote_ipaddr());
Damien Millerb38eff82000-04-01 11:09:21 +1000346 fatal_cleanup();
347 }
348 if (buf[i] == '\r') {
Ben Lindstrom69d8c072001-03-22 22:45:33 +0000349 buf[i] = 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100350 /* Kludge for F-Secure Macintosh < 1.0.2 */
351 if (i == 12 &&
352 strncmp(buf, "SSH-1.5-W1.0", 12) == 0)
353 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000354 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000355 }
356 if (buf[i] == '\n') {
Ben Lindstrom69d8c072001-03-22 22:45:33 +0000357 buf[i] = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000358 break;
359 }
360 }
361 buf[sizeof(buf) - 1] = 0;
362 client_version_string = xstrdup(buf);
363 }
364
365 /*
366 * Check that the versions match. In future this might accept
367 * several versions and set appropriate flags to handle them.
368 */
369 if (sscanf(client_version_string, "SSH-%d.%d-%[^\n]\n",
370 &remote_major, &remote_minor, remote_version) != 3) {
Damien Miller4af51302000-04-16 11:18:38 +1000371 s = "Protocol mismatch.\n";
Damien Millerb38eff82000-04-01 11:09:21 +1000372 (void) atomicio(write, sock_out, s, strlen(s));
373 close(sock_in);
374 close(sock_out);
375 log("Bad protocol version identification '%.100s' from %s",
376 client_version_string, get_remote_ipaddr());
377 fatal_cleanup();
378 }
379 debug("Client protocol version %d.%d; client software version %.100s",
380 remote_major, remote_minor, remote_version);
381
Damien Millerefb4afe2000-04-12 18:45:05 +1000382 compat_datafellows(remote_version);
383
Damien Miller27dbe6f2001-03-19 22:36:20 +1100384 if (datafellows & SSH_BUG_SCANNER) {
385 log("scanned from %s with %s. Don't panic.",
386 get_remote_ipaddr(), client_version_string);
387 fatal_cleanup();
388 }
389
Damien Miller78928792000-04-12 20:17:38 +1000390 mismatch = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000391 switch(remote_major) {
392 case 1:
Damien Millereba71ba2000-04-29 23:57:08 +1000393 if (remote_minor == 99) {
394 if (options.protocol & SSH_PROTO_2)
395 enable_compat20();
396 else
397 mismatch = 1;
398 break;
399 }
Damien Miller78928792000-04-12 20:17:38 +1000400 if (!(options.protocol & SSH_PROTO_1)) {
401 mismatch = 1;
402 break;
403 }
Damien Millerb38eff82000-04-01 11:09:21 +1000404 if (remote_minor < 3) {
Damien Miller37023962000-07-11 17:31:38 +1000405 packet_disconnect("Your ssh version is too old and "
Damien Millerb38eff82000-04-01 11:09:21 +1000406 "is no longer supported. Please install a newer version.");
407 } else if (remote_minor == 3) {
408 /* note that this disables agent-forwarding */
409 enable_compat13();
410 }
Damien Miller78928792000-04-12 20:17:38 +1000411 break;
Damien Millerefb4afe2000-04-12 18:45:05 +1000412 case 2:
Damien Miller78928792000-04-12 20:17:38 +1000413 if (options.protocol & SSH_PROTO_2) {
Damien Millerefb4afe2000-04-12 18:45:05 +1000414 enable_compat20();
415 break;
416 }
417 /* FALLTHROUGH */
Damien Miller4af51302000-04-16 11:18:38 +1000418 default:
Damien Miller78928792000-04-12 20:17:38 +1000419 mismatch = 1;
Damien Millerb38eff82000-04-01 11:09:21 +1000420 break;
421 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000422 chop(server_version_string);
Damien Miller78928792000-04-12 20:17:38 +1000423 debug("Local version string %.200s", server_version_string);
424
425 if (mismatch) {
426 s = "Protocol major versions differ.\n";
427 (void) atomicio(write, sock_out, s, strlen(s));
428 close(sock_in);
429 close(sock_out);
430 log("Protocol major versions differ for %s: %.200s vs. %.200s",
431 get_remote_ipaddr(),
432 server_version_string, client_version_string);
433 fatal_cleanup();
434 }
Damien Millereba71ba2000-04-29 23:57:08 +1000435}
436
437
Damien Miller0bc1bd82000-11-13 22:57:25 +1100438/* Destroy the host and server keys. They will no longer be needed. */
Damien Millereba71ba2000-04-29 23:57:08 +1000439void
440destroy_sensitive_data(void)
441{
Damien Miller0bc1bd82000-11-13 22:57:25 +1100442 int i;
443
444 if (sensitive_data.server_key) {
445 key_free(sensitive_data.server_key);
446 sensitive_data.server_key = NULL;
447 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000448 for(i = 0; i < options.num_host_key_files; i++) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100449 if (sensitive_data.host_keys[i]) {
450 key_free(sensitive_data.host_keys[i]);
451 sensitive_data.host_keys[i] = NULL;
452 }
453 }
454 sensitive_data.ssh1_host_key = NULL;
Ben Lindstromeb648a72001-03-05 06:00:29 +0000455 memset(sensitive_data.ssh1_cookie, 0, SSH_SESSION_KEY_LENGTH);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100456}
Damien Miller0bc1bd82000-11-13 22:57:25 +1100457
Ben Lindstrombba81212001-06-25 05:01:22 +0000458static char *
Damien Miller0bc1bd82000-11-13 22:57:25 +1100459list_hostkey_types(void)
460{
461 static char buf[1024];
462 int i;
463 buf[0] = '\0';
464 for(i = 0; i < options.num_host_key_files; i++) {
465 Key *key = sensitive_data.host_keys[i];
466 if (key == NULL)
467 continue;
468 switch(key->type) {
469 case KEY_RSA:
470 case KEY_DSA:
471 strlcat(buf, key_ssh_name(key), sizeof buf);
472 strlcat(buf, ",", sizeof buf);
473 break;
474 }
475 }
476 i = strlen(buf);
477 if (i > 0 && buf[i-1] == ',')
478 buf[i-1] = '\0';
479 debug("list_hostkey_types: %s", buf);
480 return buf;
481}
482
Ben Lindstrombba81212001-06-25 05:01:22 +0000483static Key *
Damien Miller0bc1bd82000-11-13 22:57:25 +1100484get_hostkey_by_type(int type)
485{
486 int i;
487 for(i = 0; i < options.num_host_key_files; i++) {
488 Key *key = sensitive_data.host_keys[i];
489 if (key != NULL && key->type == type)
490 return key;
491 }
492 return NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000493}
494
Damien Miller942da032000-08-18 13:59:06 +1000495/*
496 * returns 1 if connection should be dropped, 0 otherwise.
497 * dropping starts at connection #max_startups_begin with a probability
498 * of (max_startups_rate/100). the probability increases linearly until
499 * all connections are dropped for startups > max_startups
500 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000501static int
Damien Miller942da032000-08-18 13:59:06 +1000502drop_connection(int startups)
503{
504 double p, r;
505
506 if (startups < options.max_startups_begin)
507 return 0;
508 if (startups >= options.max_startups)
509 return 1;
510 if (options.max_startups_rate == 100)
511 return 1;
512
513 p = 100 - options.max_startups_rate;
514 p *= startups - options.max_startups_begin;
515 p /= (double) (options.max_startups - options.max_startups_begin);
516 p += options.max_startups_rate;
517 p /= 100.0;
518 r = arc4random() / (double) UINT_MAX;
519
520 debug("drop_connection: p %g, r %g", p, r);
521 return (r < p) ? 1 : 0;
522}
523
Damien Miller37023962000-07-11 17:31:38 +1000524int *startup_pipes = NULL; /* options.max_startup sized array of fd ints */
525int startup_pipe; /* in child */
526
Damien Miller95def091999-11-25 00:26:21 +1100527/*
528 * Main program for the daemon.
529 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000530int
531main(int ac, char **av)
532{
Damien Miller95def091999-11-25 00:26:21 +1100533 extern char *optarg;
534 extern int optind;
Damien Miller37023962000-07-11 17:31:38 +1000535 int opt, sock_in = 0, sock_out = 0, newsock, j, i, fdsetsz, on = 1;
Damien Miller166fca82000-04-20 07:42:21 +1000536 pid_t pid;
Damien Miller34132e52000-01-14 15:45:46 +1100537 socklen_t fromlen;
Damien Miller34132e52000-01-14 15:45:46 +1100538 fd_set *fdset;
539 struct sockaddr_storage from;
Damien Miller95def091999-11-25 00:26:21 +1100540 const char *remote_ip;
541 int remote_port;
Damien Miller95def091999-11-25 00:26:21 +1100542 FILE *f;
543 struct linger linger;
Damien Miller34132e52000-01-14 15:45:46 +1100544 struct addrinfo *ai;
545 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
546 int listen_sock, maxfd;
Damien Miller37023962000-07-11 17:31:38 +1000547 int startup_p[2];
548 int startups = 0;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000549 Key *key;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000550 int ret, key_used = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000551
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000552 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000553 init_rng();
554
Kevin Stevesec84dc12000-12-13 17:45:15 +0000555 /* Save argv. */
Damien Millerb8c656e2000-06-28 15:22:41 +1000556 saved_argc = ac;
Damien Miller95def091999-11-25 00:26:21 +1100557 saved_argv = av;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000558
Damien Miller95def091999-11-25 00:26:21 +1100559 /* Initialize configuration options to their default values. */
560 initialize_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000561
Damien Miller95def091999-11-25 00:26:21 +1100562 /* Parse command-line arguments. */
Ben Lindstrom9fce9f02001-04-11 23:10:09 +0000563 while ((opt = getopt(ac, av, "f:p:b:k:h:g:V:u:dDeiqQ46")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100564 switch (opt) {
Damien Miller34132e52000-01-14 15:45:46 +1100565 case '4':
566 IPv4or6 = AF_INET;
567 break;
568 case '6':
569 IPv4or6 = AF_INET6;
570 break;
Damien Miller95def091999-11-25 00:26:21 +1100571 case 'f':
572 config_file_name = optarg;
573 break;
574 case 'd':
Damien Millere4340be2000-09-16 13:29:08 +1100575 if (0 == debug_flag) {
576 debug_flag = 1;
577 options.log_level = SYSLOG_LEVEL_DEBUG1;
578 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
579 options.log_level++;
580 } else {
581 fprintf(stderr, "Too high debugging level.\n");
582 exit(1);
583 }
Damien Miller95def091999-11-25 00:26:21 +1100584 break;
Ben Lindstromc72745a2000-12-02 19:03:54 +0000585 case 'D':
586 no_daemon_flag = 1;
587 break;
Ben Lindstrom9fce9f02001-04-11 23:10:09 +0000588 case 'e':
589 log_stderr = 1;
590 break;
Damien Miller95def091999-11-25 00:26:21 +1100591 case 'i':
592 inetd_flag = 1;
593 break;
594 case 'Q':
Ben Lindstromd5390202001-01-29 08:07:43 +0000595 /* ignored */
Damien Miller95def091999-11-25 00:26:21 +1100596 break;
597 case 'q':
598 options.log_level = SYSLOG_LEVEL_QUIET;
599 break;
600 case 'b':
601 options.server_key_bits = atoi(optarg);
602 break;
603 case 'p':
Damien Miller34132e52000-01-14 15:45:46 +1100604 options.ports_from_cmdline = 1;
Damien Millere4340be2000-09-16 13:29:08 +1100605 if (options.num_ports >= MAX_PORTS) {
606 fprintf(stderr, "too many ports.\n");
607 exit(1);
608 }
Ben Lindstrom19066a12001-04-12 23:39:26 +0000609 options.ports[options.num_ports++] = a2port(optarg);
610 if (options.ports[options.num_ports-1] == 0) {
611 fprintf(stderr, "Bad port number.\n");
612 exit(1);
613 }
Damien Miller95def091999-11-25 00:26:21 +1100614 break;
615 case 'g':
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000616 if ((options.login_grace_time = convtime(optarg)) == -1) {
617 fprintf(stderr, "Invalid login grace time.\n");
618 exit(1);
619 }
Damien Miller95def091999-11-25 00:26:21 +1100620 break;
621 case 'k':
Ben Lindstrom1bda4c82001-06-05 19:59:08 +0000622 if ((options.key_regeneration_time = convtime(optarg)) == -1) {
623 fprintf(stderr, "Invalid key regeneration interval.\n");
624 exit(1);
625 }
Damien Miller95def091999-11-25 00:26:21 +1100626 break;
627 case 'h':
Damien Miller0bc1bd82000-11-13 22:57:25 +1100628 if (options.num_host_key_files >= MAX_HOSTKEYS) {
629 fprintf(stderr, "too many host keys.\n");
630 exit(1);
631 }
632 options.host_key_files[options.num_host_key_files++] = optarg;
Damien Miller95def091999-11-25 00:26:21 +1100633 break;
634 case 'V':
635 client_version_string = optarg;
636 /* only makes sense with inetd_flag, i.e. no listen() */
637 inetd_flag = 1;
638 break;
Damien Miller942da032000-08-18 13:59:06 +1000639 case 'u':
640 utmp_len = atoi(optarg);
641 break;
Damien Miller95def091999-11-25 00:26:21 +1100642 case '?':
643 default:
644 fprintf(stderr, "sshd version %s\n", SSH_VERSION);
Kevin Stevesec84dc12000-12-13 17:45:15 +0000645 fprintf(stderr, "Usage: %s [options]\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100646 fprintf(stderr, "Options:\n");
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000647 fprintf(stderr, " -f file Configuration file (default %s)\n", _PATH_SERVER_CONFIG_FILE);
Damien Millere4340be2000-09-16 13:29:08 +1100648 fprintf(stderr, " -d Debugging mode (multiple -d means more debugging)\n");
Damien Miller95def091999-11-25 00:26:21 +1100649 fprintf(stderr, " -i Started from inetd\n");
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000650 fprintf(stderr, " -D Do not fork into daemon mode\n");
Damien Miller95def091999-11-25 00:26:21 +1100651 fprintf(stderr, " -q Quiet (no logging)\n");
652 fprintf(stderr, " -p port Listen on the specified port (default: 22)\n");
653 fprintf(stderr, " -k seconds Regenerate server key every this many seconds (default: 3600)\n");
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000654 fprintf(stderr, " -g seconds Grace period for authentication (default: 600)\n");
Damien Miller95def091999-11-25 00:26:21 +1100655 fprintf(stderr, " -b bits Size of server RSA key (default: 768 bits)\n");
656 fprintf(stderr, " -h file File from which to read host key (default: %s)\n",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000657 _PATH_HOST_KEY_FILE);
Damien Miller942da032000-08-18 13:59:06 +1000658 fprintf(stderr, " -u len Maximum hostname length for utmp recording\n");
Damien Miller34132e52000-01-14 15:45:46 +1100659 fprintf(stderr, " -4 Use IPv4 only\n");
660 fprintf(stderr, " -6 Use IPv6 only\n");
Damien Miller95def091999-11-25 00:26:21 +1100661 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000662 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000663 }
Ben Lindstrom425fb022001-03-29 00:31:20 +0000664 SSLeay_add_all_algorithms();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000665
Damien Miller34132e52000-01-14 15:45:46 +1100666 /*
667 * Force logging to stderr until we have loaded the private host
668 * key (unless started from inetd)
669 */
Kevin Stevesec84dc12000-12-13 17:45:15 +0000670 log_init(__progname,
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000671 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
Damien Miller34132e52000-01-14 15:45:46 +1100672 options.log_facility == -1 ? SYSLOG_FACILITY_AUTH : options.log_facility,
Ben Lindstromd5390202001-01-29 08:07:43 +0000673 !inetd_flag);
Damien Miller34132e52000-01-14 15:45:46 +1100674
Damien Miller60bc5172001-03-19 09:38:15 +1100675 seed_rng();
676
Damien Miller95def091999-11-25 00:26:21 +1100677 /* Read server configuration options from the configuration file. */
678 read_server_config(&options, config_file_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000679
Damien Miller95def091999-11-25 00:26:21 +1100680 /* Fill in default values for those options not explicitly set. */
681 fill_default_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000682
Damien Miller95def091999-11-25 00:26:21 +1100683 /* Check that there are no remaining arguments. */
684 if (optind < ac) {
685 fprintf(stderr, "Extra argument %s.\n", av[optind]);
686 exit(1);
687 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000688
Damien Miller95def091999-11-25 00:26:21 +1100689 debug("sshd version %.100s", SSH_VERSION);
Damien Miller2ccf6611999-11-15 15:25:10 +1100690
Damien Miller0bc1bd82000-11-13 22:57:25 +1100691 /* load private host keys */
692 sensitive_data.host_keys = xmalloc(options.num_host_key_files*sizeof(Key*));
Ben Lindstrom46c16222000-12-22 01:43:59 +0000693 for(i = 0; i < options.num_host_key_files; i++)
694 sensitive_data.host_keys[i] = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100695 sensitive_data.server_key = NULL;
696 sensitive_data.ssh1_host_key = NULL;
697 sensitive_data.have_ssh1_key = 0;
698 sensitive_data.have_ssh2_key = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000699
Damien Miller0bc1bd82000-11-13 22:57:25 +1100700 for(i = 0; i < options.num_host_key_files; i++) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000701 key = key_load_private(options.host_key_files[i], "", NULL);
702 sensitive_data.host_keys[i] = key;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100703 if (key == NULL) {
Ben Lindstrom15f33862001-04-16 02:00:02 +0000704 error("Could not load host key: %s",
705 options.host_key_files[i]);
Ben Lindstromd0fca422001-03-26 13:44:06 +0000706 sensitive_data.host_keys[i] = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100707 continue;
708 }
709 switch(key->type){
710 case KEY_RSA1:
711 sensitive_data.ssh1_host_key = key;
712 sensitive_data.have_ssh1_key = 1;
713 break;
714 case KEY_RSA:
715 case KEY_DSA:
716 sensitive_data.have_ssh2_key = 1;
717 break;
718 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000719 debug("private host key: #%d type %d %s", i, key->type,
720 key_type(key));
Damien Miller0bc1bd82000-11-13 22:57:25 +1100721 }
722 if ((options.protocol & SSH_PROTO_1) && !sensitive_data.have_ssh1_key) {
723 log("Disabling protocol version 1. Could not load host key");
Damien Millereba71ba2000-04-29 23:57:08 +1000724 options.protocol &= ~SSH_PROTO_1;
725 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100726 if ((options.protocol & SSH_PROTO_2) && !sensitive_data.have_ssh2_key) {
727 log("Disabling protocol version 2. Could not load host key");
728 options.protocol &= ~SSH_PROTO_2;
Damien Millereba71ba2000-04-29 23:57:08 +1000729 }
Kevin Stevesadf74cd2001-02-05 14:22:50 +0000730 if (!(options.protocol & (SSH_PROTO_1|SSH_PROTO_2))) {
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000731 log("sshd: no hostkeys available -- exiting.");
Damien Miller95def091999-11-25 00:26:21 +1100732 exit(1);
733 }
Damien Miller95def091999-11-25 00:26:21 +1100734
Damien Millereba71ba2000-04-29 23:57:08 +1000735 /* Check certain values for sanity. */
736 if (options.protocol & SSH_PROTO_1) {
737 if (options.server_key_bits < 512 ||
738 options.server_key_bits > 32768) {
739 fprintf(stderr, "Bad server key size.\n");
740 exit(1);
741 }
742 /*
743 * Check that server and host key lengths differ sufficiently. This
744 * is necessary to make double encryption work with rsaref. Oh, I
745 * hate software patents. I dont know if this can go? Niels
746 */
747 if (options.server_key_bits >
Damien Miller0bc1bd82000-11-13 22:57:25 +1100748 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) - SSH_KEY_BITS_RESERVED &&
Damien Millereba71ba2000-04-29 23:57:08 +1000749 options.server_key_bits <
Damien Miller0bc1bd82000-11-13 22:57:25 +1100750 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
Damien Millereba71ba2000-04-29 23:57:08 +1000751 options.server_key_bits =
Damien Miller0bc1bd82000-11-13 22:57:25 +1100752 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED;
Damien Millereba71ba2000-04-29 23:57:08 +1000753 debug("Forcing server key to %d bits to make it differ from host key.",
754 options.server_key_bits);
755 }
756 }
757
Damien Miller78315eb2000-09-29 23:01:36 +1100758#ifdef HAVE_SCO_PROTECTED_PW
759 (void) set_auth_parameters(ac, av);
760#endif
761
Damien Millereba71ba2000-04-29 23:57:08 +1000762 /* Initialize the log (it is reinitialized below in case we forked). */
Damien Miller95def091999-11-25 00:26:21 +1100763 if (debug_flag && !inetd_flag)
764 log_stderr = 1;
Kevin Stevesec84dc12000-12-13 17:45:15 +0000765 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +1100766
Damien Millereba71ba2000-04-29 23:57:08 +1000767 /*
768 * If not in debugging mode, and not started from inetd, disconnect
769 * from the controlling terminal, and fork. The original process
770 * exits.
771 */
Ben Lindstromc72745a2000-12-02 19:03:54 +0000772 if (!(debug_flag || inetd_flag || no_daemon_flag)) {
Damien Miller95def091999-11-25 00:26:21 +1100773#ifdef TIOCNOTTY
774 int fd;
775#endif /* TIOCNOTTY */
776 if (daemon(0, 0) < 0)
777 fatal("daemon() failed: %.200s", strerror(errno));
778
779 /* Disconnect from the controlling tty. */
780#ifdef TIOCNOTTY
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000781 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
Damien Miller95def091999-11-25 00:26:21 +1100782 if (fd >= 0) {
783 (void) ioctl(fd, TIOCNOTTY, NULL);
784 close(fd);
785 }
786#endif /* TIOCNOTTY */
787 }
788 /* Reinitialize the log (because of the fork above). */
Kevin Stevesec84dc12000-12-13 17:45:15 +0000789 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +1100790
Damien Miller95def091999-11-25 00:26:21 +1100791 /* Initialize the random number generator. */
792 arc4random_stir();
793
794 /* Chdir to the root directory so that the current disk can be
795 unmounted if desired. */
796 chdir("/");
Ben Lindstromde71cda2001-03-24 00:43:26 +0000797
798 /* ignore SIGPIPE */
799 signal(SIGPIPE, SIG_IGN);
Damien Miller95def091999-11-25 00:26:21 +1100800
Damien Miller95def091999-11-25 00:26:21 +1100801 /* Start listening for a socket, unless started from inetd. */
802 if (inetd_flag) {
Ben Lindstrom206941f2001-04-15 14:27:16 +0000803 int s1;
Damien Miller95def091999-11-25 00:26:21 +1100804 s1 = dup(0); /* Make sure descriptors 0, 1, and 2 are in use. */
Ben Lindstrom206941f2001-04-15 14:27:16 +0000805 dup(s1);
Damien Miller95def091999-11-25 00:26:21 +1100806 sock_in = dup(0);
807 sock_out = dup(1);
Damien Miller994cf142000-07-21 10:19:44 +1000808 startup_pipe = -1;
Damien Millereba71ba2000-04-29 23:57:08 +1000809 /*
810 * We intentionally do not close the descriptors 0, 1, and 2
811 * as our code for setting the descriptors won\'t work if
812 * ttyfd happens to be one of those.
813 */
Damien Miller95def091999-11-25 00:26:21 +1100814 debug("inetd sockets after dupping: %d, %d", sock_in, sock_out);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100815 if (options.protocol & SSH_PROTO_1)
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000816 generate_ephemeral_server_key();
Damien Miller95def091999-11-25 00:26:21 +1100817 } else {
Damien Miller34132e52000-01-14 15:45:46 +1100818 for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
819 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
820 continue;
821 if (num_listen_socks >= MAX_LISTEN_SOCKS)
822 fatal("Too many listen sockets. "
823 "Enlarge MAX_LISTEN_SOCKS");
824 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
825 ntop, sizeof(ntop), strport, sizeof(strport),
826 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
827 error("getnameinfo failed");
828 continue;
829 }
830 /* Create socket for listening. */
831 listen_sock = socket(ai->ai_family, SOCK_STREAM, 0);
832 if (listen_sock < 0) {
833 /* kernel may not support ipv6 */
834 verbose("socket: %.100s", strerror(errno));
835 continue;
836 }
837 if (fcntl(listen_sock, F_SETFL, O_NONBLOCK) < 0) {
838 error("listen_sock O_NONBLOCK: %s", strerror(errno));
839 close(listen_sock);
840 continue;
841 }
842 /*
843 * Set socket options. We try to make the port
844 * reusable and have it close as fast as possible
845 * without waiting in unnecessary wait states on
846 * close.
847 */
848 setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
849 (void *) &on, sizeof(on));
850 linger.l_onoff = 1;
851 linger.l_linger = 5;
852 setsockopt(listen_sock, SOL_SOCKET, SO_LINGER,
853 (void *) &linger, sizeof(linger));
Damien Miller95def091999-11-25 00:26:21 +1100854
Damien Miller34132e52000-01-14 15:45:46 +1100855 debug("Bind to port %s on %s.", strport, ntop);
Damien Miller95def091999-11-25 00:26:21 +1100856
Damien Miller34132e52000-01-14 15:45:46 +1100857 /* Bind the socket to the desired port. */
Damien Miller0a4e27d2001-02-18 12:36:39 +1100858 if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) {
859 if (!ai->ai_next)
860 error("Bind to port %s on %s failed: %.200s.",
861 strport, ntop, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +1100862 close(listen_sock);
863 continue;
864 }
865 listen_socks[num_listen_socks] = listen_sock;
866 num_listen_socks++;
Damien Miller95def091999-11-25 00:26:21 +1100867
Damien Miller34132e52000-01-14 15:45:46 +1100868 /* Start listening on the port. */
869 log("Server listening on %s port %s.", ntop, strport);
870 if (listen(listen_sock, 5) < 0)
871 fatal("listen: %.100s", strerror(errno));
872
Damien Miller95def091999-11-25 00:26:21 +1100873 }
Damien Miller34132e52000-01-14 15:45:46 +1100874 freeaddrinfo(options.listen_addrs);
875
876 if (!num_listen_socks)
877 fatal("Cannot bind any address.");
878
Ben Lindstrom98097862001-06-25 05:10:20 +0000879 if (options.protocol & SSH_PROTO_1)
880 generate_ephemeral_server_key();
881
882 /*
883 * Arrange to restart on SIGHUP. The handler needs
884 * listen_sock.
885 */
886 signal(SIGHUP, sighup_handler);
887
888 signal(SIGTERM, sigterm_handler);
889 signal(SIGQUIT, sigterm_handler);
890
891 /* Arrange SIGCHLD to be caught. */
892 signal(SIGCHLD, main_sigchld_handler);
893
894 /* Write out the pid file after the sigterm handler is setup */
Damien Miller95def091999-11-25 00:26:21 +1100895 if (!debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +1100896 /*
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000897 * Record our pid in /var/run/sshd.pid to make it
898 * easier to kill the correct sshd. We don't want to
899 * do this before the bind above because the bind will
Damien Miller5428f641999-11-25 11:54:57 +1100900 * fail if there already is a daemon, and this will
901 * overwrite any old pid in the file.
902 */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100903 f = fopen(options.pid_file, "wb");
Damien Miller95def091999-11-25 00:26:21 +1100904 if (f) {
Ben Lindstrom46c16222000-12-22 01:43:59 +0000905 fprintf(f, "%u\n", (u_int) getpid());
Damien Miller95def091999-11-25 00:26:21 +1100906 fclose(f);
907 }
908 }
Damien Miller95def091999-11-25 00:26:21 +1100909
Damien Miller34132e52000-01-14 15:45:46 +1100910 /* setup fd set for listen */
Damien Miller37023962000-07-11 17:31:38 +1000911 fdset = NULL;
Damien Miller34132e52000-01-14 15:45:46 +1100912 maxfd = 0;
913 for (i = 0; i < num_listen_socks; i++)
914 if (listen_socks[i] > maxfd)
915 maxfd = listen_socks[i];
Damien Miller37023962000-07-11 17:31:38 +1000916 /* pipes connected to unauthenticated childs */
917 startup_pipes = xmalloc(options.max_startups * sizeof(int));
918 for (i = 0; i < options.max_startups; i++)
919 startup_pipes[i] = -1;
Damien Miller34132e52000-01-14 15:45:46 +1100920
Damien Miller5428f641999-11-25 11:54:57 +1100921 /*
922 * Stay listening for connections until the system crashes or
923 * the daemon is killed with a signal.
924 */
Damien Miller95def091999-11-25 00:26:21 +1100925 for (;;) {
926 if (received_sighup)
927 sighup_restart();
Damien Miller37023962000-07-11 17:31:38 +1000928 if (fdset != NULL)
929 xfree(fdset);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000930 fdsetsz = howmany(maxfd+1, NFDBITS) * sizeof(fd_mask);
Damien Miller37023962000-07-11 17:31:38 +1000931 fdset = (fd_set *)xmalloc(fdsetsz);
Damien Miller34132e52000-01-14 15:45:46 +1100932 memset(fdset, 0, fdsetsz);
Damien Miller37023962000-07-11 17:31:38 +1000933
Damien Miller34132e52000-01-14 15:45:46 +1100934 for (i = 0; i < num_listen_socks; i++)
935 FD_SET(listen_socks[i], fdset);
Damien Miller37023962000-07-11 17:31:38 +1000936 for (i = 0; i < options.max_startups; i++)
937 if (startup_pipes[i] != -1)
938 FD_SET(startup_pipes[i], fdset);
939
940 /* Wait in select until there is a connection. */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000941 ret = select(maxfd+1, fdset, NULL, NULL, NULL);
942 if (ret < 0 && errno != EINTR)
943 error("select: %.100s", strerror(errno));
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000944 if (received_sigterm) {
945 log("Received signal %d; terminating.",
946 received_sigterm);
947 close_listen_socks();
948 unlink(options.pid_file);
949 exit(255);
950 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000951 if (key_used && key_do_regen) {
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000952 generate_ephemeral_server_key();
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000953 key_used = 0;
954 key_do_regen = 0;
Damien Miller34132e52000-01-14 15:45:46 +1100955 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000956 if (ret < 0)
957 continue;
958
Damien Miller37023962000-07-11 17:31:38 +1000959 for (i = 0; i < options.max_startups; i++)
960 if (startup_pipes[i] != -1 &&
961 FD_ISSET(startup_pipes[i], fdset)) {
962 /*
963 * the read end of the pipe is ready
964 * if the child has closed the pipe
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000965 * after successful authentication
Damien Miller37023962000-07-11 17:31:38 +1000966 * or if the child has died
967 */
968 close(startup_pipes[i]);
969 startup_pipes[i] = -1;
970 startups--;
971 }
Damien Miller34132e52000-01-14 15:45:46 +1100972 for (i = 0; i < num_listen_socks; i++) {
973 if (!FD_ISSET(listen_socks[i], fdset))
Damien Miller95def091999-11-25 00:26:21 +1100974 continue;
Damien Miller37023962000-07-11 17:31:38 +1000975 fromlen = sizeof(from);
976 newsock = accept(listen_socks[i], (struct sockaddr *)&from,
977 &fromlen);
978 if (newsock < 0) {
979 if (errno != EINTR && errno != EWOULDBLOCK)
980 error("accept: %.100s", strerror(errno));
981 continue;
982 }
983 if (fcntl(newsock, F_SETFL, 0) < 0) {
984 error("newsock del O_NONBLOCK: %s", strerror(errno));
985 continue;
986 }
Damien Miller942da032000-08-18 13:59:06 +1000987 if (drop_connection(startups) == 1) {
988 debug("drop connection #%d", startups);
Damien Miller37023962000-07-11 17:31:38 +1000989 close(newsock);
990 continue;
991 }
992 if (pipe(startup_p) == -1) {
993 close(newsock);
994 continue;
995 }
996
997 for (j = 0; j < options.max_startups; j++)
998 if (startup_pipes[j] == -1) {
999 startup_pipes[j] = startup_p[0];
1000 if (maxfd < startup_p[0])
1001 maxfd = startup_p[0];
1002 startups++;
1003 break;
1004 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001005
Damien Miller5428f641999-11-25 11:54:57 +11001006 /*
Damien Miller37023962000-07-11 17:31:38 +10001007 * Got connection. Fork a child to handle it, unless
1008 * we are in debugging mode.
Damien Miller5428f641999-11-25 11:54:57 +11001009 */
Damien Miller37023962000-07-11 17:31:38 +10001010 if (debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +11001011 /*
Damien Miller37023962000-07-11 17:31:38 +10001012 * In debugging mode. Close the listening
1013 * socket, and start processing the
1014 * connection without forking.
Damien Miller5428f641999-11-25 11:54:57 +11001015 */
Damien Miller37023962000-07-11 17:31:38 +10001016 debug("Server will not fork when running in debugging mode.");
Damien Miller34132e52000-01-14 15:45:46 +11001017 close_listen_socks();
Damien Miller95def091999-11-25 00:26:21 +11001018 sock_in = newsock;
1019 sock_out = newsock;
Damien Miller4d97ba22000-07-11 18:15:50 +10001020 startup_pipe = -1;
Damien Miller182ee6e2000-07-12 09:45:27 +10001021 pid = getpid();
Damien Miller95def091999-11-25 00:26:21 +11001022 break;
Damien Miller37023962000-07-11 17:31:38 +10001023 } else {
1024 /*
1025 * Normal production daemon. Fork, and have
1026 * the child process the connection. The
1027 * parent continues listening.
1028 */
1029 if ((pid = fork()) == 0) {
1030 /*
1031 * Child. Close the listening and max_startup
1032 * sockets. Start using the accepted socket.
1033 * Reinitialize logging (since our pid has
1034 * changed). We break out of the loop to handle
1035 * the connection.
1036 */
1037 startup_pipe = startup_p[1];
1038 for (j = 0; j < options.max_startups; j++)
1039 if (startup_pipes[j] != -1)
1040 close(startup_pipes[j]);
1041 close_listen_socks();
1042 sock_in = newsock;
1043 sock_out = newsock;
Kevin Stevesec84dc12000-12-13 17:45:15 +00001044 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller37023962000-07-11 17:31:38 +10001045 break;
1046 }
Damien Miller95def091999-11-25 00:26:21 +11001047 }
Damien Miller37023962000-07-11 17:31:38 +10001048
1049 /* Parent. Stay in the loop. */
1050 if (pid < 0)
1051 error("fork: %.100s", strerror(errno));
1052 else
1053 debug("Forked child %d.", pid);
1054
1055 close(startup_p[1]);
1056
1057 /* Mark that the key has been used (it was "given" to the child). */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001058 if ((options.protocol & SSH_PROTO_1) &&
1059 key_used == 0) {
1060 /* Schedule server key regeneration alarm. */
1061 signal(SIGALRM, key_regeneration_alarm);
1062 alarm(options.key_regeneration_time);
1063 key_used = 1;
1064 }
Damien Miller37023962000-07-11 17:31:38 +10001065
1066 arc4random_stir();
1067
1068 /* Close the new socket (the child is now taking care of it). */
1069 close(newsock);
Damien Miller95def091999-11-25 00:26:21 +11001070 }
Damien Miller34132e52000-01-14 15:45:46 +11001071 /* child process check (or debug mode) */
1072 if (num_listen_socks < 0)
1073 break;
Damien Miller95def091999-11-25 00:26:21 +11001074 }
1075 }
1076
1077 /* This is the child processing a new connection. */
1078
Damien Miller5428f641999-11-25 11:54:57 +11001079 /*
1080 * Disable the key regeneration alarm. We will not regenerate the
1081 * key since we are no longer in a position to give it to anyone. We
1082 * will not restart on SIGHUP since it no longer makes sense.
1083 */
Damien Miller95def091999-11-25 00:26:21 +11001084 alarm(0);
1085 signal(SIGALRM, SIG_DFL);
1086 signal(SIGHUP, SIG_DFL);
1087 signal(SIGTERM, SIG_DFL);
1088 signal(SIGQUIT, SIG_DFL);
1089 signal(SIGCHLD, SIG_DFL);
Damien Miller4e0f5e12000-08-29 11:05:50 +11001090 signal(SIGINT, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001091
Damien Miller5428f641999-11-25 11:54:57 +11001092 /*
1093 * Set socket options for the connection. We want the socket to
1094 * close as fast as possible without waiting for anything. If the
1095 * connection is not a socket, these will do nothing.
1096 */
1097 /* setsockopt(sock_in, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on)); */
Damien Miller95def091999-11-25 00:26:21 +11001098 linger.l_onoff = 1;
1099 linger.l_linger = 5;
1100 setsockopt(sock_in, SOL_SOCKET, SO_LINGER, (void *) &linger, sizeof(linger));
1101
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001102 /* Set keepalives if requested. */
1103 if (options.keepalives &&
1104 setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, (void *)&on,
1105 sizeof(on)) < 0)
1106 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
1107
Damien Miller5428f641999-11-25 11:54:57 +11001108 /*
1109 * Register our connection. This turns encryption off because we do
1110 * not have a key.
1111 */
Damien Miller95def091999-11-25 00:26:21 +11001112 packet_set_connection(sock_in, sock_out);
1113
1114 remote_port = get_remote_port();
1115 remote_ip = get_remote_ipaddr();
1116
1117 /* Check whether logins are denied from this host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001118#ifdef LIBWRAP
Damien Miller34132e52000-01-14 15:45:46 +11001119 /* XXX LIBWRAP noes not know about IPv6 */
Damien Miller95def091999-11-25 00:26:21 +11001120 {
1121 struct request_info req;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001122
Kevin Stevesec84dc12000-12-13 17:45:15 +00001123 request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, NULL);
Damien Miller95def091999-11-25 00:26:21 +11001124 fromhost(&req);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001125
Damien Miller95def091999-11-25 00:26:21 +11001126 if (!hosts_access(&req)) {
Ben Lindstrom7de696e2001-03-29 00:45:12 +00001127 refuse(&req);
Damien Miller95def091999-11-25 00:26:21 +11001128 close(sock_in);
1129 close(sock_out);
Damien Miller95def091999-11-25 00:26:21 +11001130 }
Damien Miller34132e52000-01-14 15:45:46 +11001131/*XXX IPv6 verbose("Connection from %.500s port %d", eval_client(&req), remote_port); */
Damien Miller95def091999-11-25 00:26:21 +11001132 }
Damien Miller34132e52000-01-14 15:45:46 +11001133#endif /* LIBWRAP */
Damien Miller95def091999-11-25 00:26:21 +11001134 /* Log the connection. */
1135 verbose("Connection from %.500s port %d", remote_ip, remote_port);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001136
Damien Miller5428f641999-11-25 11:54:57 +11001137 /*
1138 * We don\'t want to listen forever unless the other side
1139 * successfully authenticates itself. So we set up an alarm which is
1140 * cleared after successful authentication. A limit of zero
1141 * indicates no limit. Note that we don\'t set the alarm in debugging
1142 * mode; it is just annoying to have the server exit just when you
1143 * are about to discover the bug.
1144 */
Damien Miller95def091999-11-25 00:26:21 +11001145 signal(SIGALRM, grace_alarm_handler);
1146 if (!debug_flag)
1147 alarm(options.login_grace_time);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001148
Damien Millerb38eff82000-04-01 11:09:21 +10001149 sshd_exchange_identification(sock_in, sock_out);
Damien Miller5428f641999-11-25 11:54:57 +11001150 /*
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001151 * Check that the connection comes from a privileged port.
1152 * Rhosts-Authentication only makes sense from priviledged
Damien Miller5428f641999-11-25 11:54:57 +11001153 * programs. Of course, if the intruder has root access on his local
1154 * machine, he can connect from any port. So do not use these
1155 * authentication methods from machines that you do not trust.
1156 */
Damien Miller95def091999-11-25 00:26:21 +11001157 if (remote_port >= IPPORT_RESERVED ||
1158 remote_port < IPPORT_RESERVED / 2) {
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001159 debug("Rhosts Authentication disabled, "
Damien Miller0bc1bd82000-11-13 22:57:25 +11001160 "originating port not trusted.");
Damien Miller95def091999-11-25 00:26:21 +11001161 options.rhosts_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +11001162 }
Ben Lindstromec95ed92001-07-04 04:21:14 +00001163#if defined(KRB4) && !defined(KRB5)
Damien Miller34132e52000-01-14 15:45:46 +11001164 if (!packet_connection_is_ipv4() &&
1165 options.kerberos_authentication) {
1166 debug("Kerberos Authentication disabled, only available for IPv4.");
1167 options.kerberos_authentication = 0;
1168 }
Ben Lindstromec95ed92001-07-04 04:21:14 +00001169#endif /* KRB4 && !KRB5 */
Ben Lindstromf79aeff2001-02-10 21:27:11 +00001170#ifdef AFS
1171 /* If machine has AFS, set process authentication group. */
1172 if (k_hasafs()) {
1173 k_setpag();
1174 k_unlog();
1175 }
1176#endif /* AFS */
Damien Miller34132e52000-01-14 15:45:46 +11001177
Damien Miller95def091999-11-25 00:26:21 +11001178 packet_set_nonblocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001179
Damien Miller396691a2000-01-20 22:44:08 +11001180 /* perform the key exchange */
Damien Miller396691a2000-01-20 22:44:08 +11001181 /* authenticate user and start session */
Damien Millerefb4afe2000-04-12 18:45:05 +10001182 if (compat20) {
1183 do_ssh2_kex();
1184 do_authentication2();
1185 } else {
1186 do_ssh1_kex();
1187 do_authentication();
1188 }
Damien Miller95def091999-11-25 00:26:21 +11001189 /* The connection has been terminated. */
1190 verbose("Closing connection to %.100s", remote_ip);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001191
Damien Millerbeb4ba51999-12-28 15:09:35 +11001192#ifdef USE_PAM
Damien Millere72b7af1999-12-30 15:08:44 +11001193 finish_pam();
Damien Millerbeb4ba51999-12-28 15:09:35 +11001194#endif /* USE_PAM */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001195
Damien Miller95def091999-11-25 00:26:21 +11001196 packet_close();
1197 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001198}
1199
Damien Miller95def091999-11-25 00:26:21 +11001200/*
Damien Miller396691a2000-01-20 22:44:08 +11001201 * SSH1 key exchange
Damien Miller95def091999-11-25 00:26:21 +11001202 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001203static void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001204do_ssh1_kex(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001205{
Damien Miller95def091999-11-25 00:26:21 +11001206 int i, len;
Damien Miller396691a2000-01-20 22:44:08 +11001207 int plen, slen;
Damien Miller7650bc62001-01-30 09:27:26 +11001208 int rsafail = 0;
Damien Miller95def091999-11-25 00:26:21 +11001209 BIGNUM *session_key_int;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001210 u_char session_key[SSH_SESSION_KEY_LENGTH];
1211 u_char cookie[8];
1212 u_int cipher_type, auth_mask, protocol_flags;
Damien Miller95def091999-11-25 00:26:21 +11001213 u_int32_t rand = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001214
Damien Miller5428f641999-11-25 11:54:57 +11001215 /*
1216 * Generate check bytes that the client must send back in the user
1217 * packet in order for it to be accepted; this is used to defy ip
1218 * spoofing attacks. Note that this only works against somebody
1219 * doing IP spoofing from a remote machine; any machine on the local
1220 * network can still see outgoing packets and catch the random
1221 * cookie. This only affects rhosts authentication, and this is one
1222 * of the reasons why it is inherently insecure.
1223 */
Damien Miller95def091999-11-25 00:26:21 +11001224 for (i = 0; i < 8; i++) {
1225 if (i % 4 == 0)
1226 rand = arc4random();
Damien Miller396691a2000-01-20 22:44:08 +11001227 cookie[i] = rand & 0xff;
Damien Miller95def091999-11-25 00:26:21 +11001228 rand >>= 8;
1229 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001230
Damien Miller5428f641999-11-25 11:54:57 +11001231 /*
1232 * Send our public key. We include in the packet 64 bits of random
1233 * data that must be matched in the reply in order to prevent IP
1234 * spoofing.
1235 */
Damien Miller95def091999-11-25 00:26:21 +11001236 packet_start(SSH_SMSG_PUBLIC_KEY);
1237 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001238 packet_put_char(cookie[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001239
Damien Miller95def091999-11-25 00:26:21 +11001240 /* Store our public server RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001241 packet_put_int(BN_num_bits(sensitive_data.server_key->rsa->n));
1242 packet_put_bignum(sensitive_data.server_key->rsa->e);
1243 packet_put_bignum(sensitive_data.server_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001244
Damien Miller95def091999-11-25 00:26:21 +11001245 /* Store our public host RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001246 packet_put_int(BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
1247 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->e);
1248 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001249
Damien Miller95def091999-11-25 00:26:21 +11001250 /* Put protocol flags. */
1251 packet_put_int(SSH_PROTOFLAG_HOST_IN_FWD_OPEN);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001252
Damien Miller95def091999-11-25 00:26:21 +11001253 /* Declare which ciphers we support. */
Damien Miller874d77b2000-10-14 16:23:11 +11001254 packet_put_int(cipher_mask_ssh1(0));
Damien Miller95def091999-11-25 00:26:21 +11001255
1256 /* Declare supported authentication types. */
1257 auth_mask = 0;
1258 if (options.rhosts_authentication)
1259 auth_mask |= 1 << SSH_AUTH_RHOSTS;
1260 if (options.rhosts_rsa_authentication)
1261 auth_mask |= 1 << SSH_AUTH_RHOSTS_RSA;
1262 if (options.rsa_authentication)
1263 auth_mask |= 1 << SSH_AUTH_RSA;
Ben Lindstromec95ed92001-07-04 04:21:14 +00001264#if defined(KRB4) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +11001265 if (options.kerberos_authentication)
1266 auth_mask |= 1 << SSH_AUTH_KERBEROS;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001267#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +00001268#if defined(AFS) || defined(KRB5)
Damien Miller95def091999-11-25 00:26:21 +11001269 if (options.kerberos_tgt_passing)
1270 auth_mask |= 1 << SSH_PASS_KERBEROS_TGT;
Ben Lindstromec95ed92001-07-04 04:21:14 +00001271#endif
1272#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +11001273 if (options.afs_token_passing)
1274 auth_mask |= 1 << SSH_PASS_AFS_TOKEN;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001275#endif
Ben Lindstrom551ea372001-06-05 18:56:16 +00001276 if (options.challenge_response_authentication == 1)
Damien Miller95def091999-11-25 00:26:21 +11001277 auth_mask |= 1 << SSH_AUTH_TIS;
Damien Miller95def091999-11-25 00:26:21 +11001278 if (options.password_authentication)
1279 auth_mask |= 1 << SSH_AUTH_PASSWORD;
1280 packet_put_int(auth_mask);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001281
Damien Miller95def091999-11-25 00:26:21 +11001282 /* Send the packet and wait for it to be sent. */
1283 packet_send();
1284 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001285
Damien Miller0bc1bd82000-11-13 22:57:25 +11001286 debug("Sent %d bit server key and %d bit host key.",
1287 BN_num_bits(sensitive_data.server_key->rsa->n),
1288 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001289
Damien Miller95def091999-11-25 00:26:21 +11001290 /* Read clients reply (cipher type and session key). */
1291 packet_read_expect(&plen, SSH_CMSG_SESSION_KEY);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001292
Damien Miller50945fa1999-12-09 10:31:37 +11001293 /* Get cipher type and check whether we accept this. */
Damien Miller95def091999-11-25 00:26:21 +11001294 cipher_type = packet_get_char();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001295
Damien Miller874d77b2000-10-14 16:23:11 +11001296 if (!(cipher_mask_ssh1(0) & (1 << cipher_type)))
Damien Miller50945fa1999-12-09 10:31:37 +11001297 packet_disconnect("Warning: client selects unsupported cipher.");
1298
Damien Miller95def091999-11-25 00:26:21 +11001299 /* Get check bytes from the packet. These must match those we
1300 sent earlier with the public key packet. */
1301 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001302 if (cookie[i] != packet_get_char())
Damien Miller95def091999-11-25 00:26:21 +11001303 packet_disconnect("IP Spoofing check bytes do not match.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001304
Damien Miller95def091999-11-25 00:26:21 +11001305 debug("Encryption type: %.200s", cipher_name(cipher_type));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001306
Damien Miller95def091999-11-25 00:26:21 +11001307 /* Get the encrypted integer. */
1308 session_key_int = BN_new();
1309 packet_get_bignum(session_key_int, &slen);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001310
Damien Miller95def091999-11-25 00:26:21 +11001311 protocol_flags = packet_get_int();
1312 packet_set_protocol_flags(protocol_flags);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001313
Damien Miller95def091999-11-25 00:26:21 +11001314 packet_integrity_check(plen, 1 + 8 + slen + 4, SSH_CMSG_SESSION_KEY);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001315
Damien Miller5428f641999-11-25 11:54:57 +11001316 /*
1317 * Decrypt it using our private server key and private host key (key
1318 * with larger modulus first).
1319 */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001320 if (BN_cmp(sensitive_data.server_key->rsa->n, sensitive_data.ssh1_host_key->rsa->n) > 0) {
Damien Miller7650bc62001-01-30 09:27:26 +11001321 /* Server key has bigger modulus. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001322 if (BN_num_bits(sensitive_data.server_key->rsa->n) <
1323 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1324 fatal("do_connection: %s: server_key %d < host_key %d + SSH_KEY_BITS_RESERVED %d",
1325 get_remote_ipaddr(),
1326 BN_num_bits(sensitive_data.server_key->rsa->n),
1327 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1328 SSH_KEY_BITS_RESERVED);
Damien Miller95def091999-11-25 00:26:21 +11001329 }
Damien Miller7650bc62001-01-30 09:27:26 +11001330 if (rsa_private_decrypt(session_key_int, session_key_int,
1331 sensitive_data.server_key->rsa) <= 0)
1332 rsafail++;
1333 if (rsa_private_decrypt(session_key_int, session_key_int,
1334 sensitive_data.ssh1_host_key->rsa) <= 0)
1335 rsafail++;
Damien Miller95def091999-11-25 00:26:21 +11001336 } else {
1337 /* Host key has bigger modulus (or they are equal). */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001338 if (BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) <
1339 BN_num_bits(sensitive_data.server_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1340 fatal("do_connection: %s: host_key %d < server_key %d + SSH_KEY_BITS_RESERVED %d",
1341 get_remote_ipaddr(),
1342 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1343 BN_num_bits(sensitive_data.server_key->rsa->n),
1344 SSH_KEY_BITS_RESERVED);
Damien Miller95def091999-11-25 00:26:21 +11001345 }
Damien Miller7650bc62001-01-30 09:27:26 +11001346 if (rsa_private_decrypt(session_key_int, session_key_int,
1347 sensitive_data.ssh1_host_key->rsa) < 0)
1348 rsafail++;
1349 if (rsa_private_decrypt(session_key_int, session_key_int,
1350 sensitive_data.server_key->rsa) < 0)
1351 rsafail++;
Damien Miller95def091999-11-25 00:26:21 +11001352 }
Damien Miller5428f641999-11-25 11:54:57 +11001353 /*
1354 * Extract session key from the decrypted integer. The key is in the
1355 * least significant 256 bits of the integer; the first byte of the
1356 * key is in the highest bits.
1357 */
Damien Miller7650bc62001-01-30 09:27:26 +11001358 if (!rsafail) {
1359 BN_mask_bits(session_key_int, sizeof(session_key) * 8);
1360 len = BN_num_bytes(session_key_int);
1361 if (len < 0 || len > sizeof(session_key)) {
1362 error("do_connection: bad session key len from %s: "
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001363 "session_key_int %d > sizeof(session_key) %lu",
1364 get_remote_ipaddr(), len, (u_long)sizeof(session_key));
Damien Miller7650bc62001-01-30 09:27:26 +11001365 rsafail++;
1366 } else {
1367 memset(session_key, 0, sizeof(session_key));
1368 BN_bn2bin(session_key_int,
1369 session_key + sizeof(session_key) - len);
Ben Lindstromeb648a72001-03-05 06:00:29 +00001370
1371 compute_session_id(session_id, cookie,
1372 sensitive_data.ssh1_host_key->rsa->n,
1373 sensitive_data.server_key->rsa->n);
1374 /*
1375 * Xor the first 16 bytes of the session key with the
1376 * session id.
1377 */
1378 for (i = 0; i < 16; i++)
1379 session_key[i] ^= session_id[i];
Damien Miller7650bc62001-01-30 09:27:26 +11001380 }
1381 }
1382 if (rsafail) {
Ben Lindstromeb648a72001-03-05 06:00:29 +00001383 int bytes = BN_num_bytes(session_key_int);
1384 char *buf = xmalloc(bytes);
1385 MD5_CTX md;
1386
Damien Miller7650bc62001-01-30 09:27:26 +11001387 log("do_connection: generating a fake encryption key");
Ben Lindstromeb648a72001-03-05 06:00:29 +00001388 BN_bn2bin(session_key_int, buf);
1389 MD5_Init(&md);
1390 MD5_Update(&md, buf, bytes);
1391 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1392 MD5_Final(session_key, &md);
1393 MD5_Init(&md);
1394 MD5_Update(&md, session_key, 16);
1395 MD5_Update(&md, buf, bytes);
1396 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1397 MD5_Final(session_key + 16, &md);
1398 memset(buf, 0, bytes);
1399 xfree(buf);
Ben Lindstrom941ac822001-03-05 06:25:23 +00001400 for (i = 0; i < 16; i++)
1401 session_id[i] = session_key[i] ^ session_key[i + 16];
Damien Miller7650bc62001-01-30 09:27:26 +11001402 }
Ben Lindstromeb648a72001-03-05 06:00:29 +00001403 /* Destroy the private and public keys. They will no longer be needed. */
1404 destroy_sensitive_data();
1405
Damien Miller396691a2000-01-20 22:44:08 +11001406 /* Destroy the decrypted integer. It is no longer needed. */
1407 BN_clear_free(session_key_int);
1408
Damien Miller95def091999-11-25 00:26:21 +11001409 /* Set the session key. From this on all communications will be encrypted. */
1410 packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, cipher_type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001411
Damien Miller95def091999-11-25 00:26:21 +11001412 /* Destroy our copy of the session key. It is no longer needed. */
1413 memset(session_key, 0, sizeof(session_key));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001414
Damien Miller95def091999-11-25 00:26:21 +11001415 debug("Received session key; encryption turned on.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001416
Damien Miller95def091999-11-25 00:26:21 +11001417 /* Send an acknowledgement packet. Note that this packet is sent encrypted. */
1418 packet_start(SSH_SMSG_SUCCESS);
1419 packet_send();
1420 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001421}
Damien Millerefb4afe2000-04-12 18:45:05 +10001422
1423/*
1424 * SSH2 key exchange: diffie-hellman-group1-sha1
1425 */
Ben Lindstrombba81212001-06-25 05:01:22 +00001426static void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001427do_ssh2_kex(void)
Damien Millerefb4afe2000-04-12 18:45:05 +10001428{
Damien Millerefb4afe2000-04-12 18:45:05 +10001429 Kex *kex;
Damien Millerefb4afe2000-04-12 18:45:05 +10001430
Damien Miller78928792000-04-12 20:17:38 +10001431 if (options.ciphers != NULL) {
Damien Miller4af51302000-04-16 11:18:38 +10001432 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
Damien Miller78928792000-04-12 20:17:38 +10001433 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
1434 }
Damien Millera0ff4662001-03-30 10:49:35 +10001435 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
1436 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
1437 myproposal[PROPOSAL_ENC_ALGS_STOC] =
1438 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
1439
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001440 if (options.macs != NULL) {
1441 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
1442 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
1443 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001444 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = list_hostkey_types();
1445
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001446 /* start key exchange */
Ben Lindstrom238abf62001-04-04 17:52:53 +00001447 kex = kex_setup(myproposal);
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +00001448 kex->server = 1;
1449 kex->client_version_string=client_version_string;
1450 kex->server_version_string=server_version_string;
1451 kex->load_host_key=&get_hostkey_by_type;
Damien Millerefb4afe2000-04-12 18:45:05 +10001452
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001453 xxx_kex = kex;
1454
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001455 dispatch_run(DISPATCH_BLOCK, &kex->done, kex);
Damien Miller874d77b2000-10-14 16:23:11 +11001456
Ben Lindstrom2d90e002001-04-04 02:00:54 +00001457 session_id2 = kex->session_id;
1458 session_id2_len = kex->session_id_len;
1459
Damien Miller874d77b2000-10-14 16:23:11 +11001460#ifdef DEBUG_KEXDH
1461 /* send 1st encrypted/maced/compressed message */
1462 packet_start(SSH2_MSG_IGNORE);
1463 packet_put_cstring("markus");
1464 packet_send();
1465 packet_write_wait();
1466#endif
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +00001467 debug("KEX done");
Damien Millerefb4afe2000-04-12 18:45:05 +10001468}