blob: bd90d0e56eb3df9770ae498f4da04c36adcd6e33 [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 Lindstroma9a29e12001-02-20 01:20:47 +000043RCSID("$OpenBSD: sshd.c,v 1.168 2001/02/19 23:09:05 deraadt 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 {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100152 Key *server_key; /* empheral server key */
153 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;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000157} sensitive_data;
158
Damien Miller5428f641999-11-25 11:54:57 +1100159/*
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000160 * Flag indicating whether the RSA server key needs to be regenerated.
161 * Is set in the SIGALRM handler and cleared when the key is regenerated.
Damien Miller5428f641999-11-25 11:54:57 +1100162 */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000163int key_do_regen = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000164
165/* This is set to true when SIGHUP is received. */
166int received_sighup = 0;
167
Damien Millerb38eff82000-04-01 11:09:21 +1000168/* session identifier, used by RSA-auth */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000169u_char session_id[16];
Damien Millerb38eff82000-04-01 11:09:21 +1000170
Damien Millereba71ba2000-04-29 23:57:08 +1000171/* same for ssh2 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000172u_char *session_id2 = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000173int session_id2_len = 0;
174
Damien Miller942da032000-08-18 13:59:06 +1000175/* record remote hostname or ip */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000176u_int utmp_len = MAXHOSTNAMELEN;
Damien Miller942da032000-08-18 13:59:06 +1000177
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000178/* Prototypes for various functions defined later in this file. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000179void do_ssh1_kex(void);
180void do_ssh2_kex(void);
Damien Miller98c7ad62000-03-09 21:27:49 +1100181
Damien Miller874d77b2000-10-14 16:23:11 +1100182void ssh_dh1_server(Kex *, Buffer *_kexinit, Buffer *);
183void ssh_dhgex_server(Kex *, Buffer *_kexinit, Buffer *);
184
Damien Miller98c7ad62000-03-09 21:27:49 +1100185/*
Damien Miller34132e52000-01-14 15:45:46 +1100186 * Close all listening sockets
187 */
188void
189close_listen_socks(void)
190{
191 int i;
192 for (i = 0; i < num_listen_socks; i++)
193 close(listen_socks[i]);
194 num_listen_socks = -1;
195}
196
197/*
Damien Miller95def091999-11-25 00:26:21 +1100198 * Signal handler for SIGHUP. Sshd execs itself when it receives SIGHUP;
199 * the effect is to reread the configuration file (and to regenerate
200 * the server key).
201 */
Damien Miller4af51302000-04-16 11:18:38 +1000202void
Damien Miller95def091999-11-25 00:26:21 +1100203sighup_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000204{
Damien Miller95def091999-11-25 00:26:21 +1100205 received_sighup = 1;
206 signal(SIGHUP, sighup_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000207}
208
Damien Miller95def091999-11-25 00:26:21 +1100209/*
210 * Called from the main program after receiving SIGHUP.
211 * Restarts the server.
212 */
Damien Miller4af51302000-04-16 11:18:38 +1000213void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000214sighup_restart(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000215{
Damien Miller95def091999-11-25 00:26:21 +1100216 log("Received SIGHUP; restarting.");
Damien Miller34132e52000-01-14 15:45:46 +1100217 close_listen_socks();
Damien Miller95def091999-11-25 00:26:21 +1100218 execv(saved_argv[0], saved_argv);
Kevin Stevesec84dc12000-12-13 17:45:15 +0000219 log("RESTART FAILED: av[0]='%.100s', error: %.100s.", saved_argv[0], strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100220 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000221}
222
Damien Miller95def091999-11-25 00:26:21 +1100223/*
224 * Generic signal handler for terminating signals in the master daemon.
225 * These close the listen socket; not closing it seems to cause "Address
226 * already in use" problems on some machines, which is inconvenient.
227 */
Damien Miller4af51302000-04-16 11:18:38 +1000228void
Damien Miller95def091999-11-25 00:26:21 +1100229sigterm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000230{
Damien Miller95def091999-11-25 00:26:21 +1100231 log("Received signal %d; terminating.", sig);
Damien Miller34132e52000-01-14 15:45:46 +1100232 close_listen_socks();
Damien Miller6f83b8e2000-05-02 09:23:45 +1000233 unlink(options.pid_file);
Damien Miller95def091999-11-25 00:26:21 +1100234 exit(255);
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
239 * reap any zombies left by exited c.
240 */
Damien Miller4af51302000-04-16 11:18:38 +1000241void
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 */
Damien Miller4af51302000-04-16 11:18:38 +1000257void
Damien Miller95def091999-11-25 00:26:21 +1100258grace_alarm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000259{
Damien Miller95def091999-11-25 00:26:21 +1100260 /* Close the connection. */
261 packet_close();
262
263 /* Log error and exit. */
264 fatal("Timeout before authentication for %s.", get_remote_ipaddr());
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000265}
266
Damien Miller95def091999-11-25 00:26:21 +1100267/*
Damien Miller95def091999-11-25 00:26:21 +1100268 * Signal handler for the key regeneration alarm. Note that this
269 * alarm only occurs in the daemon waiting for connections, and it does not
270 * do anything with the private key or random state before forking.
271 * Thus there should be no concurrency control/asynchronous execution
272 * problems.
273 */
Damien Miller4af51302000-04-16 11:18:38 +1000274void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100275generate_empheral_server_key(void)
276{
277 log("Generating %s%d bit RSA key.", sensitive_data.server_key ? "new " : "",
278 options.server_key_bits);
279 if (sensitive_data.server_key != NULL)
280 key_free(sensitive_data.server_key);
281 sensitive_data.server_key = key_generate(KEY_RSA1, options.server_key_bits);
282 arc4random_stir();
283 log("RSA key generation complete.");
284}
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000285
Damien Miller0bc1bd82000-11-13 22:57:25 +1100286void
Damien Miller95def091999-11-25 00:26:21 +1100287key_regeneration_alarm(int sig)
288{
289 int save_errno = errno;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000290 signal(SIGALRM, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +1100291 errno = save_errno;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000292 key_do_regen = 1;
Damien Miller95def091999-11-25 00:26:21 +1100293}
294
Damien Millerb38eff82000-04-01 11:09:21 +1000295void
296sshd_exchange_identification(int sock_in, int sock_out)
297{
Damien Miller78928792000-04-12 20:17:38 +1000298 int i, mismatch;
Damien Millerb38eff82000-04-01 11:09:21 +1000299 int remote_major, remote_minor;
Damien Miller78928792000-04-12 20:17:38 +1000300 int major, minor;
Damien Millerb38eff82000-04-01 11:09:21 +1000301 char *s;
302 char buf[256]; /* Must not be larger than remote_version. */
303 char remote_version[256]; /* Must be at least as big as buf. */
304
Damien Miller78928792000-04-12 20:17:38 +1000305 if ((options.protocol & SSH_PROTO_1) &&
306 (options.protocol & SSH_PROTO_2)) {
307 major = PROTOCOL_MAJOR_1;
308 minor = 99;
309 } else if (options.protocol & SSH_PROTO_2) {
310 major = PROTOCOL_MAJOR_2;
311 minor = PROTOCOL_MINOR_2;
312 } else {
313 major = PROTOCOL_MAJOR_1;
314 minor = PROTOCOL_MINOR_1;
315 }
316 snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n", major, minor, SSH_VERSION);
Damien Millerb38eff82000-04-01 11:09:21 +1000317 server_version_string = xstrdup(buf);
318
319 if (client_version_string == NULL) {
320 /* Send our protocol version identification. */
321 if (atomicio(write, sock_out, server_version_string, strlen(server_version_string))
322 != strlen(server_version_string)) {
323 log("Could not write ident string to %s.", get_remote_ipaddr());
324 fatal_cleanup();
325 }
326
Ben Lindstrom5393f932001-02-15 03:17:13 +0000327 /* Read other side's version identification. */
328 memset(buf, 0, sizeof(buf));
Damien Millerb38eff82000-04-01 11:09:21 +1000329 for (i = 0; i < sizeof(buf) - 1; i++) {
Damien Millerbf7f4662000-06-23 10:16:38 +1000330 if (atomicio(read, sock_in, &buf[i], 1) != 1) {
Ben Lindstroma9a29e12001-02-20 01:20:47 +0000331 log("Did not receive identification string from %s.",
332 get_remote_ipaddr());
Damien Millerb38eff82000-04-01 11:09:21 +1000333 fatal_cleanup();
334 }
335 if (buf[i] == '\r') {
336 buf[i] = '\n';
337 buf[i + 1] = 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100338 /* Kludge for F-Secure Macintosh < 1.0.2 */
339 if (i == 12 &&
340 strncmp(buf, "SSH-1.5-W1.0", 12) == 0)
341 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000342 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000343 }
344 if (buf[i] == '\n') {
345 /* buf[i] == '\n' */
346 buf[i + 1] = 0;
347 break;
348 }
349 }
350 buf[sizeof(buf) - 1] = 0;
351 client_version_string = xstrdup(buf);
352 }
353
354 /*
355 * Check that the versions match. In future this might accept
356 * several versions and set appropriate flags to handle them.
357 */
358 if (sscanf(client_version_string, "SSH-%d.%d-%[^\n]\n",
359 &remote_major, &remote_minor, remote_version) != 3) {
Damien Miller4af51302000-04-16 11:18:38 +1000360 s = "Protocol mismatch.\n";
Damien Millerb38eff82000-04-01 11:09:21 +1000361 (void) atomicio(write, sock_out, s, strlen(s));
362 close(sock_in);
363 close(sock_out);
364 log("Bad protocol version identification '%.100s' from %s",
365 client_version_string, get_remote_ipaddr());
366 fatal_cleanup();
367 }
368 debug("Client protocol version %d.%d; client software version %.100s",
369 remote_major, remote_minor, remote_version);
370
Damien Millerefb4afe2000-04-12 18:45:05 +1000371 compat_datafellows(remote_version);
372
Damien Miller78928792000-04-12 20:17:38 +1000373 mismatch = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000374 switch(remote_major) {
375 case 1:
Damien Millereba71ba2000-04-29 23:57:08 +1000376 if (remote_minor == 99) {
377 if (options.protocol & SSH_PROTO_2)
378 enable_compat20();
379 else
380 mismatch = 1;
381 break;
382 }
Damien Miller78928792000-04-12 20:17:38 +1000383 if (!(options.protocol & SSH_PROTO_1)) {
384 mismatch = 1;
385 break;
386 }
Damien Millerb38eff82000-04-01 11:09:21 +1000387 if (remote_minor < 3) {
Damien Miller37023962000-07-11 17:31:38 +1000388 packet_disconnect("Your ssh version is too old and "
Damien Millerb38eff82000-04-01 11:09:21 +1000389 "is no longer supported. Please install a newer version.");
390 } else if (remote_minor == 3) {
391 /* note that this disables agent-forwarding */
392 enable_compat13();
393 }
Damien Miller78928792000-04-12 20:17:38 +1000394 break;
Damien Millerefb4afe2000-04-12 18:45:05 +1000395 case 2:
Damien Miller78928792000-04-12 20:17:38 +1000396 if (options.protocol & SSH_PROTO_2) {
Damien Millerefb4afe2000-04-12 18:45:05 +1000397 enable_compat20();
398 break;
399 }
400 /* FALLTHROUGH */
Damien Miller4af51302000-04-16 11:18:38 +1000401 default:
Damien Miller78928792000-04-12 20:17:38 +1000402 mismatch = 1;
Damien Millerb38eff82000-04-01 11:09:21 +1000403 break;
404 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000405 chop(server_version_string);
406 chop(client_version_string);
Damien Miller78928792000-04-12 20:17:38 +1000407 debug("Local version string %.200s", server_version_string);
408
409 if (mismatch) {
410 s = "Protocol major versions differ.\n";
411 (void) atomicio(write, sock_out, s, strlen(s));
412 close(sock_in);
413 close(sock_out);
414 log("Protocol major versions differ for %s: %.200s vs. %.200s",
415 get_remote_ipaddr(),
416 server_version_string, client_version_string);
417 fatal_cleanup();
418 }
Damien Millereba71ba2000-04-29 23:57:08 +1000419 if (compat20)
420 packet_set_ssh2_format();
421}
422
423
Damien Miller0bc1bd82000-11-13 22:57:25 +1100424/* Destroy the host and server keys. They will no longer be needed. */
Damien Millereba71ba2000-04-29 23:57:08 +1000425void
426destroy_sensitive_data(void)
427{
Damien Miller0bc1bd82000-11-13 22:57:25 +1100428 int i;
429
430 if (sensitive_data.server_key) {
431 key_free(sensitive_data.server_key);
432 sensitive_data.server_key = NULL;
433 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000434 for(i = 0; i < options.num_host_key_files; i++) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100435 if (sensitive_data.host_keys[i]) {
436 key_free(sensitive_data.host_keys[i]);
437 sensitive_data.host_keys[i] = NULL;
438 }
439 }
440 sensitive_data.ssh1_host_key = NULL;
441}
442Key *
443load_private_key_autodetect(const char *filename)
444{
445 struct stat st;
446 int type;
447 Key *public, *private;
448
449 if (stat(filename, &st) < 0) {
450 perror(filename);
451 return NULL;
452 }
453 /*
454 * try to load the public key. right now this only works for RSA1,
455 * since SSH2 keys are fully encrypted
456 */
457 type = KEY_RSA1;
458 public = key_new(type);
459 if (!load_public_key(filename, public, NULL)) {
460 /* ok, so we will assume this is 'some' key */
461 type = KEY_UNSPEC;
462 }
463 key_free(public);
464
465 /* Ok, try key with empty passphrase */
466 private = key_new(type);
467 if (load_private_key(filename, "", private, NULL)) {
468 debug("load_private_key_autodetect: type %d %s",
469 private->type, key_type(private));
470 return private;
471 }
472 key_free(private);
473 return NULL;
474}
475
476char *
477list_hostkey_types(void)
478{
479 static char buf[1024];
480 int i;
481 buf[0] = '\0';
482 for(i = 0; i < options.num_host_key_files; i++) {
483 Key *key = sensitive_data.host_keys[i];
484 if (key == NULL)
485 continue;
486 switch(key->type) {
487 case KEY_RSA:
488 case KEY_DSA:
489 strlcat(buf, key_ssh_name(key), sizeof buf);
490 strlcat(buf, ",", sizeof buf);
491 break;
492 }
493 }
494 i = strlen(buf);
495 if (i > 0 && buf[i-1] == ',')
496 buf[i-1] = '\0';
497 debug("list_hostkey_types: %s", buf);
498 return buf;
499}
500
501Key *
502get_hostkey_by_type(int type)
503{
504 int i;
505 for(i = 0; i < options.num_host_key_files; i++) {
506 Key *key = sensitive_data.host_keys[i];
507 if (key != NULL && key->type == type)
508 return key;
509 }
510 return NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000511}
512
Damien Miller942da032000-08-18 13:59:06 +1000513/*
514 * returns 1 if connection should be dropped, 0 otherwise.
515 * dropping starts at connection #max_startups_begin with a probability
516 * of (max_startups_rate/100). the probability increases linearly until
517 * all connections are dropped for startups > max_startups
518 */
519int
520drop_connection(int startups)
521{
522 double p, r;
523
524 if (startups < options.max_startups_begin)
525 return 0;
526 if (startups >= options.max_startups)
527 return 1;
528 if (options.max_startups_rate == 100)
529 return 1;
530
531 p = 100 - options.max_startups_rate;
532 p *= startups - options.max_startups_begin;
533 p /= (double) (options.max_startups - options.max_startups_begin);
534 p += options.max_startups_rate;
535 p /= 100.0;
536 r = arc4random() / (double) UINT_MAX;
537
538 debug("drop_connection: p %g, r %g", p, r);
539 return (r < p) ? 1 : 0;
540}
541
Damien Miller37023962000-07-11 17:31:38 +1000542int *startup_pipes = NULL; /* options.max_startup sized array of fd ints */
543int startup_pipe; /* in child */
544
Damien Miller95def091999-11-25 00:26:21 +1100545/*
546 * Main program for the daemon.
547 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000548int
549main(int ac, char **av)
550{
Damien Miller95def091999-11-25 00:26:21 +1100551 extern char *optarg;
552 extern int optind;
Damien Miller37023962000-07-11 17:31:38 +1000553 int opt, sock_in = 0, sock_out = 0, newsock, j, i, fdsetsz, on = 1;
Damien Miller166fca82000-04-20 07:42:21 +1000554 pid_t pid;
Damien Miller34132e52000-01-14 15:45:46 +1100555 socklen_t fromlen;
Damien Miller34132e52000-01-14 15:45:46 +1100556 fd_set *fdset;
557 struct sockaddr_storage from;
Damien Miller95def091999-11-25 00:26:21 +1100558 const char *remote_ip;
559 int remote_port;
Damien Miller95def091999-11-25 00:26:21 +1100560 FILE *f;
561 struct linger linger;
Damien Miller34132e52000-01-14 15:45:46 +1100562 struct addrinfo *ai;
563 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
564 int listen_sock, maxfd;
Damien Miller37023962000-07-11 17:31:38 +1000565 int startup_p[2];
566 int startups = 0;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000567 int ret, key_used = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000568
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000569 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000570 init_rng();
571
Kevin Stevesec84dc12000-12-13 17:45:15 +0000572 /* Save argv. */
Damien Millerb8c656e2000-06-28 15:22:41 +1000573 saved_argc = ac;
Damien Miller95def091999-11-25 00:26:21 +1100574 saved_argv = av;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000575
Damien Miller95def091999-11-25 00:26:21 +1100576 /* Initialize configuration options to their default values. */
577 initialize_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000578
Damien Miller95def091999-11-25 00:26:21 +1100579 /* Parse command-line arguments. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000580 while ((opt = getopt(ac, av, "f:p:b:k:h:g:V:u:dDiqQ46")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100581 switch (opt) {
Damien Miller34132e52000-01-14 15:45:46 +1100582 case '4':
583 IPv4or6 = AF_INET;
584 break;
585 case '6':
586 IPv4or6 = AF_INET6;
587 break;
Damien Miller95def091999-11-25 00:26:21 +1100588 case 'f':
589 config_file_name = optarg;
590 break;
591 case 'd':
Damien Millere4340be2000-09-16 13:29:08 +1100592 if (0 == debug_flag) {
593 debug_flag = 1;
594 options.log_level = SYSLOG_LEVEL_DEBUG1;
595 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
596 options.log_level++;
597 } else {
598 fprintf(stderr, "Too high debugging level.\n");
599 exit(1);
600 }
Damien Miller95def091999-11-25 00:26:21 +1100601 break;
Ben Lindstromc72745a2000-12-02 19:03:54 +0000602 case 'D':
603 no_daemon_flag = 1;
604 break;
Damien Miller95def091999-11-25 00:26:21 +1100605 case 'i':
606 inetd_flag = 1;
607 break;
608 case 'Q':
Ben Lindstromd5390202001-01-29 08:07:43 +0000609 /* ignored */
Damien Miller95def091999-11-25 00:26:21 +1100610 break;
611 case 'q':
612 options.log_level = SYSLOG_LEVEL_QUIET;
613 break;
614 case 'b':
615 options.server_key_bits = atoi(optarg);
616 break;
617 case 'p':
Damien Miller34132e52000-01-14 15:45:46 +1100618 options.ports_from_cmdline = 1;
Damien Millere4340be2000-09-16 13:29:08 +1100619 if (options.num_ports >= MAX_PORTS) {
620 fprintf(stderr, "too many ports.\n");
621 exit(1);
622 }
Damien Miller34132e52000-01-14 15:45:46 +1100623 options.ports[options.num_ports++] = atoi(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100624 break;
625 case 'g':
626 options.login_grace_time = atoi(optarg);
627 break;
628 case 'k':
629 options.key_regeneration_time = atoi(optarg);
630 break;
631 case 'h':
Damien Miller0bc1bd82000-11-13 22:57:25 +1100632 if (options.num_host_key_files >= MAX_HOSTKEYS) {
633 fprintf(stderr, "too many host keys.\n");
634 exit(1);
635 }
636 options.host_key_files[options.num_host_key_files++] = optarg;
Damien Miller95def091999-11-25 00:26:21 +1100637 break;
638 case 'V':
639 client_version_string = optarg;
640 /* only makes sense with inetd_flag, i.e. no listen() */
641 inetd_flag = 1;
642 break;
Damien Miller942da032000-08-18 13:59:06 +1000643 case 'u':
644 utmp_len = atoi(optarg);
645 break;
Damien Miller95def091999-11-25 00:26:21 +1100646 case '?':
647 default:
648 fprintf(stderr, "sshd version %s\n", SSH_VERSION);
Kevin Stevesec84dc12000-12-13 17:45:15 +0000649 fprintf(stderr, "Usage: %s [options]\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100650 fprintf(stderr, "Options:\n");
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000651 fprintf(stderr, " -f file Configuration file (default %s)\n", _PATH_SERVER_CONFIG_FILE);
Damien Millere4340be2000-09-16 13:29:08 +1100652 fprintf(stderr, " -d Debugging mode (multiple -d means more debugging)\n");
Damien Miller95def091999-11-25 00:26:21 +1100653 fprintf(stderr, " -i Started from inetd\n");
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000654 fprintf(stderr, " -D Do not fork into daemon mode\n");
Damien Miller95def091999-11-25 00:26:21 +1100655 fprintf(stderr, " -q Quiet (no logging)\n");
656 fprintf(stderr, " -p port Listen on the specified port (default: 22)\n");
657 fprintf(stderr, " -k seconds Regenerate server key every this many seconds (default: 3600)\n");
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000658 fprintf(stderr, " -g seconds Grace period for authentication (default: 600)\n");
Damien Miller95def091999-11-25 00:26:21 +1100659 fprintf(stderr, " -b bits Size of server RSA key (default: 768 bits)\n");
660 fprintf(stderr, " -h file File from which to read host key (default: %s)\n",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000661 _PATH_HOST_KEY_FILE);
Damien Miller942da032000-08-18 13:59:06 +1000662 fprintf(stderr, " -u len Maximum hostname length for utmp recording\n");
Damien Miller34132e52000-01-14 15:45:46 +1100663 fprintf(stderr, " -4 Use IPv4 only\n");
664 fprintf(stderr, " -6 Use IPv6 only\n");
Damien Miller95def091999-11-25 00:26:21 +1100665 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000666 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000667 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000668
Damien Miller34132e52000-01-14 15:45:46 +1100669 /*
670 * Force logging to stderr until we have loaded the private host
671 * key (unless started from inetd)
672 */
Kevin Stevesec84dc12000-12-13 17:45:15 +0000673 log_init(__progname,
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000674 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
Damien Miller34132e52000-01-14 15:45:46 +1100675 options.log_facility == -1 ? SYSLOG_FACILITY_AUTH : options.log_facility,
Ben Lindstromd5390202001-01-29 08:07:43 +0000676 !inetd_flag);
Damien Miller34132e52000-01-14 15:45:46 +1100677
Damien Miller95def091999-11-25 00:26:21 +1100678 /* Read server configuration options from the configuration file. */
679 read_server_config(&options, config_file_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000680
Damien Miller95def091999-11-25 00:26:21 +1100681 /* Fill in default values for those options not explicitly set. */
682 fill_default_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000683
Damien Miller95def091999-11-25 00:26:21 +1100684 /* Check that there are no remaining arguments. */
685 if (optind < ac) {
686 fprintf(stderr, "Extra argument %s.\n", av[optind]);
687 exit(1);
688 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000689
Damien Miller95def091999-11-25 00:26:21 +1100690 debug("sshd version %.100s", SSH_VERSION);
Damien Miller2ccf6611999-11-15 15:25:10 +1100691
Damien Miller0bc1bd82000-11-13 22:57:25 +1100692 /* load private host keys */
693 sensitive_data.host_keys = xmalloc(options.num_host_key_files*sizeof(Key*));
Ben Lindstrom46c16222000-12-22 01:43:59 +0000694 for(i = 0; i < options.num_host_key_files; i++)
695 sensitive_data.host_keys[i] = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100696 sensitive_data.server_key = NULL;
697 sensitive_data.ssh1_host_key = NULL;
698 sensitive_data.have_ssh1_key = 0;
699 sensitive_data.have_ssh2_key = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000700
Damien Miller0bc1bd82000-11-13 22:57:25 +1100701 for(i = 0; i < options.num_host_key_files; i++) {
702 Key *key = load_private_key_autodetect(options.host_key_files[i]);
703 if (key == NULL) {
704 error("Could not load host key: %.200s: %.100s",
705 options.host_key_files[i], strerror(errno));
706 continue;
707 }
708 switch(key->type){
709 case KEY_RSA1:
710 sensitive_data.ssh1_host_key = key;
711 sensitive_data.have_ssh1_key = 1;
712 break;
713 case KEY_RSA:
714 case KEY_DSA:
715 sensitive_data.have_ssh2_key = 1;
716 break;
717 }
718 sensitive_data.host_keys[i] = key;
719 }
720 if ((options.protocol & SSH_PROTO_1) && !sensitive_data.have_ssh1_key) {
721 log("Disabling protocol version 1. Could not load host key");
Damien Millereba71ba2000-04-29 23:57:08 +1000722 options.protocol &= ~SSH_PROTO_1;
723 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100724 if ((options.protocol & SSH_PROTO_2) && !sensitive_data.have_ssh2_key) {
725 log("Disabling protocol version 2. Could not load host key");
726 options.protocol &= ~SSH_PROTO_2;
Damien Millereba71ba2000-04-29 23:57:08 +1000727 }
Kevin Stevesadf74cd2001-02-05 14:22:50 +0000728 if (!(options.protocol & (SSH_PROTO_1|SSH_PROTO_2))) {
Damien Millereba71ba2000-04-29 23:57:08 +1000729 log("sshd: no hostkeys available -- exiting.\n");
Damien Miller95def091999-11-25 00:26:21 +1100730 exit(1);
731 }
Damien Miller95def091999-11-25 00:26:21 +1100732
Damien Millereba71ba2000-04-29 23:57:08 +1000733 /* Check certain values for sanity. */
734 if (options.protocol & SSH_PROTO_1) {
735 if (options.server_key_bits < 512 ||
736 options.server_key_bits > 32768) {
737 fprintf(stderr, "Bad server key size.\n");
738 exit(1);
739 }
740 /*
741 * Check that server and host key lengths differ sufficiently. This
742 * is necessary to make double encryption work with rsaref. Oh, I
743 * hate software patents. I dont know if this can go? Niels
744 */
745 if (options.server_key_bits >
Damien Miller0bc1bd82000-11-13 22:57:25 +1100746 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) - SSH_KEY_BITS_RESERVED &&
Damien Millereba71ba2000-04-29 23:57:08 +1000747 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 debug("Forcing server key to %d bits to make it differ from host key.",
752 options.server_key_bits);
753 }
754 }
755
Damien Miller78315eb2000-09-29 23:01:36 +1100756#ifdef HAVE_SCO_PROTECTED_PW
757 (void) set_auth_parameters(ac, av);
758#endif
759
Damien Millereba71ba2000-04-29 23:57:08 +1000760 /* Initialize the log (it is reinitialized below in case we forked). */
Damien Miller95def091999-11-25 00:26:21 +1100761 if (debug_flag && !inetd_flag)
762 log_stderr = 1;
Kevin Stevesec84dc12000-12-13 17:45:15 +0000763 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +1100764
Damien Millereba71ba2000-04-29 23:57:08 +1000765 /*
766 * If not in debugging mode, and not started from inetd, disconnect
767 * from the controlling terminal, and fork. The original process
768 * exits.
769 */
Ben Lindstromc72745a2000-12-02 19:03:54 +0000770 if (!(debug_flag || inetd_flag || no_daemon_flag)) {
Damien Miller95def091999-11-25 00:26:21 +1100771#ifdef TIOCNOTTY
772 int fd;
773#endif /* TIOCNOTTY */
774 if (daemon(0, 0) < 0)
775 fatal("daemon() failed: %.200s", strerror(errno));
776
777 /* Disconnect from the controlling tty. */
778#ifdef TIOCNOTTY
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000779 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
Damien Miller95def091999-11-25 00:26:21 +1100780 if (fd >= 0) {
781 (void) ioctl(fd, TIOCNOTTY, NULL);
782 close(fd);
783 }
784#endif /* TIOCNOTTY */
785 }
786 /* Reinitialize the log (because of the fork above). */
Kevin Stevesec84dc12000-12-13 17:45:15 +0000787 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +1100788
Damien Miller95def091999-11-25 00:26:21 +1100789 /* Initialize the random number generator. */
790 arc4random_stir();
791
792 /* Chdir to the root directory so that the current disk can be
793 unmounted if desired. */
794 chdir("/");
795
Damien Miller95def091999-11-25 00:26:21 +1100796 /* Start listening for a socket, unless started from inetd. */
797 if (inetd_flag) {
798 int s1, s2;
799 s1 = dup(0); /* Make sure descriptors 0, 1, and 2 are in use. */
800 s2 = dup(s1);
801 sock_in = dup(0);
802 sock_out = dup(1);
Damien Miller994cf142000-07-21 10:19:44 +1000803 startup_pipe = -1;
Damien Millereba71ba2000-04-29 23:57:08 +1000804 /*
805 * We intentionally do not close the descriptors 0, 1, and 2
806 * as our code for setting the descriptors won\'t work if
807 * ttyfd happens to be one of those.
808 */
Damien Miller95def091999-11-25 00:26:21 +1100809 debug("inetd sockets after dupping: %d, %d", sock_in, sock_out);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100810 if (options.protocol & SSH_PROTO_1)
811 generate_empheral_server_key();
Damien Miller95def091999-11-25 00:26:21 +1100812 } else {
Damien Miller34132e52000-01-14 15:45:46 +1100813 for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
814 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
815 continue;
816 if (num_listen_socks >= MAX_LISTEN_SOCKS)
817 fatal("Too many listen sockets. "
818 "Enlarge MAX_LISTEN_SOCKS");
819 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
820 ntop, sizeof(ntop), strport, sizeof(strport),
821 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
822 error("getnameinfo failed");
823 continue;
824 }
825 /* Create socket for listening. */
826 listen_sock = socket(ai->ai_family, SOCK_STREAM, 0);
827 if (listen_sock < 0) {
828 /* kernel may not support ipv6 */
829 verbose("socket: %.100s", strerror(errno));
830 continue;
831 }
832 if (fcntl(listen_sock, F_SETFL, O_NONBLOCK) < 0) {
833 error("listen_sock O_NONBLOCK: %s", strerror(errno));
834 close(listen_sock);
835 continue;
836 }
837 /*
838 * Set socket options. We try to make the port
839 * reusable and have it close as fast as possible
840 * without waiting in unnecessary wait states on
841 * close.
842 */
843 setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
844 (void *) &on, sizeof(on));
845 linger.l_onoff = 1;
846 linger.l_linger = 5;
847 setsockopt(listen_sock, SOL_SOCKET, SO_LINGER,
848 (void *) &linger, sizeof(linger));
Damien Miller95def091999-11-25 00:26:21 +1100849
Damien Miller34132e52000-01-14 15:45:46 +1100850 debug("Bind to port %s on %s.", strport, ntop);
Damien Miller95def091999-11-25 00:26:21 +1100851
Damien Miller34132e52000-01-14 15:45:46 +1100852 /* Bind the socket to the desired port. */
Damien Miller0a4e27d2001-02-18 12:36:39 +1100853 if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) {
854 if (!ai->ai_next)
855 error("Bind to port %s on %s failed: %.200s.",
856 strport, ntop, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +1100857 close(listen_sock);
858 continue;
859 }
860 listen_socks[num_listen_socks] = listen_sock;
861 num_listen_socks++;
Damien Miller95def091999-11-25 00:26:21 +1100862
Damien Miller34132e52000-01-14 15:45:46 +1100863 /* Start listening on the port. */
864 log("Server listening on %s port %s.", ntop, strport);
865 if (listen(listen_sock, 5) < 0)
866 fatal("listen: %.100s", strerror(errno));
867
Damien Miller95def091999-11-25 00:26:21 +1100868 }
Damien Miller34132e52000-01-14 15:45:46 +1100869 freeaddrinfo(options.listen_addrs);
870
871 if (!num_listen_socks)
872 fatal("Cannot bind any address.");
873
Damien Miller95def091999-11-25 00:26:21 +1100874 if (!debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +1100875 /*
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000876 * Record our pid in /var/run/sshd.pid to make it
877 * easier to kill the correct sshd. We don't want to
878 * do this before the bind above because the bind will
Damien Miller5428f641999-11-25 11:54:57 +1100879 * fail if there already is a daemon, and this will
880 * overwrite any old pid in the file.
881 */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100882 f = fopen(options.pid_file, "wb");
Damien Miller95def091999-11-25 00:26:21 +1100883 if (f) {
Ben Lindstrom46c16222000-12-22 01:43:59 +0000884 fprintf(f, "%u\n", (u_int) getpid());
Damien Miller95def091999-11-25 00:26:21 +1100885 fclose(f);
886 }
887 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000888 if (options.protocol & SSH_PROTO_1)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100889 generate_empheral_server_key();
Damien Miller95def091999-11-25 00:26:21 +1100890
Damien Miller95def091999-11-25 00:26:21 +1100891 /* Arrange to restart on SIGHUP. The handler needs listen_sock. */
892 signal(SIGHUP, sighup_handler);
Damien Miller37023962000-07-11 17:31:38 +1000893
Damien Miller95def091999-11-25 00:26:21 +1100894 signal(SIGTERM, sigterm_handler);
895 signal(SIGQUIT, sigterm_handler);
896
897 /* Arrange SIGCHLD to be caught. */
898 signal(SIGCHLD, main_sigchld_handler);
899
Damien Miller34132e52000-01-14 15:45:46 +1100900 /* setup fd set for listen */
Damien Miller37023962000-07-11 17:31:38 +1000901 fdset = NULL;
Damien Miller34132e52000-01-14 15:45:46 +1100902 maxfd = 0;
903 for (i = 0; i < num_listen_socks; i++)
904 if (listen_socks[i] > maxfd)
905 maxfd = listen_socks[i];
Damien Miller37023962000-07-11 17:31:38 +1000906 /* pipes connected to unauthenticated childs */
907 startup_pipes = xmalloc(options.max_startups * sizeof(int));
908 for (i = 0; i < options.max_startups; i++)
909 startup_pipes[i] = -1;
Damien Miller34132e52000-01-14 15:45:46 +1100910
Damien Miller5428f641999-11-25 11:54:57 +1100911 /*
912 * Stay listening for connections until the system crashes or
913 * the daemon is killed with a signal.
914 */
Damien Miller95def091999-11-25 00:26:21 +1100915 for (;;) {
916 if (received_sighup)
917 sighup_restart();
Damien Miller37023962000-07-11 17:31:38 +1000918 if (fdset != NULL)
919 xfree(fdset);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000920 fdsetsz = howmany(maxfd+1, NFDBITS) * sizeof(fd_mask);
Damien Miller37023962000-07-11 17:31:38 +1000921 fdset = (fd_set *)xmalloc(fdsetsz);
Damien Miller34132e52000-01-14 15:45:46 +1100922 memset(fdset, 0, fdsetsz);
Damien Miller37023962000-07-11 17:31:38 +1000923
Damien Miller34132e52000-01-14 15:45:46 +1100924 for (i = 0; i < num_listen_socks; i++)
925 FD_SET(listen_socks[i], fdset);
Damien Miller37023962000-07-11 17:31:38 +1000926 for (i = 0; i < options.max_startups; i++)
927 if (startup_pipes[i] != -1)
928 FD_SET(startup_pipes[i], fdset);
929
930 /* Wait in select until there is a connection. */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000931 ret = select(maxfd+1, fdset, NULL, NULL, NULL);
932 if (ret < 0 && errno != EINTR)
933 error("select: %.100s", strerror(errno));
934 if (key_used && key_do_regen) {
935 generate_empheral_server_key();
936 key_used = 0;
937 key_do_regen = 0;
Damien Miller34132e52000-01-14 15:45:46 +1100938 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000939 if (ret < 0)
940 continue;
941
Damien Miller37023962000-07-11 17:31:38 +1000942 for (i = 0; i < options.max_startups; i++)
943 if (startup_pipes[i] != -1 &&
944 FD_ISSET(startup_pipes[i], fdset)) {
945 /*
946 * the read end of the pipe is ready
947 * if the child has closed the pipe
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000948 * after successful authentication
Damien Miller37023962000-07-11 17:31:38 +1000949 * or if the child has died
950 */
951 close(startup_pipes[i]);
952 startup_pipes[i] = -1;
953 startups--;
954 }
Damien Miller34132e52000-01-14 15:45:46 +1100955 for (i = 0; i < num_listen_socks; i++) {
956 if (!FD_ISSET(listen_socks[i], fdset))
Damien Miller95def091999-11-25 00:26:21 +1100957 continue;
Damien Miller37023962000-07-11 17:31:38 +1000958 fromlen = sizeof(from);
959 newsock = accept(listen_socks[i], (struct sockaddr *)&from,
960 &fromlen);
961 if (newsock < 0) {
962 if (errno != EINTR && errno != EWOULDBLOCK)
963 error("accept: %.100s", strerror(errno));
964 continue;
965 }
966 if (fcntl(newsock, F_SETFL, 0) < 0) {
967 error("newsock del O_NONBLOCK: %s", strerror(errno));
968 continue;
969 }
Damien Miller942da032000-08-18 13:59:06 +1000970 if (drop_connection(startups) == 1) {
971 debug("drop connection #%d", startups);
Damien Miller37023962000-07-11 17:31:38 +1000972 close(newsock);
973 continue;
974 }
975 if (pipe(startup_p) == -1) {
976 close(newsock);
977 continue;
978 }
979
980 for (j = 0; j < options.max_startups; j++)
981 if (startup_pipes[j] == -1) {
982 startup_pipes[j] = startup_p[0];
983 if (maxfd < startup_p[0])
984 maxfd = startup_p[0];
985 startups++;
986 break;
987 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000988
Damien Miller5428f641999-11-25 11:54:57 +1100989 /*
Damien Miller37023962000-07-11 17:31:38 +1000990 * Got connection. Fork a child to handle it, unless
991 * we are in debugging mode.
Damien Miller5428f641999-11-25 11:54:57 +1100992 */
Damien Miller37023962000-07-11 17:31:38 +1000993 if (debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +1100994 /*
Damien Miller37023962000-07-11 17:31:38 +1000995 * In debugging mode. Close the listening
996 * socket, and start processing the
997 * connection without forking.
Damien Miller5428f641999-11-25 11:54:57 +1100998 */
Damien Miller37023962000-07-11 17:31:38 +1000999 debug("Server will not fork when running in debugging mode.");
Damien Miller34132e52000-01-14 15:45:46 +11001000 close_listen_socks();
Damien Miller95def091999-11-25 00:26:21 +11001001 sock_in = newsock;
1002 sock_out = newsock;
Damien Miller4d97ba22000-07-11 18:15:50 +10001003 startup_pipe = -1;
Damien Miller182ee6e2000-07-12 09:45:27 +10001004 pid = getpid();
Damien Miller95def091999-11-25 00:26:21 +11001005 break;
Damien Miller37023962000-07-11 17:31:38 +10001006 } else {
1007 /*
1008 * Normal production daemon. Fork, and have
1009 * the child process the connection. The
1010 * parent continues listening.
1011 */
1012 if ((pid = fork()) == 0) {
1013 /*
1014 * Child. Close the listening and max_startup
1015 * sockets. Start using the accepted socket.
1016 * Reinitialize logging (since our pid has
1017 * changed). We break out of the loop to handle
1018 * the connection.
1019 */
1020 startup_pipe = startup_p[1];
1021 for (j = 0; j < options.max_startups; j++)
1022 if (startup_pipes[j] != -1)
1023 close(startup_pipes[j]);
1024 close_listen_socks();
1025 sock_in = newsock;
1026 sock_out = newsock;
Kevin Stevesec84dc12000-12-13 17:45:15 +00001027 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller37023962000-07-11 17:31:38 +10001028 break;
1029 }
Damien Miller95def091999-11-25 00:26:21 +11001030 }
Damien Miller37023962000-07-11 17:31:38 +10001031
1032 /* Parent. Stay in the loop. */
1033 if (pid < 0)
1034 error("fork: %.100s", strerror(errno));
1035 else
1036 debug("Forked child %d.", pid);
1037
1038 close(startup_p[1]);
1039
1040 /* Mark that the key has been used (it was "given" to the child). */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001041 if ((options.protocol & SSH_PROTO_1) &&
1042 key_used == 0) {
1043 /* Schedule server key regeneration alarm. */
1044 signal(SIGALRM, key_regeneration_alarm);
1045 alarm(options.key_regeneration_time);
1046 key_used = 1;
1047 }
Damien Miller37023962000-07-11 17:31:38 +10001048
1049 arc4random_stir();
1050
1051 /* Close the new socket (the child is now taking care of it). */
1052 close(newsock);
Damien Miller95def091999-11-25 00:26:21 +11001053 }
Damien Miller34132e52000-01-14 15:45:46 +11001054 /* child process check (or debug mode) */
1055 if (num_listen_socks < 0)
1056 break;
Damien Miller95def091999-11-25 00:26:21 +11001057 }
1058 }
1059
1060 /* This is the child processing a new connection. */
1061
Damien Miller5428f641999-11-25 11:54:57 +11001062 /*
1063 * Disable the key regeneration alarm. We will not regenerate the
1064 * key since we are no longer in a position to give it to anyone. We
1065 * will not restart on SIGHUP since it no longer makes sense.
1066 */
Damien Miller95def091999-11-25 00:26:21 +11001067 alarm(0);
1068 signal(SIGALRM, SIG_DFL);
1069 signal(SIGHUP, SIG_DFL);
1070 signal(SIGTERM, SIG_DFL);
1071 signal(SIGQUIT, SIG_DFL);
1072 signal(SIGCHLD, SIG_DFL);
Damien Miller4e0f5e12000-08-29 11:05:50 +11001073 signal(SIGINT, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001074
Damien Miller5428f641999-11-25 11:54:57 +11001075 /*
1076 * Set socket options for the connection. We want the socket to
1077 * close as fast as possible without waiting for anything. If the
1078 * connection is not a socket, these will do nothing.
1079 */
1080 /* setsockopt(sock_in, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on)); */
Damien Miller95def091999-11-25 00:26:21 +11001081 linger.l_onoff = 1;
1082 linger.l_linger = 5;
1083 setsockopt(sock_in, SOL_SOCKET, SO_LINGER, (void *) &linger, sizeof(linger));
1084
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001085 /* Set keepalives if requested. */
1086 if (options.keepalives &&
1087 setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, (void *)&on,
1088 sizeof(on)) < 0)
1089 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
1090
Damien Miller5428f641999-11-25 11:54:57 +11001091 /*
1092 * Register our connection. This turns encryption off because we do
1093 * not have a key.
1094 */
Damien Miller95def091999-11-25 00:26:21 +11001095 packet_set_connection(sock_in, sock_out);
1096
1097 remote_port = get_remote_port();
1098 remote_ip = get_remote_ipaddr();
1099
1100 /* Check whether logins are denied from this host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001101#ifdef LIBWRAP
Damien Miller34132e52000-01-14 15:45:46 +11001102 /* XXX LIBWRAP noes not know about IPv6 */
Damien Miller95def091999-11-25 00:26:21 +11001103 {
1104 struct request_info req;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001105
Kevin Stevesec84dc12000-12-13 17:45:15 +00001106 request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, NULL);
Damien Miller95def091999-11-25 00:26:21 +11001107 fromhost(&req);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001108
Damien Miller95def091999-11-25 00:26:21 +11001109 if (!hosts_access(&req)) {
1110 close(sock_in);
1111 close(sock_out);
1112 refuse(&req);
1113 }
Damien Miller34132e52000-01-14 15:45:46 +11001114/*XXX IPv6 verbose("Connection from %.500s port %d", eval_client(&req), remote_port); */
Damien Miller95def091999-11-25 00:26:21 +11001115 }
Damien Miller34132e52000-01-14 15:45:46 +11001116#endif /* LIBWRAP */
Damien Miller95def091999-11-25 00:26:21 +11001117 /* Log the connection. */
1118 verbose("Connection from %.500s port %d", remote_ip, remote_port);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001119
Damien Miller5428f641999-11-25 11:54:57 +11001120 /*
1121 * We don\'t want to listen forever unless the other side
1122 * successfully authenticates itself. So we set up an alarm which is
1123 * cleared after successful authentication. A limit of zero
1124 * indicates no limit. Note that we don\'t set the alarm in debugging
1125 * mode; it is just annoying to have the server exit just when you
1126 * are about to discover the bug.
1127 */
Damien Miller95def091999-11-25 00:26:21 +11001128 signal(SIGALRM, grace_alarm_handler);
1129 if (!debug_flag)
1130 alarm(options.login_grace_time);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001131
Damien Millerb38eff82000-04-01 11:09:21 +10001132 sshd_exchange_identification(sock_in, sock_out);
Damien Miller5428f641999-11-25 11:54:57 +11001133 /*
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001134 * Check that the connection comes from a privileged port.
1135 * Rhosts-Authentication only makes sense from priviledged
Damien Miller5428f641999-11-25 11:54:57 +11001136 * programs. Of course, if the intruder has root access on his local
1137 * machine, he can connect from any port. So do not use these
1138 * authentication methods from machines that you do not trust.
1139 */
Damien Miller95def091999-11-25 00:26:21 +11001140 if (remote_port >= IPPORT_RESERVED ||
1141 remote_port < IPPORT_RESERVED / 2) {
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001142 debug("Rhosts Authentication disabled, "
Damien Miller0bc1bd82000-11-13 22:57:25 +11001143 "originating port not trusted.");
Damien Miller95def091999-11-25 00:26:21 +11001144 options.rhosts_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +11001145 }
Damien Miller34132e52000-01-14 15:45:46 +11001146#ifdef KRB4
1147 if (!packet_connection_is_ipv4() &&
1148 options.kerberos_authentication) {
1149 debug("Kerberos Authentication disabled, only available for IPv4.");
1150 options.kerberos_authentication = 0;
1151 }
1152#endif /* KRB4 */
Ben Lindstromf79aeff2001-02-10 21:27:11 +00001153#ifdef AFS
1154 /* If machine has AFS, set process authentication group. */
1155 if (k_hasafs()) {
1156 k_setpag();
1157 k_unlog();
1158 }
1159#endif /* AFS */
Damien Miller34132e52000-01-14 15:45:46 +11001160
Damien Miller95def091999-11-25 00:26:21 +11001161 packet_set_nonblocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001162
Damien Miller396691a2000-01-20 22:44:08 +11001163 /* perform the key exchange */
Damien Miller396691a2000-01-20 22:44:08 +11001164 /* authenticate user and start session */
Damien Millerefb4afe2000-04-12 18:45:05 +10001165 if (compat20) {
1166 do_ssh2_kex();
1167 do_authentication2();
1168 } else {
1169 do_ssh1_kex();
1170 do_authentication();
1171 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001172
1173#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +11001174 /* Cleanup user's ticket cache file. */
1175 if (options.kerberos_ticket_cleanup)
1176 (void) dest_tkt();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001177#endif /* KRB4 */
1178
Damien Miller95def091999-11-25 00:26:21 +11001179 /* The connection has been terminated. */
1180 verbose("Closing connection to %.100s", remote_ip);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001181
Damien Millerbeb4ba51999-12-28 15:09:35 +11001182#ifdef USE_PAM
Damien Millere72b7af1999-12-30 15:08:44 +11001183 finish_pam();
Damien Millerbeb4ba51999-12-28 15:09:35 +11001184#endif /* USE_PAM */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001185
Damien Miller95def091999-11-25 00:26:21 +11001186 packet_close();
1187 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001188}
1189
Damien Miller95def091999-11-25 00:26:21 +11001190/*
Damien Miller396691a2000-01-20 22:44:08 +11001191 * SSH1 key exchange
Damien Miller95def091999-11-25 00:26:21 +11001192 */
Damien Miller2ccf6611999-11-15 15:25:10 +11001193void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001194do_ssh1_kex(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001195{
Damien Miller95def091999-11-25 00:26:21 +11001196 int i, len;
Damien Miller396691a2000-01-20 22:44:08 +11001197 int plen, slen;
Damien Miller7650bc62001-01-30 09:27:26 +11001198 int rsafail = 0;
Damien Miller95def091999-11-25 00:26:21 +11001199 BIGNUM *session_key_int;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001200 u_char session_key[SSH_SESSION_KEY_LENGTH];
1201 u_char cookie[8];
1202 u_int cipher_type, auth_mask, protocol_flags;
Damien Miller95def091999-11-25 00:26:21 +11001203 u_int32_t rand = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001204
Damien Miller5428f641999-11-25 11:54:57 +11001205 /*
1206 * Generate check bytes that the client must send back in the user
1207 * packet in order for it to be accepted; this is used to defy ip
1208 * spoofing attacks. Note that this only works against somebody
1209 * doing IP spoofing from a remote machine; any machine on the local
1210 * network can still see outgoing packets and catch the random
1211 * cookie. This only affects rhosts authentication, and this is one
1212 * of the reasons why it is inherently insecure.
1213 */
Damien Miller95def091999-11-25 00:26:21 +11001214 for (i = 0; i < 8; i++) {
1215 if (i % 4 == 0)
1216 rand = arc4random();
Damien Miller396691a2000-01-20 22:44:08 +11001217 cookie[i] = rand & 0xff;
Damien Miller95def091999-11-25 00:26:21 +11001218 rand >>= 8;
1219 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001220
Damien Miller5428f641999-11-25 11:54:57 +11001221 /*
1222 * Send our public key. We include in the packet 64 bits of random
1223 * data that must be matched in the reply in order to prevent IP
1224 * spoofing.
1225 */
Damien Miller95def091999-11-25 00:26:21 +11001226 packet_start(SSH_SMSG_PUBLIC_KEY);
1227 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001228 packet_put_char(cookie[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001229
Damien Miller95def091999-11-25 00:26:21 +11001230 /* Store our public server RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001231 packet_put_int(BN_num_bits(sensitive_data.server_key->rsa->n));
1232 packet_put_bignum(sensitive_data.server_key->rsa->e);
1233 packet_put_bignum(sensitive_data.server_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001234
Damien Miller95def091999-11-25 00:26:21 +11001235 /* Store our public host RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001236 packet_put_int(BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
1237 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->e);
1238 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001239
Damien Miller95def091999-11-25 00:26:21 +11001240 /* Put protocol flags. */
1241 packet_put_int(SSH_PROTOFLAG_HOST_IN_FWD_OPEN);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001242
Damien Miller95def091999-11-25 00:26:21 +11001243 /* Declare which ciphers we support. */
Damien Miller874d77b2000-10-14 16:23:11 +11001244 packet_put_int(cipher_mask_ssh1(0));
Damien Miller95def091999-11-25 00:26:21 +11001245
1246 /* Declare supported authentication types. */
1247 auth_mask = 0;
1248 if (options.rhosts_authentication)
1249 auth_mask |= 1 << SSH_AUTH_RHOSTS;
1250 if (options.rhosts_rsa_authentication)
1251 auth_mask |= 1 << SSH_AUTH_RHOSTS_RSA;
1252 if (options.rsa_authentication)
1253 auth_mask |= 1 << SSH_AUTH_RSA;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001254#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +11001255 if (options.kerberos_authentication)
1256 auth_mask |= 1 << SSH_AUTH_KERBEROS;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001257#endif
1258#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +11001259 if (options.kerberos_tgt_passing)
1260 auth_mask |= 1 << SSH_PASS_KERBEROS_TGT;
1261 if (options.afs_token_passing)
1262 auth_mask |= 1 << SSH_PASS_AFS_TOKEN;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001263#endif
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +00001264 if (options.challenge_reponse_authentication == 1)
Damien Miller95def091999-11-25 00:26:21 +11001265 auth_mask |= 1 << SSH_AUTH_TIS;
Damien Miller95def091999-11-25 00:26:21 +11001266 if (options.password_authentication)
1267 auth_mask |= 1 << SSH_AUTH_PASSWORD;
1268 packet_put_int(auth_mask);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001269
Damien Miller95def091999-11-25 00:26:21 +11001270 /* Send the packet and wait for it to be sent. */
1271 packet_send();
1272 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001273
Damien Miller0bc1bd82000-11-13 22:57:25 +11001274 debug("Sent %d bit server key and %d bit host key.",
1275 BN_num_bits(sensitive_data.server_key->rsa->n),
1276 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001277
Damien Miller95def091999-11-25 00:26:21 +11001278 /* Read clients reply (cipher type and session key). */
1279 packet_read_expect(&plen, SSH_CMSG_SESSION_KEY);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001280
Damien Miller50945fa1999-12-09 10:31:37 +11001281 /* Get cipher type and check whether we accept this. */
Damien Miller95def091999-11-25 00:26:21 +11001282 cipher_type = packet_get_char();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001283
Damien Miller874d77b2000-10-14 16:23:11 +11001284 if (!(cipher_mask_ssh1(0) & (1 << cipher_type)))
Damien Miller50945fa1999-12-09 10:31:37 +11001285 packet_disconnect("Warning: client selects unsupported cipher.");
1286
Damien Miller95def091999-11-25 00:26:21 +11001287 /* Get check bytes from the packet. These must match those we
1288 sent earlier with the public key packet. */
1289 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001290 if (cookie[i] != packet_get_char())
Damien Miller95def091999-11-25 00:26:21 +11001291 packet_disconnect("IP Spoofing check bytes do not match.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001292
Damien Miller95def091999-11-25 00:26:21 +11001293 debug("Encryption type: %.200s", cipher_name(cipher_type));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001294
Damien Miller95def091999-11-25 00:26:21 +11001295 /* Get the encrypted integer. */
1296 session_key_int = BN_new();
1297 packet_get_bignum(session_key_int, &slen);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001298
Damien Miller95def091999-11-25 00:26:21 +11001299 protocol_flags = packet_get_int();
1300 packet_set_protocol_flags(protocol_flags);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001301
Damien Miller95def091999-11-25 00:26:21 +11001302 packet_integrity_check(plen, 1 + 8 + slen + 4, SSH_CMSG_SESSION_KEY);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001303
Damien Miller5428f641999-11-25 11:54:57 +11001304 /*
1305 * Decrypt it using our private server key and private host key (key
1306 * with larger modulus first).
1307 */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001308 if (BN_cmp(sensitive_data.server_key->rsa->n, sensitive_data.ssh1_host_key->rsa->n) > 0) {
Damien Miller7650bc62001-01-30 09:27:26 +11001309 /* Server key has bigger modulus. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001310 if (BN_num_bits(sensitive_data.server_key->rsa->n) <
1311 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1312 fatal("do_connection: %s: server_key %d < host_key %d + SSH_KEY_BITS_RESERVED %d",
1313 get_remote_ipaddr(),
1314 BN_num_bits(sensitive_data.server_key->rsa->n),
1315 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1316 SSH_KEY_BITS_RESERVED);
Damien Miller95def091999-11-25 00:26:21 +11001317 }
Damien Miller7650bc62001-01-30 09:27:26 +11001318 if (rsa_private_decrypt(session_key_int, session_key_int,
1319 sensitive_data.server_key->rsa) <= 0)
1320 rsafail++;
1321 if (rsa_private_decrypt(session_key_int, session_key_int,
1322 sensitive_data.ssh1_host_key->rsa) <= 0)
1323 rsafail++;
Damien Miller95def091999-11-25 00:26:21 +11001324 } else {
1325 /* Host key has bigger modulus (or they are equal). */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001326 if (BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) <
1327 BN_num_bits(sensitive_data.server_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1328 fatal("do_connection: %s: host_key %d < server_key %d + SSH_KEY_BITS_RESERVED %d",
1329 get_remote_ipaddr(),
1330 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1331 BN_num_bits(sensitive_data.server_key->rsa->n),
1332 SSH_KEY_BITS_RESERVED);
Damien Miller95def091999-11-25 00:26:21 +11001333 }
Damien Miller7650bc62001-01-30 09:27:26 +11001334 if (rsa_private_decrypt(session_key_int, session_key_int,
1335 sensitive_data.ssh1_host_key->rsa) < 0)
1336 rsafail++;
1337 if (rsa_private_decrypt(session_key_int, session_key_int,
1338 sensitive_data.server_key->rsa) < 0)
1339 rsafail++;
Damien Miller95def091999-11-25 00:26:21 +11001340 }
Damien Miller356a0b01999-11-08 15:30:59 +11001341
Damien Miller396691a2000-01-20 22:44:08 +11001342 compute_session_id(session_id, cookie,
Damien Miller0bc1bd82000-11-13 22:57:25 +11001343 sensitive_data.ssh1_host_key->rsa->n,
1344 sensitive_data.server_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001345
Damien Miller396691a2000-01-20 22:44:08 +11001346 /* Destroy the private and public keys. They will no longer be needed. */
Damien Millereba71ba2000-04-29 23:57:08 +10001347 destroy_sensitive_data();
Damien Miller396691a2000-01-20 22:44:08 +11001348
Damien Miller5428f641999-11-25 11:54:57 +11001349 /*
1350 * Extract session key from the decrypted integer. The key is in the
1351 * least significant 256 bits of the integer; the first byte of the
1352 * key is in the highest bits.
1353 */
Damien Miller7650bc62001-01-30 09:27:26 +11001354 if (!rsafail) {
1355 BN_mask_bits(session_key_int, sizeof(session_key) * 8);
1356 len = BN_num_bytes(session_key_int);
1357 if (len < 0 || len > sizeof(session_key)) {
1358 error("do_connection: bad session key len from %s: "
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001359 "session_key_int %d > sizeof(session_key) %lu",
1360 get_remote_ipaddr(), len, (u_long)sizeof(session_key));
Damien Miller7650bc62001-01-30 09:27:26 +11001361 rsafail++;
1362 } else {
1363 memset(session_key, 0, sizeof(session_key));
1364 BN_bn2bin(session_key_int,
1365 session_key + sizeof(session_key) - len);
1366 }
1367 }
1368 if (rsafail) {
1369 log("do_connection: generating a fake encryption key");
1370 for (i = 0; i < SSH_SESSION_KEY_LENGTH; i++) {
1371 if (i % 4 == 0)
1372 rand = arc4random();
1373 session_key[i] = rand & 0xff;
1374 rand >>= 8;
1375 }
1376 }
Damien Miller396691a2000-01-20 22:44:08 +11001377 /* Destroy the decrypted integer. It is no longer needed. */
1378 BN_clear_free(session_key_int);
1379
Damien Miller95def091999-11-25 00:26:21 +11001380 /* Xor the first 16 bytes of the session key with the session id. */
1381 for (i = 0; i < 16; i++)
1382 session_key[i] ^= session_id[i];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001383
Damien Miller95def091999-11-25 00:26:21 +11001384 /* Set the session key. From this on all communications will be encrypted. */
1385 packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, cipher_type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001386
Damien Miller95def091999-11-25 00:26:21 +11001387 /* Destroy our copy of the session key. It is no longer needed. */
1388 memset(session_key, 0, sizeof(session_key));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001389
Damien Miller95def091999-11-25 00:26:21 +11001390 debug("Received session key; encryption turned on.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001391
Damien Miller95def091999-11-25 00:26:21 +11001392 /* Send an acknowledgement packet. Note that this packet is sent encrypted. */
1393 packet_start(SSH_SMSG_SUCCESS);
1394 packet_send();
1395 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001396}
Damien Millerefb4afe2000-04-12 18:45:05 +10001397
1398/*
1399 * SSH2 key exchange: diffie-hellman-group1-sha1
1400 */
1401void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001402do_ssh2_kex(void)
Damien Millerefb4afe2000-04-12 18:45:05 +10001403{
1404 Buffer *server_kexinit;
1405 Buffer *client_kexinit;
Damien Miller874d77b2000-10-14 16:23:11 +11001406 int payload_len;
Damien Millerefb4afe2000-04-12 18:45:05 +10001407 int i;
Damien Millerefb4afe2000-04-12 18:45:05 +10001408 Kex *kex;
Damien Millerefb4afe2000-04-12 18:45:05 +10001409 char *cprop[PROPOSAL_MAX];
Damien Millerefb4afe2000-04-12 18:45:05 +10001410
1411/* KEXINIT */
1412
Damien Miller78928792000-04-12 20:17:38 +10001413 if (options.ciphers != NULL) {
Damien Miller4af51302000-04-16 11:18:38 +10001414 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
Damien Miller78928792000-04-12 20:17:38 +10001415 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
1416 }
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001417 if (options.macs != NULL) {
1418 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
1419 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
1420 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001421 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = list_hostkey_types();
1422
Damien Millerb1715dc2000-05-30 13:44:51 +10001423 server_kexinit = kex_init(myproposal);
Damien Millerefb4afe2000-04-12 18:45:05 +10001424 client_kexinit = xmalloc(sizeof(*client_kexinit));
1425 buffer_init(client_kexinit);
Damien Millerefb4afe2000-04-12 18:45:05 +10001426
Damien Millerb1715dc2000-05-30 13:44:51 +10001427 /* algorithm negotiation */
1428 kex_exchange_kexinit(server_kexinit, client_kexinit, cprop);
1429 kex = kex_choose_conf(cprop, myproposal, 1);
1430 for (i = 0; i < PROPOSAL_MAX; i++)
1431 xfree(cprop[i]);
Damien Millerefb4afe2000-04-12 18:45:05 +10001432
Damien Miller874d77b2000-10-14 16:23:11 +11001433 switch (kex->kex_type) {
1434 case DH_GRP1_SHA1:
1435 ssh_dh1_server(kex, client_kexinit, server_kexinit);
1436 break;
1437 case DH_GEX_SHA1:
1438 ssh_dhgex_server(kex, client_kexinit, server_kexinit);
1439 break;
1440 default:
1441 fatal("Unsupported key exchange %d", kex->kex_type);
1442 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001443
Damien Miller874d77b2000-10-14 16:23:11 +11001444 debug("send SSH2_MSG_NEWKEYS.");
1445 packet_start(SSH2_MSG_NEWKEYS);
1446 packet_send();
1447 packet_write_wait();
1448 debug("done: send SSH2_MSG_NEWKEYS.");
1449
1450 debug("Wait SSH2_MSG_NEWKEYS.");
1451 packet_read_expect(&payload_len, SSH2_MSG_NEWKEYS);
1452 debug("GOT SSH2_MSG_NEWKEYS.");
1453
1454#ifdef DEBUG_KEXDH
1455 /* send 1st encrypted/maced/compressed message */
1456 packet_start(SSH2_MSG_IGNORE);
1457 packet_put_cstring("markus");
1458 packet_send();
1459 packet_write_wait();
1460#endif
1461
1462 debug("done: KEX2.");
1463}
1464
1465/*
1466 * SSH2 key exchange
1467 */
1468
1469/* diffie-hellman-group1-sha1 */
1470
1471void
1472ssh_dh1_server(Kex *kex, Buffer *client_kexinit, Buffer *server_kexinit)
1473{
1474#ifdef DEBUG_KEXDH
1475 int i;
1476#endif
1477 int payload_len, dlen;
1478 int slen;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001479 u_char *signature = NULL;
1480 u_char *server_host_key_blob = NULL;
1481 u_int sbloblen;
1482 u_int klen, kout;
1483 u_char *kbuf;
1484 u_char *hash;
Damien Miller874d77b2000-10-14 16:23:11 +11001485 BIGNUM *shared_secret = 0;
1486 DH *dh;
1487 BIGNUM *dh_client_pub = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001488 Key *hostkey;
1489
1490 hostkey = get_hostkey_by_type(kex->hostkey_type);
1491 if (hostkey == NULL)
1492 fatal("Unsupported hostkey type %d", kex->hostkey_type);
Damien Miller874d77b2000-10-14 16:23:11 +11001493
1494/* KEXDH */
Kevin Steves6b875862000-12-15 23:31:01 +00001495 /* generate DH key */
1496 dh = dh_new_group1(); /* XXX depends on 'kex' */
1497 dh_gen_key(dh);
1498
Damien Millerefb4afe2000-04-12 18:45:05 +10001499 debug("Wait SSH2_MSG_KEXDH_INIT.");
1500 packet_read_expect(&payload_len, SSH2_MSG_KEXDH_INIT);
1501
1502 /* key, cert */
1503 dh_client_pub = BN_new();
1504 if (dh_client_pub == NULL)
1505 fatal("dh_client_pub == NULL");
1506 packet_get_bignum2(dh_client_pub, &dlen);
1507
1508#ifdef DEBUG_KEXDH
1509 fprintf(stderr, "\ndh_client_pub= ");
Damien Miller62cee002000-09-23 17:15:56 +11001510 BN_print_fp(stderr, dh_client_pub);
Damien Millerefb4afe2000-04-12 18:45:05 +10001511 fprintf(stderr, "\n");
1512 debug("bits %d", BN_num_bits(dh_client_pub));
1513#endif
1514
Damien Millerefb4afe2000-04-12 18:45:05 +10001515#ifdef DEBUG_KEXDH
1516 fprintf(stderr, "\np= ");
Damien Miller62cee002000-09-23 17:15:56 +11001517 BN_print_fp(stderr, dh->p);
Damien Millerefb4afe2000-04-12 18:45:05 +10001518 fprintf(stderr, "\ng= ");
Damien Miller62cee002000-09-23 17:15:56 +11001519 bn_print(dh->g);
Damien Millerefb4afe2000-04-12 18:45:05 +10001520 fprintf(stderr, "\npub= ");
Damien Miller62cee002000-09-23 17:15:56 +11001521 BN_print_fp(stderr, dh->pub_key);
Damien Millerefb4afe2000-04-12 18:45:05 +10001522 fprintf(stderr, "\n");
Kevin Stevesef4eea92001-02-05 12:42:17 +00001523 DHparams_print_fp(stderr, dh);
Damien Millerefb4afe2000-04-12 18:45:05 +10001524#endif
Damien Miller78928792000-04-12 20:17:38 +10001525 if (!dh_pub_is_valid(dh, dh_client_pub))
1526 packet_disconnect("bad client public DH value");
Damien Millerefb4afe2000-04-12 18:45:05 +10001527
1528 klen = DH_size(dh);
1529 kbuf = xmalloc(klen);
1530 kout = DH_compute_key(kbuf, dh_client_pub, dh);
1531
1532#ifdef DEBUG_KEXDH
1533 debug("shared secret: len %d/%d", klen, kout);
1534 fprintf(stderr, "shared secret == ");
1535 for (i = 0; i< kout; i++)
1536 fprintf(stderr, "%02x", (kbuf[i])&0xff);
1537 fprintf(stderr, "\n");
1538#endif
1539 shared_secret = BN_new();
1540
1541 BN_bin2bn(kbuf, kout, shared_secret);
1542 memset(kbuf, 0, klen);
1543 xfree(kbuf);
1544
Damien Millereba71ba2000-04-29 23:57:08 +10001545 /* XXX precompute? */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001546 key_to_blob(hostkey, &server_host_key_blob, &sbloblen);
Damien Millerefb4afe2000-04-12 18:45:05 +10001547
1548 /* calc H */ /* XXX depends on 'kex' */
1549 hash = kex_hash(
1550 client_version_string,
1551 server_version_string,
1552 buffer_ptr(client_kexinit), buffer_len(client_kexinit),
1553 buffer_ptr(server_kexinit), buffer_len(server_kexinit),
1554 (char *)server_host_key_blob, sbloblen,
1555 dh_client_pub,
1556 dh->pub_key,
1557 shared_secret
1558 );
1559 buffer_free(client_kexinit);
1560 buffer_free(server_kexinit);
1561 xfree(client_kexinit);
1562 xfree(server_kexinit);
Ben Lindstromb1985f72001-01-23 00:19:15 +00001563 BN_free(dh_client_pub);
Damien Millerefb4afe2000-04-12 18:45:05 +10001564#ifdef DEBUG_KEXDH
Damien Miller4af51302000-04-16 11:18:38 +10001565 fprintf(stderr, "hash == ");
1566 for (i = 0; i< 20; i++)
1567 fprintf(stderr, "%02x", (hash[i])&0xff);
1568 fprintf(stderr, "\n");
Damien Millerefb4afe2000-04-12 18:45:05 +10001569#endif
Damien Millereba71ba2000-04-29 23:57:08 +10001570 /* save session id := H */
1571 /* XXX hashlen depends on KEX */
1572 session_id2_len = 20;
1573 session_id2 = xmalloc(session_id2_len);
1574 memcpy(session_id2, hash, session_id2_len);
1575
Damien Millerefb4afe2000-04-12 18:45:05 +10001576 /* sign H */
Damien Millereba71ba2000-04-29 23:57:08 +10001577 /* XXX hashlen depends on KEX */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001578 key_sign(hostkey, &signature, &slen, hash, 20);
Damien Millereba71ba2000-04-29 23:57:08 +10001579
1580 destroy_sensitive_data();
Damien Millerefb4afe2000-04-12 18:45:05 +10001581
1582 /* send server hostkey, DH pubkey 'f' and singed H */
1583 packet_start(SSH2_MSG_KEXDH_REPLY);
1584 packet_put_string((char *)server_host_key_blob, sbloblen);
Damien Millere247cc42000-05-07 12:03:14 +10001585 packet_put_bignum2(dh->pub_key); /* f */
Damien Millerefb4afe2000-04-12 18:45:05 +10001586 packet_put_string((char *)signature, slen);
1587 packet_send();
Damien Miller8bb73be2000-04-19 16:26:12 +10001588 xfree(signature);
Damien Millereba71ba2000-04-29 23:57:08 +10001589 xfree(server_host_key_blob);
Damien Millerefb4afe2000-04-12 18:45:05 +10001590 packet_write_wait();
1591
1592 kex_derive_keys(kex, hash, shared_secret);
Ben Lindstromb1985f72001-01-23 00:19:15 +00001593 BN_clear_free(shared_secret);
Damien Millerefb4afe2000-04-12 18:45:05 +10001594 packet_set_kex(kex);
1595
1596 /* have keys, free DH */
1597 DH_free(dh);
Damien Miller874d77b2000-10-14 16:23:11 +11001598}
Damien Millerefb4afe2000-04-12 18:45:05 +10001599
Damien Miller874d77b2000-10-14 16:23:11 +11001600/* diffie-hellman-group-exchange-sha1 */
1601
1602void
1603ssh_dhgex_server(Kex *kex, Buffer *client_kexinit, Buffer *server_kexinit)
1604{
1605#ifdef DEBUG_KEXDH
1606 int i;
1607#endif
1608 int payload_len, dlen;
1609 int slen, nbits;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001610 u_char *signature = NULL;
1611 u_char *server_host_key_blob = NULL;
1612 u_int sbloblen;
1613 u_int klen, kout;
1614 u_char *kbuf;
1615 u_char *hash;
Damien Miller874d77b2000-10-14 16:23:11 +11001616 BIGNUM *shared_secret = 0;
1617 DH *dh;
1618 BIGNUM *dh_client_pub = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001619 Key *hostkey;
1620
1621 hostkey = get_hostkey_by_type(kex->hostkey_type);
1622 if (hostkey == NULL)
1623 fatal("Unsupported hostkey type %d", kex->hostkey_type);
Damien Miller874d77b2000-10-14 16:23:11 +11001624
1625/* KEXDHGEX */
1626 debug("Wait SSH2_MSG_KEX_DH_GEX_REQUEST.");
1627 packet_read_expect(&payload_len, SSH2_MSG_KEX_DH_GEX_REQUEST);
1628 nbits = packet_get_int();
1629 dh = choose_dh(nbits);
1630
1631 debug("Sending SSH2_MSG_KEX_DH_GEX_GROUP.");
1632 packet_start(SSH2_MSG_KEX_DH_GEX_GROUP);
1633 packet_put_bignum2(dh->p);
1634 packet_put_bignum2(dh->g);
Damien Millerefb4afe2000-04-12 18:45:05 +10001635 packet_send();
1636 packet_write_wait();
Damien Millerefb4afe2000-04-12 18:45:05 +10001637
Kevin Steves6b875862000-12-15 23:31:01 +00001638 /* Compute our exchange value in parallel with the client */
1639
1640 dh_gen_key(dh);
1641
Damien Miller874d77b2000-10-14 16:23:11 +11001642 debug("Wait SSH2_MSG_KEX_DH_GEX_INIT.");
1643 packet_read_expect(&payload_len, SSH2_MSG_KEX_DH_GEX_INIT);
1644
1645 /* key, cert */
1646 dh_client_pub = BN_new();
1647 if (dh_client_pub == NULL)
1648 fatal("dh_client_pub == NULL");
1649 packet_get_bignum2(dh_client_pub, &dlen);
Damien Millerefb4afe2000-04-12 18:45:05 +10001650
Damien Miller78928792000-04-12 20:17:38 +10001651#ifdef DEBUG_KEXDH
Damien Miller874d77b2000-10-14 16:23:11 +11001652 fprintf(stderr, "\ndh_client_pub= ");
1653 BN_print_fp(stderr, dh_client_pub);
1654 fprintf(stderr, "\n");
1655 debug("bits %d", BN_num_bits(dh_client_pub));
Damien Miller78928792000-04-12 20:17:38 +10001656#endif
Damien Miller874d77b2000-10-14 16:23:11 +11001657
1658#ifdef DEBUG_KEXDH
1659 fprintf(stderr, "\np= ");
1660 BN_print_fp(stderr, dh->p);
1661 fprintf(stderr, "\ng= ");
1662 bn_print(dh->g);
1663 fprintf(stderr, "\npub= ");
1664 BN_print_fp(stderr, dh->pub_key);
1665 fprintf(stderr, "\n");
Kevin Stevesef4eea92001-02-05 12:42:17 +00001666 DHparams_print_fp(stderr, dh);
Damien Miller874d77b2000-10-14 16:23:11 +11001667#endif
1668 if (!dh_pub_is_valid(dh, dh_client_pub))
1669 packet_disconnect("bad client public DH value");
1670
1671 klen = DH_size(dh);
1672 kbuf = xmalloc(klen);
1673 kout = DH_compute_key(kbuf, dh_client_pub, dh);
1674
1675#ifdef DEBUG_KEXDH
1676 debug("shared secret: len %d/%d", klen, kout);
1677 fprintf(stderr, "shared secret == ");
1678 for (i = 0; i< kout; i++)
1679 fprintf(stderr, "%02x", (kbuf[i])&0xff);
1680 fprintf(stderr, "\n");
1681#endif
1682 shared_secret = BN_new();
1683
1684 BN_bin2bn(kbuf, kout, shared_secret);
1685 memset(kbuf, 0, klen);
1686 xfree(kbuf);
1687
1688 /* XXX precompute? */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001689 key_to_blob(hostkey, &server_host_key_blob, &sbloblen);
Damien Miller874d77b2000-10-14 16:23:11 +11001690
1691 /* calc H */ /* XXX depends on 'kex' */
1692 hash = kex_hash_gex(
1693 client_version_string,
1694 server_version_string,
1695 buffer_ptr(client_kexinit), buffer_len(client_kexinit),
1696 buffer_ptr(server_kexinit), buffer_len(server_kexinit),
1697 (char *)server_host_key_blob, sbloblen,
1698 nbits, dh->p, dh->g,
1699 dh_client_pub,
1700 dh->pub_key,
1701 shared_secret
1702 );
1703 buffer_free(client_kexinit);
1704 buffer_free(server_kexinit);
1705 xfree(client_kexinit);
1706 xfree(server_kexinit);
Ben Lindstromb1985f72001-01-23 00:19:15 +00001707 BN_free(dh_client_pub);
Damien Miller874d77b2000-10-14 16:23:11 +11001708#ifdef DEBUG_KEXDH
1709 fprintf(stderr, "hash == ");
1710 for (i = 0; i< 20; i++)
1711 fprintf(stderr, "%02x", (hash[i])&0xff);
1712 fprintf(stderr, "\n");
1713#endif
1714 /* save session id := H */
1715 /* XXX hashlen depends on KEX */
1716 session_id2_len = 20;
1717 session_id2 = xmalloc(session_id2_len);
1718 memcpy(session_id2, hash, session_id2_len);
1719
1720 /* sign H */
1721 /* XXX hashlen depends on KEX */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001722 key_sign(hostkey, &signature, &slen, hash, 20);
Damien Miller874d77b2000-10-14 16:23:11 +11001723
1724 destroy_sensitive_data();
1725
1726 /* send server hostkey, DH pubkey 'f' and singed H */
1727 packet_start(SSH2_MSG_KEX_DH_GEX_REPLY);
1728 packet_put_string((char *)server_host_key_blob, sbloblen);
1729 packet_put_bignum2(dh->pub_key); /* f */
1730 packet_put_string((char *)signature, slen);
1731 packet_send();
1732 xfree(signature);
1733 xfree(server_host_key_blob);
1734 packet_write_wait();
1735
1736 kex_derive_keys(kex, hash, shared_secret);
Ben Lindstromb1985f72001-01-23 00:19:15 +00001737 BN_clear_free(shared_secret);
Damien Miller874d77b2000-10-14 16:23:11 +11001738 packet_set_kex(kex);
1739
1740 /* have keys, free DH */
1741 DH_free(dh);
Damien Millerefb4afe2000-04-12 18:45:05 +10001742}