blob: e94b5d11d75fa49989114e99362a432c50305651 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Millere4340be2000-09-16 13:29:08 +11005 * This program is the ssh daemon. It listens for connections from clients,
6 * and performs authentication, executes use commands or shell, and forwards
Damien Miller95def091999-11-25 00:26:21 +11007 * information to/from the application to the user client over an encrypted
Damien Millere4340be2000-09-16 13:29:08 +11008 * connection. This can also handle forwarding of X11, TCP/IP, and
9 * authentication agent connections.
Damien Millerefb4afe2000-04-12 18:45:05 +100010 *
Damien Millere4340be2000-09-16 13:29:08 +110011 * As far as I am concerned, the code I have written for this software
12 * can be used freely for any purpose. Any derived versions of this
13 * software must be clearly marked as such, and if the derived work is
14 * incompatible with the protocol description in the RFC file, it must be
15 * called by a name other than "ssh" or "Secure Shell".
16 *
17 * SSH2 implementation:
18 *
19 * Copyright (c) 2000 Markus Friedl. All rights reserved.
20 *
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
23 * are met:
24 * 1. Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the distribution.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110040 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041
42#include "includes.h"
Damien Millere4340be2000-09-16 13:29:08 +110043RCSID("$OpenBSD: sshd.c,v 1.127 2000/09/12 20:53:10 markus Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100044
45#include "xmalloc.h"
46#include "rsa.h"
47#include "ssh.h"
48#include "pty.h"
49#include "packet.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100050#include "cipher.h"
51#include "mpaux.h"
52#include "servconf.h"
53#include "uidswap.h"
54#include "compat.h"
Damien Millerb38eff82000-04-01 11:09:21 +100055#include "buffer.h"
56
Damien Millerefb4afe2000-04-12 18:45:05 +100057#include "ssh2.h"
Damien Miller5f056372000-04-16 12:31:48 +100058#include <openssl/dh.h>
59#include <openssl/bn.h>
60#include <openssl/hmac.h>
Damien Millerefb4afe2000-04-12 18:45:05 +100061#include "kex.h"
Damien Miller5f056372000-04-16 12:31:48 +100062#include <openssl/dsa.h>
63#include <openssl/rsa.h>
Damien Millerb38eff82000-04-01 11:09:21 +100064#include "key.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100065#include "dsa.h"
Damien Millerb38eff82000-04-01 11:09:21 +100066
67#include "auth.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100068#include "myproposal.h"
Damien Millereba71ba2000-04-29 23:57:08 +100069#include "authfile.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100070
71#ifdef LIBWRAP
72#include <tcpd.h>
73#include <syslog.h>
74int allow_severity = LOG_INFO;
75int deny_severity = LOG_WARNING;
76#endif /* LIBWRAP */
77
78#ifndef O_NOCTTY
79#define O_NOCTTY 0
80#endif
81
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082/* Server configuration options. */
83ServerOptions options;
84
85/* Name of the server configuration file. */
86char *config_file_name = SERVER_CONFIG_FILE;
87
Damien Miller4af51302000-04-16 11:18:38 +100088/*
Damien Miller34132e52000-01-14 15:45:46 +110089 * Flag indicating whether IPv4 or IPv6. This can be set on the command line.
90 * Default value is AF_UNSPEC means both IPv4 and IPv6.
91 */
Damien Miller7d80e342000-01-19 14:36:49 +110092#ifdef IPV4_DEFAULT
93int IPv4or6 = AF_INET;
94#else
Damien Miller34132e52000-01-14 15:45:46 +110095int IPv4or6 = AF_UNSPEC;
Damien Miller7d80e342000-01-19 14:36:49 +110096#endif
Damien Miller34132e52000-01-14 15:45:46 +110097
Damien Miller95def091999-11-25 00:26:21 +110098/*
99 * Debug mode flag. This can be set on the command line. If debug
100 * mode is enabled, extra debugging output will be sent to the system
101 * log, the daemon will not go to background, and will exit after processing
102 * the first connection.
103 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000104int debug_flag = 0;
105
106/* Flag indicating that the daemon is being started from inetd. */
107int inetd_flag = 0;
108
Damien Miller5ce662a1999-11-11 17:57:39 +1100109/* debug goes to stderr unless inetd_flag is set */
110int log_stderr = 0;
111
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000112/* argv[0] without path. */
113char *av0;
114
115/* Saved arguments to main(). */
116char **saved_argv;
Damien Millerb8c656e2000-06-28 15:22:41 +1000117int saved_argc;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000118
Damien Miller5428f641999-11-25 11:54:57 +1100119/*
Damien Miller34132e52000-01-14 15:45:46 +1100120 * The sockets that the server is listening; this is used in the SIGHUP
121 * signal handler.
Damien Miller5428f641999-11-25 11:54:57 +1100122 */
Damien Miller34132e52000-01-14 15:45:46 +1100123#define MAX_LISTEN_SOCKS 16
124int listen_socks[MAX_LISTEN_SOCKS];
125int num_listen_socks = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000126
Damien Miller5428f641999-11-25 11:54:57 +1100127/*
128 * the client's version string, passed by sshd2 in compat mode. if != NULL,
129 * sshd will skip the version-number exchange
130 */
Damien Miller95def091999-11-25 00:26:21 +1100131char *client_version_string = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000132char *server_version_string = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000133
Damien Miller5428f641999-11-25 11:54:57 +1100134/*
135 * Any really sensitive data in the application is contained in this
136 * structure. The idea is that this structure could be locked into memory so
137 * that the pages do not get written into swap. However, there are some
138 * problems. The private key contains BIGNUMs, and we do not (in principle)
139 * have access to the internals of them, and locking just the structure is
140 * not very useful. Currently, memory locking is not implemented.
141 */
Damien Miller95def091999-11-25 00:26:21 +1100142struct {
Damien Millereba71ba2000-04-29 23:57:08 +1000143 RSA *private_key; /* Private part of empheral server key. */
Damien Miller95def091999-11-25 00:26:21 +1100144 RSA *host_key; /* Private part of host key. */
Damien Millereba71ba2000-04-29 23:57:08 +1000145 Key *dsa_host_key; /* Private DSA host key. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000146} sensitive_data;
147
Damien Miller5428f641999-11-25 11:54:57 +1100148/*
149 * Flag indicating whether the current session key has been used. This flag
150 * is set whenever the key is used, and cleared when the key is regenerated.
151 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000152int key_used = 0;
153
154/* This is set to true when SIGHUP is received. */
155int received_sighup = 0;
156
157/* Public side of the server key. This value is regenerated regularly with
158 the private key. */
159RSA *public_key;
160
Damien Millerb38eff82000-04-01 11:09:21 +1000161/* session identifier, used by RSA-auth */
162unsigned char session_id[16];
163
Damien Millereba71ba2000-04-29 23:57:08 +1000164/* same for ssh2 */
165unsigned char *session_id2 = NULL;
166int session_id2_len = 0;
167
Damien Miller942da032000-08-18 13:59:06 +1000168/* record remote hostname or ip */
169unsigned int utmp_len = MAXHOSTNAMELEN;
170
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000171/* Prototypes for various functions defined later in this file. */
Damien Millerb38eff82000-04-01 11:09:21 +1000172void do_ssh1_kex();
Damien Millerefb4afe2000-04-12 18:45:05 +1000173void do_ssh2_kex();
Damien Miller98c7ad62000-03-09 21:27:49 +1100174
175/*
Damien Miller34132e52000-01-14 15:45:46 +1100176 * Close all listening sockets
177 */
178void
179close_listen_socks(void)
180{
181 int i;
182 for (i = 0; i < num_listen_socks; i++)
183 close(listen_socks[i]);
184 num_listen_socks = -1;
185}
186
187/*
Damien Miller95def091999-11-25 00:26:21 +1100188 * Signal handler for SIGHUP. Sshd execs itself when it receives SIGHUP;
189 * the effect is to reread the configuration file (and to regenerate
190 * the server key).
191 */
Damien Miller4af51302000-04-16 11:18:38 +1000192void
Damien Miller95def091999-11-25 00:26:21 +1100193sighup_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000194{
Damien Miller95def091999-11-25 00:26:21 +1100195 received_sighup = 1;
196 signal(SIGHUP, sighup_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000197}
198
Damien Miller95def091999-11-25 00:26:21 +1100199/*
200 * Called from the main program after receiving SIGHUP.
201 * Restarts the server.
202 */
Damien Miller4af51302000-04-16 11:18:38 +1000203void
Damien Miller95def091999-11-25 00:26:21 +1100204sighup_restart()
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000205{
Damien Miller95def091999-11-25 00:26:21 +1100206 log("Received SIGHUP; restarting.");
Damien Miller34132e52000-01-14 15:45:46 +1100207 close_listen_socks();
Damien Miller95def091999-11-25 00:26:21 +1100208 execv(saved_argv[0], saved_argv);
209 log("RESTART FAILED: av0='%s', error: %s.", av0, strerror(errno));
210 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000211}
212
Damien Miller95def091999-11-25 00:26:21 +1100213/*
214 * Generic signal handler for terminating signals in the master daemon.
215 * These close the listen socket; not closing it seems to cause "Address
216 * already in use" problems on some machines, which is inconvenient.
217 */
Damien Miller4af51302000-04-16 11:18:38 +1000218void
Damien Miller95def091999-11-25 00:26:21 +1100219sigterm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000220{
Damien Miller95def091999-11-25 00:26:21 +1100221 log("Received signal %d; terminating.", sig);
Damien Miller34132e52000-01-14 15:45:46 +1100222 close_listen_socks();
Damien Miller6f83b8e2000-05-02 09:23:45 +1000223 unlink(options.pid_file);
Damien Miller95def091999-11-25 00:26:21 +1100224 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000225}
226
Damien Miller95def091999-11-25 00:26:21 +1100227/*
228 * SIGCHLD handler. This is called whenever a child dies. This will then
229 * reap any zombies left by exited c.
230 */
Damien Miller4af51302000-04-16 11:18:38 +1000231void
Damien Miller95def091999-11-25 00:26:21 +1100232main_sigchld_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000233{
Damien Miller95def091999-11-25 00:26:21 +1100234 int save_errno = errno;
235 int status;
Damien Miller431f66b1999-11-21 18:31:57 +1100236
Damien Miller95def091999-11-25 00:26:21 +1100237 while (waitpid(-1, &status, WNOHANG) > 0)
238 ;
Damien Miller431f66b1999-11-21 18:31:57 +1100239
Damien Miller95def091999-11-25 00:26:21 +1100240 signal(SIGCHLD, main_sigchld_handler);
241 errno = save_errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000242}
243
Damien Miller95def091999-11-25 00:26:21 +1100244/*
245 * Signal handler for the alarm after the login grace period has expired.
246 */
Damien Miller4af51302000-04-16 11:18:38 +1000247void
Damien Miller95def091999-11-25 00:26:21 +1100248grace_alarm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000249{
Damien Miller95def091999-11-25 00:26:21 +1100250 /* Close the connection. */
251 packet_close();
252
253 /* Log error and exit. */
254 fatal("Timeout before authentication for %s.", get_remote_ipaddr());
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000255}
256
Damien Miller95def091999-11-25 00:26:21 +1100257/*
Damien Miller95def091999-11-25 00:26:21 +1100258 * Signal handler for the key regeneration alarm. Note that this
259 * alarm only occurs in the daemon waiting for connections, and it does not
260 * do anything with the private key or random state before forking.
261 * Thus there should be no concurrency control/asynchronous execution
262 * problems.
263 */
Damien Millereba71ba2000-04-29 23:57:08 +1000264/* XXX do we really want this work to be done in a signal handler ? -m */
Damien Miller4af51302000-04-16 11:18:38 +1000265void
Damien Miller95def091999-11-25 00:26:21 +1100266key_regeneration_alarm(int sig)
267{
268 int save_errno = errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000269
Damien Miller95def091999-11-25 00:26:21 +1100270 /* Check if we should generate a new key. */
271 if (key_used) {
272 /* This should really be done in the background. */
273 log("Generating new %d bit RSA key.", options.server_key_bits);
274
275 if (sensitive_data.private_key != NULL)
276 RSA_free(sensitive_data.private_key);
277 sensitive_data.private_key = RSA_new();
278
279 if (public_key != NULL)
280 RSA_free(public_key);
281 public_key = RSA_new();
282
283 rsa_generate_key(sensitive_data.private_key, public_key,
284 options.server_key_bits);
285 arc4random_stir();
286 key_used = 0;
287 log("RSA key generation complete.");
288 }
289 /* Reschedule the alarm. */
290 signal(SIGALRM, key_regeneration_alarm);
291 alarm(options.key_regeneration_time);
292 errno = save_errno;
293}
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
327 /* Read other side\'s version identification. */
328 for (i = 0; i < sizeof(buf) - 1; i++) {
Damien Millerbf7f4662000-06-23 10:16:38 +1000329 if (atomicio(read, sock_in, &buf[i], 1) != 1) {
Damien Millerb38eff82000-04-01 11:09:21 +1000330 log("Did not receive ident string from %s.", get_remote_ipaddr());
331 fatal_cleanup();
332 }
333 if (buf[i] == '\r') {
334 buf[i] = '\n';
335 buf[i + 1] = 0;
336 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000337 }
338 if (buf[i] == '\n') {
339 /* buf[i] == '\n' */
340 buf[i + 1] = 0;
341 break;
342 }
343 }
344 buf[sizeof(buf) - 1] = 0;
345 client_version_string = xstrdup(buf);
346 }
347
348 /*
349 * Check that the versions match. In future this might accept
350 * several versions and set appropriate flags to handle them.
351 */
352 if (sscanf(client_version_string, "SSH-%d.%d-%[^\n]\n",
353 &remote_major, &remote_minor, remote_version) != 3) {
Damien Miller4af51302000-04-16 11:18:38 +1000354 s = "Protocol mismatch.\n";
Damien Millerb38eff82000-04-01 11:09:21 +1000355 (void) atomicio(write, sock_out, s, strlen(s));
356 close(sock_in);
357 close(sock_out);
358 log("Bad protocol version identification '%.100s' from %s",
359 client_version_string, get_remote_ipaddr());
360 fatal_cleanup();
361 }
362 debug("Client protocol version %d.%d; client software version %.100s",
363 remote_major, remote_minor, remote_version);
364
Damien Millerefb4afe2000-04-12 18:45:05 +1000365 compat_datafellows(remote_version);
366
Damien Miller78928792000-04-12 20:17:38 +1000367 mismatch = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000368 switch(remote_major) {
369 case 1:
Damien Millereba71ba2000-04-29 23:57:08 +1000370 if (remote_minor == 99) {
371 if (options.protocol & SSH_PROTO_2)
372 enable_compat20();
373 else
374 mismatch = 1;
375 break;
376 }
Damien Miller78928792000-04-12 20:17:38 +1000377 if (!(options.protocol & SSH_PROTO_1)) {
378 mismatch = 1;
379 break;
380 }
Damien Millerb38eff82000-04-01 11:09:21 +1000381 if (remote_minor < 3) {
Damien Miller37023962000-07-11 17:31:38 +1000382 packet_disconnect("Your ssh version is too old and "
Damien Millerb38eff82000-04-01 11:09:21 +1000383 "is no longer supported. Please install a newer version.");
384 } else if (remote_minor == 3) {
385 /* note that this disables agent-forwarding */
386 enable_compat13();
387 }
Damien Miller78928792000-04-12 20:17:38 +1000388 break;
Damien Millerefb4afe2000-04-12 18:45:05 +1000389 case 2:
Damien Miller78928792000-04-12 20:17:38 +1000390 if (options.protocol & SSH_PROTO_2) {
Damien Millerefb4afe2000-04-12 18:45:05 +1000391 enable_compat20();
392 break;
393 }
394 /* FALLTHROUGH */
Damien Miller4af51302000-04-16 11:18:38 +1000395 default:
Damien Miller78928792000-04-12 20:17:38 +1000396 mismatch = 1;
Damien Millerb38eff82000-04-01 11:09:21 +1000397 break;
398 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000399 chop(server_version_string);
400 chop(client_version_string);
Damien Miller78928792000-04-12 20:17:38 +1000401 debug("Local version string %.200s", server_version_string);
402
403 if (mismatch) {
404 s = "Protocol major versions differ.\n";
405 (void) atomicio(write, sock_out, s, strlen(s));
406 close(sock_in);
407 close(sock_out);
408 log("Protocol major versions differ for %s: %.200s vs. %.200s",
409 get_remote_ipaddr(),
410 server_version_string, client_version_string);
411 fatal_cleanup();
412 }
Damien Millereba71ba2000-04-29 23:57:08 +1000413 if (compat20)
414 packet_set_ssh2_format();
415}
416
417
418void
419destroy_sensitive_data(void)
420{
421 /* Destroy the private and public keys. They will no longer be needed. */
Damien Millerc4be7ce2000-05-17 23:02:03 +1000422 if (public_key)
423 RSA_free(public_key);
424 if (sensitive_data.private_key)
425 RSA_free(sensitive_data.private_key);
426 if (sensitive_data.host_key)
427 RSA_free(sensitive_data.host_key);
Damien Millereba71ba2000-04-29 23:57:08 +1000428 if (sensitive_data.dsa_host_key != NULL)
429 key_free(sensitive_data.dsa_host_key);
Damien Millerb38eff82000-04-01 11:09:21 +1000430}
431
Damien Miller942da032000-08-18 13:59:06 +1000432/*
433 * returns 1 if connection should be dropped, 0 otherwise.
434 * dropping starts at connection #max_startups_begin with a probability
435 * of (max_startups_rate/100). the probability increases linearly until
436 * all connections are dropped for startups > max_startups
437 */
438int
439drop_connection(int startups)
440{
441 double p, r;
442
443 if (startups < options.max_startups_begin)
444 return 0;
445 if (startups >= options.max_startups)
446 return 1;
447 if (options.max_startups_rate == 100)
448 return 1;
449
450 p = 100 - options.max_startups_rate;
451 p *= startups - options.max_startups_begin;
452 p /= (double) (options.max_startups - options.max_startups_begin);
453 p += options.max_startups_rate;
454 p /= 100.0;
455 r = arc4random() / (double) UINT_MAX;
456
457 debug("drop_connection: p %g, r %g", p, r);
458 return (r < p) ? 1 : 0;
459}
460
Damien Miller37023962000-07-11 17:31:38 +1000461int *startup_pipes = NULL; /* options.max_startup sized array of fd ints */
462int startup_pipe; /* in child */
463
Damien Miller95def091999-11-25 00:26:21 +1100464/*
465 * Main program for the daemon.
466 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000467int
468main(int ac, char **av)
469{
Damien Miller95def091999-11-25 00:26:21 +1100470 extern char *optarg;
471 extern int optind;
Damien Miller37023962000-07-11 17:31:38 +1000472 int opt, sock_in = 0, sock_out = 0, newsock, j, i, fdsetsz, on = 1;
Damien Miller166fca82000-04-20 07:42:21 +1000473 pid_t pid;
Damien Miller34132e52000-01-14 15:45:46 +1100474 socklen_t fromlen;
Damien Millereba71ba2000-04-29 23:57:08 +1000475 int silent = 0;
Damien Miller34132e52000-01-14 15:45:46 +1100476 fd_set *fdset;
477 struct sockaddr_storage from;
Damien Miller95def091999-11-25 00:26:21 +1100478 const char *remote_ip;
479 int remote_port;
Damien Miller95def091999-11-25 00:26:21 +1100480 FILE *f;
481 struct linger linger;
Damien Miller34132e52000-01-14 15:45:46 +1100482 struct addrinfo *ai;
483 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
484 int listen_sock, maxfd;
Damien Miller37023962000-07-11 17:31:38 +1000485 int startup_p[2];
486 int startups = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000487
Damien Millerf9b625c2000-07-09 22:42:32 +1000488 init_rng();
489
Damien Miller95def091999-11-25 00:26:21 +1100490 /* Save argv[0]. */
Damien Millerb8c656e2000-06-28 15:22:41 +1000491 saved_argc = ac;
Damien Miller95def091999-11-25 00:26:21 +1100492 saved_argv = av;
493 if (strchr(av[0], '/'))
494 av0 = strrchr(av[0], '/') + 1;
495 else
496 av0 = av[0];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000497
Damien Miller95def091999-11-25 00:26:21 +1100498 /* Initialize configuration options to their default values. */
499 initialize_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000500
Damien Miller95def091999-11-25 00:26:21 +1100501 /* Parse command-line arguments. */
Damien Miller942da032000-08-18 13:59:06 +1000502 while ((opt = getopt(ac, av, "f:p:b:k:h:g:V:u:diqQ46")) != EOF) {
Damien Miller95def091999-11-25 00:26:21 +1100503 switch (opt) {
Damien Miller34132e52000-01-14 15:45:46 +1100504 case '4':
505 IPv4or6 = AF_INET;
506 break;
507 case '6':
508 IPv4or6 = AF_INET6;
509 break;
Damien Miller95def091999-11-25 00:26:21 +1100510 case 'f':
511 config_file_name = optarg;
512 break;
513 case 'd':
Damien Millere4340be2000-09-16 13:29:08 +1100514 if (0 == debug_flag) {
515 debug_flag = 1;
516 options.log_level = SYSLOG_LEVEL_DEBUG1;
517 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
518 options.log_level++;
519 } else {
520 fprintf(stderr, "Too high debugging level.\n");
521 exit(1);
522 }
Damien Miller95def091999-11-25 00:26:21 +1100523 break;
524 case 'i':
525 inetd_flag = 1;
526 break;
527 case 'Q':
Damien Millereba71ba2000-04-29 23:57:08 +1000528 silent = 1;
Damien Miller95def091999-11-25 00:26:21 +1100529 break;
530 case 'q':
531 options.log_level = SYSLOG_LEVEL_QUIET;
532 break;
533 case 'b':
534 options.server_key_bits = atoi(optarg);
535 break;
536 case 'p':
Damien Miller34132e52000-01-14 15:45:46 +1100537 options.ports_from_cmdline = 1;
Damien Millere4340be2000-09-16 13:29:08 +1100538 if (options.num_ports >= MAX_PORTS) {
539 fprintf(stderr, "too many ports.\n");
540 exit(1);
541 }
Damien Miller34132e52000-01-14 15:45:46 +1100542 options.ports[options.num_ports++] = atoi(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100543 break;
544 case 'g':
545 options.login_grace_time = atoi(optarg);
546 break;
547 case 'k':
548 options.key_regeneration_time = atoi(optarg);
549 break;
550 case 'h':
551 options.host_key_file = optarg;
552 break;
553 case 'V':
554 client_version_string = optarg;
555 /* only makes sense with inetd_flag, i.e. no listen() */
556 inetd_flag = 1;
557 break;
Damien Miller942da032000-08-18 13:59:06 +1000558 case 'u':
559 utmp_len = atoi(optarg);
560 break;
Damien Miller95def091999-11-25 00:26:21 +1100561 case '?':
562 default:
563 fprintf(stderr, "sshd version %s\n", SSH_VERSION);
564 fprintf(stderr, "Usage: %s [options]\n", av0);
565 fprintf(stderr, "Options:\n");
Damien Miller5428f641999-11-25 11:54:57 +1100566 fprintf(stderr, " -f file Configuration file (default %s)\n", SERVER_CONFIG_FILE);
Damien Millere4340be2000-09-16 13:29:08 +1100567 fprintf(stderr, " -d Debugging mode (multiple -d means more debugging)\n");
Damien Miller95def091999-11-25 00:26:21 +1100568 fprintf(stderr, " -i Started from inetd\n");
569 fprintf(stderr, " -q Quiet (no logging)\n");
570 fprintf(stderr, " -p port Listen on the specified port (default: 22)\n");
571 fprintf(stderr, " -k seconds Regenerate server key every this many seconds (default: 3600)\n");
572 fprintf(stderr, " -g seconds Grace period for authentication (default: 300)\n");
573 fprintf(stderr, " -b bits Size of server RSA key (default: 768 bits)\n");
574 fprintf(stderr, " -h file File from which to read host key (default: %s)\n",
Damien Miller34132e52000-01-14 15:45:46 +1100575 HOST_KEY_FILE);
Damien Miller942da032000-08-18 13:59:06 +1000576 fprintf(stderr, " -u len Maximum hostname length for utmp recording\n");
Damien Miller34132e52000-01-14 15:45:46 +1100577 fprintf(stderr, " -4 Use IPv4 only\n");
578 fprintf(stderr, " -6 Use IPv6 only\n");
Damien Miller95def091999-11-25 00:26:21 +1100579 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000580 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000581 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000582
Damien Miller34132e52000-01-14 15:45:46 +1100583 /*
584 * Force logging to stderr until we have loaded the private host
585 * key (unless started from inetd)
586 */
587 log_init(av0,
588 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
589 options.log_facility == -1 ? SYSLOG_FACILITY_AUTH : options.log_facility,
Damien Millereba71ba2000-04-29 23:57:08 +1000590 !silent && !inetd_flag);
Damien Miller34132e52000-01-14 15:45:46 +1100591
Damien Miller95def091999-11-25 00:26:21 +1100592 /* Read server configuration options from the configuration file. */
593 read_server_config(&options, config_file_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000594
Damien Miller95def091999-11-25 00:26:21 +1100595 /* Fill in default values for those options not explicitly set. */
596 fill_default_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000597
Damien Miller95def091999-11-25 00:26:21 +1100598 /* Check that there are no remaining arguments. */
599 if (optind < ac) {
600 fprintf(stderr, "Extra argument %s.\n", av[optind]);
601 exit(1);
602 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000603
Damien Miller95def091999-11-25 00:26:21 +1100604 debug("sshd version %.100s", SSH_VERSION);
Damien Miller2ccf6611999-11-15 15:25:10 +1100605
Damien Millereba71ba2000-04-29 23:57:08 +1000606 sensitive_data.dsa_host_key = NULL;
607 sensitive_data.host_key = NULL;
608
609 /* check if RSA support exists */
610 if ((options.protocol & SSH_PROTO_1) &&
611 rsa_alive() == 0) {
612 log("no RSA support in libssl and libcrypto. See ssl(8)");
613 log("Disabling protocol version 1");
614 options.protocol &= ~SSH_PROTO_1;
615 }
616 /* Load the RSA/DSA host key. It must have empty passphrase. */
617 if (options.protocol & SSH_PROTO_1) {
618 Key k;
619 sensitive_data.host_key = RSA_new();
620 k.type = KEY_RSA;
621 k.rsa = sensitive_data.host_key;
622 errno = 0;
623 if (!load_private_key(options.host_key_file, "", &k, NULL)) {
624 error("Could not load host key: %.200s: %.100s",
625 options.host_key_file, strerror(errno));
626 log("Disabling protocol version 1");
627 options.protocol &= ~SSH_PROTO_1;
628 }
629 k.rsa = NULL;
630 }
631 if (options.protocol & SSH_PROTO_2) {
632 sensitive_data.dsa_host_key = key_new(KEY_DSA);
Damien Millere247cc42000-05-07 12:03:14 +1000633 if (!load_private_key(options.host_dsa_key_file, "", sensitive_data.dsa_host_key, NULL)) {
634
635 error("Could not load DSA host key: %.200s", options.host_dsa_key_file);
Damien Millereba71ba2000-04-29 23:57:08 +1000636 log("Disabling protocol version 2");
637 options.protocol &= ~SSH_PROTO_2;
638 }
639 }
640 if (! options.protocol & (SSH_PROTO_1|SSH_PROTO_2)) {
641 if (silent == 0)
642 fprintf(stderr, "sshd: no hostkeys available -- exiting.\n");
643 log("sshd: no hostkeys available -- exiting.\n");
Damien Miller95def091999-11-25 00:26:21 +1100644 exit(1);
645 }
Damien Miller95def091999-11-25 00:26:21 +1100646
Damien Millereba71ba2000-04-29 23:57:08 +1000647 /* Check certain values for sanity. */
648 if (options.protocol & SSH_PROTO_1) {
649 if (options.server_key_bits < 512 ||
650 options.server_key_bits > 32768) {
651 fprintf(stderr, "Bad server key size.\n");
652 exit(1);
653 }
654 /*
655 * Check that server and host key lengths differ sufficiently. This
656 * is necessary to make double encryption work with rsaref. Oh, I
657 * hate software patents. I dont know if this can go? Niels
658 */
659 if (options.server_key_bits >
660 BN_num_bits(sensitive_data.host_key->n) - SSH_KEY_BITS_RESERVED &&
661 options.server_key_bits <
662 BN_num_bits(sensitive_data.host_key->n) + SSH_KEY_BITS_RESERVED) {
663 options.server_key_bits =
664 BN_num_bits(sensitive_data.host_key->n) + SSH_KEY_BITS_RESERVED;
665 debug("Forcing server key to %d bits to make it differ from host key.",
666 options.server_key_bits);
667 }
668 }
669
670 /* Initialize the log (it is reinitialized below in case we forked). */
Damien Miller95def091999-11-25 00:26:21 +1100671 if (debug_flag && !inetd_flag)
672 log_stderr = 1;
673 log_init(av0, options.log_level, options.log_facility, log_stderr);
674
Damien Millereba71ba2000-04-29 23:57:08 +1000675 /*
676 * If not in debugging mode, and not started from inetd, disconnect
677 * from the controlling terminal, and fork. The original process
678 * exits.
679 */
Damien Miller95def091999-11-25 00:26:21 +1100680 if (!debug_flag && !inetd_flag) {
681#ifdef TIOCNOTTY
682 int fd;
683#endif /* TIOCNOTTY */
684 if (daemon(0, 0) < 0)
685 fatal("daemon() failed: %.200s", strerror(errno));
686
687 /* Disconnect from the controlling tty. */
688#ifdef TIOCNOTTY
689 fd = open("/dev/tty", O_RDWR | O_NOCTTY);
690 if (fd >= 0) {
691 (void) ioctl(fd, TIOCNOTTY, NULL);
692 close(fd);
693 }
694#endif /* TIOCNOTTY */
695 }
696 /* Reinitialize the log (because of the fork above). */
697 log_init(av0, options.log_level, options.log_facility, log_stderr);
698
Damien Miller95def091999-11-25 00:26:21 +1100699 /* Do not display messages to stdout in RSA code. */
700 rsa_set_verbose(0);
701
702 /* Initialize the random number generator. */
703 arc4random_stir();
704
705 /* Chdir to the root directory so that the current disk can be
706 unmounted if desired. */
707 chdir("/");
708
Damien Miller95def091999-11-25 00:26:21 +1100709 /* Start listening for a socket, unless started from inetd. */
710 if (inetd_flag) {
711 int s1, s2;
712 s1 = dup(0); /* Make sure descriptors 0, 1, and 2 are in use. */
713 s2 = dup(s1);
714 sock_in = dup(0);
715 sock_out = dup(1);
Damien Miller994cf142000-07-21 10:19:44 +1000716 startup_pipe = -1;
Damien Millereba71ba2000-04-29 23:57:08 +1000717 /*
718 * We intentionally do not close the descriptors 0, 1, and 2
719 * as our code for setting the descriptors won\'t work if
720 * ttyfd happens to be one of those.
721 */
Damien Miller95def091999-11-25 00:26:21 +1100722 debug("inetd sockets after dupping: %d, %d", sock_in, sock_out);
723
Damien Millereba71ba2000-04-29 23:57:08 +1000724 if (options.protocol & SSH_PROTO_1) {
725 public_key = RSA_new();
726 sensitive_data.private_key = RSA_new();
727 log("Generating %d bit RSA key.", options.server_key_bits);
728 rsa_generate_key(sensitive_data.private_key, public_key,
729 options.server_key_bits);
730 arc4random_stir();
731 log("RSA key generation complete.");
732 }
Damien Miller95def091999-11-25 00:26:21 +1100733 } else {
Damien Miller34132e52000-01-14 15:45:46 +1100734 for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
735 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
736 continue;
737 if (num_listen_socks >= MAX_LISTEN_SOCKS)
738 fatal("Too many listen sockets. "
739 "Enlarge MAX_LISTEN_SOCKS");
740 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
741 ntop, sizeof(ntop), strport, sizeof(strport),
742 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
743 error("getnameinfo failed");
744 continue;
745 }
746 /* Create socket for listening. */
747 listen_sock = socket(ai->ai_family, SOCK_STREAM, 0);
748 if (listen_sock < 0) {
749 /* kernel may not support ipv6 */
750 verbose("socket: %.100s", strerror(errno));
751 continue;
752 }
753 if (fcntl(listen_sock, F_SETFL, O_NONBLOCK) < 0) {
754 error("listen_sock O_NONBLOCK: %s", strerror(errno));
755 close(listen_sock);
756 continue;
757 }
758 /*
759 * Set socket options. We try to make the port
760 * reusable and have it close as fast as possible
761 * without waiting in unnecessary wait states on
762 * close.
763 */
764 setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
765 (void *) &on, sizeof(on));
766 linger.l_onoff = 1;
767 linger.l_linger = 5;
768 setsockopt(listen_sock, SOL_SOCKET, SO_LINGER,
769 (void *) &linger, sizeof(linger));
Damien Miller95def091999-11-25 00:26:21 +1100770
Damien Miller34132e52000-01-14 15:45:46 +1100771 debug("Bind to port %s on %s.", strport, ntop);
Damien Miller95def091999-11-25 00:26:21 +1100772
Damien Miller34132e52000-01-14 15:45:46 +1100773 /* Bind the socket to the desired port. */
Damien Miller3c7eeb22000-03-03 22:35:33 +1100774 if ((bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) &&
775 (!ai->ai_next)) {
Damien Miller34132e52000-01-14 15:45:46 +1100776 error("Bind to port %s on %s failed: %.200s.",
777 strport, ntop, strerror(errno));
778 close(listen_sock);
779 continue;
780 }
781 listen_socks[num_listen_socks] = listen_sock;
782 num_listen_socks++;
Damien Miller95def091999-11-25 00:26:21 +1100783
Damien Miller34132e52000-01-14 15:45:46 +1100784 /* Start listening on the port. */
785 log("Server listening on %s port %s.", ntop, strport);
786 if (listen(listen_sock, 5) < 0)
787 fatal("listen: %.100s", strerror(errno));
788
Damien Miller95def091999-11-25 00:26:21 +1100789 }
Damien Miller34132e52000-01-14 15:45:46 +1100790 freeaddrinfo(options.listen_addrs);
791
792 if (!num_listen_socks)
793 fatal("Cannot bind any address.");
794
Damien Miller95def091999-11-25 00:26:21 +1100795 if (!debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +1100796 /*
797 * Record our pid in /etc/sshd_pid to make it easier
798 * to kill the correct sshd. We don\'t want to do
799 * this before the bind above because the bind will
800 * fail if there already is a daemon, and this will
801 * overwrite any old pid in the file.
802 */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100803 f = fopen(options.pid_file, "wb");
Damien Miller95def091999-11-25 00:26:21 +1100804 if (f) {
805 fprintf(f, "%u\n", (unsigned int) getpid());
806 fclose(f);
807 }
808 }
Damien Millereba71ba2000-04-29 23:57:08 +1000809 if (options.protocol & SSH_PROTO_1) {
810 public_key = RSA_new();
811 sensitive_data.private_key = RSA_new();
Damien Miller95def091999-11-25 00:26:21 +1100812
Damien Millereba71ba2000-04-29 23:57:08 +1000813 log("Generating %d bit RSA key.", options.server_key_bits);
814 rsa_generate_key(sensitive_data.private_key, public_key,
815 options.server_key_bits);
816 arc4random_stir();
817 log("RSA key generation complete.");
Damien Miller95def091999-11-25 00:26:21 +1100818
Damien Millereba71ba2000-04-29 23:57:08 +1000819 /* Schedule server key regeneration alarm. */
820 signal(SIGALRM, key_regeneration_alarm);
821 alarm(options.key_regeneration_time);
822 }
Damien Miller95def091999-11-25 00:26:21 +1100823
824 /* Arrange to restart on SIGHUP. The handler needs listen_sock. */
825 signal(SIGHUP, sighup_handler);
Damien Miller37023962000-07-11 17:31:38 +1000826
Damien Miller95def091999-11-25 00:26:21 +1100827 signal(SIGTERM, sigterm_handler);
828 signal(SIGQUIT, sigterm_handler);
829
830 /* Arrange SIGCHLD to be caught. */
831 signal(SIGCHLD, main_sigchld_handler);
832
Damien Miller34132e52000-01-14 15:45:46 +1100833 /* setup fd set for listen */
Damien Miller37023962000-07-11 17:31:38 +1000834 fdset = NULL;
Damien Miller34132e52000-01-14 15:45:46 +1100835 maxfd = 0;
836 for (i = 0; i < num_listen_socks; i++)
837 if (listen_socks[i] > maxfd)
838 maxfd = listen_socks[i];
Damien Miller37023962000-07-11 17:31:38 +1000839 /* pipes connected to unauthenticated childs */
840 startup_pipes = xmalloc(options.max_startups * sizeof(int));
841 for (i = 0; i < options.max_startups; i++)
842 startup_pipes[i] = -1;
Damien Miller34132e52000-01-14 15:45:46 +1100843
Damien Miller5428f641999-11-25 11:54:57 +1100844 /*
845 * Stay listening for connections until the system crashes or
846 * the daemon is killed with a signal.
847 */
Damien Miller95def091999-11-25 00:26:21 +1100848 for (;;) {
849 if (received_sighup)
850 sighup_restart();
Damien Miller37023962000-07-11 17:31:38 +1000851 if (fdset != NULL)
852 xfree(fdset);
853 fdsetsz = howmany(maxfd, NFDBITS) * sizeof(fd_mask);
854 fdset = (fd_set *)xmalloc(fdsetsz);
Damien Miller34132e52000-01-14 15:45:46 +1100855 memset(fdset, 0, fdsetsz);
Damien Miller37023962000-07-11 17:31:38 +1000856
Damien Miller34132e52000-01-14 15:45:46 +1100857 for (i = 0; i < num_listen_socks; i++)
858 FD_SET(listen_socks[i], fdset);
Damien Miller37023962000-07-11 17:31:38 +1000859 for (i = 0; i < options.max_startups; i++)
860 if (startup_pipes[i] != -1)
861 FD_SET(startup_pipes[i], fdset);
862
863 /* Wait in select until there is a connection. */
Damien Miller34132e52000-01-14 15:45:46 +1100864 if (select(maxfd + 1, fdset, NULL, NULL, NULL) < 0) {
865 if (errno != EINTR)
866 error("select: %.100s", strerror(errno));
Damien Miller50945fa1999-12-09 10:31:37 +1100867 continue;
Damien Miller34132e52000-01-14 15:45:46 +1100868 }
Damien Miller37023962000-07-11 17:31:38 +1000869 for (i = 0; i < options.max_startups; i++)
870 if (startup_pipes[i] != -1 &&
871 FD_ISSET(startup_pipes[i], fdset)) {
872 /*
873 * the read end of the pipe is ready
874 * if the child has closed the pipe
875 * after successfull authentication
876 * or if the child has died
877 */
878 close(startup_pipes[i]);
879 startup_pipes[i] = -1;
880 startups--;
881 }
Damien Miller34132e52000-01-14 15:45:46 +1100882 for (i = 0; i < num_listen_socks; i++) {
883 if (!FD_ISSET(listen_socks[i], fdset))
Damien Miller95def091999-11-25 00:26:21 +1100884 continue;
Damien Miller37023962000-07-11 17:31:38 +1000885 fromlen = sizeof(from);
886 newsock = accept(listen_socks[i], (struct sockaddr *)&from,
887 &fromlen);
888 if (newsock < 0) {
889 if (errno != EINTR && errno != EWOULDBLOCK)
890 error("accept: %.100s", strerror(errno));
891 continue;
892 }
893 if (fcntl(newsock, F_SETFL, 0) < 0) {
894 error("newsock del O_NONBLOCK: %s", strerror(errno));
895 continue;
896 }
Damien Miller942da032000-08-18 13:59:06 +1000897 if (drop_connection(startups) == 1) {
898 debug("drop connection #%d", startups);
Damien Miller37023962000-07-11 17:31:38 +1000899 close(newsock);
900 continue;
901 }
902 if (pipe(startup_p) == -1) {
903 close(newsock);
904 continue;
905 }
906
907 for (j = 0; j < options.max_startups; j++)
908 if (startup_pipes[j] == -1) {
909 startup_pipes[j] = startup_p[0];
910 if (maxfd < startup_p[0])
911 maxfd = startup_p[0];
912 startups++;
913 break;
914 }
915
Damien Miller5428f641999-11-25 11:54:57 +1100916 /*
Damien Miller37023962000-07-11 17:31:38 +1000917 * Got connection. Fork a child to handle it, unless
918 * we are in debugging mode.
Damien Miller5428f641999-11-25 11:54:57 +1100919 */
Damien Miller37023962000-07-11 17:31:38 +1000920 if (debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +1100921 /*
Damien Miller37023962000-07-11 17:31:38 +1000922 * In debugging mode. Close the listening
923 * socket, and start processing the
924 * connection without forking.
Damien Miller5428f641999-11-25 11:54:57 +1100925 */
Damien Miller37023962000-07-11 17:31:38 +1000926 debug("Server will not fork when running in debugging mode.");
Damien Miller34132e52000-01-14 15:45:46 +1100927 close_listen_socks();
Damien Miller95def091999-11-25 00:26:21 +1100928 sock_in = newsock;
929 sock_out = newsock;
Damien Miller4d97ba22000-07-11 18:15:50 +1000930 startup_pipe = -1;
Damien Miller182ee6e2000-07-12 09:45:27 +1000931 pid = getpid();
Damien Miller95def091999-11-25 00:26:21 +1100932 break;
Damien Miller37023962000-07-11 17:31:38 +1000933 } else {
934 /*
935 * Normal production daemon. Fork, and have
936 * the child process the connection. The
937 * parent continues listening.
938 */
939 if ((pid = fork()) == 0) {
940 /*
941 * Child. Close the listening and max_startup
942 * sockets. Start using the accepted socket.
943 * Reinitialize logging (since our pid has
944 * changed). We break out of the loop to handle
945 * the connection.
946 */
947 startup_pipe = startup_p[1];
948 for (j = 0; j < options.max_startups; j++)
949 if (startup_pipes[j] != -1)
950 close(startup_pipes[j]);
951 close_listen_socks();
952 sock_in = newsock;
953 sock_out = newsock;
954 log_init(av0, options.log_level, options.log_facility, log_stderr);
955 break;
956 }
Damien Miller95def091999-11-25 00:26:21 +1100957 }
Damien Miller37023962000-07-11 17:31:38 +1000958
959 /* Parent. Stay in the loop. */
960 if (pid < 0)
961 error("fork: %.100s", strerror(errno));
962 else
963 debug("Forked child %d.", pid);
964
965 close(startup_p[1]);
966
967 /* Mark that the key has been used (it was "given" to the child). */
968 key_used = 1;
969
970 arc4random_stir();
971
972 /* Close the new socket (the child is now taking care of it). */
973 close(newsock);
Damien Miller95def091999-11-25 00:26:21 +1100974 }
Damien Miller34132e52000-01-14 15:45:46 +1100975 /* child process check (or debug mode) */
976 if (num_listen_socks < 0)
977 break;
Damien Miller95def091999-11-25 00:26:21 +1100978 }
979 }
980
981 /* This is the child processing a new connection. */
982
Damien Miller5428f641999-11-25 11:54:57 +1100983 /*
984 * Disable the key regeneration alarm. We will not regenerate the
985 * key since we are no longer in a position to give it to anyone. We
986 * will not restart on SIGHUP since it no longer makes sense.
987 */
Damien Miller95def091999-11-25 00:26:21 +1100988 alarm(0);
989 signal(SIGALRM, SIG_DFL);
990 signal(SIGHUP, SIG_DFL);
991 signal(SIGTERM, SIG_DFL);
992 signal(SIGQUIT, SIG_DFL);
993 signal(SIGCHLD, SIG_DFL);
Damien Miller4e0f5e12000-08-29 11:05:50 +1100994 signal(SIGINT, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +1100995
Damien Miller5428f641999-11-25 11:54:57 +1100996 /*
997 * Set socket options for the connection. We want the socket to
998 * close as fast as possible without waiting for anything. If the
999 * connection is not a socket, these will do nothing.
1000 */
1001 /* setsockopt(sock_in, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on)); */
Damien Miller95def091999-11-25 00:26:21 +11001002 linger.l_onoff = 1;
1003 linger.l_linger = 5;
1004 setsockopt(sock_in, SOL_SOCKET, SO_LINGER, (void *) &linger, sizeof(linger));
1005
Damien Miller5428f641999-11-25 11:54:57 +11001006 /*
1007 * Register our connection. This turns encryption off because we do
1008 * not have a key.
1009 */
Damien Miller95def091999-11-25 00:26:21 +11001010 packet_set_connection(sock_in, sock_out);
1011
1012 remote_port = get_remote_port();
1013 remote_ip = get_remote_ipaddr();
1014
1015 /* Check whether logins are denied from this host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001016#ifdef LIBWRAP
Damien Miller34132e52000-01-14 15:45:46 +11001017 /* XXX LIBWRAP noes not know about IPv6 */
Damien Miller95def091999-11-25 00:26:21 +11001018 {
1019 struct request_info req;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001020
Damien Miller95def091999-11-25 00:26:21 +11001021 request_init(&req, RQ_DAEMON, av0, RQ_FILE, sock_in, NULL);
1022 fromhost(&req);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001023
Damien Miller95def091999-11-25 00:26:21 +11001024 if (!hosts_access(&req)) {
1025 close(sock_in);
1026 close(sock_out);
1027 refuse(&req);
1028 }
Damien Miller34132e52000-01-14 15:45:46 +11001029/*XXX IPv6 verbose("Connection from %.500s port %d", eval_client(&req), remote_port); */
Damien Miller95def091999-11-25 00:26:21 +11001030 }
Damien Miller34132e52000-01-14 15:45:46 +11001031#endif /* LIBWRAP */
Damien Miller95def091999-11-25 00:26:21 +11001032 /* Log the connection. */
1033 verbose("Connection from %.500s port %d", remote_ip, remote_port);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001034
Damien Miller5428f641999-11-25 11:54:57 +11001035 /*
1036 * We don\'t want to listen forever unless the other side
1037 * successfully authenticates itself. So we set up an alarm which is
1038 * cleared after successful authentication. A limit of zero
1039 * indicates no limit. Note that we don\'t set the alarm in debugging
1040 * mode; it is just annoying to have the server exit just when you
1041 * are about to discover the bug.
1042 */
Damien Miller95def091999-11-25 00:26:21 +11001043 signal(SIGALRM, grace_alarm_handler);
1044 if (!debug_flag)
1045 alarm(options.login_grace_time);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001046
Damien Millerb38eff82000-04-01 11:09:21 +10001047 sshd_exchange_identification(sock_in, sock_out);
Damien Miller5428f641999-11-25 11:54:57 +11001048 /*
1049 * Check that the connection comes from a privileged port. Rhosts-
1050 * and Rhosts-RSA-Authentication only make sense from priviledged
1051 * programs. Of course, if the intruder has root access on his local
1052 * machine, he can connect from any port. So do not use these
1053 * authentication methods from machines that you do not trust.
1054 */
Damien Miller95def091999-11-25 00:26:21 +11001055 if (remote_port >= IPPORT_RESERVED ||
1056 remote_port < IPPORT_RESERVED / 2) {
1057 options.rhosts_authentication = 0;
1058 options.rhosts_rsa_authentication = 0;
1059 }
Damien Miller34132e52000-01-14 15:45:46 +11001060#ifdef KRB4
1061 if (!packet_connection_is_ipv4() &&
1062 options.kerberos_authentication) {
1063 debug("Kerberos Authentication disabled, only available for IPv4.");
1064 options.kerberos_authentication = 0;
1065 }
1066#endif /* KRB4 */
1067
Damien Miller95def091999-11-25 00:26:21 +11001068 packet_set_nonblocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001069
Damien Miller396691a2000-01-20 22:44:08 +11001070 /* perform the key exchange */
Damien Miller396691a2000-01-20 22:44:08 +11001071 /* authenticate user and start session */
Damien Millerefb4afe2000-04-12 18:45:05 +10001072 if (compat20) {
1073 do_ssh2_kex();
1074 do_authentication2();
1075 } else {
1076 do_ssh1_kex();
1077 do_authentication();
1078 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001079
1080#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +11001081 /* Cleanup user's ticket cache file. */
1082 if (options.kerberos_ticket_cleanup)
1083 (void) dest_tkt();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001084#endif /* KRB4 */
1085
Damien Miller95def091999-11-25 00:26:21 +11001086 /* The connection has been terminated. */
1087 verbose("Closing connection to %.100s", remote_ip);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001088
Damien Millerbeb4ba51999-12-28 15:09:35 +11001089#ifdef USE_PAM
Damien Millere72b7af1999-12-30 15:08:44 +11001090 finish_pam();
Damien Millerbeb4ba51999-12-28 15:09:35 +11001091#endif /* USE_PAM */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001092
Damien Miller95def091999-11-25 00:26:21 +11001093 packet_close();
1094 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001095}
1096
Damien Miller95def091999-11-25 00:26:21 +11001097/*
Damien Miller396691a2000-01-20 22:44:08 +11001098 * SSH1 key exchange
Damien Miller95def091999-11-25 00:26:21 +11001099 */
Damien Miller2ccf6611999-11-15 15:25:10 +11001100void
Damien Millerb38eff82000-04-01 11:09:21 +10001101do_ssh1_kex()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001102{
Damien Miller95def091999-11-25 00:26:21 +11001103 int i, len;
Damien Miller396691a2000-01-20 22:44:08 +11001104 int plen, slen;
Damien Miller95def091999-11-25 00:26:21 +11001105 BIGNUM *session_key_int;
1106 unsigned char session_key[SSH_SESSION_KEY_LENGTH];
Damien Miller396691a2000-01-20 22:44:08 +11001107 unsigned char cookie[8];
Damien Miller95def091999-11-25 00:26:21 +11001108 unsigned int cipher_type, auth_mask, protocol_flags;
Damien Miller95def091999-11-25 00:26:21 +11001109 u_int32_t rand = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001110
Damien Miller5428f641999-11-25 11:54:57 +11001111 /*
1112 * Generate check bytes that the client must send back in the user
1113 * packet in order for it to be accepted; this is used to defy ip
1114 * spoofing attacks. Note that this only works against somebody
1115 * doing IP spoofing from a remote machine; any machine on the local
1116 * network can still see outgoing packets and catch the random
1117 * cookie. This only affects rhosts authentication, and this is one
1118 * of the reasons why it is inherently insecure.
1119 */
Damien Miller95def091999-11-25 00:26:21 +11001120 for (i = 0; i < 8; i++) {
1121 if (i % 4 == 0)
1122 rand = arc4random();
Damien Miller396691a2000-01-20 22:44:08 +11001123 cookie[i] = rand & 0xff;
Damien Miller95def091999-11-25 00:26:21 +11001124 rand >>= 8;
1125 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001126
Damien Miller5428f641999-11-25 11:54:57 +11001127 /*
1128 * Send our public key. We include in the packet 64 bits of random
1129 * data that must be matched in the reply in order to prevent IP
1130 * spoofing.
1131 */
Damien Miller95def091999-11-25 00:26:21 +11001132 packet_start(SSH_SMSG_PUBLIC_KEY);
1133 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001134 packet_put_char(cookie[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001135
Damien Miller95def091999-11-25 00:26:21 +11001136 /* Store our public server RSA key. */
1137 packet_put_int(BN_num_bits(public_key->n));
1138 packet_put_bignum(public_key->e);
1139 packet_put_bignum(public_key->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001140
Damien Miller95def091999-11-25 00:26:21 +11001141 /* Store our public host RSA key. */
1142 packet_put_int(BN_num_bits(sensitive_data.host_key->n));
1143 packet_put_bignum(sensitive_data.host_key->e);
1144 packet_put_bignum(sensitive_data.host_key->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001145
Damien Miller95def091999-11-25 00:26:21 +11001146 /* Put protocol flags. */
1147 packet_put_int(SSH_PROTOFLAG_HOST_IN_FWD_OPEN);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001148
Damien Miller95def091999-11-25 00:26:21 +11001149 /* Declare which ciphers we support. */
Damien Miller1383bd82000-04-06 12:32:37 +10001150 packet_put_int(cipher_mask1());
Damien Miller95def091999-11-25 00:26:21 +11001151
1152 /* Declare supported authentication types. */
1153 auth_mask = 0;
1154 if (options.rhosts_authentication)
1155 auth_mask |= 1 << SSH_AUTH_RHOSTS;
1156 if (options.rhosts_rsa_authentication)
1157 auth_mask |= 1 << SSH_AUTH_RHOSTS_RSA;
1158 if (options.rsa_authentication)
1159 auth_mask |= 1 << SSH_AUTH_RSA;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001160#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +11001161 if (options.kerberos_authentication)
1162 auth_mask |= 1 << SSH_AUTH_KERBEROS;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001163#endif
1164#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +11001165 if (options.kerberos_tgt_passing)
1166 auth_mask |= 1 << SSH_PASS_KERBEROS_TGT;
1167 if (options.afs_token_passing)
1168 auth_mask |= 1 << SSH_PASS_AFS_TOKEN;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001169#endif
Damien Miller95def091999-11-25 00:26:21 +11001170#ifdef SKEY
1171 if (options.skey_authentication == 1)
1172 auth_mask |= 1 << SSH_AUTH_TIS;
1173#endif
1174 if (options.password_authentication)
1175 auth_mask |= 1 << SSH_AUTH_PASSWORD;
1176 packet_put_int(auth_mask);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001177
Damien Miller95def091999-11-25 00:26:21 +11001178 /* Send the packet and wait for it to be sent. */
1179 packet_send();
1180 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001181
Damien Miller95def091999-11-25 00:26:21 +11001182 debug("Sent %d bit public key and %d bit host key.",
1183 BN_num_bits(public_key->n), BN_num_bits(sensitive_data.host_key->n));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001184
Damien Miller95def091999-11-25 00:26:21 +11001185 /* Read clients reply (cipher type and session key). */
1186 packet_read_expect(&plen, SSH_CMSG_SESSION_KEY);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001187
Damien Miller50945fa1999-12-09 10:31:37 +11001188 /* Get cipher type and check whether we accept this. */
Damien Miller95def091999-11-25 00:26:21 +11001189 cipher_type = packet_get_char();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001190
Damien Miller4af51302000-04-16 11:18:38 +10001191 if (!(cipher_mask() & (1 << cipher_type)))
Damien Miller50945fa1999-12-09 10:31:37 +11001192 packet_disconnect("Warning: client selects unsupported cipher.");
1193
Damien Miller95def091999-11-25 00:26:21 +11001194 /* Get check bytes from the packet. These must match those we
1195 sent earlier with the public key packet. */
1196 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001197 if (cookie[i] != packet_get_char())
Damien Miller95def091999-11-25 00:26:21 +11001198 packet_disconnect("IP Spoofing check bytes do not match.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001199
Damien Miller95def091999-11-25 00:26:21 +11001200 debug("Encryption type: %.200s", cipher_name(cipher_type));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001201
Damien Miller95def091999-11-25 00:26:21 +11001202 /* Get the encrypted integer. */
1203 session_key_int = BN_new();
1204 packet_get_bignum(session_key_int, &slen);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001205
Damien Miller95def091999-11-25 00:26:21 +11001206 protocol_flags = packet_get_int();
1207 packet_set_protocol_flags(protocol_flags);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001208
Damien Miller95def091999-11-25 00:26:21 +11001209 packet_integrity_check(plen, 1 + 8 + slen + 4, SSH_CMSG_SESSION_KEY);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001210
Damien Miller5428f641999-11-25 11:54:57 +11001211 /*
1212 * Decrypt it using our private server key and private host key (key
1213 * with larger modulus first).
1214 */
Damien Miller95def091999-11-25 00:26:21 +11001215 if (BN_cmp(sensitive_data.private_key->n, sensitive_data.host_key->n) > 0) {
1216 /* Private key has bigger modulus. */
1217 if (BN_num_bits(sensitive_data.private_key->n) <
1218 BN_num_bits(sensitive_data.host_key->n) + SSH_KEY_BITS_RESERVED) {
1219 fatal("do_connection: %s: private_key %d < host_key %d + SSH_KEY_BITS_RESERVED %d",
1220 get_remote_ipaddr(),
1221 BN_num_bits(sensitive_data.private_key->n),
1222 BN_num_bits(sensitive_data.host_key->n),
1223 SSH_KEY_BITS_RESERVED);
1224 }
1225 rsa_private_decrypt(session_key_int, session_key_int,
1226 sensitive_data.private_key);
1227 rsa_private_decrypt(session_key_int, session_key_int,
1228 sensitive_data.host_key);
1229 } else {
1230 /* Host key has bigger modulus (or they are equal). */
1231 if (BN_num_bits(sensitive_data.host_key->n) <
1232 BN_num_bits(sensitive_data.private_key->n) + SSH_KEY_BITS_RESERVED) {
1233 fatal("do_connection: %s: host_key %d < private_key %d + SSH_KEY_BITS_RESERVED %d",
1234 get_remote_ipaddr(),
1235 BN_num_bits(sensitive_data.host_key->n),
1236 BN_num_bits(sensitive_data.private_key->n),
1237 SSH_KEY_BITS_RESERVED);
1238 }
1239 rsa_private_decrypt(session_key_int, session_key_int,
1240 sensitive_data.host_key);
1241 rsa_private_decrypt(session_key_int, session_key_int,
1242 sensitive_data.private_key);
1243 }
Damien Miller356a0b01999-11-08 15:30:59 +11001244
Damien Miller396691a2000-01-20 22:44:08 +11001245 compute_session_id(session_id, cookie,
Damien Miller95def091999-11-25 00:26:21 +11001246 sensitive_data.host_key->n,
1247 sensitive_data.private_key->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001248
Damien Miller396691a2000-01-20 22:44:08 +11001249 /* Destroy the private and public keys. They will no longer be needed. */
Damien Millereba71ba2000-04-29 23:57:08 +10001250 destroy_sensitive_data();
Damien Miller396691a2000-01-20 22:44:08 +11001251
Damien Miller5428f641999-11-25 11:54:57 +11001252 /*
1253 * Extract session key from the decrypted integer. The key is in the
1254 * least significant 256 bits of the integer; the first byte of the
1255 * key is in the highest bits.
1256 */
Damien Miller95def091999-11-25 00:26:21 +11001257 BN_mask_bits(session_key_int, sizeof(session_key) * 8);
1258 len = BN_num_bytes(session_key_int);
1259 if (len < 0 || len > sizeof(session_key))
1260 fatal("do_connection: bad len from %s: session_key_int %d > sizeof(session_key) %d",
1261 get_remote_ipaddr(),
1262 len, sizeof(session_key));
1263 memset(session_key, 0, sizeof(session_key));
1264 BN_bn2bin(session_key_int, session_key + sizeof(session_key) - len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001265
Damien Miller396691a2000-01-20 22:44:08 +11001266 /* Destroy the decrypted integer. It is no longer needed. */
1267 BN_clear_free(session_key_int);
1268
Damien Miller95def091999-11-25 00:26:21 +11001269 /* Xor the first 16 bytes of the session key with the session id. */
1270 for (i = 0; i < 16; i++)
1271 session_key[i] ^= session_id[i];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001272
Damien Miller95def091999-11-25 00:26:21 +11001273 /* Set the session key. From this on all communications will be encrypted. */
1274 packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, cipher_type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001275
Damien Miller95def091999-11-25 00:26:21 +11001276 /* Destroy our copy of the session key. It is no longer needed. */
1277 memset(session_key, 0, sizeof(session_key));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001278
Damien Miller95def091999-11-25 00:26:21 +11001279 debug("Received session key; encryption turned on.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001280
Damien Miller95def091999-11-25 00:26:21 +11001281 /* Send an acknowledgement packet. Note that this packet is sent encrypted. */
1282 packet_start(SSH_SMSG_SUCCESS);
1283 packet_send();
1284 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001285}
Damien Millerefb4afe2000-04-12 18:45:05 +10001286
1287/*
1288 * SSH2 key exchange: diffie-hellman-group1-sha1
1289 */
1290void
1291do_ssh2_kex()
1292{
1293 Buffer *server_kexinit;
1294 Buffer *client_kexinit;
1295 int payload_len, dlen;
1296 int slen;
1297 unsigned int klen, kout;
Damien Millerefb4afe2000-04-12 18:45:05 +10001298 unsigned char *signature = NULL;
1299 unsigned char *server_host_key_blob = NULL;
1300 unsigned int sbloblen;
1301 DH *dh;
1302 BIGNUM *dh_client_pub = 0;
1303 BIGNUM *shared_secret = 0;
1304 int i;
1305 unsigned char *kbuf;
1306 unsigned char *hash;
1307 Kex *kex;
Damien Millerefb4afe2000-04-12 18:45:05 +10001308 char *cprop[PROPOSAL_MAX];
Damien Millerefb4afe2000-04-12 18:45:05 +10001309
1310/* KEXINIT */
1311
Damien Miller78928792000-04-12 20:17:38 +10001312 if (options.ciphers != NULL) {
Damien Miller4af51302000-04-16 11:18:38 +10001313 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
Damien Miller78928792000-04-12 20:17:38 +10001314 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
1315 }
Damien Millerb1715dc2000-05-30 13:44:51 +10001316 server_kexinit = kex_init(myproposal);
Damien Millerefb4afe2000-04-12 18:45:05 +10001317 client_kexinit = xmalloc(sizeof(*client_kexinit));
1318 buffer_init(client_kexinit);
Damien Millerefb4afe2000-04-12 18:45:05 +10001319
Damien Millerb1715dc2000-05-30 13:44:51 +10001320 /* algorithm negotiation */
1321 kex_exchange_kexinit(server_kexinit, client_kexinit, cprop);
1322 kex = kex_choose_conf(cprop, myproposal, 1);
1323 for (i = 0; i < PROPOSAL_MAX; i++)
1324 xfree(cprop[i]);
Damien Millerefb4afe2000-04-12 18:45:05 +10001325
1326/* KEXDH */
1327
1328 debug("Wait SSH2_MSG_KEXDH_INIT.");
1329 packet_read_expect(&payload_len, SSH2_MSG_KEXDH_INIT);
1330
1331 /* key, cert */
1332 dh_client_pub = BN_new();
1333 if (dh_client_pub == NULL)
1334 fatal("dh_client_pub == NULL");
1335 packet_get_bignum2(dh_client_pub, &dlen);
1336
1337#ifdef DEBUG_KEXDH
1338 fprintf(stderr, "\ndh_client_pub= ");
1339 bignum_print(dh_client_pub);
1340 fprintf(stderr, "\n");
1341 debug("bits %d", BN_num_bits(dh_client_pub));
1342#endif
1343
1344 /* generate DH key */
Damien Miller78928792000-04-12 20:17:38 +10001345 dh = dh_new_group1(); /* XXX depends on 'kex' */
Damien Millerefb4afe2000-04-12 18:45:05 +10001346
1347#ifdef DEBUG_KEXDH
1348 fprintf(stderr, "\np= ");
1349 bignum_print(dh->p);
1350 fprintf(stderr, "\ng= ");
1351 bignum_print(dh->g);
1352 fprintf(stderr, "\npub= ");
1353 bignum_print(dh->pub_key);
1354 fprintf(stderr, "\n");
1355#endif
Damien Miller78928792000-04-12 20:17:38 +10001356 if (!dh_pub_is_valid(dh, dh_client_pub))
1357 packet_disconnect("bad client public DH value");
Damien Millerefb4afe2000-04-12 18:45:05 +10001358
1359 klen = DH_size(dh);
1360 kbuf = xmalloc(klen);
1361 kout = DH_compute_key(kbuf, dh_client_pub, dh);
1362
1363#ifdef DEBUG_KEXDH
1364 debug("shared secret: len %d/%d", klen, kout);
1365 fprintf(stderr, "shared secret == ");
1366 for (i = 0; i< kout; i++)
1367 fprintf(stderr, "%02x", (kbuf[i])&0xff);
1368 fprintf(stderr, "\n");
1369#endif
1370 shared_secret = BN_new();
1371
1372 BN_bin2bn(kbuf, kout, shared_secret);
1373 memset(kbuf, 0, klen);
1374 xfree(kbuf);
1375
Damien Millereba71ba2000-04-29 23:57:08 +10001376 /* XXX precompute? */
1377 dsa_make_key_blob(sensitive_data.dsa_host_key, &server_host_key_blob, &sbloblen);
Damien Millerefb4afe2000-04-12 18:45:05 +10001378
1379 /* calc H */ /* XXX depends on 'kex' */
1380 hash = kex_hash(
1381 client_version_string,
1382 server_version_string,
1383 buffer_ptr(client_kexinit), buffer_len(client_kexinit),
1384 buffer_ptr(server_kexinit), buffer_len(server_kexinit),
1385 (char *)server_host_key_blob, sbloblen,
1386 dh_client_pub,
1387 dh->pub_key,
1388 shared_secret
1389 );
1390 buffer_free(client_kexinit);
1391 buffer_free(server_kexinit);
1392 xfree(client_kexinit);
1393 xfree(server_kexinit);
1394#ifdef DEBUG_KEXDH
Damien Miller4af51302000-04-16 11:18:38 +10001395 fprintf(stderr, "hash == ");
1396 for (i = 0; i< 20; i++)
1397 fprintf(stderr, "%02x", (hash[i])&0xff);
1398 fprintf(stderr, "\n");
Damien Millerefb4afe2000-04-12 18:45:05 +10001399#endif
Damien Millereba71ba2000-04-29 23:57:08 +10001400 /* save session id := H */
1401 /* XXX hashlen depends on KEX */
1402 session_id2_len = 20;
1403 session_id2 = xmalloc(session_id2_len);
1404 memcpy(session_id2, hash, session_id2_len);
1405
Damien Millerefb4afe2000-04-12 18:45:05 +10001406 /* sign H */
Damien Millereba71ba2000-04-29 23:57:08 +10001407 /* XXX hashlen depends on KEX */
1408 dsa_sign(sensitive_data.dsa_host_key, &signature, &slen, hash, 20);
1409
1410 destroy_sensitive_data();
Damien Millerefb4afe2000-04-12 18:45:05 +10001411
1412 /* send server hostkey, DH pubkey 'f' and singed H */
1413 packet_start(SSH2_MSG_KEXDH_REPLY);
1414 packet_put_string((char *)server_host_key_blob, sbloblen);
Damien Millere247cc42000-05-07 12:03:14 +10001415 packet_put_bignum2(dh->pub_key); /* f */
Damien Millerefb4afe2000-04-12 18:45:05 +10001416 packet_put_string((char *)signature, slen);
1417 packet_send();
Damien Miller8bb73be2000-04-19 16:26:12 +10001418 xfree(signature);
Damien Millereba71ba2000-04-29 23:57:08 +10001419 xfree(server_host_key_blob);
Damien Millerefb4afe2000-04-12 18:45:05 +10001420 packet_write_wait();
1421
1422 kex_derive_keys(kex, hash, shared_secret);
1423 packet_set_kex(kex);
1424
1425 /* have keys, free DH */
1426 DH_free(dh);
1427
1428 debug("send SSH2_MSG_NEWKEYS.");
1429 packet_start(SSH2_MSG_NEWKEYS);
1430 packet_send();
1431 packet_write_wait();
1432 debug("done: send SSH2_MSG_NEWKEYS.");
1433
1434 debug("Wait SSH2_MSG_NEWKEYS.");
1435 packet_read_expect(&payload_len, SSH2_MSG_NEWKEYS);
1436 debug("GOT SSH2_MSG_NEWKEYS.");
1437
Damien Miller78928792000-04-12 20:17:38 +10001438#ifdef DEBUG_KEXDH
Damien Millerefb4afe2000-04-12 18:45:05 +10001439 /* send 1st encrypted/maced/compressed message */
1440 packet_start(SSH2_MSG_IGNORE);
1441 packet_put_cstring("markus");
1442 packet_send();
1443 packet_write_wait();
Damien Miller78928792000-04-12 20:17:38 +10001444#endif
Damien Millerefb4afe2000-04-12 18:45:05 +10001445 debug("done: KEX2.");
1446}