blob: 2669a935e064296791fd1a3420bfaa14a148e5bb [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 Lindstromeb648a72001-03-05 06:00:29 +000043RCSID("$OpenBSD: sshd.c,v 1.169 2001/02/23 18:15:13 markus 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;
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
Damien Miller0bc1bd82000-11-13 22:57:25 +1100276generate_empheral_server_key(void)
277{
Ben Lindstromeb648a72001-03-05 06:00:29 +0000278 u_int32_t rand = 0;
279 int i;
280
Damien Miller0bc1bd82000-11-13 22:57:25 +1100281 log("Generating %s%d bit RSA key.", sensitive_data.server_key ? "new " : "",
282 options.server_key_bits);
283 if (sensitive_data.server_key != NULL)
284 key_free(sensitive_data.server_key);
285 sensitive_data.server_key = key_generate(KEY_RSA1, options.server_key_bits);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100286 log("RSA key generation complete.");
Ben Lindstromeb648a72001-03-05 06:00:29 +0000287
288 for (i = 0; i < SSH_SESSION_KEY_LENGTH; i++) {
289 if (i % 4 == 0)
290 rand = arc4random();
291 sensitive_data.ssh1_cookie[i] = rand & 0xff;
292 rand >>= 8;
293 }
294 arc4random_stir();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100295}
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000296
Damien Miller0bc1bd82000-11-13 22:57:25 +1100297void
Damien Miller95def091999-11-25 00:26:21 +1100298key_regeneration_alarm(int sig)
299{
300 int save_errno = errno;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000301 signal(SIGALRM, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +1100302 errno = save_errno;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000303 key_do_regen = 1;
Damien Miller95def091999-11-25 00:26:21 +1100304}
305
Damien Millerb38eff82000-04-01 11:09:21 +1000306void
307sshd_exchange_identification(int sock_in, int sock_out)
308{
Damien Miller78928792000-04-12 20:17:38 +1000309 int i, mismatch;
Damien Millerb38eff82000-04-01 11:09:21 +1000310 int remote_major, remote_minor;
Damien Miller78928792000-04-12 20:17:38 +1000311 int major, minor;
Damien Millerb38eff82000-04-01 11:09:21 +1000312 char *s;
313 char buf[256]; /* Must not be larger than remote_version. */
314 char remote_version[256]; /* Must be at least as big as buf. */
315
Damien Miller78928792000-04-12 20:17:38 +1000316 if ((options.protocol & SSH_PROTO_1) &&
317 (options.protocol & SSH_PROTO_2)) {
318 major = PROTOCOL_MAJOR_1;
319 minor = 99;
320 } else if (options.protocol & SSH_PROTO_2) {
321 major = PROTOCOL_MAJOR_2;
322 minor = PROTOCOL_MINOR_2;
323 } else {
324 major = PROTOCOL_MAJOR_1;
325 minor = PROTOCOL_MINOR_1;
326 }
327 snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n", major, minor, SSH_VERSION);
Damien Millerb38eff82000-04-01 11:09:21 +1000328 server_version_string = xstrdup(buf);
329
330 if (client_version_string == NULL) {
331 /* Send our protocol version identification. */
332 if (atomicio(write, sock_out, server_version_string, strlen(server_version_string))
333 != strlen(server_version_string)) {
334 log("Could not write ident string to %s.", get_remote_ipaddr());
335 fatal_cleanup();
336 }
337
Ben Lindstrom5393f932001-02-15 03:17:13 +0000338 /* Read other side's version identification. */
339 memset(buf, 0, sizeof(buf));
Damien Millerb38eff82000-04-01 11:09:21 +1000340 for (i = 0; i < sizeof(buf) - 1; i++) {
Damien Millerbf7f4662000-06-23 10:16:38 +1000341 if (atomicio(read, sock_in, &buf[i], 1) != 1) {
Ben Lindstroma9a29e12001-02-20 01:20:47 +0000342 log("Did not receive identification string from %s.",
343 get_remote_ipaddr());
Damien Millerb38eff82000-04-01 11:09:21 +1000344 fatal_cleanup();
345 }
346 if (buf[i] == '\r') {
347 buf[i] = '\n';
348 buf[i + 1] = 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') {
356 /* buf[i] == '\n' */
357 buf[i + 1] = 0;
358 break;
359 }
360 }
361 buf[sizeof(buf) - 1] = 0;
362 client_version_string = xstrdup(buf);
363 }
364
365 /*
366 * Check that the versions match. In future this might accept
367 * several versions and set appropriate flags to handle them.
368 */
369 if (sscanf(client_version_string, "SSH-%d.%d-%[^\n]\n",
370 &remote_major, &remote_minor, remote_version) != 3) {
Damien Miller4af51302000-04-16 11:18:38 +1000371 s = "Protocol mismatch.\n";
Damien Millerb38eff82000-04-01 11:09:21 +1000372 (void) atomicio(write, sock_out, s, strlen(s));
373 close(sock_in);
374 close(sock_out);
375 log("Bad protocol version identification '%.100s' from %s",
376 client_version_string, get_remote_ipaddr());
377 fatal_cleanup();
378 }
379 debug("Client protocol version %d.%d; client software version %.100s",
380 remote_major, remote_minor, remote_version);
381
Damien Millerefb4afe2000-04-12 18:45:05 +1000382 compat_datafellows(remote_version);
383
Damien Miller78928792000-04-12 20:17:38 +1000384 mismatch = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000385 switch(remote_major) {
386 case 1:
Damien Millereba71ba2000-04-29 23:57:08 +1000387 if (remote_minor == 99) {
388 if (options.protocol & SSH_PROTO_2)
389 enable_compat20();
390 else
391 mismatch = 1;
392 break;
393 }
Damien Miller78928792000-04-12 20:17:38 +1000394 if (!(options.protocol & SSH_PROTO_1)) {
395 mismatch = 1;
396 break;
397 }
Damien Millerb38eff82000-04-01 11:09:21 +1000398 if (remote_minor < 3) {
Damien Miller37023962000-07-11 17:31:38 +1000399 packet_disconnect("Your ssh version is too old and "
Damien Millerb38eff82000-04-01 11:09:21 +1000400 "is no longer supported. Please install a newer version.");
401 } else if (remote_minor == 3) {
402 /* note that this disables agent-forwarding */
403 enable_compat13();
404 }
Damien Miller78928792000-04-12 20:17:38 +1000405 break;
Damien Millerefb4afe2000-04-12 18:45:05 +1000406 case 2:
Damien Miller78928792000-04-12 20:17:38 +1000407 if (options.protocol & SSH_PROTO_2) {
Damien Millerefb4afe2000-04-12 18:45:05 +1000408 enable_compat20();
409 break;
410 }
411 /* FALLTHROUGH */
Damien Miller4af51302000-04-16 11:18:38 +1000412 default:
Damien Miller78928792000-04-12 20:17:38 +1000413 mismatch = 1;
Damien Millerb38eff82000-04-01 11:09:21 +1000414 break;
415 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000416 chop(server_version_string);
417 chop(client_version_string);
Damien Miller78928792000-04-12 20:17:38 +1000418 debug("Local version string %.200s", server_version_string);
419
420 if (mismatch) {
421 s = "Protocol major versions differ.\n";
422 (void) atomicio(write, sock_out, s, strlen(s));
423 close(sock_in);
424 close(sock_out);
425 log("Protocol major versions differ for %s: %.200s vs. %.200s",
426 get_remote_ipaddr(),
427 server_version_string, client_version_string);
428 fatal_cleanup();
429 }
Damien Millereba71ba2000-04-29 23:57:08 +1000430 if (compat20)
431 packet_set_ssh2_format();
432}
433
434
Damien Miller0bc1bd82000-11-13 22:57:25 +1100435/* Destroy the host and server keys. They will no longer be needed. */
Damien Millereba71ba2000-04-29 23:57:08 +1000436void
437destroy_sensitive_data(void)
438{
Damien Miller0bc1bd82000-11-13 22:57:25 +1100439 int i;
440
441 if (sensitive_data.server_key) {
442 key_free(sensitive_data.server_key);
443 sensitive_data.server_key = NULL;
444 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000445 for(i = 0; i < options.num_host_key_files; i++) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100446 if (sensitive_data.host_keys[i]) {
447 key_free(sensitive_data.host_keys[i]);
448 sensitive_data.host_keys[i] = NULL;
449 }
450 }
451 sensitive_data.ssh1_host_key = NULL;
Ben Lindstromeb648a72001-03-05 06:00:29 +0000452 memset(sensitive_data.ssh1_cookie, 0, SSH_SESSION_KEY_LENGTH);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100453}
454Key *
455load_private_key_autodetect(const char *filename)
456{
457 struct stat st;
458 int type;
459 Key *public, *private;
460
461 if (stat(filename, &st) < 0) {
462 perror(filename);
463 return NULL;
464 }
465 /*
466 * try to load the public key. right now this only works for RSA1,
467 * since SSH2 keys are fully encrypted
468 */
469 type = KEY_RSA1;
470 public = key_new(type);
471 if (!load_public_key(filename, public, NULL)) {
472 /* ok, so we will assume this is 'some' key */
473 type = KEY_UNSPEC;
474 }
475 key_free(public);
476
477 /* Ok, try key with empty passphrase */
478 private = key_new(type);
479 if (load_private_key(filename, "", private, NULL)) {
480 debug("load_private_key_autodetect: type %d %s",
481 private->type, key_type(private));
482 return private;
483 }
484 key_free(private);
485 return NULL;
486}
487
488char *
489list_hostkey_types(void)
490{
491 static char buf[1024];
492 int i;
493 buf[0] = '\0';
494 for(i = 0; i < options.num_host_key_files; i++) {
495 Key *key = sensitive_data.host_keys[i];
496 if (key == NULL)
497 continue;
498 switch(key->type) {
499 case KEY_RSA:
500 case KEY_DSA:
501 strlcat(buf, key_ssh_name(key), sizeof buf);
502 strlcat(buf, ",", sizeof buf);
503 break;
504 }
505 }
506 i = strlen(buf);
507 if (i > 0 && buf[i-1] == ',')
508 buf[i-1] = '\0';
509 debug("list_hostkey_types: %s", buf);
510 return buf;
511}
512
513Key *
514get_hostkey_by_type(int type)
515{
516 int i;
517 for(i = 0; i < options.num_host_key_files; i++) {
518 Key *key = sensitive_data.host_keys[i];
519 if (key != NULL && key->type == type)
520 return key;
521 }
522 return NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000523}
524
Damien Miller942da032000-08-18 13:59:06 +1000525/*
526 * returns 1 if connection should be dropped, 0 otherwise.
527 * dropping starts at connection #max_startups_begin with a probability
528 * of (max_startups_rate/100). the probability increases linearly until
529 * all connections are dropped for startups > max_startups
530 */
531int
532drop_connection(int startups)
533{
534 double p, r;
535
536 if (startups < options.max_startups_begin)
537 return 0;
538 if (startups >= options.max_startups)
539 return 1;
540 if (options.max_startups_rate == 100)
541 return 1;
542
543 p = 100 - options.max_startups_rate;
544 p *= startups - options.max_startups_begin;
545 p /= (double) (options.max_startups - options.max_startups_begin);
546 p += options.max_startups_rate;
547 p /= 100.0;
548 r = arc4random() / (double) UINT_MAX;
549
550 debug("drop_connection: p %g, r %g", p, r);
551 return (r < p) ? 1 : 0;
552}
553
Damien Miller37023962000-07-11 17:31:38 +1000554int *startup_pipes = NULL; /* options.max_startup sized array of fd ints */
555int startup_pipe; /* in child */
556
Damien Miller95def091999-11-25 00:26:21 +1100557/*
558 * Main program for the daemon.
559 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000560int
561main(int ac, char **av)
562{
Damien Miller95def091999-11-25 00:26:21 +1100563 extern char *optarg;
564 extern int optind;
Damien Miller37023962000-07-11 17:31:38 +1000565 int opt, sock_in = 0, sock_out = 0, newsock, j, i, fdsetsz, on = 1;
Damien Miller166fca82000-04-20 07:42:21 +1000566 pid_t pid;
Damien Miller34132e52000-01-14 15:45:46 +1100567 socklen_t fromlen;
Damien Miller34132e52000-01-14 15:45:46 +1100568 fd_set *fdset;
569 struct sockaddr_storage from;
Damien Miller95def091999-11-25 00:26:21 +1100570 const char *remote_ip;
571 int remote_port;
Damien Miller95def091999-11-25 00:26:21 +1100572 FILE *f;
573 struct linger linger;
Damien Miller34132e52000-01-14 15:45:46 +1100574 struct addrinfo *ai;
575 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
576 int listen_sock, maxfd;
Damien Miller37023962000-07-11 17:31:38 +1000577 int startup_p[2];
578 int startups = 0;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000579 int ret, key_used = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000580
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000581 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000582 init_rng();
583
Kevin Stevesec84dc12000-12-13 17:45:15 +0000584 /* Save argv. */
Damien Millerb8c656e2000-06-28 15:22:41 +1000585 saved_argc = ac;
Damien Miller95def091999-11-25 00:26:21 +1100586 saved_argv = av;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000587
Damien Miller95def091999-11-25 00:26:21 +1100588 /* Initialize configuration options to their default values. */
589 initialize_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000590
Damien Miller95def091999-11-25 00:26:21 +1100591 /* Parse command-line arguments. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000592 while ((opt = getopt(ac, av, "f:p:b:k:h:g:V:u:dDiqQ46")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100593 switch (opt) {
Damien Miller34132e52000-01-14 15:45:46 +1100594 case '4':
595 IPv4or6 = AF_INET;
596 break;
597 case '6':
598 IPv4or6 = AF_INET6;
599 break;
Damien Miller95def091999-11-25 00:26:21 +1100600 case 'f':
601 config_file_name = optarg;
602 break;
603 case 'd':
Damien Millere4340be2000-09-16 13:29:08 +1100604 if (0 == debug_flag) {
605 debug_flag = 1;
606 options.log_level = SYSLOG_LEVEL_DEBUG1;
607 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
608 options.log_level++;
609 } else {
610 fprintf(stderr, "Too high debugging level.\n");
611 exit(1);
612 }
Damien Miller95def091999-11-25 00:26:21 +1100613 break;
Ben Lindstromc72745a2000-12-02 19:03:54 +0000614 case 'D':
615 no_daemon_flag = 1;
616 break;
Damien Miller95def091999-11-25 00:26:21 +1100617 case 'i':
618 inetd_flag = 1;
619 break;
620 case 'Q':
Ben Lindstromd5390202001-01-29 08:07:43 +0000621 /* ignored */
Damien Miller95def091999-11-25 00:26:21 +1100622 break;
623 case 'q':
624 options.log_level = SYSLOG_LEVEL_QUIET;
625 break;
626 case 'b':
627 options.server_key_bits = atoi(optarg);
628 break;
629 case 'p':
Damien Miller34132e52000-01-14 15:45:46 +1100630 options.ports_from_cmdline = 1;
Damien Millere4340be2000-09-16 13:29:08 +1100631 if (options.num_ports >= MAX_PORTS) {
632 fprintf(stderr, "too many ports.\n");
633 exit(1);
634 }
Damien Miller34132e52000-01-14 15:45:46 +1100635 options.ports[options.num_ports++] = atoi(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100636 break;
637 case 'g':
638 options.login_grace_time = atoi(optarg);
639 break;
640 case 'k':
641 options.key_regeneration_time = atoi(optarg);
642 break;
643 case 'h':
Damien Miller0bc1bd82000-11-13 22:57:25 +1100644 if (options.num_host_key_files >= MAX_HOSTKEYS) {
645 fprintf(stderr, "too many host keys.\n");
646 exit(1);
647 }
648 options.host_key_files[options.num_host_key_files++] = optarg;
Damien Miller95def091999-11-25 00:26:21 +1100649 break;
650 case 'V':
651 client_version_string = optarg;
652 /* only makes sense with inetd_flag, i.e. no listen() */
653 inetd_flag = 1;
654 break;
Damien Miller942da032000-08-18 13:59:06 +1000655 case 'u':
656 utmp_len = atoi(optarg);
657 break;
Damien Miller95def091999-11-25 00:26:21 +1100658 case '?':
659 default:
660 fprintf(stderr, "sshd version %s\n", SSH_VERSION);
Kevin Stevesec84dc12000-12-13 17:45:15 +0000661 fprintf(stderr, "Usage: %s [options]\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100662 fprintf(stderr, "Options:\n");
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000663 fprintf(stderr, " -f file Configuration file (default %s)\n", _PATH_SERVER_CONFIG_FILE);
Damien Millere4340be2000-09-16 13:29:08 +1100664 fprintf(stderr, " -d Debugging mode (multiple -d means more debugging)\n");
Damien Miller95def091999-11-25 00:26:21 +1100665 fprintf(stderr, " -i Started from inetd\n");
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000666 fprintf(stderr, " -D Do not fork into daemon mode\n");
Damien Miller95def091999-11-25 00:26:21 +1100667 fprintf(stderr, " -q Quiet (no logging)\n");
668 fprintf(stderr, " -p port Listen on the specified port (default: 22)\n");
669 fprintf(stderr, " -k seconds Regenerate server key every this many seconds (default: 3600)\n");
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000670 fprintf(stderr, " -g seconds Grace period for authentication (default: 600)\n");
Damien Miller95def091999-11-25 00:26:21 +1100671 fprintf(stderr, " -b bits Size of server RSA key (default: 768 bits)\n");
672 fprintf(stderr, " -h file File from which to read host key (default: %s)\n",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000673 _PATH_HOST_KEY_FILE);
Damien Miller942da032000-08-18 13:59:06 +1000674 fprintf(stderr, " -u len Maximum hostname length for utmp recording\n");
Damien Miller34132e52000-01-14 15:45:46 +1100675 fprintf(stderr, " -4 Use IPv4 only\n");
676 fprintf(stderr, " -6 Use IPv6 only\n");
Damien Miller95def091999-11-25 00:26:21 +1100677 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000678 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000679 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000680
Damien Miller34132e52000-01-14 15:45:46 +1100681 /*
682 * Force logging to stderr until we have loaded the private host
683 * key (unless started from inetd)
684 */
Kevin Stevesec84dc12000-12-13 17:45:15 +0000685 log_init(__progname,
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000686 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
Damien Miller34132e52000-01-14 15:45:46 +1100687 options.log_facility == -1 ? SYSLOG_FACILITY_AUTH : options.log_facility,
Ben Lindstromd5390202001-01-29 08:07:43 +0000688 !inetd_flag);
Damien Miller34132e52000-01-14 15:45:46 +1100689
Damien Miller95def091999-11-25 00:26:21 +1100690 /* Read server configuration options from the configuration file. */
691 read_server_config(&options, config_file_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000692
Damien Miller95def091999-11-25 00:26:21 +1100693 /* Fill in default values for those options not explicitly set. */
694 fill_default_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000695
Damien Miller95def091999-11-25 00:26:21 +1100696 /* Check that there are no remaining arguments. */
697 if (optind < ac) {
698 fprintf(stderr, "Extra argument %s.\n", av[optind]);
699 exit(1);
700 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000701
Damien Miller95def091999-11-25 00:26:21 +1100702 debug("sshd version %.100s", SSH_VERSION);
Damien Miller2ccf6611999-11-15 15:25:10 +1100703
Damien Miller0bc1bd82000-11-13 22:57:25 +1100704 /* load private host keys */
705 sensitive_data.host_keys = xmalloc(options.num_host_key_files*sizeof(Key*));
Ben Lindstrom46c16222000-12-22 01:43:59 +0000706 for(i = 0; i < options.num_host_key_files; i++)
707 sensitive_data.host_keys[i] = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100708 sensitive_data.server_key = NULL;
709 sensitive_data.ssh1_host_key = NULL;
710 sensitive_data.have_ssh1_key = 0;
711 sensitive_data.have_ssh2_key = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000712
Damien Miller0bc1bd82000-11-13 22:57:25 +1100713 for(i = 0; i < options.num_host_key_files; i++) {
714 Key *key = load_private_key_autodetect(options.host_key_files[i]);
715 if (key == NULL) {
716 error("Could not load host key: %.200s: %.100s",
717 options.host_key_files[i], strerror(errno));
718 continue;
719 }
720 switch(key->type){
721 case KEY_RSA1:
722 sensitive_data.ssh1_host_key = key;
723 sensitive_data.have_ssh1_key = 1;
724 break;
725 case KEY_RSA:
726 case KEY_DSA:
727 sensitive_data.have_ssh2_key = 1;
728 break;
729 }
730 sensitive_data.host_keys[i] = key;
731 }
732 if ((options.protocol & SSH_PROTO_1) && !sensitive_data.have_ssh1_key) {
733 log("Disabling protocol version 1. Could not load host key");
Damien Millereba71ba2000-04-29 23:57:08 +1000734 options.protocol &= ~SSH_PROTO_1;
735 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100736 if ((options.protocol & SSH_PROTO_2) && !sensitive_data.have_ssh2_key) {
737 log("Disabling protocol version 2. Could not load host key");
738 options.protocol &= ~SSH_PROTO_2;
Damien Millereba71ba2000-04-29 23:57:08 +1000739 }
Kevin Stevesadf74cd2001-02-05 14:22:50 +0000740 if (!(options.protocol & (SSH_PROTO_1|SSH_PROTO_2))) {
Damien Millereba71ba2000-04-29 23:57:08 +1000741 log("sshd: no hostkeys available -- exiting.\n");
Damien Miller95def091999-11-25 00:26:21 +1100742 exit(1);
743 }
Damien Miller95def091999-11-25 00:26:21 +1100744
Damien Millereba71ba2000-04-29 23:57:08 +1000745 /* Check certain values for sanity. */
746 if (options.protocol & SSH_PROTO_1) {
747 if (options.server_key_bits < 512 ||
748 options.server_key_bits > 32768) {
749 fprintf(stderr, "Bad server key size.\n");
750 exit(1);
751 }
752 /*
753 * Check that server and host key lengths differ sufficiently. This
754 * is necessary to make double encryption work with rsaref. Oh, I
755 * hate software patents. I dont know if this can go? Niels
756 */
757 if (options.server_key_bits >
Damien Miller0bc1bd82000-11-13 22:57:25 +1100758 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) - SSH_KEY_BITS_RESERVED &&
Damien Millereba71ba2000-04-29 23:57:08 +1000759 options.server_key_bits <
Damien Miller0bc1bd82000-11-13 22:57:25 +1100760 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
Damien Millereba71ba2000-04-29 23:57:08 +1000761 options.server_key_bits =
Damien Miller0bc1bd82000-11-13 22:57:25 +1100762 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED;
Damien Millereba71ba2000-04-29 23:57:08 +1000763 debug("Forcing server key to %d bits to make it differ from host key.",
764 options.server_key_bits);
765 }
766 }
767
Damien Miller78315eb2000-09-29 23:01:36 +1100768#ifdef HAVE_SCO_PROTECTED_PW
769 (void) set_auth_parameters(ac, av);
770#endif
771
Damien Millereba71ba2000-04-29 23:57:08 +1000772 /* Initialize the log (it is reinitialized below in case we forked). */
Damien Miller95def091999-11-25 00:26:21 +1100773 if (debug_flag && !inetd_flag)
774 log_stderr = 1;
Kevin Stevesec84dc12000-12-13 17:45:15 +0000775 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +1100776
Damien Millereba71ba2000-04-29 23:57:08 +1000777 /*
778 * If not in debugging mode, and not started from inetd, disconnect
779 * from the controlling terminal, and fork. The original process
780 * exits.
781 */
Ben Lindstromc72745a2000-12-02 19:03:54 +0000782 if (!(debug_flag || inetd_flag || no_daemon_flag)) {
Damien Miller95def091999-11-25 00:26:21 +1100783#ifdef TIOCNOTTY
784 int fd;
785#endif /* TIOCNOTTY */
786 if (daemon(0, 0) < 0)
787 fatal("daemon() failed: %.200s", strerror(errno));
788
789 /* Disconnect from the controlling tty. */
790#ifdef TIOCNOTTY
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000791 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
Damien Miller95def091999-11-25 00:26:21 +1100792 if (fd >= 0) {
793 (void) ioctl(fd, TIOCNOTTY, NULL);
794 close(fd);
795 }
796#endif /* TIOCNOTTY */
797 }
798 /* Reinitialize the log (because of the fork above). */
Kevin Stevesec84dc12000-12-13 17:45:15 +0000799 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +1100800
Damien Miller95def091999-11-25 00:26:21 +1100801 /* Initialize the random number generator. */
802 arc4random_stir();
803
804 /* Chdir to the root directory so that the current disk can be
805 unmounted if desired. */
806 chdir("/");
807
Damien Miller95def091999-11-25 00:26:21 +1100808 /* Start listening for a socket, unless started from inetd. */
809 if (inetd_flag) {
810 int s1, s2;
811 s1 = dup(0); /* Make sure descriptors 0, 1, and 2 are in use. */
812 s2 = dup(s1);
813 sock_in = dup(0);
814 sock_out = dup(1);
Damien Miller994cf142000-07-21 10:19:44 +1000815 startup_pipe = -1;
Damien Millereba71ba2000-04-29 23:57:08 +1000816 /*
817 * We intentionally do not close the descriptors 0, 1, and 2
818 * as our code for setting the descriptors won\'t work if
819 * ttyfd happens to be one of those.
820 */
Damien Miller95def091999-11-25 00:26:21 +1100821 debug("inetd sockets after dupping: %d, %d", sock_in, sock_out);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100822 if (options.protocol & SSH_PROTO_1)
823 generate_empheral_server_key();
Damien Miller95def091999-11-25 00:26:21 +1100824 } else {
Damien Miller34132e52000-01-14 15:45:46 +1100825 for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
826 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
827 continue;
828 if (num_listen_socks >= MAX_LISTEN_SOCKS)
829 fatal("Too many listen sockets. "
830 "Enlarge MAX_LISTEN_SOCKS");
831 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
832 ntop, sizeof(ntop), strport, sizeof(strport),
833 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
834 error("getnameinfo failed");
835 continue;
836 }
837 /* Create socket for listening. */
838 listen_sock = socket(ai->ai_family, SOCK_STREAM, 0);
839 if (listen_sock < 0) {
840 /* kernel may not support ipv6 */
841 verbose("socket: %.100s", strerror(errno));
842 continue;
843 }
844 if (fcntl(listen_sock, F_SETFL, O_NONBLOCK) < 0) {
845 error("listen_sock O_NONBLOCK: %s", strerror(errno));
846 close(listen_sock);
847 continue;
848 }
849 /*
850 * Set socket options. We try to make the port
851 * reusable and have it close as fast as possible
852 * without waiting in unnecessary wait states on
853 * close.
854 */
855 setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
856 (void *) &on, sizeof(on));
857 linger.l_onoff = 1;
858 linger.l_linger = 5;
859 setsockopt(listen_sock, SOL_SOCKET, SO_LINGER,
860 (void *) &linger, sizeof(linger));
Damien Miller95def091999-11-25 00:26:21 +1100861
Damien Miller34132e52000-01-14 15:45:46 +1100862 debug("Bind to port %s on %s.", strport, ntop);
Damien Miller95def091999-11-25 00:26:21 +1100863
Damien Miller34132e52000-01-14 15:45:46 +1100864 /* Bind the socket to the desired port. */
Damien Miller0a4e27d2001-02-18 12:36:39 +1100865 if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) {
866 if (!ai->ai_next)
867 error("Bind to port %s on %s failed: %.200s.",
868 strport, ntop, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +1100869 close(listen_sock);
870 continue;
871 }
872 listen_socks[num_listen_socks] = listen_sock;
873 num_listen_socks++;
Damien Miller95def091999-11-25 00:26:21 +1100874
Damien Miller34132e52000-01-14 15:45:46 +1100875 /* Start listening on the port. */
876 log("Server listening on %s port %s.", ntop, strport);
877 if (listen(listen_sock, 5) < 0)
878 fatal("listen: %.100s", strerror(errno));
879
Damien Miller95def091999-11-25 00:26:21 +1100880 }
Damien Miller34132e52000-01-14 15:45:46 +1100881 freeaddrinfo(options.listen_addrs);
882
883 if (!num_listen_socks)
884 fatal("Cannot bind any address.");
885
Damien Miller95def091999-11-25 00:26:21 +1100886 if (!debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +1100887 /*
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000888 * Record our pid in /var/run/sshd.pid to make it
889 * easier to kill the correct sshd. We don't want to
890 * do this before the bind above because the bind will
Damien Miller5428f641999-11-25 11:54:57 +1100891 * fail if there already is a daemon, and this will
892 * overwrite any old pid in the file.
893 */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100894 f = fopen(options.pid_file, "wb");
Damien Miller95def091999-11-25 00:26:21 +1100895 if (f) {
Ben Lindstrom46c16222000-12-22 01:43:59 +0000896 fprintf(f, "%u\n", (u_int) getpid());
Damien Miller95def091999-11-25 00:26:21 +1100897 fclose(f);
898 }
899 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000900 if (options.protocol & SSH_PROTO_1)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100901 generate_empheral_server_key();
Damien Miller95def091999-11-25 00:26:21 +1100902
Damien Miller95def091999-11-25 00:26:21 +1100903 /* Arrange to restart on SIGHUP. The handler needs listen_sock. */
904 signal(SIGHUP, sighup_handler);
Damien Miller37023962000-07-11 17:31:38 +1000905
Damien Miller95def091999-11-25 00:26:21 +1100906 signal(SIGTERM, sigterm_handler);
907 signal(SIGQUIT, sigterm_handler);
908
909 /* Arrange SIGCHLD to be caught. */
910 signal(SIGCHLD, main_sigchld_handler);
911
Damien Miller34132e52000-01-14 15:45:46 +1100912 /* setup fd set for listen */
Damien Miller37023962000-07-11 17:31:38 +1000913 fdset = NULL;
Damien Miller34132e52000-01-14 15:45:46 +1100914 maxfd = 0;
915 for (i = 0; i < num_listen_socks; i++)
916 if (listen_socks[i] > maxfd)
917 maxfd = listen_socks[i];
Damien Miller37023962000-07-11 17:31:38 +1000918 /* pipes connected to unauthenticated childs */
919 startup_pipes = xmalloc(options.max_startups * sizeof(int));
920 for (i = 0; i < options.max_startups; i++)
921 startup_pipes[i] = -1;
Damien Miller34132e52000-01-14 15:45:46 +1100922
Damien Miller5428f641999-11-25 11:54:57 +1100923 /*
924 * Stay listening for connections until the system crashes or
925 * the daemon is killed with a signal.
926 */
Damien Miller95def091999-11-25 00:26:21 +1100927 for (;;) {
928 if (received_sighup)
929 sighup_restart();
Damien Miller37023962000-07-11 17:31:38 +1000930 if (fdset != NULL)
931 xfree(fdset);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000932 fdsetsz = howmany(maxfd+1, NFDBITS) * sizeof(fd_mask);
Damien Miller37023962000-07-11 17:31:38 +1000933 fdset = (fd_set *)xmalloc(fdsetsz);
Damien Miller34132e52000-01-14 15:45:46 +1100934 memset(fdset, 0, fdsetsz);
Damien Miller37023962000-07-11 17:31:38 +1000935
Damien Miller34132e52000-01-14 15:45:46 +1100936 for (i = 0; i < num_listen_socks; i++)
937 FD_SET(listen_socks[i], fdset);
Damien Miller37023962000-07-11 17:31:38 +1000938 for (i = 0; i < options.max_startups; i++)
939 if (startup_pipes[i] != -1)
940 FD_SET(startup_pipes[i], fdset);
941
942 /* Wait in select until there is a connection. */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000943 ret = select(maxfd+1, fdset, NULL, NULL, NULL);
944 if (ret < 0 && errno != EINTR)
945 error("select: %.100s", strerror(errno));
946 if (key_used && key_do_regen) {
947 generate_empheral_server_key();
948 key_used = 0;
949 key_do_regen = 0;
Damien Miller34132e52000-01-14 15:45:46 +1100950 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000951 if (ret < 0)
952 continue;
953
Damien Miller37023962000-07-11 17:31:38 +1000954 for (i = 0; i < options.max_startups; i++)
955 if (startup_pipes[i] != -1 &&
956 FD_ISSET(startup_pipes[i], fdset)) {
957 /*
958 * the read end of the pipe is ready
959 * if the child has closed the pipe
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000960 * after successful authentication
Damien Miller37023962000-07-11 17:31:38 +1000961 * or if the child has died
962 */
963 close(startup_pipes[i]);
964 startup_pipes[i] = -1;
965 startups--;
966 }
Damien Miller34132e52000-01-14 15:45:46 +1100967 for (i = 0; i < num_listen_socks; i++) {
968 if (!FD_ISSET(listen_socks[i], fdset))
Damien Miller95def091999-11-25 00:26:21 +1100969 continue;
Damien Miller37023962000-07-11 17:31:38 +1000970 fromlen = sizeof(from);
971 newsock = accept(listen_socks[i], (struct sockaddr *)&from,
972 &fromlen);
973 if (newsock < 0) {
974 if (errno != EINTR && errno != EWOULDBLOCK)
975 error("accept: %.100s", strerror(errno));
976 continue;
977 }
978 if (fcntl(newsock, F_SETFL, 0) < 0) {
979 error("newsock del O_NONBLOCK: %s", strerror(errno));
980 continue;
981 }
Damien Miller942da032000-08-18 13:59:06 +1000982 if (drop_connection(startups) == 1) {
983 debug("drop connection #%d", startups);
Damien Miller37023962000-07-11 17:31:38 +1000984 close(newsock);
985 continue;
986 }
987 if (pipe(startup_p) == -1) {
988 close(newsock);
989 continue;
990 }
991
992 for (j = 0; j < options.max_startups; j++)
993 if (startup_pipes[j] == -1) {
994 startup_pipes[j] = startup_p[0];
995 if (maxfd < startup_p[0])
996 maxfd = startup_p[0];
997 startups++;
998 break;
999 }
Kevin Stevesef4eea92001-02-05 12:42:17 +00001000
Damien Miller5428f641999-11-25 11:54:57 +11001001 /*
Damien Miller37023962000-07-11 17:31:38 +10001002 * Got connection. Fork a child to handle it, unless
1003 * we are in debugging mode.
Damien Miller5428f641999-11-25 11:54:57 +11001004 */
Damien Miller37023962000-07-11 17:31:38 +10001005 if (debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +11001006 /*
Damien Miller37023962000-07-11 17:31:38 +10001007 * In debugging mode. Close the listening
1008 * socket, and start processing the
1009 * connection without forking.
Damien Miller5428f641999-11-25 11:54:57 +11001010 */
Damien Miller37023962000-07-11 17:31:38 +10001011 debug("Server will not fork when running in debugging mode.");
Damien Miller34132e52000-01-14 15:45:46 +11001012 close_listen_socks();
Damien Miller95def091999-11-25 00:26:21 +11001013 sock_in = newsock;
1014 sock_out = newsock;
Damien Miller4d97ba22000-07-11 18:15:50 +10001015 startup_pipe = -1;
Damien Miller182ee6e2000-07-12 09:45:27 +10001016 pid = getpid();
Damien Miller95def091999-11-25 00:26:21 +11001017 break;
Damien Miller37023962000-07-11 17:31:38 +10001018 } else {
1019 /*
1020 * Normal production daemon. Fork, and have
1021 * the child process the connection. The
1022 * parent continues listening.
1023 */
1024 if ((pid = fork()) == 0) {
1025 /*
1026 * Child. Close the listening and max_startup
1027 * sockets. Start using the accepted socket.
1028 * Reinitialize logging (since our pid has
1029 * changed). We break out of the loop to handle
1030 * the connection.
1031 */
1032 startup_pipe = startup_p[1];
1033 for (j = 0; j < options.max_startups; j++)
1034 if (startup_pipes[j] != -1)
1035 close(startup_pipes[j]);
1036 close_listen_socks();
1037 sock_in = newsock;
1038 sock_out = newsock;
Kevin Stevesec84dc12000-12-13 17:45:15 +00001039 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller37023962000-07-11 17:31:38 +10001040 break;
1041 }
Damien Miller95def091999-11-25 00:26:21 +11001042 }
Damien Miller37023962000-07-11 17:31:38 +10001043
1044 /* Parent. Stay in the loop. */
1045 if (pid < 0)
1046 error("fork: %.100s", strerror(errno));
1047 else
1048 debug("Forked child %d.", pid);
1049
1050 close(startup_p[1]);
1051
1052 /* Mark that the key has been used (it was "given" to the child). */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001053 if ((options.protocol & SSH_PROTO_1) &&
1054 key_used == 0) {
1055 /* Schedule server key regeneration alarm. */
1056 signal(SIGALRM, key_regeneration_alarm);
1057 alarm(options.key_regeneration_time);
1058 key_used = 1;
1059 }
Damien Miller37023962000-07-11 17:31:38 +10001060
1061 arc4random_stir();
1062
1063 /* Close the new socket (the child is now taking care of it). */
1064 close(newsock);
Damien Miller95def091999-11-25 00:26:21 +11001065 }
Damien Miller34132e52000-01-14 15:45:46 +11001066 /* child process check (or debug mode) */
1067 if (num_listen_socks < 0)
1068 break;
Damien Miller95def091999-11-25 00:26:21 +11001069 }
1070 }
1071
1072 /* This is the child processing a new connection. */
1073
Damien Miller5428f641999-11-25 11:54:57 +11001074 /*
1075 * Disable the key regeneration alarm. We will not regenerate the
1076 * key since we are no longer in a position to give it to anyone. We
1077 * will not restart on SIGHUP since it no longer makes sense.
1078 */
Damien Miller95def091999-11-25 00:26:21 +11001079 alarm(0);
1080 signal(SIGALRM, SIG_DFL);
1081 signal(SIGHUP, SIG_DFL);
1082 signal(SIGTERM, SIG_DFL);
1083 signal(SIGQUIT, SIG_DFL);
1084 signal(SIGCHLD, SIG_DFL);
Damien Miller4e0f5e12000-08-29 11:05:50 +11001085 signal(SIGINT, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001086
Damien Miller5428f641999-11-25 11:54:57 +11001087 /*
1088 * Set socket options for the connection. We want the socket to
1089 * close as fast as possible without waiting for anything. If the
1090 * connection is not a socket, these will do nothing.
1091 */
1092 /* setsockopt(sock_in, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on)); */
Damien Miller95def091999-11-25 00:26:21 +11001093 linger.l_onoff = 1;
1094 linger.l_linger = 5;
1095 setsockopt(sock_in, SOL_SOCKET, SO_LINGER, (void *) &linger, sizeof(linger));
1096
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001097 /* Set keepalives if requested. */
1098 if (options.keepalives &&
1099 setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, (void *)&on,
1100 sizeof(on)) < 0)
1101 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
1102
Damien Miller5428f641999-11-25 11:54:57 +11001103 /*
1104 * Register our connection. This turns encryption off because we do
1105 * not have a key.
1106 */
Damien Miller95def091999-11-25 00:26:21 +11001107 packet_set_connection(sock_in, sock_out);
1108
1109 remote_port = get_remote_port();
1110 remote_ip = get_remote_ipaddr();
1111
1112 /* Check whether logins are denied from this host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001113#ifdef LIBWRAP
Damien Miller34132e52000-01-14 15:45:46 +11001114 /* XXX LIBWRAP noes not know about IPv6 */
Damien Miller95def091999-11-25 00:26:21 +11001115 {
1116 struct request_info req;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001117
Kevin Stevesec84dc12000-12-13 17:45:15 +00001118 request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, NULL);
Damien Miller95def091999-11-25 00:26:21 +11001119 fromhost(&req);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001120
Damien Miller95def091999-11-25 00:26:21 +11001121 if (!hosts_access(&req)) {
1122 close(sock_in);
1123 close(sock_out);
1124 refuse(&req);
1125 }
Damien Miller34132e52000-01-14 15:45:46 +11001126/*XXX IPv6 verbose("Connection from %.500s port %d", eval_client(&req), remote_port); */
Damien Miller95def091999-11-25 00:26:21 +11001127 }
Damien Miller34132e52000-01-14 15:45:46 +11001128#endif /* LIBWRAP */
Damien Miller95def091999-11-25 00:26:21 +11001129 /* Log the connection. */
1130 verbose("Connection from %.500s port %d", remote_ip, remote_port);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001131
Damien Miller5428f641999-11-25 11:54:57 +11001132 /*
1133 * We don\'t want to listen forever unless the other side
1134 * successfully authenticates itself. So we set up an alarm which is
1135 * cleared after successful authentication. A limit of zero
1136 * indicates no limit. Note that we don\'t set the alarm in debugging
1137 * mode; it is just annoying to have the server exit just when you
1138 * are about to discover the bug.
1139 */
Damien Miller95def091999-11-25 00:26:21 +11001140 signal(SIGALRM, grace_alarm_handler);
1141 if (!debug_flag)
1142 alarm(options.login_grace_time);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001143
Damien Millerb38eff82000-04-01 11:09:21 +10001144 sshd_exchange_identification(sock_in, sock_out);
Damien Miller5428f641999-11-25 11:54:57 +11001145 /*
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001146 * Check that the connection comes from a privileged port.
1147 * Rhosts-Authentication only makes sense from priviledged
Damien Miller5428f641999-11-25 11:54:57 +11001148 * programs. Of course, if the intruder has root access on his local
1149 * machine, he can connect from any port. So do not use these
1150 * authentication methods from machines that you do not trust.
1151 */
Damien Miller95def091999-11-25 00:26:21 +11001152 if (remote_port >= IPPORT_RESERVED ||
1153 remote_port < IPPORT_RESERVED / 2) {
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001154 debug("Rhosts Authentication disabled, "
Damien Miller0bc1bd82000-11-13 22:57:25 +11001155 "originating port not trusted.");
Damien Miller95def091999-11-25 00:26:21 +11001156 options.rhosts_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +11001157 }
Damien Miller34132e52000-01-14 15:45:46 +11001158#ifdef KRB4
1159 if (!packet_connection_is_ipv4() &&
1160 options.kerberos_authentication) {
1161 debug("Kerberos Authentication disabled, only available for IPv4.");
1162 options.kerberos_authentication = 0;
1163 }
1164#endif /* KRB4 */
Ben Lindstromf79aeff2001-02-10 21:27:11 +00001165#ifdef AFS
1166 /* If machine has AFS, set process authentication group. */
1167 if (k_hasafs()) {
1168 k_setpag();
1169 k_unlog();
1170 }
1171#endif /* AFS */
Damien Miller34132e52000-01-14 15:45:46 +11001172
Damien Miller95def091999-11-25 00:26:21 +11001173 packet_set_nonblocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001174
Damien Miller396691a2000-01-20 22:44:08 +11001175 /* perform the key exchange */
Damien Miller396691a2000-01-20 22:44:08 +11001176 /* authenticate user and start session */
Damien Millerefb4afe2000-04-12 18:45:05 +10001177 if (compat20) {
1178 do_ssh2_kex();
1179 do_authentication2();
1180 } else {
1181 do_ssh1_kex();
1182 do_authentication();
1183 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001184
1185#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +11001186 /* Cleanup user's ticket cache file. */
1187 if (options.kerberos_ticket_cleanup)
1188 (void) dest_tkt();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001189#endif /* KRB4 */
1190
Damien Miller95def091999-11-25 00:26:21 +11001191 /* The connection has been terminated. */
1192 verbose("Closing connection to %.100s", remote_ip);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001193
Damien Millerbeb4ba51999-12-28 15:09:35 +11001194#ifdef USE_PAM
Damien Millere72b7af1999-12-30 15:08:44 +11001195 finish_pam();
Damien Millerbeb4ba51999-12-28 15:09:35 +11001196#endif /* USE_PAM */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001197
Damien Miller95def091999-11-25 00:26:21 +11001198 packet_close();
1199 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001200}
1201
Damien Miller95def091999-11-25 00:26:21 +11001202/*
Damien Miller396691a2000-01-20 22:44:08 +11001203 * SSH1 key exchange
Damien Miller95def091999-11-25 00:26:21 +11001204 */
Damien Miller2ccf6611999-11-15 15:25:10 +11001205void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001206do_ssh1_kex(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001207{
Damien Miller95def091999-11-25 00:26:21 +11001208 int i, len;
Damien Miller396691a2000-01-20 22:44:08 +11001209 int plen, slen;
Damien Miller7650bc62001-01-30 09:27:26 +11001210 int rsafail = 0;
Damien Miller95def091999-11-25 00:26:21 +11001211 BIGNUM *session_key_int;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001212 u_char session_key[SSH_SESSION_KEY_LENGTH];
1213 u_char cookie[8];
1214 u_int cipher_type, auth_mask, protocol_flags;
Damien Miller95def091999-11-25 00:26:21 +11001215 u_int32_t rand = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001216
Damien Miller5428f641999-11-25 11:54:57 +11001217 /*
1218 * Generate check bytes that the client must send back in the user
1219 * packet in order for it to be accepted; this is used to defy ip
1220 * spoofing attacks. Note that this only works against somebody
1221 * doing IP spoofing from a remote machine; any machine on the local
1222 * network can still see outgoing packets and catch the random
1223 * cookie. This only affects rhosts authentication, and this is one
1224 * of the reasons why it is inherently insecure.
1225 */
Damien Miller95def091999-11-25 00:26:21 +11001226 for (i = 0; i < 8; i++) {
1227 if (i % 4 == 0)
1228 rand = arc4random();
Damien Miller396691a2000-01-20 22:44:08 +11001229 cookie[i] = rand & 0xff;
Damien Miller95def091999-11-25 00:26:21 +11001230 rand >>= 8;
1231 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001232
Damien Miller5428f641999-11-25 11:54:57 +11001233 /*
1234 * Send our public key. We include in the packet 64 bits of random
1235 * data that must be matched in the reply in order to prevent IP
1236 * spoofing.
1237 */
Damien Miller95def091999-11-25 00:26:21 +11001238 packet_start(SSH_SMSG_PUBLIC_KEY);
1239 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001240 packet_put_char(cookie[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001241
Damien Miller95def091999-11-25 00:26:21 +11001242 /* Store our public server RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001243 packet_put_int(BN_num_bits(sensitive_data.server_key->rsa->n));
1244 packet_put_bignum(sensitive_data.server_key->rsa->e);
1245 packet_put_bignum(sensitive_data.server_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001246
Damien Miller95def091999-11-25 00:26:21 +11001247 /* Store our public host RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001248 packet_put_int(BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
1249 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->e);
1250 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001251
Damien Miller95def091999-11-25 00:26:21 +11001252 /* Put protocol flags. */
1253 packet_put_int(SSH_PROTOFLAG_HOST_IN_FWD_OPEN);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001254
Damien Miller95def091999-11-25 00:26:21 +11001255 /* Declare which ciphers we support. */
Damien Miller874d77b2000-10-14 16:23:11 +11001256 packet_put_int(cipher_mask_ssh1(0));
Damien Miller95def091999-11-25 00:26:21 +11001257
1258 /* Declare supported authentication types. */
1259 auth_mask = 0;
1260 if (options.rhosts_authentication)
1261 auth_mask |= 1 << SSH_AUTH_RHOSTS;
1262 if (options.rhosts_rsa_authentication)
1263 auth_mask |= 1 << SSH_AUTH_RHOSTS_RSA;
1264 if (options.rsa_authentication)
1265 auth_mask |= 1 << SSH_AUTH_RSA;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001266#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +11001267 if (options.kerberos_authentication)
1268 auth_mask |= 1 << SSH_AUTH_KERBEROS;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001269#endif
1270#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +11001271 if (options.kerberos_tgt_passing)
1272 auth_mask |= 1 << SSH_PASS_KERBEROS_TGT;
1273 if (options.afs_token_passing)
1274 auth_mask |= 1 << SSH_PASS_AFS_TOKEN;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001275#endif
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +00001276 if (options.challenge_reponse_authentication == 1)
Damien Miller95def091999-11-25 00:26:21 +11001277 auth_mask |= 1 << SSH_AUTH_TIS;
Damien Miller95def091999-11-25 00:26:21 +11001278 if (options.password_authentication)
1279 auth_mask |= 1 << SSH_AUTH_PASSWORD;
1280 packet_put_int(auth_mask);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001281
Damien Miller95def091999-11-25 00:26:21 +11001282 /* Send the packet and wait for it to be sent. */
1283 packet_send();
1284 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001285
Damien Miller0bc1bd82000-11-13 22:57:25 +11001286 debug("Sent %d bit server key and %d bit host key.",
1287 BN_num_bits(sensitive_data.server_key->rsa->n),
1288 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001289
Damien Miller95def091999-11-25 00:26:21 +11001290 /* Read clients reply (cipher type and session key). */
1291 packet_read_expect(&plen, SSH_CMSG_SESSION_KEY);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001292
Damien Miller50945fa1999-12-09 10:31:37 +11001293 /* Get cipher type and check whether we accept this. */
Damien Miller95def091999-11-25 00:26:21 +11001294 cipher_type = packet_get_char();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001295
Damien Miller874d77b2000-10-14 16:23:11 +11001296 if (!(cipher_mask_ssh1(0) & (1 << cipher_type)))
Damien Miller50945fa1999-12-09 10:31:37 +11001297 packet_disconnect("Warning: client selects unsupported cipher.");
1298
Damien Miller95def091999-11-25 00:26:21 +11001299 /* Get check bytes from the packet. These must match those we
1300 sent earlier with the public key packet. */
1301 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001302 if (cookie[i] != packet_get_char())
Damien Miller95def091999-11-25 00:26:21 +11001303 packet_disconnect("IP Spoofing check bytes do not match.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001304
Damien Miller95def091999-11-25 00:26:21 +11001305 debug("Encryption type: %.200s", cipher_name(cipher_type));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001306
Damien Miller95def091999-11-25 00:26:21 +11001307 /* Get the encrypted integer. */
1308 session_key_int = BN_new();
1309 packet_get_bignum(session_key_int, &slen);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001310
Damien Miller95def091999-11-25 00:26:21 +11001311 protocol_flags = packet_get_int();
1312 packet_set_protocol_flags(protocol_flags);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001313
Damien Miller95def091999-11-25 00:26:21 +11001314 packet_integrity_check(plen, 1 + 8 + slen + 4, SSH_CMSG_SESSION_KEY);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001315
Damien Miller5428f641999-11-25 11:54:57 +11001316 /*
1317 * Decrypt it using our private server key and private host key (key
1318 * with larger modulus first).
1319 */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001320 if (BN_cmp(sensitive_data.server_key->rsa->n, sensitive_data.ssh1_host_key->rsa->n) > 0) {
Damien Miller7650bc62001-01-30 09:27:26 +11001321 /* Server key has bigger modulus. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001322 if (BN_num_bits(sensitive_data.server_key->rsa->n) <
1323 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1324 fatal("do_connection: %s: server_key %d < host_key %d + SSH_KEY_BITS_RESERVED %d",
1325 get_remote_ipaddr(),
1326 BN_num_bits(sensitive_data.server_key->rsa->n),
1327 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1328 SSH_KEY_BITS_RESERVED);
Damien Miller95def091999-11-25 00:26:21 +11001329 }
Damien Miller7650bc62001-01-30 09:27:26 +11001330 if (rsa_private_decrypt(session_key_int, session_key_int,
1331 sensitive_data.server_key->rsa) <= 0)
1332 rsafail++;
1333 if (rsa_private_decrypt(session_key_int, session_key_int,
1334 sensitive_data.ssh1_host_key->rsa) <= 0)
1335 rsafail++;
Damien Miller95def091999-11-25 00:26:21 +11001336 } else {
1337 /* Host key has bigger modulus (or they are equal). */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001338 if (BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) <
1339 BN_num_bits(sensitive_data.server_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1340 fatal("do_connection: %s: host_key %d < server_key %d + SSH_KEY_BITS_RESERVED %d",
1341 get_remote_ipaddr(),
1342 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1343 BN_num_bits(sensitive_data.server_key->rsa->n),
1344 SSH_KEY_BITS_RESERVED);
Damien Miller95def091999-11-25 00:26:21 +11001345 }
Damien Miller7650bc62001-01-30 09:27:26 +11001346 if (rsa_private_decrypt(session_key_int, session_key_int,
1347 sensitive_data.ssh1_host_key->rsa) < 0)
1348 rsafail++;
1349 if (rsa_private_decrypt(session_key_int, session_key_int,
1350 sensitive_data.server_key->rsa) < 0)
1351 rsafail++;
Damien Miller95def091999-11-25 00:26:21 +11001352 }
Damien Miller5428f641999-11-25 11:54:57 +11001353 /*
1354 * Extract session key from the decrypted integer. The key is in the
1355 * least significant 256 bits of the integer; the first byte of the
1356 * key is in the highest bits.
1357 */
Damien Miller7650bc62001-01-30 09:27:26 +11001358 if (!rsafail) {
1359 BN_mask_bits(session_key_int, sizeof(session_key) * 8);
1360 len = BN_num_bytes(session_key_int);
1361 if (len < 0 || len > sizeof(session_key)) {
1362 error("do_connection: bad session key len from %s: "
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001363 "session_key_int %d > sizeof(session_key) %lu",
1364 get_remote_ipaddr(), len, (u_long)sizeof(session_key));
Damien Miller7650bc62001-01-30 09:27:26 +11001365 rsafail++;
1366 } else {
1367 memset(session_key, 0, sizeof(session_key));
1368 BN_bn2bin(session_key_int,
1369 session_key + sizeof(session_key) - len);
Ben Lindstromeb648a72001-03-05 06:00:29 +00001370
1371 compute_session_id(session_id, cookie,
1372 sensitive_data.ssh1_host_key->rsa->n,
1373 sensitive_data.server_key->rsa->n);
1374 /*
1375 * Xor the first 16 bytes of the session key with the
1376 * session id.
1377 */
1378 for (i = 0; i < 16; i++)
1379 session_key[i] ^= session_id[i];
Damien Miller7650bc62001-01-30 09:27:26 +11001380 }
1381 }
1382 if (rsafail) {
Ben Lindstromeb648a72001-03-05 06:00:29 +00001383 int bytes = BN_num_bytes(session_key_int);
1384 char *buf = xmalloc(bytes);
1385 MD5_CTX md;
1386
Damien Miller7650bc62001-01-30 09:27:26 +11001387 log("do_connection: generating a fake encryption key");
Ben Lindstromeb648a72001-03-05 06:00:29 +00001388 BN_bn2bin(session_key_int, buf);
1389 MD5_Init(&md);
1390 MD5_Update(&md, buf, bytes);
1391 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1392 MD5_Final(session_key, &md);
1393 MD5_Init(&md);
1394 MD5_Update(&md, session_key, 16);
1395 MD5_Update(&md, buf, bytes);
1396 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1397 MD5_Final(session_key + 16, &md);
1398 memset(buf, 0, bytes);
1399 xfree(buf);
Damien Miller7650bc62001-01-30 09:27:26 +11001400 }
Ben Lindstromeb648a72001-03-05 06:00:29 +00001401 /* Destroy the private and public keys. They will no longer be needed. */
1402 destroy_sensitive_data();
1403
Damien Miller396691a2000-01-20 22:44:08 +11001404 /* Destroy the decrypted integer. It is no longer needed. */
1405 BN_clear_free(session_key_int);
1406
Damien Miller95def091999-11-25 00:26:21 +11001407 /* Set the session key. From this on all communications will be encrypted. */
1408 packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, cipher_type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001409
Damien Miller95def091999-11-25 00:26:21 +11001410 /* Destroy our copy of the session key. It is no longer needed. */
1411 memset(session_key, 0, sizeof(session_key));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001412
Damien Miller95def091999-11-25 00:26:21 +11001413 debug("Received session key; encryption turned on.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001414
Damien Miller95def091999-11-25 00:26:21 +11001415 /* Send an acknowledgement packet. Note that this packet is sent encrypted. */
1416 packet_start(SSH_SMSG_SUCCESS);
1417 packet_send();
1418 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001419}
Damien Millerefb4afe2000-04-12 18:45:05 +10001420
1421/*
1422 * SSH2 key exchange: diffie-hellman-group1-sha1
1423 */
1424void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001425do_ssh2_kex(void)
Damien Millerefb4afe2000-04-12 18:45:05 +10001426{
1427 Buffer *server_kexinit;
1428 Buffer *client_kexinit;
Damien Miller874d77b2000-10-14 16:23:11 +11001429 int payload_len;
Damien Millerefb4afe2000-04-12 18:45:05 +10001430 int i;
Damien Millerefb4afe2000-04-12 18:45:05 +10001431 Kex *kex;
Damien Millerefb4afe2000-04-12 18:45:05 +10001432 char *cprop[PROPOSAL_MAX];
Damien Millerefb4afe2000-04-12 18:45:05 +10001433
1434/* KEXINIT */
1435
Damien Miller78928792000-04-12 20:17:38 +10001436 if (options.ciphers != NULL) {
Damien Miller4af51302000-04-16 11:18:38 +10001437 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
Damien Miller78928792000-04-12 20:17:38 +10001438 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
1439 }
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001440 if (options.macs != NULL) {
1441 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
1442 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
1443 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001444 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = list_hostkey_types();
1445
Damien Millerb1715dc2000-05-30 13:44:51 +10001446 server_kexinit = kex_init(myproposal);
Damien Millerefb4afe2000-04-12 18:45:05 +10001447 client_kexinit = xmalloc(sizeof(*client_kexinit));
1448 buffer_init(client_kexinit);
Damien Millerefb4afe2000-04-12 18:45:05 +10001449
Damien Millerb1715dc2000-05-30 13:44:51 +10001450 /* algorithm negotiation */
1451 kex_exchange_kexinit(server_kexinit, client_kexinit, cprop);
1452 kex = kex_choose_conf(cprop, myproposal, 1);
1453 for (i = 0; i < PROPOSAL_MAX; i++)
1454 xfree(cprop[i]);
Damien Millerefb4afe2000-04-12 18:45:05 +10001455
Damien Miller874d77b2000-10-14 16:23:11 +11001456 switch (kex->kex_type) {
1457 case DH_GRP1_SHA1:
1458 ssh_dh1_server(kex, client_kexinit, server_kexinit);
1459 break;
1460 case DH_GEX_SHA1:
1461 ssh_dhgex_server(kex, client_kexinit, server_kexinit);
1462 break;
1463 default:
1464 fatal("Unsupported key exchange %d", kex->kex_type);
1465 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001466
Damien Miller874d77b2000-10-14 16:23:11 +11001467 debug("send SSH2_MSG_NEWKEYS.");
1468 packet_start(SSH2_MSG_NEWKEYS);
1469 packet_send();
1470 packet_write_wait();
1471 debug("done: send SSH2_MSG_NEWKEYS.");
1472
1473 debug("Wait SSH2_MSG_NEWKEYS.");
1474 packet_read_expect(&payload_len, SSH2_MSG_NEWKEYS);
1475 debug("GOT SSH2_MSG_NEWKEYS.");
1476
1477#ifdef DEBUG_KEXDH
1478 /* send 1st encrypted/maced/compressed message */
1479 packet_start(SSH2_MSG_IGNORE);
1480 packet_put_cstring("markus");
1481 packet_send();
1482 packet_write_wait();
1483#endif
1484
1485 debug("done: KEX2.");
1486}
1487
1488/*
1489 * SSH2 key exchange
1490 */
1491
1492/* diffie-hellman-group1-sha1 */
1493
1494void
1495ssh_dh1_server(Kex *kex, Buffer *client_kexinit, Buffer *server_kexinit)
1496{
1497#ifdef DEBUG_KEXDH
1498 int i;
1499#endif
1500 int payload_len, dlen;
1501 int slen;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001502 u_char *signature = NULL;
1503 u_char *server_host_key_blob = NULL;
1504 u_int sbloblen;
1505 u_int klen, kout;
1506 u_char *kbuf;
1507 u_char *hash;
Damien Miller874d77b2000-10-14 16:23:11 +11001508 BIGNUM *shared_secret = 0;
1509 DH *dh;
1510 BIGNUM *dh_client_pub = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001511 Key *hostkey;
1512
1513 hostkey = get_hostkey_by_type(kex->hostkey_type);
1514 if (hostkey == NULL)
1515 fatal("Unsupported hostkey type %d", kex->hostkey_type);
Damien Miller874d77b2000-10-14 16:23:11 +11001516
1517/* KEXDH */
Kevin Steves6b875862000-12-15 23:31:01 +00001518 /* generate DH key */
1519 dh = dh_new_group1(); /* XXX depends on 'kex' */
1520 dh_gen_key(dh);
1521
Damien Millerefb4afe2000-04-12 18:45:05 +10001522 debug("Wait SSH2_MSG_KEXDH_INIT.");
1523 packet_read_expect(&payload_len, SSH2_MSG_KEXDH_INIT);
1524
1525 /* key, cert */
1526 dh_client_pub = BN_new();
1527 if (dh_client_pub == NULL)
1528 fatal("dh_client_pub == NULL");
1529 packet_get_bignum2(dh_client_pub, &dlen);
1530
1531#ifdef DEBUG_KEXDH
1532 fprintf(stderr, "\ndh_client_pub= ");
Damien Miller62cee002000-09-23 17:15:56 +11001533 BN_print_fp(stderr, dh_client_pub);
Damien Millerefb4afe2000-04-12 18:45:05 +10001534 fprintf(stderr, "\n");
1535 debug("bits %d", BN_num_bits(dh_client_pub));
1536#endif
1537
Damien Millerefb4afe2000-04-12 18:45:05 +10001538#ifdef DEBUG_KEXDH
1539 fprintf(stderr, "\np= ");
Damien Miller62cee002000-09-23 17:15:56 +11001540 BN_print_fp(stderr, dh->p);
Damien Millerefb4afe2000-04-12 18:45:05 +10001541 fprintf(stderr, "\ng= ");
Damien Miller62cee002000-09-23 17:15:56 +11001542 bn_print(dh->g);
Damien Millerefb4afe2000-04-12 18:45:05 +10001543 fprintf(stderr, "\npub= ");
Damien Miller62cee002000-09-23 17:15:56 +11001544 BN_print_fp(stderr, dh->pub_key);
Damien Millerefb4afe2000-04-12 18:45:05 +10001545 fprintf(stderr, "\n");
Kevin Stevesef4eea92001-02-05 12:42:17 +00001546 DHparams_print_fp(stderr, dh);
Damien Millerefb4afe2000-04-12 18:45:05 +10001547#endif
Damien Miller78928792000-04-12 20:17:38 +10001548 if (!dh_pub_is_valid(dh, dh_client_pub))
1549 packet_disconnect("bad client public DH value");
Damien Millerefb4afe2000-04-12 18:45:05 +10001550
1551 klen = DH_size(dh);
1552 kbuf = xmalloc(klen);
1553 kout = DH_compute_key(kbuf, dh_client_pub, dh);
1554
1555#ifdef DEBUG_KEXDH
1556 debug("shared secret: len %d/%d", klen, kout);
1557 fprintf(stderr, "shared secret == ");
1558 for (i = 0; i< kout; i++)
1559 fprintf(stderr, "%02x", (kbuf[i])&0xff);
1560 fprintf(stderr, "\n");
1561#endif
1562 shared_secret = BN_new();
1563
1564 BN_bin2bn(kbuf, kout, shared_secret);
1565 memset(kbuf, 0, klen);
1566 xfree(kbuf);
1567
Damien Millereba71ba2000-04-29 23:57:08 +10001568 /* XXX precompute? */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001569 key_to_blob(hostkey, &server_host_key_blob, &sbloblen);
Damien Millerefb4afe2000-04-12 18:45:05 +10001570
1571 /* calc H */ /* XXX depends on 'kex' */
1572 hash = kex_hash(
1573 client_version_string,
1574 server_version_string,
1575 buffer_ptr(client_kexinit), buffer_len(client_kexinit),
1576 buffer_ptr(server_kexinit), buffer_len(server_kexinit),
1577 (char *)server_host_key_blob, sbloblen,
1578 dh_client_pub,
1579 dh->pub_key,
1580 shared_secret
1581 );
1582 buffer_free(client_kexinit);
1583 buffer_free(server_kexinit);
1584 xfree(client_kexinit);
1585 xfree(server_kexinit);
Ben Lindstromb1985f72001-01-23 00:19:15 +00001586 BN_free(dh_client_pub);
Damien Millerefb4afe2000-04-12 18:45:05 +10001587#ifdef DEBUG_KEXDH
Damien Miller4af51302000-04-16 11:18:38 +10001588 fprintf(stderr, "hash == ");
1589 for (i = 0; i< 20; i++)
1590 fprintf(stderr, "%02x", (hash[i])&0xff);
1591 fprintf(stderr, "\n");
Damien Millerefb4afe2000-04-12 18:45:05 +10001592#endif
Damien Millereba71ba2000-04-29 23:57:08 +10001593 /* save session id := H */
1594 /* XXX hashlen depends on KEX */
1595 session_id2_len = 20;
1596 session_id2 = xmalloc(session_id2_len);
1597 memcpy(session_id2, hash, session_id2_len);
1598
Damien Millerefb4afe2000-04-12 18:45:05 +10001599 /* sign H */
Damien Millereba71ba2000-04-29 23:57:08 +10001600 /* XXX hashlen depends on KEX */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001601 key_sign(hostkey, &signature, &slen, hash, 20);
Damien Millereba71ba2000-04-29 23:57:08 +10001602
1603 destroy_sensitive_data();
Damien Millerefb4afe2000-04-12 18:45:05 +10001604
1605 /* send server hostkey, DH pubkey 'f' and singed H */
1606 packet_start(SSH2_MSG_KEXDH_REPLY);
1607 packet_put_string((char *)server_host_key_blob, sbloblen);
Damien Millere247cc42000-05-07 12:03:14 +10001608 packet_put_bignum2(dh->pub_key); /* f */
Damien Millerefb4afe2000-04-12 18:45:05 +10001609 packet_put_string((char *)signature, slen);
1610 packet_send();
Damien Miller8bb73be2000-04-19 16:26:12 +10001611 xfree(signature);
Damien Millereba71ba2000-04-29 23:57:08 +10001612 xfree(server_host_key_blob);
Damien Millerefb4afe2000-04-12 18:45:05 +10001613 packet_write_wait();
1614
1615 kex_derive_keys(kex, hash, shared_secret);
Ben Lindstromb1985f72001-01-23 00:19:15 +00001616 BN_clear_free(shared_secret);
Damien Millerefb4afe2000-04-12 18:45:05 +10001617 packet_set_kex(kex);
1618
1619 /* have keys, free DH */
1620 DH_free(dh);
Damien Miller874d77b2000-10-14 16:23:11 +11001621}
Damien Millerefb4afe2000-04-12 18:45:05 +10001622
Damien Miller874d77b2000-10-14 16:23:11 +11001623/* diffie-hellman-group-exchange-sha1 */
1624
1625void
1626ssh_dhgex_server(Kex *kex, Buffer *client_kexinit, Buffer *server_kexinit)
1627{
1628#ifdef DEBUG_KEXDH
1629 int i;
1630#endif
1631 int payload_len, dlen;
1632 int slen, nbits;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001633 u_char *signature = NULL;
1634 u_char *server_host_key_blob = NULL;
1635 u_int sbloblen;
1636 u_int klen, kout;
1637 u_char *kbuf;
1638 u_char *hash;
Damien Miller874d77b2000-10-14 16:23:11 +11001639 BIGNUM *shared_secret = 0;
1640 DH *dh;
1641 BIGNUM *dh_client_pub = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001642 Key *hostkey;
1643
1644 hostkey = get_hostkey_by_type(kex->hostkey_type);
1645 if (hostkey == NULL)
1646 fatal("Unsupported hostkey type %d", kex->hostkey_type);
Damien Miller874d77b2000-10-14 16:23:11 +11001647
1648/* KEXDHGEX */
1649 debug("Wait SSH2_MSG_KEX_DH_GEX_REQUEST.");
1650 packet_read_expect(&payload_len, SSH2_MSG_KEX_DH_GEX_REQUEST);
1651 nbits = packet_get_int();
1652 dh = choose_dh(nbits);
1653
1654 debug("Sending SSH2_MSG_KEX_DH_GEX_GROUP.");
1655 packet_start(SSH2_MSG_KEX_DH_GEX_GROUP);
1656 packet_put_bignum2(dh->p);
1657 packet_put_bignum2(dh->g);
Damien Millerefb4afe2000-04-12 18:45:05 +10001658 packet_send();
1659 packet_write_wait();
Damien Millerefb4afe2000-04-12 18:45:05 +10001660
Kevin Steves6b875862000-12-15 23:31:01 +00001661 /* Compute our exchange value in parallel with the client */
1662
1663 dh_gen_key(dh);
1664
Damien Miller874d77b2000-10-14 16:23:11 +11001665 debug("Wait SSH2_MSG_KEX_DH_GEX_INIT.");
1666 packet_read_expect(&payload_len, SSH2_MSG_KEX_DH_GEX_INIT);
1667
1668 /* key, cert */
1669 dh_client_pub = BN_new();
1670 if (dh_client_pub == NULL)
1671 fatal("dh_client_pub == NULL");
1672 packet_get_bignum2(dh_client_pub, &dlen);
Damien Millerefb4afe2000-04-12 18:45:05 +10001673
Damien Miller78928792000-04-12 20:17:38 +10001674#ifdef DEBUG_KEXDH
Damien Miller874d77b2000-10-14 16:23:11 +11001675 fprintf(stderr, "\ndh_client_pub= ");
1676 BN_print_fp(stderr, dh_client_pub);
1677 fprintf(stderr, "\n");
1678 debug("bits %d", BN_num_bits(dh_client_pub));
Damien Miller78928792000-04-12 20:17:38 +10001679#endif
Damien Miller874d77b2000-10-14 16:23:11 +11001680
1681#ifdef DEBUG_KEXDH
1682 fprintf(stderr, "\np= ");
1683 BN_print_fp(stderr, dh->p);
1684 fprintf(stderr, "\ng= ");
1685 bn_print(dh->g);
1686 fprintf(stderr, "\npub= ");
1687 BN_print_fp(stderr, dh->pub_key);
1688 fprintf(stderr, "\n");
Kevin Stevesef4eea92001-02-05 12:42:17 +00001689 DHparams_print_fp(stderr, dh);
Damien Miller874d77b2000-10-14 16:23:11 +11001690#endif
1691 if (!dh_pub_is_valid(dh, dh_client_pub))
1692 packet_disconnect("bad client public DH value");
1693
1694 klen = DH_size(dh);
1695 kbuf = xmalloc(klen);
1696 kout = DH_compute_key(kbuf, dh_client_pub, dh);
1697
1698#ifdef DEBUG_KEXDH
1699 debug("shared secret: len %d/%d", klen, kout);
1700 fprintf(stderr, "shared secret == ");
1701 for (i = 0; i< kout; i++)
1702 fprintf(stderr, "%02x", (kbuf[i])&0xff);
1703 fprintf(stderr, "\n");
1704#endif
1705 shared_secret = BN_new();
1706
1707 BN_bin2bn(kbuf, kout, shared_secret);
1708 memset(kbuf, 0, klen);
1709 xfree(kbuf);
1710
1711 /* XXX precompute? */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001712 key_to_blob(hostkey, &server_host_key_blob, &sbloblen);
Damien Miller874d77b2000-10-14 16:23:11 +11001713
1714 /* calc H */ /* XXX depends on 'kex' */
1715 hash = kex_hash_gex(
1716 client_version_string,
1717 server_version_string,
1718 buffer_ptr(client_kexinit), buffer_len(client_kexinit),
1719 buffer_ptr(server_kexinit), buffer_len(server_kexinit),
1720 (char *)server_host_key_blob, sbloblen,
1721 nbits, dh->p, dh->g,
1722 dh_client_pub,
1723 dh->pub_key,
1724 shared_secret
1725 );
1726 buffer_free(client_kexinit);
1727 buffer_free(server_kexinit);
1728 xfree(client_kexinit);
1729 xfree(server_kexinit);
Ben Lindstromb1985f72001-01-23 00:19:15 +00001730 BN_free(dh_client_pub);
Damien Miller874d77b2000-10-14 16:23:11 +11001731#ifdef DEBUG_KEXDH
1732 fprintf(stderr, "hash == ");
1733 for (i = 0; i< 20; i++)
1734 fprintf(stderr, "%02x", (hash[i])&0xff);
1735 fprintf(stderr, "\n");
1736#endif
1737 /* save session id := H */
1738 /* XXX hashlen depends on KEX */
1739 session_id2_len = 20;
1740 session_id2 = xmalloc(session_id2_len);
1741 memcpy(session_id2, hash, session_id2_len);
1742
1743 /* sign H */
1744 /* XXX hashlen depends on KEX */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001745 key_sign(hostkey, &signature, &slen, hash, 20);
Damien Miller874d77b2000-10-14 16:23:11 +11001746
1747 destroy_sensitive_data();
1748
1749 /* send server hostkey, DH pubkey 'f' and singed H */
1750 packet_start(SSH2_MSG_KEX_DH_GEX_REPLY);
1751 packet_put_string((char *)server_host_key_blob, sbloblen);
1752 packet_put_bignum2(dh->pub_key); /* f */
1753 packet_put_string((char *)signature, slen);
1754 packet_send();
1755 xfree(signature);
1756 xfree(server_host_key_blob);
1757 packet_write_wait();
1758
1759 kex_derive_keys(kex, hash, shared_secret);
Ben Lindstromb1985f72001-01-23 00:19:15 +00001760 BN_clear_free(shared_secret);
Damien Miller874d77b2000-10-14 16:23:11 +11001761 packet_set_kex(kex);
1762
1763 /* have keys, free DH */
1764 DH_free(dh);
Damien Millerefb4afe2000-04-12 18:45:05 +10001765}