blob: e5c2508a10e47d86ea8c12b56950744892194bbb [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 Miller874d77b2000-10-14 16:23:11 +110043RCSID("$OpenBSD: sshd.c,v 1.132 2000/10/13 18:34:46 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 "mpaux.h"
51#include "servconf.h"
52#include "uidswap.h"
53#include "compat.h"
Damien Millerb38eff82000-04-01 11:09:21 +100054#include "buffer.h"
55
Damien Millerefb4afe2000-04-12 18:45:05 +100056#include "ssh2.h"
Damien Miller5f056372000-04-16 12:31:48 +100057#include <openssl/dh.h>
58#include <openssl/bn.h>
59#include <openssl/hmac.h>
Damien Millerefb4afe2000-04-12 18:45:05 +100060#include "kex.h"
Damien Miller5f056372000-04-16 12:31:48 +100061#include <openssl/dsa.h>
62#include <openssl/rsa.h>
Damien Millerb38eff82000-04-01 11:09:21 +100063#include "key.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100064#include "dsa.h"
Damien Miller874d77b2000-10-14 16:23:11 +110065#include "dh.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
Damien Miller874d77b2000-10-14 16:23:11 +1100175void ssh_dh1_server(Kex *, Buffer *_kexinit, Buffer *);
176void ssh_dhgex_server(Kex *, Buffer *_kexinit, Buffer *);
177
Damien Miller98c7ad62000-03-09 21:27:49 +1100178/*
Damien Miller34132e52000-01-14 15:45:46 +1100179 * Close all listening sockets
180 */
181void
182close_listen_socks(void)
183{
184 int i;
185 for (i = 0; i < num_listen_socks; i++)
186 close(listen_socks[i]);
187 num_listen_socks = -1;
188}
189
190/*
Damien Miller95def091999-11-25 00:26:21 +1100191 * Signal handler for SIGHUP. Sshd execs itself when it receives SIGHUP;
192 * the effect is to reread the configuration file (and to regenerate
193 * the server key).
194 */
Damien Miller4af51302000-04-16 11:18:38 +1000195void
Damien Miller95def091999-11-25 00:26:21 +1100196sighup_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000197{
Damien Miller95def091999-11-25 00:26:21 +1100198 received_sighup = 1;
199 signal(SIGHUP, sighup_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000200}
201
Damien Miller95def091999-11-25 00:26:21 +1100202/*
203 * Called from the main program after receiving SIGHUP.
204 * Restarts the server.
205 */
Damien Miller4af51302000-04-16 11:18:38 +1000206void
Damien Miller95def091999-11-25 00:26:21 +1100207sighup_restart()
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000208{
Damien Miller95def091999-11-25 00:26:21 +1100209 log("Received SIGHUP; restarting.");
Damien Miller34132e52000-01-14 15:45:46 +1100210 close_listen_socks();
Damien Miller95def091999-11-25 00:26:21 +1100211 execv(saved_argv[0], saved_argv);
212 log("RESTART FAILED: av0='%s', error: %s.", av0, strerror(errno));
213 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000214}
215
Damien Miller95def091999-11-25 00:26:21 +1100216/*
217 * Generic signal handler for terminating signals in the master daemon.
218 * These close the listen socket; not closing it seems to cause "Address
219 * already in use" problems on some machines, which is inconvenient.
220 */
Damien Miller4af51302000-04-16 11:18:38 +1000221void
Damien Miller95def091999-11-25 00:26:21 +1100222sigterm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000223{
Damien Miller95def091999-11-25 00:26:21 +1100224 log("Received signal %d; terminating.", sig);
Damien Miller34132e52000-01-14 15:45:46 +1100225 close_listen_socks();
Damien Miller6f83b8e2000-05-02 09:23:45 +1000226 unlink(options.pid_file);
Damien Miller95def091999-11-25 00:26:21 +1100227 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000228}
229
Damien Miller95def091999-11-25 00:26:21 +1100230/*
231 * SIGCHLD handler. This is called whenever a child dies. This will then
232 * reap any zombies left by exited c.
233 */
Damien Miller4af51302000-04-16 11:18:38 +1000234void
Damien Miller95def091999-11-25 00:26:21 +1100235main_sigchld_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000236{
Damien Miller95def091999-11-25 00:26:21 +1100237 int save_errno = errno;
238 int status;
Damien Miller431f66b1999-11-21 18:31:57 +1100239
Damien Miller95def091999-11-25 00:26:21 +1100240 while (waitpid(-1, &status, WNOHANG) > 0)
241 ;
Damien Miller431f66b1999-11-21 18:31:57 +1100242
Damien Miller95def091999-11-25 00:26:21 +1100243 signal(SIGCHLD, main_sigchld_handler);
244 errno = save_errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000245}
246
Damien Miller95def091999-11-25 00:26:21 +1100247/*
248 * Signal handler for the alarm after the login grace period has expired.
249 */
Damien Miller4af51302000-04-16 11:18:38 +1000250void
Damien Miller95def091999-11-25 00:26:21 +1100251grace_alarm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000252{
Damien Miller95def091999-11-25 00:26:21 +1100253 /* Close the connection. */
254 packet_close();
255
256 /* Log error and exit. */
257 fatal("Timeout before authentication for %s.", get_remote_ipaddr());
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000258}
259
Damien Miller95def091999-11-25 00:26:21 +1100260/*
Damien Miller95def091999-11-25 00:26:21 +1100261 * Signal handler for the key regeneration alarm. Note that this
262 * alarm only occurs in the daemon waiting for connections, and it does not
263 * do anything with the private key or random state before forking.
264 * Thus there should be no concurrency control/asynchronous execution
265 * problems.
266 */
Damien Millereba71ba2000-04-29 23:57:08 +1000267/* XXX do we really want this work to be done in a signal handler ? -m */
Damien Miller4af51302000-04-16 11:18:38 +1000268void
Damien Miller95def091999-11-25 00:26:21 +1100269key_regeneration_alarm(int sig)
270{
271 int save_errno = errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000272
Damien Miller95def091999-11-25 00:26:21 +1100273 /* Check if we should generate a new key. */
274 if (key_used) {
275 /* This should really be done in the background. */
276 log("Generating new %d bit RSA key.", options.server_key_bits);
277
278 if (sensitive_data.private_key != NULL)
279 RSA_free(sensitive_data.private_key);
280 sensitive_data.private_key = RSA_new();
281
282 if (public_key != NULL)
283 RSA_free(public_key);
284 public_key = RSA_new();
285
286 rsa_generate_key(sensitive_data.private_key, public_key,
287 options.server_key_bits);
288 arc4random_stir();
289 key_used = 0;
290 log("RSA key generation complete.");
291 }
292 /* Reschedule the alarm. */
293 signal(SIGALRM, key_regeneration_alarm);
294 alarm(options.key_regeneration_time);
295 errno = save_errno;
296}
297
Damien Millerb38eff82000-04-01 11:09:21 +1000298void
299sshd_exchange_identification(int sock_in, int sock_out)
300{
Damien Miller78928792000-04-12 20:17:38 +1000301 int i, mismatch;
Damien Millerb38eff82000-04-01 11:09:21 +1000302 int remote_major, remote_minor;
Damien Miller78928792000-04-12 20:17:38 +1000303 int major, minor;
Damien Millerb38eff82000-04-01 11:09:21 +1000304 char *s;
305 char buf[256]; /* Must not be larger than remote_version. */
306 char remote_version[256]; /* Must be at least as big as buf. */
307
Damien Miller78928792000-04-12 20:17:38 +1000308 if ((options.protocol & SSH_PROTO_1) &&
309 (options.protocol & SSH_PROTO_2)) {
310 major = PROTOCOL_MAJOR_1;
311 minor = 99;
312 } else if (options.protocol & SSH_PROTO_2) {
313 major = PROTOCOL_MAJOR_2;
314 minor = PROTOCOL_MINOR_2;
315 } else {
316 major = PROTOCOL_MAJOR_1;
317 minor = PROTOCOL_MINOR_1;
318 }
319 snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n", major, minor, SSH_VERSION);
Damien Millerb38eff82000-04-01 11:09:21 +1000320 server_version_string = xstrdup(buf);
321
322 if (client_version_string == NULL) {
323 /* Send our protocol version identification. */
324 if (atomicio(write, sock_out, server_version_string, strlen(server_version_string))
325 != strlen(server_version_string)) {
326 log("Could not write ident string to %s.", get_remote_ipaddr());
327 fatal_cleanup();
328 }
329
330 /* Read other side\'s version identification. */
331 for (i = 0; i < sizeof(buf) - 1; i++) {
Damien Millerbf7f4662000-06-23 10:16:38 +1000332 if (atomicio(read, sock_in, &buf[i], 1) != 1) {
Damien Millerb38eff82000-04-01 11:09:21 +1000333 log("Did not receive ident string from %s.", get_remote_ipaddr());
334 fatal_cleanup();
335 }
336 if (buf[i] == '\r') {
337 buf[i] = '\n';
338 buf[i + 1] = 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100339 /* Kludge for F-Secure Macintosh < 1.0.2 */
340 if (i == 12 &&
341 strncmp(buf, "SSH-1.5-W1.0", 12) == 0)
342 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000343 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000344 }
345 if (buf[i] == '\n') {
346 /* buf[i] == '\n' */
347 buf[i + 1] = 0;
348 break;
349 }
350 }
351 buf[sizeof(buf) - 1] = 0;
352 client_version_string = xstrdup(buf);
353 }
354
355 /*
356 * Check that the versions match. In future this might accept
357 * several versions and set appropriate flags to handle them.
358 */
359 if (sscanf(client_version_string, "SSH-%d.%d-%[^\n]\n",
360 &remote_major, &remote_minor, remote_version) != 3) {
Damien Miller4af51302000-04-16 11:18:38 +1000361 s = "Protocol mismatch.\n";
Damien Millerb38eff82000-04-01 11:09:21 +1000362 (void) atomicio(write, sock_out, s, strlen(s));
363 close(sock_in);
364 close(sock_out);
365 log("Bad protocol version identification '%.100s' from %s",
366 client_version_string, get_remote_ipaddr());
367 fatal_cleanup();
368 }
369 debug("Client protocol version %d.%d; client software version %.100s",
370 remote_major, remote_minor, remote_version);
371
Damien Millerefb4afe2000-04-12 18:45:05 +1000372 compat_datafellows(remote_version);
373
Damien Miller78928792000-04-12 20:17:38 +1000374 mismatch = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000375 switch(remote_major) {
376 case 1:
Damien Millereba71ba2000-04-29 23:57:08 +1000377 if (remote_minor == 99) {
378 if (options.protocol & SSH_PROTO_2)
379 enable_compat20();
380 else
381 mismatch = 1;
382 break;
383 }
Damien Miller78928792000-04-12 20:17:38 +1000384 if (!(options.protocol & SSH_PROTO_1)) {
385 mismatch = 1;
386 break;
387 }
Damien Millerb38eff82000-04-01 11:09:21 +1000388 if (remote_minor < 3) {
Damien Miller37023962000-07-11 17:31:38 +1000389 packet_disconnect("Your ssh version is too old and "
Damien Millerb38eff82000-04-01 11:09:21 +1000390 "is no longer supported. Please install a newer version.");
391 } else if (remote_minor == 3) {
392 /* note that this disables agent-forwarding */
393 enable_compat13();
394 }
Damien Miller78928792000-04-12 20:17:38 +1000395 break;
Damien Millerefb4afe2000-04-12 18:45:05 +1000396 case 2:
Damien Miller78928792000-04-12 20:17:38 +1000397 if (options.protocol & SSH_PROTO_2) {
Damien Millerefb4afe2000-04-12 18:45:05 +1000398 enable_compat20();
399 break;
400 }
401 /* FALLTHROUGH */
Damien Miller4af51302000-04-16 11:18:38 +1000402 default:
Damien Miller78928792000-04-12 20:17:38 +1000403 mismatch = 1;
Damien Millerb38eff82000-04-01 11:09:21 +1000404 break;
405 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000406 chop(server_version_string);
407 chop(client_version_string);
Damien Miller78928792000-04-12 20:17:38 +1000408 debug("Local version string %.200s", server_version_string);
409
410 if (mismatch) {
411 s = "Protocol major versions differ.\n";
412 (void) atomicio(write, sock_out, s, strlen(s));
413 close(sock_in);
414 close(sock_out);
415 log("Protocol major versions differ for %s: %.200s vs. %.200s",
416 get_remote_ipaddr(),
417 server_version_string, client_version_string);
418 fatal_cleanup();
419 }
Damien Millereba71ba2000-04-29 23:57:08 +1000420 if (compat20)
421 packet_set_ssh2_format();
422}
423
424
425void
426destroy_sensitive_data(void)
427{
428 /* Destroy the private and public keys. They will no longer be needed. */
Damien Millerc4be7ce2000-05-17 23:02:03 +1000429 if (public_key)
430 RSA_free(public_key);
431 if (sensitive_data.private_key)
432 RSA_free(sensitive_data.private_key);
433 if (sensitive_data.host_key)
434 RSA_free(sensitive_data.host_key);
Damien Millereba71ba2000-04-29 23:57:08 +1000435 if (sensitive_data.dsa_host_key != NULL)
436 key_free(sensitive_data.dsa_host_key);
Damien Millerb38eff82000-04-01 11:09:21 +1000437}
438
Damien Miller942da032000-08-18 13:59:06 +1000439/*
440 * returns 1 if connection should be dropped, 0 otherwise.
441 * dropping starts at connection #max_startups_begin with a probability
442 * of (max_startups_rate/100). the probability increases linearly until
443 * all connections are dropped for startups > max_startups
444 */
445int
446drop_connection(int startups)
447{
448 double p, r;
449
450 if (startups < options.max_startups_begin)
451 return 0;
452 if (startups >= options.max_startups)
453 return 1;
454 if (options.max_startups_rate == 100)
455 return 1;
456
457 p = 100 - options.max_startups_rate;
458 p *= startups - options.max_startups_begin;
459 p /= (double) (options.max_startups - options.max_startups_begin);
460 p += options.max_startups_rate;
461 p /= 100.0;
462 r = arc4random() / (double) UINT_MAX;
463
464 debug("drop_connection: p %g, r %g", p, r);
465 return (r < p) ? 1 : 0;
466}
467
Damien Miller37023962000-07-11 17:31:38 +1000468int *startup_pipes = NULL; /* options.max_startup sized array of fd ints */
469int startup_pipe; /* in child */
470
Damien Miller95def091999-11-25 00:26:21 +1100471/*
472 * Main program for the daemon.
473 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000474int
475main(int ac, char **av)
476{
Damien Miller95def091999-11-25 00:26:21 +1100477 extern char *optarg;
478 extern int optind;
Damien Miller37023962000-07-11 17:31:38 +1000479 int opt, sock_in = 0, sock_out = 0, newsock, j, i, fdsetsz, on = 1;
Damien Miller166fca82000-04-20 07:42:21 +1000480 pid_t pid;
Damien Miller34132e52000-01-14 15:45:46 +1100481 socklen_t fromlen;
Damien Millereba71ba2000-04-29 23:57:08 +1000482 int silent = 0;
Damien Miller34132e52000-01-14 15:45:46 +1100483 fd_set *fdset;
484 struct sockaddr_storage from;
Damien Miller95def091999-11-25 00:26:21 +1100485 const char *remote_ip;
486 int remote_port;
Damien Miller95def091999-11-25 00:26:21 +1100487 FILE *f;
488 struct linger linger;
Damien Miller34132e52000-01-14 15:45:46 +1100489 struct addrinfo *ai;
490 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
491 int listen_sock, maxfd;
Damien Miller37023962000-07-11 17:31:38 +1000492 int startup_p[2];
493 int startups = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000494
Damien Millerf9b625c2000-07-09 22:42:32 +1000495 init_rng();
496
Damien Miller95def091999-11-25 00:26:21 +1100497 /* Save argv[0]. */
Damien Millerb8c656e2000-06-28 15:22:41 +1000498 saved_argc = ac;
Damien Miller95def091999-11-25 00:26:21 +1100499 saved_argv = av;
500 if (strchr(av[0], '/'))
501 av0 = strrchr(av[0], '/') + 1;
502 else
503 av0 = av[0];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000504
Damien Miller95def091999-11-25 00:26:21 +1100505 /* Initialize configuration options to their default values. */
506 initialize_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000507
Damien Miller95def091999-11-25 00:26:21 +1100508 /* Parse command-line arguments. */
Damien Miller942da032000-08-18 13:59:06 +1000509 while ((opt = getopt(ac, av, "f:p:b:k:h:g:V:u:diqQ46")) != EOF) {
Damien Miller95def091999-11-25 00:26:21 +1100510 switch (opt) {
Damien Miller34132e52000-01-14 15:45:46 +1100511 case '4':
512 IPv4or6 = AF_INET;
513 break;
514 case '6':
515 IPv4or6 = AF_INET6;
516 break;
Damien Miller95def091999-11-25 00:26:21 +1100517 case 'f':
518 config_file_name = optarg;
519 break;
520 case 'd':
Damien Millere4340be2000-09-16 13:29:08 +1100521 if (0 == debug_flag) {
522 debug_flag = 1;
523 options.log_level = SYSLOG_LEVEL_DEBUG1;
524 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
525 options.log_level++;
526 } else {
527 fprintf(stderr, "Too high debugging level.\n");
528 exit(1);
529 }
Damien Miller95def091999-11-25 00:26:21 +1100530 break;
531 case 'i':
532 inetd_flag = 1;
533 break;
534 case 'Q':
Damien Millereba71ba2000-04-29 23:57:08 +1000535 silent = 1;
Damien Miller95def091999-11-25 00:26:21 +1100536 break;
537 case 'q':
538 options.log_level = SYSLOG_LEVEL_QUIET;
539 break;
540 case 'b':
541 options.server_key_bits = atoi(optarg);
542 break;
543 case 'p':
Damien Miller34132e52000-01-14 15:45:46 +1100544 options.ports_from_cmdline = 1;
Damien Millere4340be2000-09-16 13:29:08 +1100545 if (options.num_ports >= MAX_PORTS) {
546 fprintf(stderr, "too many ports.\n");
547 exit(1);
548 }
Damien Miller34132e52000-01-14 15:45:46 +1100549 options.ports[options.num_ports++] = atoi(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100550 break;
551 case 'g':
552 options.login_grace_time = atoi(optarg);
553 break;
554 case 'k':
555 options.key_regeneration_time = atoi(optarg);
556 break;
557 case 'h':
558 options.host_key_file = optarg;
559 break;
560 case 'V':
561 client_version_string = optarg;
562 /* only makes sense with inetd_flag, i.e. no listen() */
563 inetd_flag = 1;
564 break;
Damien Miller942da032000-08-18 13:59:06 +1000565 case 'u':
566 utmp_len = atoi(optarg);
567 break;
Damien Miller95def091999-11-25 00:26:21 +1100568 case '?':
569 default:
570 fprintf(stderr, "sshd version %s\n", SSH_VERSION);
571 fprintf(stderr, "Usage: %s [options]\n", av0);
572 fprintf(stderr, "Options:\n");
Damien Miller5428f641999-11-25 11:54:57 +1100573 fprintf(stderr, " -f file Configuration file (default %s)\n", SERVER_CONFIG_FILE);
Damien Millere4340be2000-09-16 13:29:08 +1100574 fprintf(stderr, " -d Debugging mode (multiple -d means more debugging)\n");
Damien Miller95def091999-11-25 00:26:21 +1100575 fprintf(stderr, " -i Started from inetd\n");
576 fprintf(stderr, " -q Quiet (no logging)\n");
577 fprintf(stderr, " -p port Listen on the specified port (default: 22)\n");
578 fprintf(stderr, " -k seconds Regenerate server key every this many seconds (default: 3600)\n");
579 fprintf(stderr, " -g seconds Grace period for authentication (default: 300)\n");
580 fprintf(stderr, " -b bits Size of server RSA key (default: 768 bits)\n");
581 fprintf(stderr, " -h file File from which to read host key (default: %s)\n",
Damien Miller34132e52000-01-14 15:45:46 +1100582 HOST_KEY_FILE);
Damien Miller942da032000-08-18 13:59:06 +1000583 fprintf(stderr, " -u len Maximum hostname length for utmp recording\n");
Damien Miller34132e52000-01-14 15:45:46 +1100584 fprintf(stderr, " -4 Use IPv4 only\n");
585 fprintf(stderr, " -6 Use IPv6 only\n");
Damien Miller95def091999-11-25 00:26:21 +1100586 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000587 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000588 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000589
Damien Miller34132e52000-01-14 15:45:46 +1100590 /*
591 * Force logging to stderr until we have loaded the private host
592 * key (unless started from inetd)
593 */
594 log_init(av0,
595 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
596 options.log_facility == -1 ? SYSLOG_FACILITY_AUTH : options.log_facility,
Damien Millereba71ba2000-04-29 23:57:08 +1000597 !silent && !inetd_flag);
Damien Miller34132e52000-01-14 15:45:46 +1100598
Damien Miller95def091999-11-25 00:26:21 +1100599 /* Read server configuration options from the configuration file. */
600 read_server_config(&options, config_file_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000601
Damien Miller95def091999-11-25 00:26:21 +1100602 /* Fill in default values for those options not explicitly set. */
603 fill_default_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000604
Damien Miller95def091999-11-25 00:26:21 +1100605 /* Check that there are no remaining arguments. */
606 if (optind < ac) {
607 fprintf(stderr, "Extra argument %s.\n", av[optind]);
608 exit(1);
609 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000610
Damien Miller95def091999-11-25 00:26:21 +1100611 debug("sshd version %.100s", SSH_VERSION);
Damien Miller2ccf6611999-11-15 15:25:10 +1100612
Damien Millereba71ba2000-04-29 23:57:08 +1000613 sensitive_data.dsa_host_key = NULL;
614 sensitive_data.host_key = NULL;
615
616 /* check if RSA support exists */
617 if ((options.protocol & SSH_PROTO_1) &&
618 rsa_alive() == 0) {
619 log("no RSA support in libssl and libcrypto. See ssl(8)");
620 log("Disabling protocol version 1");
621 options.protocol &= ~SSH_PROTO_1;
622 }
623 /* Load the RSA/DSA host key. It must have empty passphrase. */
624 if (options.protocol & SSH_PROTO_1) {
625 Key k;
626 sensitive_data.host_key = RSA_new();
627 k.type = KEY_RSA;
628 k.rsa = sensitive_data.host_key;
629 errno = 0;
630 if (!load_private_key(options.host_key_file, "", &k, NULL)) {
631 error("Could not load host key: %.200s: %.100s",
632 options.host_key_file, strerror(errno));
633 log("Disabling protocol version 1");
634 options.protocol &= ~SSH_PROTO_1;
635 }
636 k.rsa = NULL;
637 }
638 if (options.protocol & SSH_PROTO_2) {
639 sensitive_data.dsa_host_key = key_new(KEY_DSA);
Damien Millere247cc42000-05-07 12:03:14 +1000640 if (!load_private_key(options.host_dsa_key_file, "", sensitive_data.dsa_host_key, NULL)) {
641
642 error("Could not load DSA host key: %.200s", options.host_dsa_key_file);
Damien Millereba71ba2000-04-29 23:57:08 +1000643 log("Disabling protocol version 2");
644 options.protocol &= ~SSH_PROTO_2;
645 }
646 }
647 if (! options.protocol & (SSH_PROTO_1|SSH_PROTO_2)) {
648 if (silent == 0)
649 fprintf(stderr, "sshd: no hostkeys available -- exiting.\n");
650 log("sshd: no hostkeys available -- exiting.\n");
Damien Miller95def091999-11-25 00:26:21 +1100651 exit(1);
652 }
Damien Miller95def091999-11-25 00:26:21 +1100653
Damien Millereba71ba2000-04-29 23:57:08 +1000654 /* Check certain values for sanity. */
655 if (options.protocol & SSH_PROTO_1) {
656 if (options.server_key_bits < 512 ||
657 options.server_key_bits > 32768) {
658 fprintf(stderr, "Bad server key size.\n");
659 exit(1);
660 }
661 /*
662 * Check that server and host key lengths differ sufficiently. This
663 * is necessary to make double encryption work with rsaref. Oh, I
664 * hate software patents. I dont know if this can go? Niels
665 */
666 if (options.server_key_bits >
667 BN_num_bits(sensitive_data.host_key->n) - SSH_KEY_BITS_RESERVED &&
668 options.server_key_bits <
669 BN_num_bits(sensitive_data.host_key->n) + SSH_KEY_BITS_RESERVED) {
670 options.server_key_bits =
671 BN_num_bits(sensitive_data.host_key->n) + SSH_KEY_BITS_RESERVED;
672 debug("Forcing server key to %d bits to make it differ from host key.",
673 options.server_key_bits);
674 }
675 }
676
Damien Miller78315eb2000-09-29 23:01:36 +1100677#ifdef HAVE_SCO_PROTECTED_PW
678 (void) set_auth_parameters(ac, av);
679#endif
680
Damien Millereba71ba2000-04-29 23:57:08 +1000681 /* Initialize the log (it is reinitialized below in case we forked). */
Damien Miller95def091999-11-25 00:26:21 +1100682 if (debug_flag && !inetd_flag)
683 log_stderr = 1;
684 log_init(av0, options.log_level, options.log_facility, log_stderr);
685
Damien Millereba71ba2000-04-29 23:57:08 +1000686 /*
687 * If not in debugging mode, and not started from inetd, disconnect
688 * from the controlling terminal, and fork. The original process
689 * exits.
690 */
Damien Miller95def091999-11-25 00:26:21 +1100691 if (!debug_flag && !inetd_flag) {
692#ifdef TIOCNOTTY
693 int fd;
694#endif /* TIOCNOTTY */
695 if (daemon(0, 0) < 0)
696 fatal("daemon() failed: %.200s", strerror(errno));
697
698 /* Disconnect from the controlling tty. */
699#ifdef TIOCNOTTY
700 fd = open("/dev/tty", O_RDWR | O_NOCTTY);
701 if (fd >= 0) {
702 (void) ioctl(fd, TIOCNOTTY, NULL);
703 close(fd);
704 }
705#endif /* TIOCNOTTY */
706 }
707 /* Reinitialize the log (because of the fork above). */
708 log_init(av0, options.log_level, options.log_facility, log_stderr);
709
Damien Miller95def091999-11-25 00:26:21 +1100710 /* Do not display messages to stdout in RSA code. */
711 rsa_set_verbose(0);
712
713 /* Initialize the random number generator. */
714 arc4random_stir();
715
716 /* Chdir to the root directory so that the current disk can be
717 unmounted if desired. */
718 chdir("/");
719
Damien Miller95def091999-11-25 00:26:21 +1100720 /* Start listening for a socket, unless started from inetd. */
721 if (inetd_flag) {
722 int s1, s2;
723 s1 = dup(0); /* Make sure descriptors 0, 1, and 2 are in use. */
724 s2 = dup(s1);
725 sock_in = dup(0);
726 sock_out = dup(1);
Damien Miller994cf142000-07-21 10:19:44 +1000727 startup_pipe = -1;
Damien Millereba71ba2000-04-29 23:57:08 +1000728 /*
729 * We intentionally do not close the descriptors 0, 1, and 2
730 * as our code for setting the descriptors won\'t work if
731 * ttyfd happens to be one of those.
732 */
Damien Miller95def091999-11-25 00:26:21 +1100733 debug("inetd sockets after dupping: %d, %d", sock_in, sock_out);
734
Damien Millereba71ba2000-04-29 23:57:08 +1000735 if (options.protocol & SSH_PROTO_1) {
736 public_key = RSA_new();
737 sensitive_data.private_key = RSA_new();
738 log("Generating %d bit RSA key.", options.server_key_bits);
739 rsa_generate_key(sensitive_data.private_key, public_key,
740 options.server_key_bits);
741 arc4random_stir();
742 log("RSA key generation complete.");
743 }
Damien Miller95def091999-11-25 00:26:21 +1100744 } else {
Damien Miller34132e52000-01-14 15:45:46 +1100745 for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
746 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
747 continue;
748 if (num_listen_socks >= MAX_LISTEN_SOCKS)
749 fatal("Too many listen sockets. "
750 "Enlarge MAX_LISTEN_SOCKS");
751 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
752 ntop, sizeof(ntop), strport, sizeof(strport),
753 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
754 error("getnameinfo failed");
755 continue;
756 }
757 /* Create socket for listening. */
758 listen_sock = socket(ai->ai_family, SOCK_STREAM, 0);
759 if (listen_sock < 0) {
760 /* kernel may not support ipv6 */
761 verbose("socket: %.100s", strerror(errno));
762 continue;
763 }
764 if (fcntl(listen_sock, F_SETFL, O_NONBLOCK) < 0) {
765 error("listen_sock O_NONBLOCK: %s", strerror(errno));
766 close(listen_sock);
767 continue;
768 }
769 /*
770 * Set socket options. We try to make the port
771 * reusable and have it close as fast as possible
772 * without waiting in unnecessary wait states on
773 * close.
774 */
775 setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
776 (void *) &on, sizeof(on));
777 linger.l_onoff = 1;
778 linger.l_linger = 5;
779 setsockopt(listen_sock, SOL_SOCKET, SO_LINGER,
780 (void *) &linger, sizeof(linger));
Damien Miller95def091999-11-25 00:26:21 +1100781
Damien Miller34132e52000-01-14 15:45:46 +1100782 debug("Bind to port %s on %s.", strport, ntop);
Damien Miller95def091999-11-25 00:26:21 +1100783
Damien Miller34132e52000-01-14 15:45:46 +1100784 /* Bind the socket to the desired port. */
Damien Miller3c7eeb22000-03-03 22:35:33 +1100785 if ((bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) &&
786 (!ai->ai_next)) {
Damien Miller34132e52000-01-14 15:45:46 +1100787 error("Bind to port %s on %s failed: %.200s.",
788 strport, ntop, strerror(errno));
789 close(listen_sock);
790 continue;
791 }
792 listen_socks[num_listen_socks] = listen_sock;
793 num_listen_socks++;
Damien Miller95def091999-11-25 00:26:21 +1100794
Damien Miller34132e52000-01-14 15:45:46 +1100795 /* Start listening on the port. */
796 log("Server listening on %s port %s.", ntop, strport);
797 if (listen(listen_sock, 5) < 0)
798 fatal("listen: %.100s", strerror(errno));
799
Damien Miller95def091999-11-25 00:26:21 +1100800 }
Damien Miller34132e52000-01-14 15:45:46 +1100801 freeaddrinfo(options.listen_addrs);
802
803 if (!num_listen_socks)
804 fatal("Cannot bind any address.");
805
Damien Miller95def091999-11-25 00:26:21 +1100806 if (!debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +1100807 /*
808 * Record our pid in /etc/sshd_pid to make it easier
809 * to kill the correct sshd. We don\'t want to do
810 * this before the bind above because the bind will
811 * fail if there already is a daemon, and this will
812 * overwrite any old pid in the file.
813 */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100814 f = fopen(options.pid_file, "wb");
Damien Miller95def091999-11-25 00:26:21 +1100815 if (f) {
816 fprintf(f, "%u\n", (unsigned int) getpid());
817 fclose(f);
818 }
819 }
Damien Millereba71ba2000-04-29 23:57:08 +1000820 if (options.protocol & SSH_PROTO_1) {
821 public_key = RSA_new();
822 sensitive_data.private_key = RSA_new();
Damien Miller95def091999-11-25 00:26:21 +1100823
Damien Millereba71ba2000-04-29 23:57:08 +1000824 log("Generating %d bit RSA key.", options.server_key_bits);
825 rsa_generate_key(sensitive_data.private_key, public_key,
826 options.server_key_bits);
827 arc4random_stir();
828 log("RSA key generation complete.");
Damien Miller95def091999-11-25 00:26:21 +1100829
Damien Millereba71ba2000-04-29 23:57:08 +1000830 /* Schedule server key regeneration alarm. */
831 signal(SIGALRM, key_regeneration_alarm);
832 alarm(options.key_regeneration_time);
833 }
Damien Miller95def091999-11-25 00:26:21 +1100834
835 /* Arrange to restart on SIGHUP. The handler needs listen_sock. */
836 signal(SIGHUP, sighup_handler);
Damien Miller37023962000-07-11 17:31:38 +1000837
Damien Miller95def091999-11-25 00:26:21 +1100838 signal(SIGTERM, sigterm_handler);
839 signal(SIGQUIT, sigterm_handler);
840
841 /* Arrange SIGCHLD to be caught. */
842 signal(SIGCHLD, main_sigchld_handler);
843
Damien Miller34132e52000-01-14 15:45:46 +1100844 /* setup fd set for listen */
Damien Miller37023962000-07-11 17:31:38 +1000845 fdset = NULL;
Damien Miller34132e52000-01-14 15:45:46 +1100846 maxfd = 0;
847 for (i = 0; i < num_listen_socks; i++)
848 if (listen_socks[i] > maxfd)
849 maxfd = listen_socks[i];
Damien Miller37023962000-07-11 17:31:38 +1000850 /* pipes connected to unauthenticated childs */
851 startup_pipes = xmalloc(options.max_startups * sizeof(int));
852 for (i = 0; i < options.max_startups; i++)
853 startup_pipes[i] = -1;
Damien Miller34132e52000-01-14 15:45:46 +1100854
Damien Miller5428f641999-11-25 11:54:57 +1100855 /*
856 * Stay listening for connections until the system crashes or
857 * the daemon is killed with a signal.
858 */
Damien Miller95def091999-11-25 00:26:21 +1100859 for (;;) {
860 if (received_sighup)
861 sighup_restart();
Damien Miller37023962000-07-11 17:31:38 +1000862 if (fdset != NULL)
863 xfree(fdset);
864 fdsetsz = howmany(maxfd, NFDBITS) * sizeof(fd_mask);
865 fdset = (fd_set *)xmalloc(fdsetsz);
Damien Miller34132e52000-01-14 15:45:46 +1100866 memset(fdset, 0, fdsetsz);
Damien Miller37023962000-07-11 17:31:38 +1000867
Damien Miller34132e52000-01-14 15:45:46 +1100868 for (i = 0; i < num_listen_socks; i++)
869 FD_SET(listen_socks[i], fdset);
Damien Miller37023962000-07-11 17:31:38 +1000870 for (i = 0; i < options.max_startups; i++)
871 if (startup_pipes[i] != -1)
872 FD_SET(startup_pipes[i], fdset);
873
874 /* Wait in select until there is a connection. */
Damien Miller34132e52000-01-14 15:45:46 +1100875 if (select(maxfd + 1, fdset, NULL, NULL, NULL) < 0) {
876 if (errno != EINTR)
877 error("select: %.100s", strerror(errno));
Damien Miller50945fa1999-12-09 10:31:37 +1100878 continue;
Damien Miller34132e52000-01-14 15:45:46 +1100879 }
Damien Miller37023962000-07-11 17:31:38 +1000880 for (i = 0; i < options.max_startups; i++)
881 if (startup_pipes[i] != -1 &&
882 FD_ISSET(startup_pipes[i], fdset)) {
883 /*
884 * the read end of the pipe is ready
885 * if the child has closed the pipe
886 * after successfull authentication
887 * or if the child has died
888 */
889 close(startup_pipes[i]);
890 startup_pipes[i] = -1;
891 startups--;
892 }
Damien Miller34132e52000-01-14 15:45:46 +1100893 for (i = 0; i < num_listen_socks; i++) {
894 if (!FD_ISSET(listen_socks[i], fdset))
Damien Miller95def091999-11-25 00:26:21 +1100895 continue;
Damien Miller37023962000-07-11 17:31:38 +1000896 fromlen = sizeof(from);
897 newsock = accept(listen_socks[i], (struct sockaddr *)&from,
898 &fromlen);
899 if (newsock < 0) {
900 if (errno != EINTR && errno != EWOULDBLOCK)
901 error("accept: %.100s", strerror(errno));
902 continue;
903 }
904 if (fcntl(newsock, F_SETFL, 0) < 0) {
905 error("newsock del O_NONBLOCK: %s", strerror(errno));
906 continue;
907 }
Damien Miller942da032000-08-18 13:59:06 +1000908 if (drop_connection(startups) == 1) {
909 debug("drop connection #%d", startups);
Damien Miller37023962000-07-11 17:31:38 +1000910 close(newsock);
911 continue;
912 }
913 if (pipe(startup_p) == -1) {
914 close(newsock);
915 continue;
916 }
917
918 for (j = 0; j < options.max_startups; j++)
919 if (startup_pipes[j] == -1) {
920 startup_pipes[j] = startup_p[0];
921 if (maxfd < startup_p[0])
922 maxfd = startup_p[0];
923 startups++;
924 break;
925 }
926
Damien Miller5428f641999-11-25 11:54:57 +1100927 /*
Damien Miller37023962000-07-11 17:31:38 +1000928 * Got connection. Fork a child to handle it, unless
929 * we are in debugging mode.
Damien Miller5428f641999-11-25 11:54:57 +1100930 */
Damien Miller37023962000-07-11 17:31:38 +1000931 if (debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +1100932 /*
Damien Miller37023962000-07-11 17:31:38 +1000933 * In debugging mode. Close the listening
934 * socket, and start processing the
935 * connection without forking.
Damien Miller5428f641999-11-25 11:54:57 +1100936 */
Damien Miller37023962000-07-11 17:31:38 +1000937 debug("Server will not fork when running in debugging mode.");
Damien Miller34132e52000-01-14 15:45:46 +1100938 close_listen_socks();
Damien Miller95def091999-11-25 00:26:21 +1100939 sock_in = newsock;
940 sock_out = newsock;
Damien Miller4d97ba22000-07-11 18:15:50 +1000941 startup_pipe = -1;
Damien Miller182ee6e2000-07-12 09:45:27 +1000942 pid = getpid();
Damien Miller95def091999-11-25 00:26:21 +1100943 break;
Damien Miller37023962000-07-11 17:31:38 +1000944 } else {
945 /*
946 * Normal production daemon. Fork, and have
947 * the child process the connection. The
948 * parent continues listening.
949 */
950 if ((pid = fork()) == 0) {
951 /*
952 * Child. Close the listening and max_startup
953 * sockets. Start using the accepted socket.
954 * Reinitialize logging (since our pid has
955 * changed). We break out of the loop to handle
956 * the connection.
957 */
958 startup_pipe = startup_p[1];
959 for (j = 0; j < options.max_startups; j++)
960 if (startup_pipes[j] != -1)
961 close(startup_pipes[j]);
962 close_listen_socks();
963 sock_in = newsock;
964 sock_out = newsock;
965 log_init(av0, options.log_level, options.log_facility, log_stderr);
966 break;
967 }
Damien Miller95def091999-11-25 00:26:21 +1100968 }
Damien Miller37023962000-07-11 17:31:38 +1000969
970 /* Parent. Stay in the loop. */
971 if (pid < 0)
972 error("fork: %.100s", strerror(errno));
973 else
974 debug("Forked child %d.", pid);
975
976 close(startup_p[1]);
977
978 /* Mark that the key has been used (it was "given" to the child). */
979 key_used = 1;
980
981 arc4random_stir();
982
983 /* Close the new socket (the child is now taking care of it). */
984 close(newsock);
Damien Miller95def091999-11-25 00:26:21 +1100985 }
Damien Miller34132e52000-01-14 15:45:46 +1100986 /* child process check (or debug mode) */
987 if (num_listen_socks < 0)
988 break;
Damien Miller95def091999-11-25 00:26:21 +1100989 }
990 }
991
992 /* This is the child processing a new connection. */
993
Damien Miller5428f641999-11-25 11:54:57 +1100994 /*
995 * Disable the key regeneration alarm. We will not regenerate the
996 * key since we are no longer in a position to give it to anyone. We
997 * will not restart on SIGHUP since it no longer makes sense.
998 */
Damien Miller95def091999-11-25 00:26:21 +1100999 alarm(0);
1000 signal(SIGALRM, SIG_DFL);
1001 signal(SIGHUP, SIG_DFL);
1002 signal(SIGTERM, SIG_DFL);
1003 signal(SIGQUIT, SIG_DFL);
1004 signal(SIGCHLD, SIG_DFL);
Damien Miller4e0f5e12000-08-29 11:05:50 +11001005 signal(SIGINT, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001006
Damien Miller5428f641999-11-25 11:54:57 +11001007 /*
1008 * Set socket options for the connection. We want the socket to
1009 * close as fast as possible without waiting for anything. If the
1010 * connection is not a socket, these will do nothing.
1011 */
1012 /* setsockopt(sock_in, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on)); */
Damien Miller95def091999-11-25 00:26:21 +11001013 linger.l_onoff = 1;
1014 linger.l_linger = 5;
1015 setsockopt(sock_in, SOL_SOCKET, SO_LINGER, (void *) &linger, sizeof(linger));
1016
Damien Miller5428f641999-11-25 11:54:57 +11001017 /*
1018 * Register our connection. This turns encryption off because we do
1019 * not have a key.
1020 */
Damien Miller95def091999-11-25 00:26:21 +11001021 packet_set_connection(sock_in, sock_out);
1022
1023 remote_port = get_remote_port();
1024 remote_ip = get_remote_ipaddr();
1025
1026 /* Check whether logins are denied from this host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001027#ifdef LIBWRAP
Damien Miller34132e52000-01-14 15:45:46 +11001028 /* XXX LIBWRAP noes not know about IPv6 */
Damien Miller95def091999-11-25 00:26:21 +11001029 {
1030 struct request_info req;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001031
Damien Miller95def091999-11-25 00:26:21 +11001032 request_init(&req, RQ_DAEMON, av0, RQ_FILE, sock_in, NULL);
1033 fromhost(&req);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001034
Damien Miller95def091999-11-25 00:26:21 +11001035 if (!hosts_access(&req)) {
1036 close(sock_in);
1037 close(sock_out);
1038 refuse(&req);
1039 }
Damien Miller34132e52000-01-14 15:45:46 +11001040/*XXX IPv6 verbose("Connection from %.500s port %d", eval_client(&req), remote_port); */
Damien Miller95def091999-11-25 00:26:21 +11001041 }
Damien Miller34132e52000-01-14 15:45:46 +11001042#endif /* LIBWRAP */
Damien Miller95def091999-11-25 00:26:21 +11001043 /* Log the connection. */
1044 verbose("Connection from %.500s port %d", remote_ip, remote_port);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001045
Damien Miller5428f641999-11-25 11:54:57 +11001046 /*
1047 * We don\'t want to listen forever unless the other side
1048 * successfully authenticates itself. So we set up an alarm which is
1049 * cleared after successful authentication. A limit of zero
1050 * indicates no limit. Note that we don\'t set the alarm in debugging
1051 * mode; it is just annoying to have the server exit just when you
1052 * are about to discover the bug.
1053 */
Damien Miller95def091999-11-25 00:26:21 +11001054 signal(SIGALRM, grace_alarm_handler);
1055 if (!debug_flag)
1056 alarm(options.login_grace_time);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001057
Damien Millerb38eff82000-04-01 11:09:21 +10001058 sshd_exchange_identification(sock_in, sock_out);
Damien Miller5428f641999-11-25 11:54:57 +11001059 /*
1060 * Check that the connection comes from a privileged port. Rhosts-
1061 * and Rhosts-RSA-Authentication only make sense from priviledged
1062 * programs. Of course, if the intruder has root access on his local
1063 * machine, he can connect from any port. So do not use these
1064 * authentication methods from machines that you do not trust.
1065 */
Damien Miller95def091999-11-25 00:26:21 +11001066 if (remote_port >= IPPORT_RESERVED ||
1067 remote_port < IPPORT_RESERVED / 2) {
1068 options.rhosts_authentication = 0;
1069 options.rhosts_rsa_authentication = 0;
1070 }
Damien Miller34132e52000-01-14 15:45:46 +11001071#ifdef KRB4
1072 if (!packet_connection_is_ipv4() &&
1073 options.kerberos_authentication) {
1074 debug("Kerberos Authentication disabled, only available for IPv4.");
1075 options.kerberos_authentication = 0;
1076 }
1077#endif /* KRB4 */
1078
Damien Miller95def091999-11-25 00:26:21 +11001079 packet_set_nonblocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001080
Damien Miller396691a2000-01-20 22:44:08 +11001081 /* perform the key exchange */
Damien Miller396691a2000-01-20 22:44:08 +11001082 /* authenticate user and start session */
Damien Millerefb4afe2000-04-12 18:45:05 +10001083 if (compat20) {
1084 do_ssh2_kex();
1085 do_authentication2();
1086 } else {
1087 do_ssh1_kex();
1088 do_authentication();
1089 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001090
1091#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +11001092 /* Cleanup user's ticket cache file. */
1093 if (options.kerberos_ticket_cleanup)
1094 (void) dest_tkt();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001095#endif /* KRB4 */
1096
Damien Miller95def091999-11-25 00:26:21 +11001097 /* The connection has been terminated. */
1098 verbose("Closing connection to %.100s", remote_ip);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001099
Damien Millerbeb4ba51999-12-28 15:09:35 +11001100#ifdef USE_PAM
Damien Millere72b7af1999-12-30 15:08:44 +11001101 finish_pam();
Damien Millerbeb4ba51999-12-28 15:09:35 +11001102#endif /* USE_PAM */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001103
Damien Miller95def091999-11-25 00:26:21 +11001104 packet_close();
1105 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001106}
1107
Damien Miller95def091999-11-25 00:26:21 +11001108/*
Damien Miller396691a2000-01-20 22:44:08 +11001109 * SSH1 key exchange
Damien Miller95def091999-11-25 00:26:21 +11001110 */
Damien Miller2ccf6611999-11-15 15:25:10 +11001111void
Damien Millerb38eff82000-04-01 11:09:21 +10001112do_ssh1_kex()
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001113{
Damien Miller95def091999-11-25 00:26:21 +11001114 int i, len;
Damien Miller396691a2000-01-20 22:44:08 +11001115 int plen, slen;
Damien Miller95def091999-11-25 00:26:21 +11001116 BIGNUM *session_key_int;
1117 unsigned char session_key[SSH_SESSION_KEY_LENGTH];
Damien Miller396691a2000-01-20 22:44:08 +11001118 unsigned char cookie[8];
Damien Miller95def091999-11-25 00:26:21 +11001119 unsigned int cipher_type, auth_mask, protocol_flags;
Damien Miller95def091999-11-25 00:26:21 +11001120 u_int32_t rand = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001121
Damien Miller5428f641999-11-25 11:54:57 +11001122 /*
1123 * Generate check bytes that the client must send back in the user
1124 * packet in order for it to be accepted; this is used to defy ip
1125 * spoofing attacks. Note that this only works against somebody
1126 * doing IP spoofing from a remote machine; any machine on the local
1127 * network can still see outgoing packets and catch the random
1128 * cookie. This only affects rhosts authentication, and this is one
1129 * of the reasons why it is inherently insecure.
1130 */
Damien Miller95def091999-11-25 00:26:21 +11001131 for (i = 0; i < 8; i++) {
1132 if (i % 4 == 0)
1133 rand = arc4random();
Damien Miller396691a2000-01-20 22:44:08 +11001134 cookie[i] = rand & 0xff;
Damien Miller95def091999-11-25 00:26:21 +11001135 rand >>= 8;
1136 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001137
Damien Miller5428f641999-11-25 11:54:57 +11001138 /*
1139 * Send our public key. We include in the packet 64 bits of random
1140 * data that must be matched in the reply in order to prevent IP
1141 * spoofing.
1142 */
Damien Miller95def091999-11-25 00:26:21 +11001143 packet_start(SSH_SMSG_PUBLIC_KEY);
1144 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001145 packet_put_char(cookie[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001146
Damien Miller95def091999-11-25 00:26:21 +11001147 /* Store our public server RSA key. */
1148 packet_put_int(BN_num_bits(public_key->n));
1149 packet_put_bignum(public_key->e);
1150 packet_put_bignum(public_key->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001151
Damien Miller95def091999-11-25 00:26:21 +11001152 /* Store our public host RSA key. */
1153 packet_put_int(BN_num_bits(sensitive_data.host_key->n));
1154 packet_put_bignum(sensitive_data.host_key->e);
1155 packet_put_bignum(sensitive_data.host_key->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001156
Damien Miller95def091999-11-25 00:26:21 +11001157 /* Put protocol flags. */
1158 packet_put_int(SSH_PROTOFLAG_HOST_IN_FWD_OPEN);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001159
Damien Miller95def091999-11-25 00:26:21 +11001160 /* Declare which ciphers we support. */
Damien Miller874d77b2000-10-14 16:23:11 +11001161 packet_put_int(cipher_mask_ssh1(0));
Damien Miller95def091999-11-25 00:26:21 +11001162
1163 /* Declare supported authentication types. */
1164 auth_mask = 0;
1165 if (options.rhosts_authentication)
1166 auth_mask |= 1 << SSH_AUTH_RHOSTS;
1167 if (options.rhosts_rsa_authentication)
1168 auth_mask |= 1 << SSH_AUTH_RHOSTS_RSA;
1169 if (options.rsa_authentication)
1170 auth_mask |= 1 << SSH_AUTH_RSA;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001171#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +11001172 if (options.kerberos_authentication)
1173 auth_mask |= 1 << SSH_AUTH_KERBEROS;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001174#endif
1175#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +11001176 if (options.kerberos_tgt_passing)
1177 auth_mask |= 1 << SSH_PASS_KERBEROS_TGT;
1178 if (options.afs_token_passing)
1179 auth_mask |= 1 << SSH_PASS_AFS_TOKEN;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001180#endif
Damien Miller95def091999-11-25 00:26:21 +11001181#ifdef SKEY
1182 if (options.skey_authentication == 1)
1183 auth_mask |= 1 << SSH_AUTH_TIS;
1184#endif
1185 if (options.password_authentication)
1186 auth_mask |= 1 << SSH_AUTH_PASSWORD;
1187 packet_put_int(auth_mask);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001188
Damien Miller95def091999-11-25 00:26:21 +11001189 /* Send the packet and wait for it to be sent. */
1190 packet_send();
1191 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001192
Damien Miller95def091999-11-25 00:26:21 +11001193 debug("Sent %d bit public key and %d bit host key.",
1194 BN_num_bits(public_key->n), BN_num_bits(sensitive_data.host_key->n));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001195
Damien Miller95def091999-11-25 00:26:21 +11001196 /* Read clients reply (cipher type and session key). */
1197 packet_read_expect(&plen, SSH_CMSG_SESSION_KEY);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001198
Damien Miller50945fa1999-12-09 10:31:37 +11001199 /* Get cipher type and check whether we accept this. */
Damien Miller95def091999-11-25 00:26:21 +11001200 cipher_type = packet_get_char();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001201
Damien Miller874d77b2000-10-14 16:23:11 +11001202 if (!(cipher_mask_ssh1(0) & (1 << cipher_type)))
Damien Miller50945fa1999-12-09 10:31:37 +11001203 packet_disconnect("Warning: client selects unsupported cipher.");
1204
Damien Miller95def091999-11-25 00:26:21 +11001205 /* Get check bytes from the packet. These must match those we
1206 sent earlier with the public key packet. */
1207 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001208 if (cookie[i] != packet_get_char())
Damien Miller95def091999-11-25 00:26:21 +11001209 packet_disconnect("IP Spoofing check bytes do not match.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001210
Damien Miller95def091999-11-25 00:26:21 +11001211 debug("Encryption type: %.200s", cipher_name(cipher_type));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001212
Damien Miller95def091999-11-25 00:26:21 +11001213 /* Get the encrypted integer. */
1214 session_key_int = BN_new();
1215 packet_get_bignum(session_key_int, &slen);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001216
Damien Miller95def091999-11-25 00:26:21 +11001217 protocol_flags = packet_get_int();
1218 packet_set_protocol_flags(protocol_flags);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001219
Damien Miller95def091999-11-25 00:26:21 +11001220 packet_integrity_check(plen, 1 + 8 + slen + 4, SSH_CMSG_SESSION_KEY);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001221
Damien Miller5428f641999-11-25 11:54:57 +11001222 /*
1223 * Decrypt it using our private server key and private host key (key
1224 * with larger modulus first).
1225 */
Damien Miller95def091999-11-25 00:26:21 +11001226 if (BN_cmp(sensitive_data.private_key->n, sensitive_data.host_key->n) > 0) {
1227 /* Private key has bigger modulus. */
1228 if (BN_num_bits(sensitive_data.private_key->n) <
1229 BN_num_bits(sensitive_data.host_key->n) + SSH_KEY_BITS_RESERVED) {
1230 fatal("do_connection: %s: private_key %d < host_key %d + SSH_KEY_BITS_RESERVED %d",
1231 get_remote_ipaddr(),
1232 BN_num_bits(sensitive_data.private_key->n),
1233 BN_num_bits(sensitive_data.host_key->n),
1234 SSH_KEY_BITS_RESERVED);
1235 }
1236 rsa_private_decrypt(session_key_int, session_key_int,
1237 sensitive_data.private_key);
1238 rsa_private_decrypt(session_key_int, session_key_int,
1239 sensitive_data.host_key);
1240 } else {
1241 /* Host key has bigger modulus (or they are equal). */
1242 if (BN_num_bits(sensitive_data.host_key->n) <
1243 BN_num_bits(sensitive_data.private_key->n) + SSH_KEY_BITS_RESERVED) {
1244 fatal("do_connection: %s: host_key %d < private_key %d + SSH_KEY_BITS_RESERVED %d",
1245 get_remote_ipaddr(),
1246 BN_num_bits(sensitive_data.host_key->n),
1247 BN_num_bits(sensitive_data.private_key->n),
1248 SSH_KEY_BITS_RESERVED);
1249 }
1250 rsa_private_decrypt(session_key_int, session_key_int,
1251 sensitive_data.host_key);
1252 rsa_private_decrypt(session_key_int, session_key_int,
1253 sensitive_data.private_key);
1254 }
Damien Miller356a0b01999-11-08 15:30:59 +11001255
Damien Miller396691a2000-01-20 22:44:08 +11001256 compute_session_id(session_id, cookie,
Damien Miller95def091999-11-25 00:26:21 +11001257 sensitive_data.host_key->n,
1258 sensitive_data.private_key->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001259
Damien Miller396691a2000-01-20 22:44:08 +11001260 /* Destroy the private and public keys. They will no longer be needed. */
Damien Millereba71ba2000-04-29 23:57:08 +10001261 destroy_sensitive_data();
Damien Miller396691a2000-01-20 22:44:08 +11001262
Damien Miller5428f641999-11-25 11:54:57 +11001263 /*
1264 * Extract session key from the decrypted integer. The key is in the
1265 * least significant 256 bits of the integer; the first byte of the
1266 * key is in the highest bits.
1267 */
Damien Miller95def091999-11-25 00:26:21 +11001268 BN_mask_bits(session_key_int, sizeof(session_key) * 8);
1269 len = BN_num_bytes(session_key_int);
1270 if (len < 0 || len > sizeof(session_key))
1271 fatal("do_connection: bad len from %s: session_key_int %d > sizeof(session_key) %d",
1272 get_remote_ipaddr(),
Damien Miller3dfb0dd2000-09-30 09:49:08 +11001273 len, (int) sizeof(session_key));
Damien Miller95def091999-11-25 00:26:21 +11001274 memset(session_key, 0, sizeof(session_key));
1275 BN_bn2bin(session_key_int, session_key + sizeof(session_key) - len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001276
Damien Miller396691a2000-01-20 22:44:08 +11001277 /* Destroy the decrypted integer. It is no longer needed. */
1278 BN_clear_free(session_key_int);
1279
Damien Miller95def091999-11-25 00:26:21 +11001280 /* Xor the first 16 bytes of the session key with the session id. */
1281 for (i = 0; i < 16; i++)
1282 session_key[i] ^= session_id[i];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001283
Damien Miller95def091999-11-25 00:26:21 +11001284 /* Set the session key. From this on all communications will be encrypted. */
1285 packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, cipher_type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001286
Damien Miller95def091999-11-25 00:26:21 +11001287 /* Destroy our copy of the session key. It is no longer needed. */
1288 memset(session_key, 0, sizeof(session_key));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001289
Damien Miller95def091999-11-25 00:26:21 +11001290 debug("Received session key; encryption turned on.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001291
Damien Miller95def091999-11-25 00:26:21 +11001292 /* Send an acknowledgement packet. Note that this packet is sent encrypted. */
1293 packet_start(SSH_SMSG_SUCCESS);
1294 packet_send();
1295 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001296}
Damien Millerefb4afe2000-04-12 18:45:05 +10001297
1298/*
1299 * SSH2 key exchange: diffie-hellman-group1-sha1
1300 */
1301void
1302do_ssh2_kex()
1303{
1304 Buffer *server_kexinit;
1305 Buffer *client_kexinit;
Damien Miller874d77b2000-10-14 16:23:11 +11001306 int payload_len;
Damien Millerefb4afe2000-04-12 18:45:05 +10001307 int i;
Damien Millerefb4afe2000-04-12 18:45:05 +10001308 Kex *kex;
Damien Millerefb4afe2000-04-12 18:45:05 +10001309 char *cprop[PROPOSAL_MAX];
Damien Millerefb4afe2000-04-12 18:45:05 +10001310
1311/* KEXINIT */
1312
Damien Miller78928792000-04-12 20:17:38 +10001313 if (options.ciphers != NULL) {
Damien Miller4af51302000-04-16 11:18:38 +10001314 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
Damien Miller78928792000-04-12 20:17:38 +10001315 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
1316 }
Damien Millerb1715dc2000-05-30 13:44:51 +10001317 server_kexinit = kex_init(myproposal);
Damien Millerefb4afe2000-04-12 18:45:05 +10001318 client_kexinit = xmalloc(sizeof(*client_kexinit));
1319 buffer_init(client_kexinit);
Damien Millerefb4afe2000-04-12 18:45:05 +10001320
Damien Millerb1715dc2000-05-30 13:44:51 +10001321 /* algorithm negotiation */
1322 kex_exchange_kexinit(server_kexinit, client_kexinit, cprop);
1323 kex = kex_choose_conf(cprop, myproposal, 1);
1324 for (i = 0; i < PROPOSAL_MAX; i++)
1325 xfree(cprop[i]);
Damien Millerefb4afe2000-04-12 18:45:05 +10001326
Damien Miller874d77b2000-10-14 16:23:11 +11001327 switch (kex->kex_type) {
1328 case DH_GRP1_SHA1:
1329 ssh_dh1_server(kex, client_kexinit, server_kexinit);
1330 break;
1331 case DH_GEX_SHA1:
1332 ssh_dhgex_server(kex, client_kexinit, server_kexinit);
1333 break;
1334 default:
1335 fatal("Unsupported key exchange %d", kex->kex_type);
1336 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001337
Damien Miller874d77b2000-10-14 16:23:11 +11001338 debug("send SSH2_MSG_NEWKEYS.");
1339 packet_start(SSH2_MSG_NEWKEYS);
1340 packet_send();
1341 packet_write_wait();
1342 debug("done: send SSH2_MSG_NEWKEYS.");
1343
1344 debug("Wait SSH2_MSG_NEWKEYS.");
1345 packet_read_expect(&payload_len, SSH2_MSG_NEWKEYS);
1346 debug("GOT SSH2_MSG_NEWKEYS.");
1347
1348#ifdef DEBUG_KEXDH
1349 /* send 1st encrypted/maced/compressed message */
1350 packet_start(SSH2_MSG_IGNORE);
1351 packet_put_cstring("markus");
1352 packet_send();
1353 packet_write_wait();
1354#endif
1355
1356 debug("done: KEX2.");
1357}
1358
1359/*
1360 * SSH2 key exchange
1361 */
1362
1363/* diffie-hellman-group1-sha1 */
1364
1365void
1366ssh_dh1_server(Kex *kex, Buffer *client_kexinit, Buffer *server_kexinit)
1367{
1368#ifdef DEBUG_KEXDH
1369 int i;
1370#endif
1371 int payload_len, dlen;
1372 int slen;
1373 unsigned char *signature = NULL;
1374 unsigned char *server_host_key_blob = NULL;
1375 unsigned int sbloblen;
1376 unsigned int klen, kout;
1377 unsigned char *kbuf;
1378 unsigned char *hash;
1379 BIGNUM *shared_secret = 0;
1380 DH *dh;
1381 BIGNUM *dh_client_pub = 0;
1382
1383/* KEXDH */
Damien Millerefb4afe2000-04-12 18:45:05 +10001384 debug("Wait SSH2_MSG_KEXDH_INIT.");
1385 packet_read_expect(&payload_len, SSH2_MSG_KEXDH_INIT);
1386
1387 /* key, cert */
1388 dh_client_pub = BN_new();
1389 if (dh_client_pub == NULL)
1390 fatal("dh_client_pub == NULL");
1391 packet_get_bignum2(dh_client_pub, &dlen);
1392
1393#ifdef DEBUG_KEXDH
1394 fprintf(stderr, "\ndh_client_pub= ");
Damien Miller62cee002000-09-23 17:15:56 +11001395 BN_print_fp(stderr, dh_client_pub);
Damien Millerefb4afe2000-04-12 18:45:05 +10001396 fprintf(stderr, "\n");
1397 debug("bits %d", BN_num_bits(dh_client_pub));
1398#endif
1399
1400 /* generate DH key */
Damien Miller78928792000-04-12 20:17:38 +10001401 dh = dh_new_group1(); /* XXX depends on 'kex' */
Damien Millerefb4afe2000-04-12 18:45:05 +10001402
1403#ifdef DEBUG_KEXDH
1404 fprintf(stderr, "\np= ");
Damien Miller62cee002000-09-23 17:15:56 +11001405 BN_print_fp(stderr, dh->p);
Damien Millerefb4afe2000-04-12 18:45:05 +10001406 fprintf(stderr, "\ng= ");
Damien Miller62cee002000-09-23 17:15:56 +11001407 bn_print(dh->g);
Damien Millerefb4afe2000-04-12 18:45:05 +10001408 fprintf(stderr, "\npub= ");
Damien Miller62cee002000-09-23 17:15:56 +11001409 BN_print_fp(stderr, dh->pub_key);
Damien Millerefb4afe2000-04-12 18:45:05 +10001410 fprintf(stderr, "\n");
Damien Miller62cee002000-09-23 17:15:56 +11001411 DHparams_print_fp(stderr, dh);
Damien Millerefb4afe2000-04-12 18:45:05 +10001412#endif
Damien Miller78928792000-04-12 20:17:38 +10001413 if (!dh_pub_is_valid(dh, dh_client_pub))
1414 packet_disconnect("bad client public DH value");
Damien Millerefb4afe2000-04-12 18:45:05 +10001415
1416 klen = DH_size(dh);
1417 kbuf = xmalloc(klen);
1418 kout = DH_compute_key(kbuf, dh_client_pub, dh);
1419
1420#ifdef DEBUG_KEXDH
1421 debug("shared secret: len %d/%d", klen, kout);
1422 fprintf(stderr, "shared secret == ");
1423 for (i = 0; i< kout; i++)
1424 fprintf(stderr, "%02x", (kbuf[i])&0xff);
1425 fprintf(stderr, "\n");
1426#endif
1427 shared_secret = BN_new();
1428
1429 BN_bin2bn(kbuf, kout, shared_secret);
1430 memset(kbuf, 0, klen);
1431 xfree(kbuf);
1432
Damien Millereba71ba2000-04-29 23:57:08 +10001433 /* XXX precompute? */
Damien Miller874d77b2000-10-14 16:23:11 +11001434 dsa_make_key_blob(sensitive_data.dsa_host_key,
1435 &server_host_key_blob, &sbloblen);
Damien Millerefb4afe2000-04-12 18:45:05 +10001436
1437 /* calc H */ /* XXX depends on 'kex' */
1438 hash = kex_hash(
1439 client_version_string,
1440 server_version_string,
1441 buffer_ptr(client_kexinit), buffer_len(client_kexinit),
1442 buffer_ptr(server_kexinit), buffer_len(server_kexinit),
1443 (char *)server_host_key_blob, sbloblen,
1444 dh_client_pub,
1445 dh->pub_key,
1446 shared_secret
1447 );
1448 buffer_free(client_kexinit);
1449 buffer_free(server_kexinit);
1450 xfree(client_kexinit);
1451 xfree(server_kexinit);
1452#ifdef DEBUG_KEXDH
Damien Miller4af51302000-04-16 11:18:38 +10001453 fprintf(stderr, "hash == ");
1454 for (i = 0; i< 20; i++)
1455 fprintf(stderr, "%02x", (hash[i])&0xff);
1456 fprintf(stderr, "\n");
Damien Millerefb4afe2000-04-12 18:45:05 +10001457#endif
Damien Millereba71ba2000-04-29 23:57:08 +10001458 /* save session id := H */
1459 /* XXX hashlen depends on KEX */
1460 session_id2_len = 20;
1461 session_id2 = xmalloc(session_id2_len);
1462 memcpy(session_id2, hash, session_id2_len);
1463
Damien Millerefb4afe2000-04-12 18:45:05 +10001464 /* sign H */
Damien Millereba71ba2000-04-29 23:57:08 +10001465 /* XXX hashlen depends on KEX */
1466 dsa_sign(sensitive_data.dsa_host_key, &signature, &slen, hash, 20);
1467
1468 destroy_sensitive_data();
Damien Millerefb4afe2000-04-12 18:45:05 +10001469
1470 /* send server hostkey, DH pubkey 'f' and singed H */
1471 packet_start(SSH2_MSG_KEXDH_REPLY);
1472 packet_put_string((char *)server_host_key_blob, sbloblen);
Damien Millere247cc42000-05-07 12:03:14 +10001473 packet_put_bignum2(dh->pub_key); /* f */
Damien Millerefb4afe2000-04-12 18:45:05 +10001474 packet_put_string((char *)signature, slen);
1475 packet_send();
Damien Miller8bb73be2000-04-19 16:26:12 +10001476 xfree(signature);
Damien Millereba71ba2000-04-29 23:57:08 +10001477 xfree(server_host_key_blob);
Damien Millerefb4afe2000-04-12 18:45:05 +10001478 packet_write_wait();
1479
1480 kex_derive_keys(kex, hash, shared_secret);
1481 packet_set_kex(kex);
1482
1483 /* have keys, free DH */
1484 DH_free(dh);
Damien Miller874d77b2000-10-14 16:23:11 +11001485}
Damien Millerefb4afe2000-04-12 18:45:05 +10001486
Damien Miller874d77b2000-10-14 16:23:11 +11001487/* diffie-hellman-group-exchange-sha1 */
1488
1489void
1490ssh_dhgex_server(Kex *kex, Buffer *client_kexinit, Buffer *server_kexinit)
1491{
1492#ifdef DEBUG_KEXDH
1493 int i;
1494#endif
1495 int payload_len, dlen;
1496 int slen, nbits;
1497 unsigned char *signature = NULL;
1498 unsigned char *server_host_key_blob = NULL;
1499 unsigned int sbloblen;
1500 unsigned int klen, kout;
1501 unsigned char *kbuf;
1502 unsigned char *hash;
1503 BIGNUM *shared_secret = 0;
1504 DH *dh;
1505 BIGNUM *dh_client_pub = 0;
1506
1507/* KEXDHGEX */
1508 debug("Wait SSH2_MSG_KEX_DH_GEX_REQUEST.");
1509 packet_read_expect(&payload_len, SSH2_MSG_KEX_DH_GEX_REQUEST);
1510 nbits = packet_get_int();
1511 dh = choose_dh(nbits);
1512
1513 debug("Sending SSH2_MSG_KEX_DH_GEX_GROUP.");
1514 packet_start(SSH2_MSG_KEX_DH_GEX_GROUP);
1515 packet_put_bignum2(dh->p);
1516 packet_put_bignum2(dh->g);
Damien Millerefb4afe2000-04-12 18:45:05 +10001517 packet_send();
1518 packet_write_wait();
Damien Millerefb4afe2000-04-12 18:45:05 +10001519
Damien Miller874d77b2000-10-14 16:23:11 +11001520 debug("Wait SSH2_MSG_KEX_DH_GEX_INIT.");
1521 packet_read_expect(&payload_len, SSH2_MSG_KEX_DH_GEX_INIT);
1522
1523 /* key, cert */
1524 dh_client_pub = BN_new();
1525 if (dh_client_pub == NULL)
1526 fatal("dh_client_pub == NULL");
1527 packet_get_bignum2(dh_client_pub, &dlen);
Damien Millerefb4afe2000-04-12 18:45:05 +10001528
Damien Miller78928792000-04-12 20:17:38 +10001529#ifdef DEBUG_KEXDH
Damien Miller874d77b2000-10-14 16:23:11 +11001530 fprintf(stderr, "\ndh_client_pub= ");
1531 BN_print_fp(stderr, dh_client_pub);
1532 fprintf(stderr, "\n");
1533 debug("bits %d", BN_num_bits(dh_client_pub));
Damien Miller78928792000-04-12 20:17:38 +10001534#endif
Damien Miller874d77b2000-10-14 16:23:11 +11001535
1536#ifdef DEBUG_KEXDH
1537 fprintf(stderr, "\np= ");
1538 BN_print_fp(stderr, dh->p);
1539 fprintf(stderr, "\ng= ");
1540 bn_print(dh->g);
1541 fprintf(stderr, "\npub= ");
1542 BN_print_fp(stderr, dh->pub_key);
1543 fprintf(stderr, "\n");
1544 DHparams_print_fp(stderr, dh);
1545#endif
1546 if (!dh_pub_is_valid(dh, dh_client_pub))
1547 packet_disconnect("bad client public DH value");
1548
1549 klen = DH_size(dh);
1550 kbuf = xmalloc(klen);
1551 kout = DH_compute_key(kbuf, dh_client_pub, dh);
1552
1553#ifdef DEBUG_KEXDH
1554 debug("shared secret: len %d/%d", klen, kout);
1555 fprintf(stderr, "shared secret == ");
1556 for (i = 0; i< kout; i++)
1557 fprintf(stderr, "%02x", (kbuf[i])&0xff);
1558 fprintf(stderr, "\n");
1559#endif
1560 shared_secret = BN_new();
1561
1562 BN_bin2bn(kbuf, kout, shared_secret);
1563 memset(kbuf, 0, klen);
1564 xfree(kbuf);
1565
1566 /* XXX precompute? */
1567 dsa_make_key_blob(sensitive_data.dsa_host_key,
1568 &server_host_key_blob, &sbloblen);
1569
1570 /* calc H */ /* XXX depends on 'kex' */
1571 hash = kex_hash_gex(
1572 client_version_string,
1573 server_version_string,
1574 buffer_ptr(client_kexinit), buffer_len(client_kexinit),
1575 buffer_ptr(server_kexinit), buffer_len(server_kexinit),
1576 (char *)server_host_key_blob, sbloblen,
1577 nbits, dh->p, dh->g,
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);
1586#ifdef DEBUG_KEXDH
1587 fprintf(stderr, "hash == ");
1588 for (i = 0; i< 20; i++)
1589 fprintf(stderr, "%02x", (hash[i])&0xff);
1590 fprintf(stderr, "\n");
1591#endif
1592 /* save session id := H */
1593 /* XXX hashlen depends on KEX */
1594 session_id2_len = 20;
1595 session_id2 = xmalloc(session_id2_len);
1596 memcpy(session_id2, hash, session_id2_len);
1597
1598 /* sign H */
1599 /* XXX hashlen depends on KEX */
1600 dsa_sign(sensitive_data.dsa_host_key, &signature, &slen, hash, 20);
1601
1602 destroy_sensitive_data();
1603
1604 /* send server hostkey, DH pubkey 'f' and singed H */
1605 packet_start(SSH2_MSG_KEX_DH_GEX_REPLY);
1606 packet_put_string((char *)server_host_key_blob, sbloblen);
1607 packet_put_bignum2(dh->pub_key); /* f */
1608 packet_put_string((char *)signature, slen);
1609 packet_send();
1610 xfree(signature);
1611 xfree(server_host_key_blob);
1612 packet_write_wait();
1613
1614 kex_derive_keys(kex, hash, shared_secret);
1615 packet_set_kex(kex);
1616
1617 /* have keys, free DH */
1618 DH_free(dh);
Damien Millerefb4afe2000-04-12 18:45:05 +10001619}
Damien Miller874d77b2000-10-14 16:23:11 +11001620