blob: b5e2d0f6f715e20a80e474e8b0efcf4a3ee8fd9a [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"
Damien Millerff75ac42001-03-30 10:50:32 +100043RCSID("$OpenBSD: sshd.c,v 1.185 2001/03/29 23:42:01 djm 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"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100073
74#ifdef LIBWRAP
75#include <tcpd.h>
76#include <syslog.h>
77int allow_severity = LOG_INFO;
78int deny_severity = LOG_WARNING;
79#endif /* LIBWRAP */
80
81#ifndef O_NOCTTY
82#define O_NOCTTY 0
83#endif
84
Ben Lindstrom49a79c02000-11-17 03:47:20 +000085#ifdef HAVE___PROGNAME
86extern char *__progname;
87#else
88char *__progname;
89#endif
90
Damien Millerd4a8b7e1999-10-27 13:42:43 +100091/* Server configuration options. */
92ServerOptions options;
93
94/* Name of the server configuration file. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +000095char *config_file_name = _PATH_SERVER_CONFIG_FILE;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100096
Damien Miller4af51302000-04-16 11:18:38 +100097/*
Damien Miller34132e52000-01-14 15:45:46 +110098 * Flag indicating whether IPv4 or IPv6. This can be set on the command line.
99 * Default value is AF_UNSPEC means both IPv4 and IPv6.
100 */
Damien Miller7d80e342000-01-19 14:36:49 +1100101#ifdef IPV4_DEFAULT
102int IPv4or6 = AF_INET;
103#else
Damien Miller34132e52000-01-14 15:45:46 +1100104int IPv4or6 = AF_UNSPEC;
Damien Miller7d80e342000-01-19 14:36:49 +1100105#endif
Damien Miller34132e52000-01-14 15:45:46 +1100106
Damien Miller95def091999-11-25 00:26:21 +1100107/*
108 * Debug mode flag. This can be set on the command line. If debug
109 * mode is enabled, extra debugging output will be sent to the system
110 * log, the daemon will not go to background, and will exit after processing
111 * the first connection.
112 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000113int debug_flag = 0;
114
115/* Flag indicating that the daemon is being started from inetd. */
116int inetd_flag = 0;
117
Ben Lindstromc72745a2000-12-02 19:03:54 +0000118/* Flag indicating that sshd should not detach and become a daemon. */
119int no_daemon_flag = 0;
120
Damien Miller5ce662a1999-11-11 17:57:39 +1100121/* debug goes to stderr unless inetd_flag is set */
122int log_stderr = 0;
123
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000124/* Saved arguments to main(). */
125char **saved_argv;
Damien Millerb8c656e2000-06-28 15:22:41 +1000126int saved_argc;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000127
Damien Miller5428f641999-11-25 11:54:57 +1100128/*
Damien Miller34132e52000-01-14 15:45:46 +1100129 * The sockets that the server is listening; this is used in the SIGHUP
130 * signal handler.
Damien Miller5428f641999-11-25 11:54:57 +1100131 */
Damien Miller34132e52000-01-14 15:45:46 +1100132#define MAX_LISTEN_SOCKS 16
133int listen_socks[MAX_LISTEN_SOCKS];
134int num_listen_socks = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000135
Damien Miller5428f641999-11-25 11:54:57 +1100136/*
137 * the client's version string, passed by sshd2 in compat mode. if != NULL,
138 * sshd will skip the version-number exchange
139 */
Damien Miller95def091999-11-25 00:26:21 +1100140char *client_version_string = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000141char *server_version_string = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000142
Damien Miller5428f641999-11-25 11:54:57 +1100143/*
144 * Any really sensitive data in the application is contained in this
145 * structure. The idea is that this structure could be locked into memory so
146 * that the pages do not get written into swap. However, there are some
147 * problems. The private key contains BIGNUMs, and we do not (in principle)
148 * have access to the internals of them, and locking just the structure is
149 * not very useful. Currently, memory locking is not implemented.
150 */
Damien Miller95def091999-11-25 00:26:21 +1100151struct {
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000152 Key *server_key; /* ephemeral server key */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100153 Key *ssh1_host_key; /* ssh1 host key */
154 Key **host_keys; /* all private host keys */
155 int have_ssh1_key;
156 int have_ssh2_key;
Ben Lindstromeb648a72001-03-05 06:00:29 +0000157 u_char ssh1_cookie[SSH_SESSION_KEY_LENGTH];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000158} sensitive_data;
159
Damien Miller5428f641999-11-25 11:54:57 +1100160/*
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000161 * Flag indicating whether the RSA server key needs to be regenerated.
162 * Is set in the SIGALRM handler and cleared when the key is regenerated.
Damien Miller5428f641999-11-25 11:54:57 +1100163 */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000164int key_do_regen = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000165
166/* This is set to true when SIGHUP is received. */
167int received_sighup = 0;
168
Damien Millerb38eff82000-04-01 11:09:21 +1000169/* session identifier, used by RSA-auth */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000170u_char session_id[16];
Damien Millerb38eff82000-04-01 11:09:21 +1000171
Damien Millereba71ba2000-04-29 23:57:08 +1000172/* same for ssh2 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000173u_char *session_id2 = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000174int session_id2_len = 0;
175
Damien Miller942da032000-08-18 13:59:06 +1000176/* record remote hostname or ip */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000177u_int utmp_len = MAXHOSTNAMELEN;
Damien Miller942da032000-08-18 13:59:06 +1000178
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000179/* Prototypes for various functions defined later in this file. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000180void do_ssh1_kex(void);
181void do_ssh2_kex(void);
Damien Miller98c7ad62000-03-09 21:27:49 +1100182
Damien Miller874d77b2000-10-14 16:23:11 +1100183void ssh_dh1_server(Kex *, Buffer *_kexinit, Buffer *);
184void ssh_dhgex_server(Kex *, Buffer *_kexinit, Buffer *);
185
Damien Miller98c7ad62000-03-09 21:27:49 +1100186/*
Damien Miller34132e52000-01-14 15:45:46 +1100187 * Close all listening sockets
188 */
189void
190close_listen_socks(void)
191{
192 int i;
193 for (i = 0; i < num_listen_socks; i++)
194 close(listen_socks[i]);
195 num_listen_socks = -1;
196}
197
198/*
Damien Miller95def091999-11-25 00:26:21 +1100199 * Signal handler for SIGHUP. Sshd execs itself when it receives SIGHUP;
200 * the effect is to reread the configuration file (and to regenerate
201 * the server key).
202 */
Damien Miller4af51302000-04-16 11:18:38 +1000203void
Damien Miller95def091999-11-25 00:26:21 +1100204sighup_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000205{
Damien Miller95def091999-11-25 00:26:21 +1100206 received_sighup = 1;
207 signal(SIGHUP, sighup_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000208}
209
Damien Miller95def091999-11-25 00:26:21 +1100210/*
211 * Called from the main program after receiving SIGHUP.
212 * Restarts the server.
213 */
Damien Miller4af51302000-04-16 11:18:38 +1000214void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000215sighup_restart(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000216{
Damien Miller95def091999-11-25 00:26:21 +1100217 log("Received SIGHUP; restarting.");
Damien Miller34132e52000-01-14 15:45:46 +1100218 close_listen_socks();
Damien Miller95def091999-11-25 00:26:21 +1100219 execv(saved_argv[0], saved_argv);
Kevin Stevesec84dc12000-12-13 17:45:15 +0000220 log("RESTART FAILED: av[0]='%.100s', error: %.100s.", saved_argv[0], strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100221 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000222}
223
Damien Miller95def091999-11-25 00:26:21 +1100224/*
225 * Generic signal handler for terminating signals in the master daemon.
226 * These close the listen socket; not closing it seems to cause "Address
227 * already in use" problems on some machines, which is inconvenient.
228 */
Damien Miller4af51302000-04-16 11:18:38 +1000229void
Damien Miller95def091999-11-25 00:26:21 +1100230sigterm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000231{
Damien Miller95def091999-11-25 00:26:21 +1100232 log("Received signal %d; terminating.", sig);
Damien Miller34132e52000-01-14 15:45:46 +1100233 close_listen_socks();
Damien Miller6f83b8e2000-05-02 09:23:45 +1000234 unlink(options.pid_file);
Damien Miller95def091999-11-25 00:26:21 +1100235 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000236}
237
Damien Miller95def091999-11-25 00:26:21 +1100238/*
239 * SIGCHLD handler. This is called whenever a child dies. This will then
240 * reap any zombies left by exited c.
241 */
Damien Miller4af51302000-04-16 11:18:38 +1000242void
Damien Miller95def091999-11-25 00:26:21 +1100243main_sigchld_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000244{
Damien Miller95def091999-11-25 00:26:21 +1100245 int save_errno = errno;
246 int status;
Damien Miller431f66b1999-11-21 18:31:57 +1100247
Damien Miller95def091999-11-25 00:26:21 +1100248 while (waitpid(-1, &status, WNOHANG) > 0)
249 ;
Damien Miller431f66b1999-11-21 18:31:57 +1100250
Damien Miller95def091999-11-25 00:26:21 +1100251 signal(SIGCHLD, main_sigchld_handler);
252 errno = save_errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000253}
254
Damien Miller95def091999-11-25 00:26:21 +1100255/*
256 * Signal handler for the alarm after the login grace period has expired.
257 */
Damien Miller4af51302000-04-16 11:18:38 +1000258void
Damien Miller95def091999-11-25 00:26:21 +1100259grace_alarm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000260{
Damien Miller95def091999-11-25 00:26:21 +1100261 /* Close the connection. */
262 packet_close();
263
264 /* Log error and exit. */
265 fatal("Timeout before authentication for %s.", get_remote_ipaddr());
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000266}
267
Damien Miller95def091999-11-25 00:26:21 +1100268/*
Damien Miller95def091999-11-25 00:26:21 +1100269 * Signal handler for the key regeneration alarm. Note that this
270 * alarm only occurs in the daemon waiting for connections, and it does not
271 * do anything with the private key or random state before forking.
272 * Thus there should be no concurrency control/asynchronous execution
273 * problems.
274 */
Damien Miller4af51302000-04-16 11:18:38 +1000275void
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000276generate_ephemeral_server_key(void)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100277{
Ben Lindstromeb648a72001-03-05 06:00:29 +0000278 u_int32_t rand = 0;
279 int i;
280
Damien Millerff75ac42001-03-30 10:50:32 +1000281 verbose("Generating %s%d bit RSA key.",
282 sensitive_data.server_key ? "new " : "", options.server_key_bits);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100283 if (sensitive_data.server_key != NULL)
284 key_free(sensitive_data.server_key);
Damien Millerff75ac42001-03-30 10:50:32 +1000285 sensitive_data.server_key = key_generate(KEY_RSA1,
286 options.server_key_bits);
287 verbose("RSA key generation complete.");
Ben Lindstromeb648a72001-03-05 06:00:29 +0000288
289 for (i = 0; i < SSH_SESSION_KEY_LENGTH; i++) {
290 if (i % 4 == 0)
291 rand = arc4random();
292 sensitive_data.ssh1_cookie[i] = rand & 0xff;
293 rand >>= 8;
294 }
295 arc4random_stir();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100296}
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000297
Damien Miller0bc1bd82000-11-13 22:57:25 +1100298void
Damien Miller95def091999-11-25 00:26:21 +1100299key_regeneration_alarm(int sig)
300{
301 int save_errno = errno;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000302 signal(SIGALRM, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +1100303 errno = save_errno;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000304 key_do_regen = 1;
Damien Miller95def091999-11-25 00:26:21 +1100305}
306
Damien Millerb38eff82000-04-01 11:09:21 +1000307void
308sshd_exchange_identification(int sock_in, int sock_out)
309{
Damien Miller78928792000-04-12 20:17:38 +1000310 int i, mismatch;
Damien Millerb38eff82000-04-01 11:09:21 +1000311 int remote_major, remote_minor;
Damien Miller78928792000-04-12 20:17:38 +1000312 int major, minor;
Damien Millerb38eff82000-04-01 11:09:21 +1000313 char *s;
314 char buf[256]; /* Must not be larger than remote_version. */
315 char remote_version[256]; /* Must be at least as big as buf. */
316
Damien Miller78928792000-04-12 20:17:38 +1000317 if ((options.protocol & SSH_PROTO_1) &&
318 (options.protocol & SSH_PROTO_2)) {
319 major = PROTOCOL_MAJOR_1;
320 minor = 99;
321 } else if (options.protocol & SSH_PROTO_2) {
322 major = PROTOCOL_MAJOR_2;
323 minor = PROTOCOL_MINOR_2;
324 } else {
325 major = PROTOCOL_MAJOR_1;
326 minor = PROTOCOL_MINOR_1;
327 }
328 snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n", major, minor, SSH_VERSION);
Damien Millerb38eff82000-04-01 11:09:21 +1000329 server_version_string = xstrdup(buf);
330
331 if (client_version_string == NULL) {
332 /* Send our protocol version identification. */
333 if (atomicio(write, sock_out, server_version_string, strlen(server_version_string))
334 != strlen(server_version_string)) {
335 log("Could not write ident string to %s.", get_remote_ipaddr());
336 fatal_cleanup();
337 }
338
Ben Lindstrom5393f932001-02-15 03:17:13 +0000339 /* Read other side's version identification. */
340 memset(buf, 0, sizeof(buf));
Damien Millerb38eff82000-04-01 11:09:21 +1000341 for (i = 0; i < sizeof(buf) - 1; i++) {
Damien Millerbf7f4662000-06-23 10:16:38 +1000342 if (atomicio(read, sock_in, &buf[i], 1) != 1) {
Ben Lindstroma9a29e12001-02-20 01:20:47 +0000343 log("Did not receive identification string from %s.",
344 get_remote_ipaddr());
Damien Millerb38eff82000-04-01 11:09:21 +1000345 fatal_cleanup();
346 }
347 if (buf[i] == '\r') {
Ben Lindstrom69d8c072001-03-22 22:45:33 +0000348 buf[i] = 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100349 /* Kludge for F-Secure Macintosh < 1.0.2 */
350 if (i == 12 &&
351 strncmp(buf, "SSH-1.5-W1.0", 12) == 0)
352 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000353 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000354 }
355 if (buf[i] == '\n') {
Ben Lindstrom69d8c072001-03-22 22:45:33 +0000356 buf[i] = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000357 break;
358 }
359 }
360 buf[sizeof(buf) - 1] = 0;
361 client_version_string = xstrdup(buf);
362 }
363
364 /*
365 * Check that the versions match. In future this might accept
366 * several versions and set appropriate flags to handle them.
367 */
368 if (sscanf(client_version_string, "SSH-%d.%d-%[^\n]\n",
369 &remote_major, &remote_minor, remote_version) != 3) {
Damien Miller4af51302000-04-16 11:18:38 +1000370 s = "Protocol mismatch.\n";
Damien Millerb38eff82000-04-01 11:09:21 +1000371 (void) atomicio(write, sock_out, s, strlen(s));
372 close(sock_in);
373 close(sock_out);
374 log("Bad protocol version identification '%.100s' from %s",
375 client_version_string, get_remote_ipaddr());
376 fatal_cleanup();
377 }
378 debug("Client protocol version %d.%d; client software version %.100s",
379 remote_major, remote_minor, remote_version);
380
Damien Millerefb4afe2000-04-12 18:45:05 +1000381 compat_datafellows(remote_version);
382
Damien Miller27dbe6f2001-03-19 22:36:20 +1100383 if (datafellows & SSH_BUG_SCANNER) {
384 log("scanned from %s with %s. Don't panic.",
385 get_remote_ipaddr(), client_version_string);
386 fatal_cleanup();
387 }
388
Damien Miller78928792000-04-12 20:17:38 +1000389 mismatch = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000390 switch(remote_major) {
391 case 1:
Damien Millereba71ba2000-04-29 23:57:08 +1000392 if (remote_minor == 99) {
393 if (options.protocol & SSH_PROTO_2)
394 enable_compat20();
395 else
396 mismatch = 1;
397 break;
398 }
Damien Miller78928792000-04-12 20:17:38 +1000399 if (!(options.protocol & SSH_PROTO_1)) {
400 mismatch = 1;
401 break;
402 }
Damien Millerb38eff82000-04-01 11:09:21 +1000403 if (remote_minor < 3) {
Damien Miller37023962000-07-11 17:31:38 +1000404 packet_disconnect("Your ssh version is too old and "
Damien Millerb38eff82000-04-01 11:09:21 +1000405 "is no longer supported. Please install a newer version.");
406 } else if (remote_minor == 3) {
407 /* note that this disables agent-forwarding */
408 enable_compat13();
409 }
Damien Miller78928792000-04-12 20:17:38 +1000410 break;
Damien Millerefb4afe2000-04-12 18:45:05 +1000411 case 2:
Damien Miller78928792000-04-12 20:17:38 +1000412 if (options.protocol & SSH_PROTO_2) {
Damien Millerefb4afe2000-04-12 18:45:05 +1000413 enable_compat20();
414 break;
415 }
416 /* FALLTHROUGH */
Damien Miller4af51302000-04-16 11:18:38 +1000417 default:
Damien Miller78928792000-04-12 20:17:38 +1000418 mismatch = 1;
Damien Millerb38eff82000-04-01 11:09:21 +1000419 break;
420 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000421 chop(server_version_string);
Damien Miller78928792000-04-12 20:17:38 +1000422 debug("Local version string %.200s", server_version_string);
423
424 if (mismatch) {
425 s = "Protocol major versions differ.\n";
426 (void) atomicio(write, sock_out, s, strlen(s));
427 close(sock_in);
428 close(sock_out);
429 log("Protocol major versions differ for %s: %.200s vs. %.200s",
430 get_remote_ipaddr(),
431 server_version_string, client_version_string);
432 fatal_cleanup();
433 }
Damien Millereba71ba2000-04-29 23:57:08 +1000434 if (compat20)
435 packet_set_ssh2_format();
436}
437
438
Damien Miller0bc1bd82000-11-13 22:57:25 +1100439/* Destroy the host and server keys. They will no longer be needed. */
Damien Millereba71ba2000-04-29 23:57:08 +1000440void
441destroy_sensitive_data(void)
442{
Damien Miller0bc1bd82000-11-13 22:57:25 +1100443 int i;
444
445 if (sensitive_data.server_key) {
446 key_free(sensitive_data.server_key);
447 sensitive_data.server_key = NULL;
448 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000449 for(i = 0; i < options.num_host_key_files; i++) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100450 if (sensitive_data.host_keys[i]) {
451 key_free(sensitive_data.host_keys[i]);
452 sensitive_data.host_keys[i] = NULL;
453 }
454 }
455 sensitive_data.ssh1_host_key = NULL;
Ben Lindstromeb648a72001-03-05 06:00:29 +0000456 memset(sensitive_data.ssh1_cookie, 0, SSH_SESSION_KEY_LENGTH);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100457}
Damien Miller0bc1bd82000-11-13 22:57:25 +1100458
459char *
460list_hostkey_types(void)
461{
462 static char buf[1024];
463 int i;
464 buf[0] = '\0';
465 for(i = 0; i < options.num_host_key_files; i++) {
466 Key *key = sensitive_data.host_keys[i];
467 if (key == NULL)
468 continue;
469 switch(key->type) {
470 case KEY_RSA:
471 case KEY_DSA:
472 strlcat(buf, key_ssh_name(key), sizeof buf);
473 strlcat(buf, ",", sizeof buf);
474 break;
475 }
476 }
477 i = strlen(buf);
478 if (i > 0 && buf[i-1] == ',')
479 buf[i-1] = '\0';
480 debug("list_hostkey_types: %s", buf);
481 return buf;
482}
483
484Key *
485get_hostkey_by_type(int type)
486{
487 int i;
488 for(i = 0; i < options.num_host_key_files; i++) {
489 Key *key = sensitive_data.host_keys[i];
490 if (key != NULL && key->type == type)
491 return key;
492 }
493 return NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000494}
495
Damien Miller942da032000-08-18 13:59:06 +1000496/*
497 * returns 1 if connection should be dropped, 0 otherwise.
498 * dropping starts at connection #max_startups_begin with a probability
499 * of (max_startups_rate/100). the probability increases linearly until
500 * all connections are dropped for startups > max_startups
501 */
502int
503drop_connection(int startups)
504{
505 double p, r;
506
507 if (startups < options.max_startups_begin)
508 return 0;
509 if (startups >= options.max_startups)
510 return 1;
511 if (options.max_startups_rate == 100)
512 return 1;
513
514 p = 100 - options.max_startups_rate;
515 p *= startups - options.max_startups_begin;
516 p /= (double) (options.max_startups - options.max_startups_begin);
517 p += options.max_startups_rate;
518 p /= 100.0;
519 r = arc4random() / (double) UINT_MAX;
520
521 debug("drop_connection: p %g, r %g", p, r);
522 return (r < p) ? 1 : 0;
523}
524
Damien Miller37023962000-07-11 17:31:38 +1000525int *startup_pipes = NULL; /* options.max_startup sized array of fd ints */
526int startup_pipe; /* in child */
527
Damien Miller95def091999-11-25 00:26:21 +1100528/*
529 * Main program for the daemon.
530 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000531int
532main(int ac, char **av)
533{
Damien Miller95def091999-11-25 00:26:21 +1100534 extern char *optarg;
535 extern int optind;
Damien Miller37023962000-07-11 17:31:38 +1000536 int opt, sock_in = 0, sock_out = 0, newsock, j, i, fdsetsz, on = 1;
Damien Miller166fca82000-04-20 07:42:21 +1000537 pid_t pid;
Damien Miller34132e52000-01-14 15:45:46 +1100538 socklen_t fromlen;
Damien Miller34132e52000-01-14 15:45:46 +1100539 fd_set *fdset;
540 struct sockaddr_storage from;
Damien Miller95def091999-11-25 00:26:21 +1100541 const char *remote_ip;
542 int remote_port;
Damien Miller95def091999-11-25 00:26:21 +1100543 FILE *f;
544 struct linger linger;
Damien Miller34132e52000-01-14 15:45:46 +1100545 struct addrinfo *ai;
546 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
547 int listen_sock, maxfd;
Damien Miller37023962000-07-11 17:31:38 +1000548 int startup_p[2];
549 int startups = 0;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000550 Key *key;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000551 int ret, key_used = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000552
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000553 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000554 init_rng();
555
Kevin Stevesec84dc12000-12-13 17:45:15 +0000556 /* Save argv. */
Damien Millerb8c656e2000-06-28 15:22:41 +1000557 saved_argc = ac;
Damien Miller95def091999-11-25 00:26:21 +1100558 saved_argv = av;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000559
Damien Miller95def091999-11-25 00:26:21 +1100560 /* Initialize configuration options to their default values. */
561 initialize_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000562
Damien Miller95def091999-11-25 00:26:21 +1100563 /* Parse command-line arguments. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000564 while ((opt = getopt(ac, av, "f:p:b:k:h:g:V:u:dDiqQ46")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100565 switch (opt) {
Damien Miller34132e52000-01-14 15:45:46 +1100566 case '4':
567 IPv4or6 = AF_INET;
568 break;
569 case '6':
570 IPv4or6 = AF_INET6;
571 break;
Damien Miller95def091999-11-25 00:26:21 +1100572 case 'f':
573 config_file_name = optarg;
574 break;
575 case 'd':
Damien Millere4340be2000-09-16 13:29:08 +1100576 if (0 == debug_flag) {
577 debug_flag = 1;
578 options.log_level = SYSLOG_LEVEL_DEBUG1;
579 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
580 options.log_level++;
581 } else {
582 fprintf(stderr, "Too high debugging level.\n");
583 exit(1);
584 }
Damien Miller95def091999-11-25 00:26:21 +1100585 break;
Ben Lindstromc72745a2000-12-02 19:03:54 +0000586 case 'D':
587 no_daemon_flag = 1;
588 break;
Damien Miller95def091999-11-25 00:26:21 +1100589 case 'i':
590 inetd_flag = 1;
591 break;
592 case 'Q':
Ben Lindstromd5390202001-01-29 08:07:43 +0000593 /* ignored */
Damien Miller95def091999-11-25 00:26:21 +1100594 break;
595 case 'q':
596 options.log_level = SYSLOG_LEVEL_QUIET;
597 break;
598 case 'b':
599 options.server_key_bits = atoi(optarg);
600 break;
601 case 'p':
Damien Miller34132e52000-01-14 15:45:46 +1100602 options.ports_from_cmdline = 1;
Damien Millere4340be2000-09-16 13:29:08 +1100603 if (options.num_ports >= MAX_PORTS) {
604 fprintf(stderr, "too many ports.\n");
605 exit(1);
606 }
Damien Miller34132e52000-01-14 15:45:46 +1100607 options.ports[options.num_ports++] = atoi(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100608 break;
609 case 'g':
610 options.login_grace_time = atoi(optarg);
611 break;
612 case 'k':
613 options.key_regeneration_time = atoi(optarg);
614 break;
615 case 'h':
Damien Miller0bc1bd82000-11-13 22:57:25 +1100616 if (options.num_host_key_files >= MAX_HOSTKEYS) {
617 fprintf(stderr, "too many host keys.\n");
618 exit(1);
619 }
620 options.host_key_files[options.num_host_key_files++] = optarg;
Damien Miller95def091999-11-25 00:26:21 +1100621 break;
622 case 'V':
623 client_version_string = optarg;
624 /* only makes sense with inetd_flag, i.e. no listen() */
625 inetd_flag = 1;
626 break;
Damien Miller942da032000-08-18 13:59:06 +1000627 case 'u':
628 utmp_len = atoi(optarg);
629 break;
Damien Miller95def091999-11-25 00:26:21 +1100630 case '?':
631 default:
632 fprintf(stderr, "sshd version %s\n", SSH_VERSION);
Kevin Stevesec84dc12000-12-13 17:45:15 +0000633 fprintf(stderr, "Usage: %s [options]\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100634 fprintf(stderr, "Options:\n");
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000635 fprintf(stderr, " -f file Configuration file (default %s)\n", _PATH_SERVER_CONFIG_FILE);
Damien Millere4340be2000-09-16 13:29:08 +1100636 fprintf(stderr, " -d Debugging mode (multiple -d means more debugging)\n");
Damien Miller95def091999-11-25 00:26:21 +1100637 fprintf(stderr, " -i Started from inetd\n");
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000638 fprintf(stderr, " -D Do not fork into daemon mode\n");
Damien Miller95def091999-11-25 00:26:21 +1100639 fprintf(stderr, " -q Quiet (no logging)\n");
640 fprintf(stderr, " -p port Listen on the specified port (default: 22)\n");
641 fprintf(stderr, " -k seconds Regenerate server key every this many seconds (default: 3600)\n");
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000642 fprintf(stderr, " -g seconds Grace period for authentication (default: 600)\n");
Damien Miller95def091999-11-25 00:26:21 +1100643 fprintf(stderr, " -b bits Size of server RSA key (default: 768 bits)\n");
644 fprintf(stderr, " -h file File from which to read host key (default: %s)\n",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000645 _PATH_HOST_KEY_FILE);
Damien Miller942da032000-08-18 13:59:06 +1000646 fprintf(stderr, " -u len Maximum hostname length for utmp recording\n");
Damien Miller34132e52000-01-14 15:45:46 +1100647 fprintf(stderr, " -4 Use IPv4 only\n");
648 fprintf(stderr, " -6 Use IPv6 only\n");
Damien Miller95def091999-11-25 00:26:21 +1100649 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000650 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000651 }
Ben Lindstrom425fb022001-03-29 00:31:20 +0000652 SSLeay_add_all_algorithms();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000653
Damien Miller34132e52000-01-14 15:45:46 +1100654 /*
655 * Force logging to stderr until we have loaded the private host
656 * key (unless started from inetd)
657 */
Kevin Stevesec84dc12000-12-13 17:45:15 +0000658 log_init(__progname,
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000659 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
Damien Miller34132e52000-01-14 15:45:46 +1100660 options.log_facility == -1 ? SYSLOG_FACILITY_AUTH : options.log_facility,
Ben Lindstromd5390202001-01-29 08:07:43 +0000661 !inetd_flag);
Damien Miller34132e52000-01-14 15:45:46 +1100662
Damien Miller60bc5172001-03-19 09:38:15 +1100663 seed_rng();
664
Damien Miller95def091999-11-25 00:26:21 +1100665 /* Read server configuration options from the configuration file. */
666 read_server_config(&options, config_file_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000667
Damien Miller95def091999-11-25 00:26:21 +1100668 /* Fill in default values for those options not explicitly set. */
669 fill_default_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000670
Damien Miller95def091999-11-25 00:26:21 +1100671 /* Check that there are no remaining arguments. */
672 if (optind < ac) {
673 fprintf(stderr, "Extra argument %s.\n", av[optind]);
674 exit(1);
675 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000676
Damien Miller95def091999-11-25 00:26:21 +1100677 debug("sshd version %.100s", SSH_VERSION);
Damien Miller2ccf6611999-11-15 15:25:10 +1100678
Damien Miller0bc1bd82000-11-13 22:57:25 +1100679 /* load private host keys */
680 sensitive_data.host_keys = xmalloc(options.num_host_key_files*sizeof(Key*));
Ben Lindstrom46c16222000-12-22 01:43:59 +0000681 for(i = 0; i < options.num_host_key_files; i++)
682 sensitive_data.host_keys[i] = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100683 sensitive_data.server_key = NULL;
684 sensitive_data.ssh1_host_key = NULL;
685 sensitive_data.have_ssh1_key = 0;
686 sensitive_data.have_ssh2_key = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000687
Damien Miller0bc1bd82000-11-13 22:57:25 +1100688 for(i = 0; i < options.num_host_key_files; i++) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000689 key = key_load_private(options.host_key_files[i], "", NULL);
690 sensitive_data.host_keys[i] = key;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100691 if (key == NULL) {
692 error("Could not load host key: %.200s: %.100s",
693 options.host_key_files[i], strerror(errno));
Ben Lindstromd0fca422001-03-26 13:44:06 +0000694 sensitive_data.host_keys[i] = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100695 continue;
696 }
697 switch(key->type){
698 case KEY_RSA1:
699 sensitive_data.ssh1_host_key = key;
700 sensitive_data.have_ssh1_key = 1;
701 break;
702 case KEY_RSA:
703 case KEY_DSA:
704 sensitive_data.have_ssh2_key = 1;
705 break;
706 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000707 debug("private host key: #%d type %d %s", i, key->type,
708 key_type(key));
Damien Miller0bc1bd82000-11-13 22:57:25 +1100709 }
710 if ((options.protocol & SSH_PROTO_1) && !sensitive_data.have_ssh1_key) {
711 log("Disabling protocol version 1. Could not load host key");
Damien Millereba71ba2000-04-29 23:57:08 +1000712 options.protocol &= ~SSH_PROTO_1;
713 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100714 if ((options.protocol & SSH_PROTO_2) && !sensitive_data.have_ssh2_key) {
715 log("Disabling protocol version 2. Could not load host key");
716 options.protocol &= ~SSH_PROTO_2;
Damien Millereba71ba2000-04-29 23:57:08 +1000717 }
Kevin Stevesadf74cd2001-02-05 14:22:50 +0000718 if (!(options.protocol & (SSH_PROTO_1|SSH_PROTO_2))) {
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000719 log("sshd: no hostkeys available -- exiting.");
Damien Miller95def091999-11-25 00:26:21 +1100720 exit(1);
721 }
Damien Miller95def091999-11-25 00:26:21 +1100722
Damien Millereba71ba2000-04-29 23:57:08 +1000723 /* Check certain values for sanity. */
724 if (options.protocol & SSH_PROTO_1) {
725 if (options.server_key_bits < 512 ||
726 options.server_key_bits > 32768) {
727 fprintf(stderr, "Bad server key size.\n");
728 exit(1);
729 }
730 /*
731 * Check that server and host key lengths differ sufficiently. This
732 * is necessary to make double encryption work with rsaref. Oh, I
733 * hate software patents. I dont know if this can go? Niels
734 */
735 if (options.server_key_bits >
Damien Miller0bc1bd82000-11-13 22:57:25 +1100736 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) - SSH_KEY_BITS_RESERVED &&
Damien Millereba71ba2000-04-29 23:57:08 +1000737 options.server_key_bits <
Damien Miller0bc1bd82000-11-13 22:57:25 +1100738 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
Damien Millereba71ba2000-04-29 23:57:08 +1000739 options.server_key_bits =
Damien Miller0bc1bd82000-11-13 22:57:25 +1100740 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED;
Damien Millereba71ba2000-04-29 23:57:08 +1000741 debug("Forcing server key to %d bits to make it differ from host key.",
742 options.server_key_bits);
743 }
744 }
745
Damien Miller78315eb2000-09-29 23:01:36 +1100746#ifdef HAVE_SCO_PROTECTED_PW
747 (void) set_auth_parameters(ac, av);
748#endif
749
Damien Millereba71ba2000-04-29 23:57:08 +1000750 /* Initialize the log (it is reinitialized below in case we forked). */
Damien Miller95def091999-11-25 00:26:21 +1100751 if (debug_flag && !inetd_flag)
752 log_stderr = 1;
Kevin Stevesec84dc12000-12-13 17:45:15 +0000753 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +1100754
Damien Millereba71ba2000-04-29 23:57:08 +1000755 /*
756 * If not in debugging mode, and not started from inetd, disconnect
757 * from the controlling terminal, and fork. The original process
758 * exits.
759 */
Ben Lindstromc72745a2000-12-02 19:03:54 +0000760 if (!(debug_flag || inetd_flag || no_daemon_flag)) {
Damien Miller95def091999-11-25 00:26:21 +1100761#ifdef TIOCNOTTY
762 int fd;
763#endif /* TIOCNOTTY */
764 if (daemon(0, 0) < 0)
765 fatal("daemon() failed: %.200s", strerror(errno));
766
767 /* Disconnect from the controlling tty. */
768#ifdef TIOCNOTTY
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000769 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
Damien Miller95def091999-11-25 00:26:21 +1100770 if (fd >= 0) {
771 (void) ioctl(fd, TIOCNOTTY, NULL);
772 close(fd);
773 }
774#endif /* TIOCNOTTY */
775 }
776 /* Reinitialize the log (because of the fork above). */
Kevin Stevesec84dc12000-12-13 17:45:15 +0000777 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +1100778
Damien Miller95def091999-11-25 00:26:21 +1100779 /* Initialize the random number generator. */
780 arc4random_stir();
781
782 /* Chdir to the root directory so that the current disk can be
783 unmounted if desired. */
784 chdir("/");
Ben Lindstromde71cda2001-03-24 00:43:26 +0000785
786 /* ignore SIGPIPE */
787 signal(SIGPIPE, SIG_IGN);
Damien Miller95def091999-11-25 00:26:21 +1100788
Damien Miller95def091999-11-25 00:26:21 +1100789 /* Start listening for a socket, unless started from inetd. */
790 if (inetd_flag) {
791 int s1, s2;
792 s1 = dup(0); /* Make sure descriptors 0, 1, and 2 are in use. */
793 s2 = dup(s1);
794 sock_in = dup(0);
795 sock_out = dup(1);
Damien Miller994cf142000-07-21 10:19:44 +1000796 startup_pipe = -1;
Damien Millereba71ba2000-04-29 23:57:08 +1000797 /*
798 * We intentionally do not close the descriptors 0, 1, and 2
799 * as our code for setting the descriptors won\'t work if
800 * ttyfd happens to be one of those.
801 */
Damien Miller95def091999-11-25 00:26:21 +1100802 debug("inetd sockets after dupping: %d, %d", sock_in, sock_out);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100803 if (options.protocol & SSH_PROTO_1)
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000804 generate_ephemeral_server_key();
Damien Miller95def091999-11-25 00:26:21 +1100805 } else {
Damien Miller34132e52000-01-14 15:45:46 +1100806 for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
807 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
808 continue;
809 if (num_listen_socks >= MAX_LISTEN_SOCKS)
810 fatal("Too many listen sockets. "
811 "Enlarge MAX_LISTEN_SOCKS");
812 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
813 ntop, sizeof(ntop), strport, sizeof(strport),
814 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
815 error("getnameinfo failed");
816 continue;
817 }
818 /* Create socket for listening. */
819 listen_sock = socket(ai->ai_family, SOCK_STREAM, 0);
820 if (listen_sock < 0) {
821 /* kernel may not support ipv6 */
822 verbose("socket: %.100s", strerror(errno));
823 continue;
824 }
825 if (fcntl(listen_sock, F_SETFL, O_NONBLOCK) < 0) {
826 error("listen_sock O_NONBLOCK: %s", strerror(errno));
827 close(listen_sock);
828 continue;
829 }
830 /*
831 * Set socket options. We try to make the port
832 * reusable and have it close as fast as possible
833 * without waiting in unnecessary wait states on
834 * close.
835 */
836 setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
837 (void *) &on, sizeof(on));
838 linger.l_onoff = 1;
839 linger.l_linger = 5;
840 setsockopt(listen_sock, SOL_SOCKET, SO_LINGER,
841 (void *) &linger, sizeof(linger));
Damien Miller95def091999-11-25 00:26:21 +1100842
Damien Miller34132e52000-01-14 15:45:46 +1100843 debug("Bind to port %s on %s.", strport, ntop);
Damien Miller95def091999-11-25 00:26:21 +1100844
Damien Miller34132e52000-01-14 15:45:46 +1100845 /* Bind the socket to the desired port. */
Damien Miller0a4e27d2001-02-18 12:36:39 +1100846 if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) {
847 if (!ai->ai_next)
848 error("Bind to port %s on %s failed: %.200s.",
849 strport, ntop, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +1100850 close(listen_sock);
851 continue;
852 }
853 listen_socks[num_listen_socks] = listen_sock;
854 num_listen_socks++;
Damien Miller95def091999-11-25 00:26:21 +1100855
Damien Miller34132e52000-01-14 15:45:46 +1100856 /* Start listening on the port. */
857 log("Server listening on %s port %s.", ntop, strport);
858 if (listen(listen_sock, 5) < 0)
859 fatal("listen: %.100s", strerror(errno));
860
Damien Miller95def091999-11-25 00:26:21 +1100861 }
Damien Miller34132e52000-01-14 15:45:46 +1100862 freeaddrinfo(options.listen_addrs);
863
864 if (!num_listen_socks)
865 fatal("Cannot bind any address.");
866
Damien Miller95def091999-11-25 00:26:21 +1100867 if (!debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +1100868 /*
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000869 * Record our pid in /var/run/sshd.pid to make it
870 * easier to kill the correct sshd. We don't want to
871 * do this before the bind above because the bind will
Damien Miller5428f641999-11-25 11:54:57 +1100872 * fail if there already is a daemon, and this will
873 * overwrite any old pid in the file.
874 */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100875 f = fopen(options.pid_file, "wb");
Damien Miller95def091999-11-25 00:26:21 +1100876 if (f) {
Ben Lindstrom46c16222000-12-22 01:43:59 +0000877 fprintf(f, "%u\n", (u_int) getpid());
Damien Miller95def091999-11-25 00:26:21 +1100878 fclose(f);
879 }
880 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000881 if (options.protocol & SSH_PROTO_1)
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000882 generate_ephemeral_server_key();
Damien Miller95def091999-11-25 00:26:21 +1100883
Damien Miller95def091999-11-25 00:26:21 +1100884 /* Arrange to restart on SIGHUP. The handler needs listen_sock. */
885 signal(SIGHUP, sighup_handler);
Damien Miller37023962000-07-11 17:31:38 +1000886
Damien Miller95def091999-11-25 00:26:21 +1100887 signal(SIGTERM, sigterm_handler);
888 signal(SIGQUIT, sigterm_handler);
889
890 /* Arrange SIGCHLD to be caught. */
891 signal(SIGCHLD, main_sigchld_handler);
892
Damien Miller34132e52000-01-14 15:45:46 +1100893 /* setup fd set for listen */
Damien Miller37023962000-07-11 17:31:38 +1000894 fdset = NULL;
Damien Miller34132e52000-01-14 15:45:46 +1100895 maxfd = 0;
896 for (i = 0; i < num_listen_socks; i++)
897 if (listen_socks[i] > maxfd)
898 maxfd = listen_socks[i];
Damien Miller37023962000-07-11 17:31:38 +1000899 /* pipes connected to unauthenticated childs */
900 startup_pipes = xmalloc(options.max_startups * sizeof(int));
901 for (i = 0; i < options.max_startups; i++)
902 startup_pipes[i] = -1;
Damien Miller34132e52000-01-14 15:45:46 +1100903
Damien Miller5428f641999-11-25 11:54:57 +1100904 /*
905 * Stay listening for connections until the system crashes or
906 * the daemon is killed with a signal.
907 */
Damien Miller95def091999-11-25 00:26:21 +1100908 for (;;) {
909 if (received_sighup)
910 sighup_restart();
Damien Miller37023962000-07-11 17:31:38 +1000911 if (fdset != NULL)
912 xfree(fdset);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000913 fdsetsz = howmany(maxfd+1, NFDBITS) * sizeof(fd_mask);
Damien Miller37023962000-07-11 17:31:38 +1000914 fdset = (fd_set *)xmalloc(fdsetsz);
Damien Miller34132e52000-01-14 15:45:46 +1100915 memset(fdset, 0, fdsetsz);
Damien Miller37023962000-07-11 17:31:38 +1000916
Damien Miller34132e52000-01-14 15:45:46 +1100917 for (i = 0; i < num_listen_socks; i++)
918 FD_SET(listen_socks[i], fdset);
Damien Miller37023962000-07-11 17:31:38 +1000919 for (i = 0; i < options.max_startups; i++)
920 if (startup_pipes[i] != -1)
921 FD_SET(startup_pipes[i], fdset);
922
923 /* Wait in select until there is a connection. */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000924 ret = select(maxfd+1, fdset, NULL, NULL, NULL);
925 if (ret < 0 && errno != EINTR)
926 error("select: %.100s", strerror(errno));
927 if (key_used && key_do_regen) {
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000928 generate_ephemeral_server_key();
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000929 key_used = 0;
930 key_do_regen = 0;
Damien Miller34132e52000-01-14 15:45:46 +1100931 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000932 if (ret < 0)
933 continue;
934
Damien Miller37023962000-07-11 17:31:38 +1000935 for (i = 0; i < options.max_startups; i++)
936 if (startup_pipes[i] != -1 &&
937 FD_ISSET(startup_pipes[i], fdset)) {
938 /*
939 * the read end of the pipe is ready
940 * if the child has closed the pipe
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000941 * after successful authentication
Damien Miller37023962000-07-11 17:31:38 +1000942 * or if the child has died
943 */
944 close(startup_pipes[i]);
945 startup_pipes[i] = -1;
946 startups--;
947 }
Damien Miller34132e52000-01-14 15:45:46 +1100948 for (i = 0; i < num_listen_socks; i++) {
949 if (!FD_ISSET(listen_socks[i], fdset))
Damien Miller95def091999-11-25 00:26:21 +1100950 continue;
Damien Miller37023962000-07-11 17:31:38 +1000951 fromlen = sizeof(from);
952 newsock = accept(listen_socks[i], (struct sockaddr *)&from,
953 &fromlen);
954 if (newsock < 0) {
955 if (errno != EINTR && errno != EWOULDBLOCK)
956 error("accept: %.100s", strerror(errno));
957 continue;
958 }
959 if (fcntl(newsock, F_SETFL, 0) < 0) {
960 error("newsock del O_NONBLOCK: %s", strerror(errno));
961 continue;
962 }
Damien Miller942da032000-08-18 13:59:06 +1000963 if (drop_connection(startups) == 1) {
964 debug("drop connection #%d", startups);
Damien Miller37023962000-07-11 17:31:38 +1000965 close(newsock);
966 continue;
967 }
968 if (pipe(startup_p) == -1) {
969 close(newsock);
970 continue;
971 }
972
973 for (j = 0; j < options.max_startups; j++)
974 if (startup_pipes[j] == -1) {
975 startup_pipes[j] = startup_p[0];
976 if (maxfd < startup_p[0])
977 maxfd = startup_p[0];
978 startups++;
979 break;
980 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000981
Damien Miller5428f641999-11-25 11:54:57 +1100982 /*
Damien Miller37023962000-07-11 17:31:38 +1000983 * Got connection. Fork a child to handle it, unless
984 * we are in debugging mode.
Damien Miller5428f641999-11-25 11:54:57 +1100985 */
Damien Miller37023962000-07-11 17:31:38 +1000986 if (debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +1100987 /*
Damien Miller37023962000-07-11 17:31:38 +1000988 * In debugging mode. Close the listening
989 * socket, and start processing the
990 * connection without forking.
Damien Miller5428f641999-11-25 11:54:57 +1100991 */
Damien Miller37023962000-07-11 17:31:38 +1000992 debug("Server will not fork when running in debugging mode.");
Damien Miller34132e52000-01-14 15:45:46 +1100993 close_listen_socks();
Damien Miller95def091999-11-25 00:26:21 +1100994 sock_in = newsock;
995 sock_out = newsock;
Damien Miller4d97ba22000-07-11 18:15:50 +1000996 startup_pipe = -1;
Damien Miller182ee6e2000-07-12 09:45:27 +1000997 pid = getpid();
Damien Miller95def091999-11-25 00:26:21 +1100998 break;
Damien Miller37023962000-07-11 17:31:38 +1000999 } else {
1000 /*
1001 * Normal production daemon. Fork, and have
1002 * the child process the connection. The
1003 * parent continues listening.
1004 */
1005 if ((pid = fork()) == 0) {
1006 /*
1007 * Child. Close the listening and max_startup
1008 * sockets. Start using the accepted socket.
1009 * Reinitialize logging (since our pid has
1010 * changed). We break out of the loop to handle
1011 * the connection.
1012 */
1013 startup_pipe = startup_p[1];
1014 for (j = 0; j < options.max_startups; j++)
1015 if (startup_pipes[j] != -1)
1016 close(startup_pipes[j]);
1017 close_listen_socks();
1018 sock_in = newsock;
1019 sock_out = newsock;
Kevin Stevesec84dc12000-12-13 17:45:15 +00001020 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller37023962000-07-11 17:31:38 +10001021 break;
1022 }
Damien Miller95def091999-11-25 00:26:21 +11001023 }
Damien Miller37023962000-07-11 17:31:38 +10001024
1025 /* Parent. Stay in the loop. */
1026 if (pid < 0)
1027 error("fork: %.100s", strerror(errno));
1028 else
1029 debug("Forked child %d.", pid);
1030
1031 close(startup_p[1]);
1032
1033 /* Mark that the key has been used (it was "given" to the child). */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001034 if ((options.protocol & SSH_PROTO_1) &&
1035 key_used == 0) {
1036 /* Schedule server key regeneration alarm. */
1037 signal(SIGALRM, key_regeneration_alarm);
1038 alarm(options.key_regeneration_time);
1039 key_used = 1;
1040 }
Damien Miller37023962000-07-11 17:31:38 +10001041
1042 arc4random_stir();
1043
1044 /* Close the new socket (the child is now taking care of it). */
1045 close(newsock);
Damien Miller95def091999-11-25 00:26:21 +11001046 }
Damien Miller34132e52000-01-14 15:45:46 +11001047 /* child process check (or debug mode) */
1048 if (num_listen_socks < 0)
1049 break;
Damien Miller95def091999-11-25 00:26:21 +11001050 }
1051 }
1052
1053 /* This is the child processing a new connection. */
1054
Damien Miller5428f641999-11-25 11:54:57 +11001055 /*
1056 * Disable the key regeneration alarm. We will not regenerate the
1057 * key since we are no longer in a position to give it to anyone. We
1058 * will not restart on SIGHUP since it no longer makes sense.
1059 */
Damien Miller95def091999-11-25 00:26:21 +11001060 alarm(0);
1061 signal(SIGALRM, SIG_DFL);
1062 signal(SIGHUP, SIG_DFL);
1063 signal(SIGTERM, SIG_DFL);
1064 signal(SIGQUIT, SIG_DFL);
1065 signal(SIGCHLD, SIG_DFL);
Damien Miller4e0f5e12000-08-29 11:05:50 +11001066 signal(SIGINT, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001067
Damien Miller5428f641999-11-25 11:54:57 +11001068 /*
1069 * Set socket options for the connection. We want the socket to
1070 * close as fast as possible without waiting for anything. If the
1071 * connection is not a socket, these will do nothing.
1072 */
1073 /* setsockopt(sock_in, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on)); */
Damien Miller95def091999-11-25 00:26:21 +11001074 linger.l_onoff = 1;
1075 linger.l_linger = 5;
1076 setsockopt(sock_in, SOL_SOCKET, SO_LINGER, (void *) &linger, sizeof(linger));
1077
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001078 /* Set keepalives if requested. */
1079 if (options.keepalives &&
1080 setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, (void *)&on,
1081 sizeof(on)) < 0)
1082 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
1083
Damien Miller5428f641999-11-25 11:54:57 +11001084 /*
1085 * Register our connection. This turns encryption off because we do
1086 * not have a key.
1087 */
Damien Miller95def091999-11-25 00:26:21 +11001088 packet_set_connection(sock_in, sock_out);
1089
1090 remote_port = get_remote_port();
1091 remote_ip = get_remote_ipaddr();
1092
1093 /* Check whether logins are denied from this host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001094#ifdef LIBWRAP
Damien Miller34132e52000-01-14 15:45:46 +11001095 /* XXX LIBWRAP noes not know about IPv6 */
Damien Miller95def091999-11-25 00:26:21 +11001096 {
1097 struct request_info req;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001098
Kevin Stevesec84dc12000-12-13 17:45:15 +00001099 request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, NULL);
Damien Miller95def091999-11-25 00:26:21 +11001100 fromhost(&req);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001101
Damien Miller95def091999-11-25 00:26:21 +11001102 if (!hosts_access(&req)) {
Ben Lindstrom7de696e2001-03-29 00:45:12 +00001103 refuse(&req);
Damien Miller95def091999-11-25 00:26:21 +11001104 close(sock_in);
1105 close(sock_out);
Damien Miller95def091999-11-25 00:26:21 +11001106 }
Damien Miller34132e52000-01-14 15:45:46 +11001107/*XXX IPv6 verbose("Connection from %.500s port %d", eval_client(&req), remote_port); */
Damien Miller95def091999-11-25 00:26:21 +11001108 }
Damien Miller34132e52000-01-14 15:45:46 +11001109#endif /* LIBWRAP */
Damien Miller95def091999-11-25 00:26:21 +11001110 /* Log the connection. */
1111 verbose("Connection from %.500s port %d", remote_ip, remote_port);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001112
Damien Miller5428f641999-11-25 11:54:57 +11001113 /*
1114 * We don\'t want to listen forever unless the other side
1115 * successfully authenticates itself. So we set up an alarm which is
1116 * cleared after successful authentication. A limit of zero
1117 * indicates no limit. Note that we don\'t set the alarm in debugging
1118 * mode; it is just annoying to have the server exit just when you
1119 * are about to discover the bug.
1120 */
Damien Miller95def091999-11-25 00:26:21 +11001121 signal(SIGALRM, grace_alarm_handler);
1122 if (!debug_flag)
1123 alarm(options.login_grace_time);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001124
Damien Millerb38eff82000-04-01 11:09:21 +10001125 sshd_exchange_identification(sock_in, sock_out);
Damien Miller5428f641999-11-25 11:54:57 +11001126 /*
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001127 * Check that the connection comes from a privileged port.
1128 * Rhosts-Authentication only makes sense from priviledged
Damien Miller5428f641999-11-25 11:54:57 +11001129 * programs. Of course, if the intruder has root access on his local
1130 * machine, he can connect from any port. So do not use these
1131 * authentication methods from machines that you do not trust.
1132 */
Damien Miller95def091999-11-25 00:26:21 +11001133 if (remote_port >= IPPORT_RESERVED ||
1134 remote_port < IPPORT_RESERVED / 2) {
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001135 debug("Rhosts Authentication disabled, "
Damien Miller0bc1bd82000-11-13 22:57:25 +11001136 "originating port not trusted.");
Damien Miller95def091999-11-25 00:26:21 +11001137 options.rhosts_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +11001138 }
Damien Miller34132e52000-01-14 15:45:46 +11001139#ifdef KRB4
1140 if (!packet_connection_is_ipv4() &&
1141 options.kerberos_authentication) {
1142 debug("Kerberos Authentication disabled, only available for IPv4.");
1143 options.kerberos_authentication = 0;
1144 }
1145#endif /* KRB4 */
Ben Lindstromf79aeff2001-02-10 21:27:11 +00001146#ifdef AFS
1147 /* If machine has AFS, set process authentication group. */
1148 if (k_hasafs()) {
1149 k_setpag();
1150 k_unlog();
1151 }
1152#endif /* AFS */
Damien Miller34132e52000-01-14 15:45:46 +11001153
Damien Miller95def091999-11-25 00:26:21 +11001154 packet_set_nonblocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001155
Damien Miller396691a2000-01-20 22:44:08 +11001156 /* perform the key exchange */
Damien Miller396691a2000-01-20 22:44:08 +11001157 /* authenticate user and start session */
Damien Millerefb4afe2000-04-12 18:45:05 +10001158 if (compat20) {
1159 do_ssh2_kex();
1160 do_authentication2();
1161 } else {
1162 do_ssh1_kex();
1163 do_authentication();
1164 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001165
1166#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +11001167 /* Cleanup user's ticket cache file. */
1168 if (options.kerberos_ticket_cleanup)
1169 (void) dest_tkt();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001170#endif /* KRB4 */
1171
Damien Miller95def091999-11-25 00:26:21 +11001172 /* The connection has been terminated. */
1173 verbose("Closing connection to %.100s", remote_ip);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001174
Damien Millerbeb4ba51999-12-28 15:09:35 +11001175#ifdef USE_PAM
Damien Millere72b7af1999-12-30 15:08:44 +11001176 finish_pam();
Damien Millerbeb4ba51999-12-28 15:09:35 +11001177#endif /* USE_PAM */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001178
Damien Miller95def091999-11-25 00:26:21 +11001179 packet_close();
1180 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001181}
1182
Damien Miller95def091999-11-25 00:26:21 +11001183/*
Damien Miller396691a2000-01-20 22:44:08 +11001184 * SSH1 key exchange
Damien Miller95def091999-11-25 00:26:21 +11001185 */
Damien Miller2ccf6611999-11-15 15:25:10 +11001186void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001187do_ssh1_kex(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001188{
Damien Miller95def091999-11-25 00:26:21 +11001189 int i, len;
Damien Miller396691a2000-01-20 22:44:08 +11001190 int plen, slen;
Damien Miller7650bc62001-01-30 09:27:26 +11001191 int rsafail = 0;
Damien Miller95def091999-11-25 00:26:21 +11001192 BIGNUM *session_key_int;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001193 u_char session_key[SSH_SESSION_KEY_LENGTH];
1194 u_char cookie[8];
1195 u_int cipher_type, auth_mask, protocol_flags;
Damien Miller95def091999-11-25 00:26:21 +11001196 u_int32_t rand = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001197
Damien Miller5428f641999-11-25 11:54:57 +11001198 /*
1199 * Generate check bytes that the client must send back in the user
1200 * packet in order for it to be accepted; this is used to defy ip
1201 * spoofing attacks. Note that this only works against somebody
1202 * doing IP spoofing from a remote machine; any machine on the local
1203 * network can still see outgoing packets and catch the random
1204 * cookie. This only affects rhosts authentication, and this is one
1205 * of the reasons why it is inherently insecure.
1206 */
Damien Miller95def091999-11-25 00:26:21 +11001207 for (i = 0; i < 8; i++) {
1208 if (i % 4 == 0)
1209 rand = arc4random();
Damien Miller396691a2000-01-20 22:44:08 +11001210 cookie[i] = rand & 0xff;
Damien Miller95def091999-11-25 00:26:21 +11001211 rand >>= 8;
1212 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001213
Damien Miller5428f641999-11-25 11:54:57 +11001214 /*
1215 * Send our public key. We include in the packet 64 bits of random
1216 * data that must be matched in the reply in order to prevent IP
1217 * spoofing.
1218 */
Damien Miller95def091999-11-25 00:26:21 +11001219 packet_start(SSH_SMSG_PUBLIC_KEY);
1220 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001221 packet_put_char(cookie[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001222
Damien Miller95def091999-11-25 00:26:21 +11001223 /* Store our public server RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001224 packet_put_int(BN_num_bits(sensitive_data.server_key->rsa->n));
1225 packet_put_bignum(sensitive_data.server_key->rsa->e);
1226 packet_put_bignum(sensitive_data.server_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001227
Damien Miller95def091999-11-25 00:26:21 +11001228 /* Store our public host RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001229 packet_put_int(BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
1230 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->e);
1231 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001232
Damien Miller95def091999-11-25 00:26:21 +11001233 /* Put protocol flags. */
1234 packet_put_int(SSH_PROTOFLAG_HOST_IN_FWD_OPEN);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001235
Damien Miller95def091999-11-25 00:26:21 +11001236 /* Declare which ciphers we support. */
Damien Miller874d77b2000-10-14 16:23:11 +11001237 packet_put_int(cipher_mask_ssh1(0));
Damien Miller95def091999-11-25 00:26:21 +11001238
1239 /* Declare supported authentication types. */
1240 auth_mask = 0;
1241 if (options.rhosts_authentication)
1242 auth_mask |= 1 << SSH_AUTH_RHOSTS;
1243 if (options.rhosts_rsa_authentication)
1244 auth_mask |= 1 << SSH_AUTH_RHOSTS_RSA;
1245 if (options.rsa_authentication)
1246 auth_mask |= 1 << SSH_AUTH_RSA;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001247#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +11001248 if (options.kerberos_authentication)
1249 auth_mask |= 1 << SSH_AUTH_KERBEROS;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001250#endif
1251#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +11001252 if (options.kerberos_tgt_passing)
1253 auth_mask |= 1 << SSH_PASS_KERBEROS_TGT;
1254 if (options.afs_token_passing)
1255 auth_mask |= 1 << SSH_PASS_AFS_TOKEN;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001256#endif
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +00001257 if (options.challenge_reponse_authentication == 1)
Damien Miller95def091999-11-25 00:26:21 +11001258 auth_mask |= 1 << SSH_AUTH_TIS;
Damien Miller95def091999-11-25 00:26:21 +11001259 if (options.password_authentication)
1260 auth_mask |= 1 << SSH_AUTH_PASSWORD;
1261 packet_put_int(auth_mask);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001262
Damien Miller95def091999-11-25 00:26:21 +11001263 /* Send the packet and wait for it to be sent. */
1264 packet_send();
1265 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001266
Damien Miller0bc1bd82000-11-13 22:57:25 +11001267 debug("Sent %d bit server key and %d bit host key.",
1268 BN_num_bits(sensitive_data.server_key->rsa->n),
1269 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001270
Damien Miller95def091999-11-25 00:26:21 +11001271 /* Read clients reply (cipher type and session key). */
1272 packet_read_expect(&plen, SSH_CMSG_SESSION_KEY);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001273
Damien Miller50945fa1999-12-09 10:31:37 +11001274 /* Get cipher type and check whether we accept this. */
Damien Miller95def091999-11-25 00:26:21 +11001275 cipher_type = packet_get_char();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001276
Damien Miller874d77b2000-10-14 16:23:11 +11001277 if (!(cipher_mask_ssh1(0) & (1 << cipher_type)))
Damien Miller50945fa1999-12-09 10:31:37 +11001278 packet_disconnect("Warning: client selects unsupported cipher.");
1279
Damien Miller95def091999-11-25 00:26:21 +11001280 /* Get check bytes from the packet. These must match those we
1281 sent earlier with the public key packet. */
1282 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001283 if (cookie[i] != packet_get_char())
Damien Miller95def091999-11-25 00:26:21 +11001284 packet_disconnect("IP Spoofing check bytes do not match.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001285
Damien Miller95def091999-11-25 00:26:21 +11001286 debug("Encryption type: %.200s", cipher_name(cipher_type));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001287
Damien Miller95def091999-11-25 00:26:21 +11001288 /* Get the encrypted integer. */
1289 session_key_int = BN_new();
1290 packet_get_bignum(session_key_int, &slen);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001291
Damien Miller95def091999-11-25 00:26:21 +11001292 protocol_flags = packet_get_int();
1293 packet_set_protocol_flags(protocol_flags);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001294
Damien Miller95def091999-11-25 00:26:21 +11001295 packet_integrity_check(plen, 1 + 8 + slen + 4, SSH_CMSG_SESSION_KEY);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001296
Damien Miller5428f641999-11-25 11:54:57 +11001297 /*
1298 * Decrypt it using our private server key and private host key (key
1299 * with larger modulus first).
1300 */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001301 if (BN_cmp(sensitive_data.server_key->rsa->n, sensitive_data.ssh1_host_key->rsa->n) > 0) {
Damien Miller7650bc62001-01-30 09:27:26 +11001302 /* Server key has bigger modulus. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001303 if (BN_num_bits(sensitive_data.server_key->rsa->n) <
1304 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1305 fatal("do_connection: %s: server_key %d < host_key %d + SSH_KEY_BITS_RESERVED %d",
1306 get_remote_ipaddr(),
1307 BN_num_bits(sensitive_data.server_key->rsa->n),
1308 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1309 SSH_KEY_BITS_RESERVED);
Damien Miller95def091999-11-25 00:26:21 +11001310 }
Damien Miller7650bc62001-01-30 09:27:26 +11001311 if (rsa_private_decrypt(session_key_int, session_key_int,
1312 sensitive_data.server_key->rsa) <= 0)
1313 rsafail++;
1314 if (rsa_private_decrypt(session_key_int, session_key_int,
1315 sensitive_data.ssh1_host_key->rsa) <= 0)
1316 rsafail++;
Damien Miller95def091999-11-25 00:26:21 +11001317 } else {
1318 /* Host key has bigger modulus (or they are equal). */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001319 if (BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) <
1320 BN_num_bits(sensitive_data.server_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1321 fatal("do_connection: %s: host_key %d < server_key %d + SSH_KEY_BITS_RESERVED %d",
1322 get_remote_ipaddr(),
1323 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1324 BN_num_bits(sensitive_data.server_key->rsa->n),
1325 SSH_KEY_BITS_RESERVED);
Damien Miller95def091999-11-25 00:26:21 +11001326 }
Damien Miller7650bc62001-01-30 09:27:26 +11001327 if (rsa_private_decrypt(session_key_int, session_key_int,
1328 sensitive_data.ssh1_host_key->rsa) < 0)
1329 rsafail++;
1330 if (rsa_private_decrypt(session_key_int, session_key_int,
1331 sensitive_data.server_key->rsa) < 0)
1332 rsafail++;
Damien Miller95def091999-11-25 00:26:21 +11001333 }
Damien Miller5428f641999-11-25 11:54:57 +11001334 /*
1335 * Extract session key from the decrypted integer. The key is in the
1336 * least significant 256 bits of the integer; the first byte of the
1337 * key is in the highest bits.
1338 */
Damien Miller7650bc62001-01-30 09:27:26 +11001339 if (!rsafail) {
1340 BN_mask_bits(session_key_int, sizeof(session_key) * 8);
1341 len = BN_num_bytes(session_key_int);
1342 if (len < 0 || len > sizeof(session_key)) {
1343 error("do_connection: bad session key len from %s: "
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001344 "session_key_int %d > sizeof(session_key) %lu",
1345 get_remote_ipaddr(), len, (u_long)sizeof(session_key));
Damien Miller7650bc62001-01-30 09:27:26 +11001346 rsafail++;
1347 } else {
1348 memset(session_key, 0, sizeof(session_key));
1349 BN_bn2bin(session_key_int,
1350 session_key + sizeof(session_key) - len);
Ben Lindstromeb648a72001-03-05 06:00:29 +00001351
1352 compute_session_id(session_id, cookie,
1353 sensitive_data.ssh1_host_key->rsa->n,
1354 sensitive_data.server_key->rsa->n);
1355 /*
1356 * Xor the first 16 bytes of the session key with the
1357 * session id.
1358 */
1359 for (i = 0; i < 16; i++)
1360 session_key[i] ^= session_id[i];
Damien Miller7650bc62001-01-30 09:27:26 +11001361 }
1362 }
1363 if (rsafail) {
Ben Lindstromeb648a72001-03-05 06:00:29 +00001364 int bytes = BN_num_bytes(session_key_int);
1365 char *buf = xmalloc(bytes);
1366 MD5_CTX md;
1367
Damien Miller7650bc62001-01-30 09:27:26 +11001368 log("do_connection: generating a fake encryption key");
Ben Lindstromeb648a72001-03-05 06:00:29 +00001369 BN_bn2bin(session_key_int, buf);
1370 MD5_Init(&md);
1371 MD5_Update(&md, buf, bytes);
1372 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1373 MD5_Final(session_key, &md);
1374 MD5_Init(&md);
1375 MD5_Update(&md, session_key, 16);
1376 MD5_Update(&md, buf, bytes);
1377 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1378 MD5_Final(session_key + 16, &md);
1379 memset(buf, 0, bytes);
1380 xfree(buf);
Ben Lindstrom941ac822001-03-05 06:25:23 +00001381 for (i = 0; i < 16; i++)
1382 session_id[i] = session_key[i] ^ session_key[i + 16];
Damien Miller7650bc62001-01-30 09:27:26 +11001383 }
Ben Lindstromeb648a72001-03-05 06:00:29 +00001384 /* Destroy the private and public keys. They will no longer be needed. */
1385 destroy_sensitive_data();
1386
Damien Miller396691a2000-01-20 22:44:08 +11001387 /* Destroy the decrypted integer. It is no longer needed. */
1388 BN_clear_free(session_key_int);
1389
Damien Miller95def091999-11-25 00:26:21 +11001390 /* Set the session key. From this on all communications will be encrypted. */
1391 packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, cipher_type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001392
Damien Miller95def091999-11-25 00:26:21 +11001393 /* Destroy our copy of the session key. It is no longer needed. */
1394 memset(session_key, 0, sizeof(session_key));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001395
Damien Miller95def091999-11-25 00:26:21 +11001396 debug("Received session key; encryption turned on.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001397
Damien Miller95def091999-11-25 00:26:21 +11001398 /* Send an acknowledgement packet. Note that this packet is sent encrypted. */
1399 packet_start(SSH_SMSG_SUCCESS);
1400 packet_send();
1401 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001402}
Damien Millerefb4afe2000-04-12 18:45:05 +10001403
1404/*
1405 * SSH2 key exchange: diffie-hellman-group1-sha1
1406 */
1407void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001408do_ssh2_kex(void)
Damien Millerefb4afe2000-04-12 18:45:05 +10001409{
1410 Buffer *server_kexinit;
1411 Buffer *client_kexinit;
Damien Miller874d77b2000-10-14 16:23:11 +11001412 int payload_len;
Damien Millerefb4afe2000-04-12 18:45:05 +10001413 int i;
Damien Millerefb4afe2000-04-12 18:45:05 +10001414 Kex *kex;
Damien Millerefb4afe2000-04-12 18:45:05 +10001415 char *cprop[PROPOSAL_MAX];
Damien Millerefb4afe2000-04-12 18:45:05 +10001416
1417/* KEXINIT */
1418
Damien Miller78928792000-04-12 20:17:38 +10001419 if (options.ciphers != NULL) {
Damien Miller4af51302000-04-16 11:18:38 +10001420 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
Damien Miller78928792000-04-12 20:17:38 +10001421 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
1422 }
Damien Millera0ff4662001-03-30 10:49:35 +10001423 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
1424 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
1425 myproposal[PROPOSAL_ENC_ALGS_STOC] =
1426 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
1427
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001428 if (options.macs != NULL) {
1429 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
1430 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
1431 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001432 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = list_hostkey_types();
1433
Damien Millerb1715dc2000-05-30 13:44:51 +10001434 server_kexinit = kex_init(myproposal);
Damien Millerefb4afe2000-04-12 18:45:05 +10001435 client_kexinit = xmalloc(sizeof(*client_kexinit));
1436 buffer_init(client_kexinit);
Damien Millerefb4afe2000-04-12 18:45:05 +10001437
Damien Millerb1715dc2000-05-30 13:44:51 +10001438 /* algorithm negotiation */
1439 kex_exchange_kexinit(server_kexinit, client_kexinit, cprop);
1440 kex = kex_choose_conf(cprop, myproposal, 1);
1441 for (i = 0; i < PROPOSAL_MAX; i++)
1442 xfree(cprop[i]);
Damien Millerefb4afe2000-04-12 18:45:05 +10001443
Damien Miller874d77b2000-10-14 16:23:11 +11001444 switch (kex->kex_type) {
1445 case DH_GRP1_SHA1:
1446 ssh_dh1_server(kex, client_kexinit, server_kexinit);
1447 break;
1448 case DH_GEX_SHA1:
1449 ssh_dhgex_server(kex, client_kexinit, server_kexinit);
1450 break;
1451 default:
1452 fatal("Unsupported key exchange %d", kex->kex_type);
1453 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001454
Damien Miller874d77b2000-10-14 16:23:11 +11001455 debug("send SSH2_MSG_NEWKEYS.");
1456 packet_start(SSH2_MSG_NEWKEYS);
1457 packet_send();
1458 packet_write_wait();
1459 debug("done: send SSH2_MSG_NEWKEYS.");
1460
1461 debug("Wait SSH2_MSG_NEWKEYS.");
1462 packet_read_expect(&payload_len, SSH2_MSG_NEWKEYS);
1463 debug("GOT SSH2_MSG_NEWKEYS.");
1464
1465#ifdef DEBUG_KEXDH
1466 /* send 1st encrypted/maced/compressed message */
1467 packet_start(SSH2_MSG_IGNORE);
1468 packet_put_cstring("markus");
1469 packet_send();
1470 packet_write_wait();
1471#endif
1472
1473 debug("done: KEX2.");
1474}
1475
1476/*
1477 * SSH2 key exchange
1478 */
1479
1480/* diffie-hellman-group1-sha1 */
1481
1482void
1483ssh_dh1_server(Kex *kex, Buffer *client_kexinit, Buffer *server_kexinit)
1484{
1485#ifdef DEBUG_KEXDH
1486 int i;
1487#endif
1488 int payload_len, dlen;
1489 int slen;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001490 u_char *signature = NULL;
1491 u_char *server_host_key_blob = NULL;
1492 u_int sbloblen;
1493 u_int klen, kout;
1494 u_char *kbuf;
1495 u_char *hash;
Damien Miller874d77b2000-10-14 16:23:11 +11001496 BIGNUM *shared_secret = 0;
1497 DH *dh;
1498 BIGNUM *dh_client_pub = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001499 Key *hostkey;
1500
1501 hostkey = get_hostkey_by_type(kex->hostkey_type);
1502 if (hostkey == NULL)
1503 fatal("Unsupported hostkey type %d", kex->hostkey_type);
Damien Miller874d77b2000-10-14 16:23:11 +11001504
1505/* KEXDH */
Kevin Steves6b875862000-12-15 23:31:01 +00001506 /* generate DH key */
1507 dh = dh_new_group1(); /* XXX depends on 'kex' */
Ben Lindstrom4c4f05e2001-03-06 01:09:20 +00001508 dh_gen_key(dh, kex->we_need * 8);
Kevin Steves6b875862000-12-15 23:31:01 +00001509
Damien Millerefb4afe2000-04-12 18:45:05 +10001510 debug("Wait SSH2_MSG_KEXDH_INIT.");
1511 packet_read_expect(&payload_len, SSH2_MSG_KEXDH_INIT);
1512
1513 /* key, cert */
1514 dh_client_pub = BN_new();
1515 if (dh_client_pub == NULL)
1516 fatal("dh_client_pub == NULL");
1517 packet_get_bignum2(dh_client_pub, &dlen);
1518
1519#ifdef DEBUG_KEXDH
1520 fprintf(stderr, "\ndh_client_pub= ");
Damien Miller62cee002000-09-23 17:15:56 +11001521 BN_print_fp(stderr, dh_client_pub);
Damien Millerefb4afe2000-04-12 18:45:05 +10001522 fprintf(stderr, "\n");
1523 debug("bits %d", BN_num_bits(dh_client_pub));
1524#endif
1525
Damien Millerefb4afe2000-04-12 18:45:05 +10001526#ifdef DEBUG_KEXDH
1527 fprintf(stderr, "\np= ");
Damien Miller62cee002000-09-23 17:15:56 +11001528 BN_print_fp(stderr, dh->p);
Damien Millerefb4afe2000-04-12 18:45:05 +10001529 fprintf(stderr, "\ng= ");
Damien Miller62cee002000-09-23 17:15:56 +11001530 bn_print(dh->g);
Damien Millerefb4afe2000-04-12 18:45:05 +10001531 fprintf(stderr, "\npub= ");
Damien Miller62cee002000-09-23 17:15:56 +11001532 BN_print_fp(stderr, dh->pub_key);
Damien Millerefb4afe2000-04-12 18:45:05 +10001533 fprintf(stderr, "\n");
Kevin Stevesef4eea92001-02-05 12:42:17 +00001534 DHparams_print_fp(stderr, dh);
Damien Millerefb4afe2000-04-12 18:45:05 +10001535#endif
Damien Miller78928792000-04-12 20:17:38 +10001536 if (!dh_pub_is_valid(dh, dh_client_pub))
1537 packet_disconnect("bad client public DH value");
Damien Millerefb4afe2000-04-12 18:45:05 +10001538
1539 klen = DH_size(dh);
1540 kbuf = xmalloc(klen);
1541 kout = DH_compute_key(kbuf, dh_client_pub, dh);
1542
1543#ifdef DEBUG_KEXDH
1544 debug("shared secret: len %d/%d", klen, kout);
1545 fprintf(stderr, "shared secret == ");
1546 for (i = 0; i< kout; i++)
1547 fprintf(stderr, "%02x", (kbuf[i])&0xff);
1548 fprintf(stderr, "\n");
1549#endif
1550 shared_secret = BN_new();
1551
1552 BN_bin2bn(kbuf, kout, shared_secret);
1553 memset(kbuf, 0, klen);
1554 xfree(kbuf);
1555
Damien Millereba71ba2000-04-29 23:57:08 +10001556 /* XXX precompute? */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001557 key_to_blob(hostkey, &server_host_key_blob, &sbloblen);
Damien Millerefb4afe2000-04-12 18:45:05 +10001558
1559 /* calc H */ /* XXX depends on 'kex' */
1560 hash = kex_hash(
1561 client_version_string,
1562 server_version_string,
1563 buffer_ptr(client_kexinit), buffer_len(client_kexinit),
1564 buffer_ptr(server_kexinit), buffer_len(server_kexinit),
1565 (char *)server_host_key_blob, sbloblen,
1566 dh_client_pub,
1567 dh->pub_key,
1568 shared_secret
1569 );
1570 buffer_free(client_kexinit);
1571 buffer_free(server_kexinit);
1572 xfree(client_kexinit);
1573 xfree(server_kexinit);
Ben Lindstromb1985f72001-01-23 00:19:15 +00001574 BN_free(dh_client_pub);
Damien Millerefb4afe2000-04-12 18:45:05 +10001575#ifdef DEBUG_KEXDH
Damien Miller4af51302000-04-16 11:18:38 +10001576 fprintf(stderr, "hash == ");
1577 for (i = 0; i< 20; i++)
1578 fprintf(stderr, "%02x", (hash[i])&0xff);
1579 fprintf(stderr, "\n");
Damien Millerefb4afe2000-04-12 18:45:05 +10001580#endif
Damien Millereba71ba2000-04-29 23:57:08 +10001581 /* save session id := H */
1582 /* XXX hashlen depends on KEX */
1583 session_id2_len = 20;
1584 session_id2 = xmalloc(session_id2_len);
1585 memcpy(session_id2, hash, session_id2_len);
1586
Damien Millerefb4afe2000-04-12 18:45:05 +10001587 /* sign H */
Damien Millereba71ba2000-04-29 23:57:08 +10001588 /* XXX hashlen depends on KEX */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001589 key_sign(hostkey, &signature, &slen, hash, 20);
Damien Millereba71ba2000-04-29 23:57:08 +10001590
1591 destroy_sensitive_data();
Damien Millerefb4afe2000-04-12 18:45:05 +10001592
1593 /* send server hostkey, DH pubkey 'f' and singed H */
1594 packet_start(SSH2_MSG_KEXDH_REPLY);
1595 packet_put_string((char *)server_host_key_blob, sbloblen);
Damien Millere247cc42000-05-07 12:03:14 +10001596 packet_put_bignum2(dh->pub_key); /* f */
Damien Millerefb4afe2000-04-12 18:45:05 +10001597 packet_put_string((char *)signature, slen);
1598 packet_send();
Damien Miller8bb73be2000-04-19 16:26:12 +10001599 xfree(signature);
Damien Millereba71ba2000-04-29 23:57:08 +10001600 xfree(server_host_key_blob);
Damien Millerefb4afe2000-04-12 18:45:05 +10001601 packet_write_wait();
1602
1603 kex_derive_keys(kex, hash, shared_secret);
Ben Lindstromb1985f72001-01-23 00:19:15 +00001604 BN_clear_free(shared_secret);
Damien Millerefb4afe2000-04-12 18:45:05 +10001605 packet_set_kex(kex);
1606
1607 /* have keys, free DH */
1608 DH_free(dh);
Damien Miller874d77b2000-10-14 16:23:11 +11001609}
Damien Millerefb4afe2000-04-12 18:45:05 +10001610
Damien Miller874d77b2000-10-14 16:23:11 +11001611/* diffie-hellman-group-exchange-sha1 */
1612
1613void
1614ssh_dhgex_server(Kex *kex, Buffer *client_kexinit, Buffer *server_kexinit)
1615{
1616#ifdef DEBUG_KEXDH
1617 int i;
1618#endif
1619 int payload_len, dlen;
Ben Lindstromdf221392001-03-29 00:36:16 +00001620 int slen, nbits, type, min, max;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001621 u_char *signature = NULL;
1622 u_char *server_host_key_blob = NULL;
1623 u_int sbloblen;
1624 u_int klen, kout;
1625 u_char *kbuf;
1626 u_char *hash;
Damien Miller874d77b2000-10-14 16:23:11 +11001627 BIGNUM *shared_secret = 0;
1628 DH *dh;
1629 BIGNUM *dh_client_pub = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001630 Key *hostkey;
1631
1632 hostkey = get_hostkey_by_type(kex->hostkey_type);
1633 if (hostkey == NULL)
1634 fatal("Unsupported hostkey type %d", kex->hostkey_type);
Damien Miller874d77b2000-10-14 16:23:11 +11001635
1636/* KEXDHGEX */
1637 debug("Wait SSH2_MSG_KEX_DH_GEX_REQUEST.");
Ben Lindstromdf221392001-03-29 00:36:16 +00001638 type = packet_read(&payload_len);
1639 if (type != SSH2_MSG_KEX_DH_GEX_REQUEST_OLD &&
1640 type != SSH2_MSG_KEX_DH_GEX_REQUEST)
1641 packet_disconnect("Protocol error: expected type %d or %d, got %d",
1642 SSH2_MSG_KEX_DH_GEX_REQUEST_OLD,
1643 SSH2_MSG_KEX_DH_GEX_REQUEST,
1644 type);
1645 if (type == SSH2_MSG_KEX_DH_GEX_REQUEST_OLD) {
1646 nbits = packet_get_int();
1647 min = DH_GRP_MIN;
1648 max = DH_GRP_MAX;
1649 } else {
1650 min = packet_get_int();
1651 nbits = packet_get_int();
1652 max = packet_get_int();
1653
1654 min = MAX(DH_GRP_MIN, min);
1655 max = MIN(DH_GRP_MAX, max);
1656 }
1657
1658 if (max < min || nbits < min || max < nbits)
1659 fatal("DH_GEX_REQUEST, bad parameters: %d !< %d !< %d",
1660 min, nbits, max);
1661
1662 dh = choose_dh(min, nbits, max);
1663 if (dh == NULL)
1664 packet_disconnect("Protocol error: no matching DH grp found");
Damien Miller874d77b2000-10-14 16:23:11 +11001665
1666 debug("Sending SSH2_MSG_KEX_DH_GEX_GROUP.");
1667 packet_start(SSH2_MSG_KEX_DH_GEX_GROUP);
1668 packet_put_bignum2(dh->p);
1669 packet_put_bignum2(dh->g);
Damien Millerefb4afe2000-04-12 18:45:05 +10001670 packet_send();
1671 packet_write_wait();
Damien Millerefb4afe2000-04-12 18:45:05 +10001672
Kevin Steves6b875862000-12-15 23:31:01 +00001673 /* Compute our exchange value in parallel with the client */
1674
Ben Lindstrom4c4f05e2001-03-06 01:09:20 +00001675 dh_gen_key(dh, kex->we_need * 8);
Kevin Steves6b875862000-12-15 23:31:01 +00001676
Damien Miller874d77b2000-10-14 16:23:11 +11001677 debug("Wait SSH2_MSG_KEX_DH_GEX_INIT.");
1678 packet_read_expect(&payload_len, SSH2_MSG_KEX_DH_GEX_INIT);
1679
1680 /* key, cert */
1681 dh_client_pub = BN_new();
1682 if (dh_client_pub == NULL)
1683 fatal("dh_client_pub == NULL");
1684 packet_get_bignum2(dh_client_pub, &dlen);
Damien Millerefb4afe2000-04-12 18:45:05 +10001685
Damien Miller78928792000-04-12 20:17:38 +10001686#ifdef DEBUG_KEXDH
Damien Miller874d77b2000-10-14 16:23:11 +11001687 fprintf(stderr, "\ndh_client_pub= ");
1688 BN_print_fp(stderr, dh_client_pub);
1689 fprintf(stderr, "\n");
1690 debug("bits %d", BN_num_bits(dh_client_pub));
Damien Miller78928792000-04-12 20:17:38 +10001691#endif
Damien Miller874d77b2000-10-14 16:23:11 +11001692
1693#ifdef DEBUG_KEXDH
1694 fprintf(stderr, "\np= ");
1695 BN_print_fp(stderr, dh->p);
1696 fprintf(stderr, "\ng= ");
1697 bn_print(dh->g);
1698 fprintf(stderr, "\npub= ");
1699 BN_print_fp(stderr, dh->pub_key);
1700 fprintf(stderr, "\n");
Kevin Stevesef4eea92001-02-05 12:42:17 +00001701 DHparams_print_fp(stderr, dh);
Damien Miller874d77b2000-10-14 16:23:11 +11001702#endif
1703 if (!dh_pub_is_valid(dh, dh_client_pub))
1704 packet_disconnect("bad client public DH value");
1705
1706 klen = DH_size(dh);
1707 kbuf = xmalloc(klen);
1708 kout = DH_compute_key(kbuf, dh_client_pub, dh);
1709
1710#ifdef DEBUG_KEXDH
1711 debug("shared secret: len %d/%d", klen, kout);
1712 fprintf(stderr, "shared secret == ");
1713 for (i = 0; i< kout; i++)
1714 fprintf(stderr, "%02x", (kbuf[i])&0xff);
1715 fprintf(stderr, "\n");
1716#endif
1717 shared_secret = BN_new();
1718
1719 BN_bin2bn(kbuf, kout, shared_secret);
1720 memset(kbuf, 0, klen);
1721 xfree(kbuf);
1722
1723 /* XXX precompute? */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001724 key_to_blob(hostkey, &server_host_key_blob, &sbloblen);
Damien Miller874d77b2000-10-14 16:23:11 +11001725
Damien Miller2557bfc2001-03-30 10:47:14 +10001726 if (type == SSH2_MSG_KEX_DH_GEX_REQUEST_OLD) {
1727 /* These values are not included in the hash */
1728 min = -1;
1729 max = -1;
1730 }
1731
Damien Miller874d77b2000-10-14 16:23:11 +11001732 /* calc H */ /* XXX depends on 'kex' */
1733 hash = kex_hash_gex(
1734 client_version_string,
1735 server_version_string,
1736 buffer_ptr(client_kexinit), buffer_len(client_kexinit),
1737 buffer_ptr(server_kexinit), buffer_len(server_kexinit),
1738 (char *)server_host_key_blob, sbloblen,
Damien Miller2557bfc2001-03-30 10:47:14 +10001739 min, nbits, max,
1740 dh->p, dh->g,
Damien Miller874d77b2000-10-14 16:23:11 +11001741 dh_client_pub,
1742 dh->pub_key,
1743 shared_secret
1744 );
1745 buffer_free(client_kexinit);
1746 buffer_free(server_kexinit);
1747 xfree(client_kexinit);
1748 xfree(server_kexinit);
Ben Lindstromb1985f72001-01-23 00:19:15 +00001749 BN_free(dh_client_pub);
Damien Miller874d77b2000-10-14 16:23:11 +11001750#ifdef DEBUG_KEXDH
1751 fprintf(stderr, "hash == ");
1752 for (i = 0; i< 20; i++)
1753 fprintf(stderr, "%02x", (hash[i])&0xff);
1754 fprintf(stderr, "\n");
1755#endif
1756 /* save session id := H */
1757 /* XXX hashlen depends on KEX */
1758 session_id2_len = 20;
1759 session_id2 = xmalloc(session_id2_len);
1760 memcpy(session_id2, hash, session_id2_len);
1761
1762 /* sign H */
1763 /* XXX hashlen depends on KEX */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001764 key_sign(hostkey, &signature, &slen, hash, 20);
Damien Miller874d77b2000-10-14 16:23:11 +11001765
1766 destroy_sensitive_data();
1767
1768 /* send server hostkey, DH pubkey 'f' and singed H */
1769 packet_start(SSH2_MSG_KEX_DH_GEX_REPLY);
1770 packet_put_string((char *)server_host_key_blob, sbloblen);
1771 packet_put_bignum2(dh->pub_key); /* f */
1772 packet_put_string((char *)signature, slen);
1773 packet_send();
1774 xfree(signature);
1775 xfree(server_host_key_blob);
1776 packet_write_wait();
1777
1778 kex_derive_keys(kex, hash, shared_secret);
Ben Lindstromb1985f72001-01-23 00:19:15 +00001779 BN_clear_free(shared_secret);
Damien Miller874d77b2000-10-14 16:23:11 +11001780 packet_set_kex(kex);
1781
1782 /* have keys, free DH */
1783 DH_free(dh);
Damien Millerefb4afe2000-04-12 18:45:05 +10001784}