blob: 853553592fcfe1c7b2276d0b3448340cc5f9d670 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Millere4340be2000-09-16 13:29:08 +11005 * This program is the ssh daemon. It listens for connections from clients,
6 * and performs authentication, executes use commands or shell, and forwards
Damien Miller95def091999-11-25 00:26:21 +11007 * information to/from the application to the user client over an encrypted
Damien Millere4340be2000-09-16 13:29:08 +11008 * connection. This can also handle forwarding of X11, TCP/IP, and
9 * authentication agent connections.
Damien Millerefb4afe2000-04-12 18:45:05 +100010 *
Damien Millere4340be2000-09-16 13:29:08 +110011 * As far as I am concerned, the code I have written for this software
12 * can be used freely for any purpose. Any derived versions of this
13 * software must be clearly marked as such, and if the derived work is
14 * incompatible with the protocol description in the RFC file, it must be
15 * called by a name other than "ssh" or "Secure Shell".
16 *
17 * SSH2 implementation:
18 *
19 * Copyright (c) 2000 Markus Friedl. All rights reserved.
20 *
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
23 * are met:
24 * 1. Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the distribution.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110040 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041
42#include "includes.h"
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +000043RCSID("$OpenBSD: sshd.c,v 1.157 2001/01/22 23:06:40 markus Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100044
Ben Lindstrom226cfa02001-01-22 05:34:40 +000045#include <openssl/dh.h>
46#include <openssl/bn.h>
47#include <openssl/hmac.h>
48
49#include "ssh.h"
50#include "ssh1.h"
51#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100052#include "xmalloc.h"
53#include "rsa.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100054#include "pty.h"
55#include "packet.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100056#include "mpaux.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000057#include "log.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100058#include "servconf.h"
59#include "uidswap.h"
60#include "compat.h"
Damien Millerb38eff82000-04-01 11:09:21 +100061#include "buffer.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000062#include "cipher.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100063#include "kex.h"
Damien Millerb38eff82000-04-01 11:09:21 +100064#include "key.h"
Damien Miller874d77b2000-10-14 16:23:11 +110065#include "dh.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100066#include "myproposal.h"
Damien Millereba71ba2000-04-29 23:57:08 +100067#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000068#include "pathnames.h"
69#include "atomicio.h"
70#include "canohost.h"
71#include "auth.h"
72#include "misc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100073
74#ifdef LIBWRAP
75#include <tcpd.h>
76#include <syslog.h>
77int allow_severity = LOG_INFO;
78int deny_severity = LOG_WARNING;
79#endif /* LIBWRAP */
80
81#ifndef O_NOCTTY
82#define O_NOCTTY 0
83#endif
84
Ben Lindstrom49a79c02000-11-17 03:47:20 +000085#ifdef HAVE___PROGNAME
86extern char *__progname;
87#else
88char *__progname;
89#endif
90
Damien Millerd4a8b7e1999-10-27 13:42:43 +100091/* Server configuration options. */
92ServerOptions options;
93
94/* Name of the server configuration file. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +000095char *config_file_name = _PATH_SERVER_CONFIG_FILE;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100096
Damien Miller4af51302000-04-16 11:18:38 +100097/*
Damien Miller34132e52000-01-14 15:45:46 +110098 * Flag indicating whether IPv4 or IPv6. This can be set on the command line.
99 * Default value is AF_UNSPEC means both IPv4 and IPv6.
100 */
Damien Miller7d80e342000-01-19 14:36:49 +1100101#ifdef IPV4_DEFAULT
102int IPv4or6 = AF_INET;
103#else
Damien Miller34132e52000-01-14 15:45:46 +1100104int IPv4or6 = AF_UNSPEC;
Damien Miller7d80e342000-01-19 14:36:49 +1100105#endif
Damien Miller34132e52000-01-14 15:45:46 +1100106
Damien Miller95def091999-11-25 00:26:21 +1100107/*
108 * Debug mode flag. This can be set on the command line. If debug
109 * mode is enabled, extra debugging output will be sent to the system
110 * log, the daemon will not go to background, and will exit after processing
111 * the first connection.
112 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000113int debug_flag = 0;
114
115/* Flag indicating that the daemon is being started from inetd. */
116int inetd_flag = 0;
117
Ben Lindstromc72745a2000-12-02 19:03:54 +0000118/* Flag indicating that sshd should not detach and become a daemon. */
119int no_daemon_flag = 0;
120
Damien Miller5ce662a1999-11-11 17:57:39 +1100121/* debug goes to stderr unless inetd_flag is set */
122int log_stderr = 0;
123
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000124/* Saved arguments to main(). */
125char **saved_argv;
Damien Millerb8c656e2000-06-28 15:22:41 +1000126int saved_argc;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000127
Damien Miller5428f641999-11-25 11:54:57 +1100128/*
Damien Miller34132e52000-01-14 15:45:46 +1100129 * The sockets that the server is listening; this is used in the SIGHUP
130 * signal handler.
Damien Miller5428f641999-11-25 11:54:57 +1100131 */
Damien Miller34132e52000-01-14 15:45:46 +1100132#define MAX_LISTEN_SOCKS 16
133int listen_socks[MAX_LISTEN_SOCKS];
134int num_listen_socks = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000135
Damien Miller5428f641999-11-25 11:54:57 +1100136/*
137 * the client's version string, passed by sshd2 in compat mode. if != NULL,
138 * sshd will skip the version-number exchange
139 */
Damien Miller95def091999-11-25 00:26:21 +1100140char *client_version_string = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000141char *server_version_string = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000142
Damien Miller5428f641999-11-25 11:54:57 +1100143/*
144 * Any really sensitive data in the application is contained in this
145 * structure. The idea is that this structure could be locked into memory so
146 * that the pages do not get written into swap. However, there are some
147 * problems. The private key contains BIGNUMs, and we do not (in principle)
148 * have access to the internals of them, and locking just the structure is
149 * not very useful. Currently, memory locking is not implemented.
150 */
Damien Miller95def091999-11-25 00:26:21 +1100151struct {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100152 Key *server_key; /* empheral server key */
153 Key *ssh1_host_key; /* ssh1 host key */
154 Key **host_keys; /* all private host keys */
155 int have_ssh1_key;
156 int have_ssh2_key;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000157} sensitive_data;
158
Damien Miller5428f641999-11-25 11:54:57 +1100159/*
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000160 * Flag indicating whether the RSA server key needs to be regenerated.
161 * Is set in the SIGALRM handler and cleared when the key is regenerated.
Damien Miller5428f641999-11-25 11:54:57 +1100162 */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000163int key_do_regen = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000164
165/* This is set to true when SIGHUP is received. */
166int received_sighup = 0;
167
Damien Millerb38eff82000-04-01 11:09:21 +1000168/* session identifier, used by RSA-auth */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000169u_char session_id[16];
Damien Millerb38eff82000-04-01 11:09:21 +1000170
Damien Millereba71ba2000-04-29 23:57:08 +1000171/* same for ssh2 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000172u_char *session_id2 = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000173int session_id2_len = 0;
174
Damien Miller942da032000-08-18 13:59:06 +1000175/* record remote hostname or ip */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000176u_int utmp_len = MAXHOSTNAMELEN;
Damien Miller942da032000-08-18 13:59:06 +1000177
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000178/* Prototypes for various functions defined later in this file. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000179void do_ssh1_kex(void);
180void do_ssh2_kex(void);
Damien Miller98c7ad62000-03-09 21:27:49 +1100181
Damien Miller874d77b2000-10-14 16:23:11 +1100182void ssh_dh1_server(Kex *, Buffer *_kexinit, Buffer *);
183void ssh_dhgex_server(Kex *, Buffer *_kexinit, Buffer *);
184
Damien Miller98c7ad62000-03-09 21:27:49 +1100185/*
Damien Miller34132e52000-01-14 15:45:46 +1100186 * Close all listening sockets
187 */
188void
189close_listen_socks(void)
190{
191 int i;
192 for (i = 0; i < num_listen_socks; i++)
193 close(listen_socks[i]);
194 num_listen_socks = -1;
195}
196
197/*
Damien Miller95def091999-11-25 00:26:21 +1100198 * Signal handler for SIGHUP. Sshd execs itself when it receives SIGHUP;
199 * the effect is to reread the configuration file (and to regenerate
200 * the server key).
201 */
Damien Miller4af51302000-04-16 11:18:38 +1000202void
Damien Miller95def091999-11-25 00:26:21 +1100203sighup_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000204{
Damien Miller95def091999-11-25 00:26:21 +1100205 received_sighup = 1;
206 signal(SIGHUP, sighup_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000207}
208
Damien Miller95def091999-11-25 00:26:21 +1100209/*
210 * Called from the main program after receiving SIGHUP.
211 * Restarts the server.
212 */
Damien Miller4af51302000-04-16 11:18:38 +1000213void
Damien Miller95def091999-11-25 00:26:21 +1100214sighup_restart()
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000215{
Damien Miller95def091999-11-25 00:26:21 +1100216 log("Received SIGHUP; restarting.");
Damien Miller34132e52000-01-14 15:45:46 +1100217 close_listen_socks();
Damien Miller95def091999-11-25 00:26:21 +1100218 execv(saved_argv[0], saved_argv);
Kevin Stevesec84dc12000-12-13 17:45:15 +0000219 log("RESTART FAILED: av[0]='%.100s', error: %.100s.", saved_argv[0], strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100220 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000221}
222
Damien Miller95def091999-11-25 00:26:21 +1100223/*
224 * Generic signal handler for terminating signals in the master daemon.
225 * These close the listen socket; not closing it seems to cause "Address
226 * already in use" problems on some machines, which is inconvenient.
227 */
Damien Miller4af51302000-04-16 11:18:38 +1000228void
Damien Miller95def091999-11-25 00:26:21 +1100229sigterm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000230{
Damien Miller95def091999-11-25 00:26:21 +1100231 log("Received signal %d; terminating.", sig);
Damien Miller34132e52000-01-14 15:45:46 +1100232 close_listen_socks();
Damien Miller6f83b8e2000-05-02 09:23:45 +1000233 unlink(options.pid_file);
Damien Miller95def091999-11-25 00:26:21 +1100234 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000235}
236
Damien Miller95def091999-11-25 00:26:21 +1100237/*
238 * SIGCHLD handler. This is called whenever a child dies. This will then
239 * reap any zombies left by exited c.
240 */
Damien Miller4af51302000-04-16 11:18:38 +1000241void
Damien Miller95def091999-11-25 00:26:21 +1100242main_sigchld_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000243{
Damien Miller95def091999-11-25 00:26:21 +1100244 int save_errno = errno;
245 int status;
Damien Miller431f66b1999-11-21 18:31:57 +1100246
Damien Miller95def091999-11-25 00:26:21 +1100247 while (waitpid(-1, &status, WNOHANG) > 0)
248 ;
Damien Miller431f66b1999-11-21 18:31:57 +1100249
Damien Miller95def091999-11-25 00:26:21 +1100250 signal(SIGCHLD, main_sigchld_handler);
251 errno = save_errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000252}
253
Damien Miller95def091999-11-25 00:26:21 +1100254/*
255 * Signal handler for the alarm after the login grace period has expired.
256 */
Damien Miller4af51302000-04-16 11:18:38 +1000257void
Damien Miller95def091999-11-25 00:26:21 +1100258grace_alarm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000259{
Damien Miller95def091999-11-25 00:26:21 +1100260 /* Close the connection. */
261 packet_close();
262
263 /* Log error and exit. */
264 fatal("Timeout before authentication for %s.", get_remote_ipaddr());
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000265}
266
Damien Miller95def091999-11-25 00:26:21 +1100267/*
Damien Miller95def091999-11-25 00:26:21 +1100268 * Signal handler for the key regeneration alarm. Note that this
269 * alarm only occurs in the daemon waiting for connections, and it does not
270 * do anything with the private key or random state before forking.
271 * Thus there should be no concurrency control/asynchronous execution
272 * problems.
273 */
Damien Miller4af51302000-04-16 11:18:38 +1000274void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100275generate_empheral_server_key(void)
276{
277 log("Generating %s%d bit RSA key.", sensitive_data.server_key ? "new " : "",
278 options.server_key_bits);
279 if (sensitive_data.server_key != NULL)
280 key_free(sensitive_data.server_key);
281 sensitive_data.server_key = key_generate(KEY_RSA1, options.server_key_bits);
282 arc4random_stir();
283 log("RSA key generation complete.");
284}
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000285
Damien Miller0bc1bd82000-11-13 22:57:25 +1100286void
Damien Miller95def091999-11-25 00:26:21 +1100287key_regeneration_alarm(int sig)
288{
289 int save_errno = errno;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000290 signal(SIGALRM, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +1100291 errno = save_errno;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000292 key_do_regen = 1;
Damien Miller95def091999-11-25 00:26:21 +1100293}
294
Damien Millerb38eff82000-04-01 11:09:21 +1000295void
296sshd_exchange_identification(int sock_in, int sock_out)
297{
Damien Miller78928792000-04-12 20:17:38 +1000298 int i, mismatch;
Damien Millerb38eff82000-04-01 11:09:21 +1000299 int remote_major, remote_minor;
Damien Miller78928792000-04-12 20:17:38 +1000300 int major, minor;
Damien Millerb38eff82000-04-01 11:09:21 +1000301 char *s;
302 char buf[256]; /* Must not be larger than remote_version. */
303 char remote_version[256]; /* Must be at least as big as buf. */
304
Damien Miller78928792000-04-12 20:17:38 +1000305 if ((options.protocol & SSH_PROTO_1) &&
306 (options.protocol & SSH_PROTO_2)) {
307 major = PROTOCOL_MAJOR_1;
308 minor = 99;
309 } else if (options.protocol & SSH_PROTO_2) {
310 major = PROTOCOL_MAJOR_2;
311 minor = PROTOCOL_MINOR_2;
312 } else {
313 major = PROTOCOL_MAJOR_1;
314 minor = PROTOCOL_MINOR_1;
315 }
316 snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n", major, minor, SSH_VERSION);
Damien Millerb38eff82000-04-01 11:09:21 +1000317 server_version_string = xstrdup(buf);
318
319 if (client_version_string == NULL) {
320 /* Send our protocol version identification. */
321 if (atomicio(write, sock_out, server_version_string, strlen(server_version_string))
322 != strlen(server_version_string)) {
323 log("Could not write ident string to %s.", get_remote_ipaddr());
324 fatal_cleanup();
325 }
326
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;
Damien Miller874d77b2000-10-14 16:23:11 +1100336 /* Kludge for F-Secure Macintosh < 1.0.2 */
337 if (i == 12 &&
338 strncmp(buf, "SSH-1.5-W1.0", 12) == 0)
339 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000340 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000341 }
342 if (buf[i] == '\n') {
343 /* buf[i] == '\n' */
344 buf[i + 1] = 0;
345 break;
346 }
347 }
348 buf[sizeof(buf) - 1] = 0;
349 client_version_string = xstrdup(buf);
350 }
351
352 /*
353 * Check that the versions match. In future this might accept
354 * several versions and set appropriate flags to handle them.
355 */
356 if (sscanf(client_version_string, "SSH-%d.%d-%[^\n]\n",
357 &remote_major, &remote_minor, remote_version) != 3) {
Damien Miller4af51302000-04-16 11:18:38 +1000358 s = "Protocol mismatch.\n";
Damien Millerb38eff82000-04-01 11:09:21 +1000359 (void) atomicio(write, sock_out, s, strlen(s));
360 close(sock_in);
361 close(sock_out);
362 log("Bad protocol version identification '%.100s' from %s",
363 client_version_string, get_remote_ipaddr());
364 fatal_cleanup();
365 }
366 debug("Client protocol version %d.%d; client software version %.100s",
367 remote_major, remote_minor, remote_version);
368
Damien Millerefb4afe2000-04-12 18:45:05 +1000369 compat_datafellows(remote_version);
370
Damien Miller78928792000-04-12 20:17:38 +1000371 mismatch = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000372 switch(remote_major) {
373 case 1:
Damien Millereba71ba2000-04-29 23:57:08 +1000374 if (remote_minor == 99) {
375 if (options.protocol & SSH_PROTO_2)
376 enable_compat20();
377 else
378 mismatch = 1;
379 break;
380 }
Damien Miller78928792000-04-12 20:17:38 +1000381 if (!(options.protocol & SSH_PROTO_1)) {
382 mismatch = 1;
383 break;
384 }
Damien Millerb38eff82000-04-01 11:09:21 +1000385 if (remote_minor < 3) {
Damien Miller37023962000-07-11 17:31:38 +1000386 packet_disconnect("Your ssh version is too old and "
Damien Millerb38eff82000-04-01 11:09:21 +1000387 "is no longer supported. Please install a newer version.");
388 } else if (remote_minor == 3) {
389 /* note that this disables agent-forwarding */
390 enable_compat13();
391 }
Damien Miller78928792000-04-12 20:17:38 +1000392 break;
Damien Millerefb4afe2000-04-12 18:45:05 +1000393 case 2:
Damien Miller78928792000-04-12 20:17:38 +1000394 if (options.protocol & SSH_PROTO_2) {
Damien Millerefb4afe2000-04-12 18:45:05 +1000395 enable_compat20();
396 break;
397 }
398 /* FALLTHROUGH */
Damien Miller4af51302000-04-16 11:18:38 +1000399 default:
Damien Miller78928792000-04-12 20:17:38 +1000400 mismatch = 1;
Damien Millerb38eff82000-04-01 11:09:21 +1000401 break;
402 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000403 chop(server_version_string);
404 chop(client_version_string);
Damien Miller78928792000-04-12 20:17:38 +1000405 debug("Local version string %.200s", server_version_string);
406
407 if (mismatch) {
408 s = "Protocol major versions differ.\n";
409 (void) atomicio(write, sock_out, s, strlen(s));
410 close(sock_in);
411 close(sock_out);
412 log("Protocol major versions differ for %s: %.200s vs. %.200s",
413 get_remote_ipaddr(),
414 server_version_string, client_version_string);
415 fatal_cleanup();
416 }
Damien Millereba71ba2000-04-29 23:57:08 +1000417 if (compat20)
418 packet_set_ssh2_format();
419}
420
421
Damien Miller0bc1bd82000-11-13 22:57:25 +1100422/* Destroy the host and server keys. They will no longer be needed. */
Damien Millereba71ba2000-04-29 23:57:08 +1000423void
424destroy_sensitive_data(void)
425{
Damien Miller0bc1bd82000-11-13 22:57:25 +1100426 int i;
427
428 if (sensitive_data.server_key) {
429 key_free(sensitive_data.server_key);
430 sensitive_data.server_key = NULL;
431 }
432 for(i = 0; i < options.num_host_key_files; i++) {
433 if (sensitive_data.host_keys[i]) {
434 key_free(sensitive_data.host_keys[i]);
435 sensitive_data.host_keys[i] = NULL;
436 }
437 }
438 sensitive_data.ssh1_host_key = NULL;
439}
440Key *
441load_private_key_autodetect(const char *filename)
442{
443 struct stat st;
444 int type;
445 Key *public, *private;
446
447 if (stat(filename, &st) < 0) {
448 perror(filename);
449 return NULL;
450 }
451 /*
452 * try to load the public key. right now this only works for RSA1,
453 * since SSH2 keys are fully encrypted
454 */
455 type = KEY_RSA1;
456 public = key_new(type);
457 if (!load_public_key(filename, public, NULL)) {
458 /* ok, so we will assume this is 'some' key */
459 type = KEY_UNSPEC;
460 }
461 key_free(public);
462
463 /* Ok, try key with empty passphrase */
464 private = key_new(type);
465 if (load_private_key(filename, "", private, NULL)) {
466 debug("load_private_key_autodetect: type %d %s",
467 private->type, key_type(private));
468 return private;
469 }
470 key_free(private);
471 return NULL;
472}
473
474char *
475list_hostkey_types(void)
476{
477 static char buf[1024];
478 int i;
479 buf[0] = '\0';
480 for(i = 0; i < options.num_host_key_files; i++) {
481 Key *key = sensitive_data.host_keys[i];
482 if (key == NULL)
483 continue;
484 switch(key->type) {
485 case KEY_RSA:
486 case KEY_DSA:
487 strlcat(buf, key_ssh_name(key), sizeof buf);
488 strlcat(buf, ",", sizeof buf);
489 break;
490 }
491 }
492 i = strlen(buf);
493 if (i > 0 && buf[i-1] == ',')
494 buf[i-1] = '\0';
495 debug("list_hostkey_types: %s", buf);
496 return buf;
497}
498
499Key *
500get_hostkey_by_type(int type)
501{
502 int i;
503 for(i = 0; i < options.num_host_key_files; i++) {
504 Key *key = sensitive_data.host_keys[i];
505 if (key != NULL && key->type == type)
506 return key;
507 }
508 return NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000509}
510
Damien Miller942da032000-08-18 13:59:06 +1000511/*
512 * returns 1 if connection should be dropped, 0 otherwise.
513 * dropping starts at connection #max_startups_begin with a probability
514 * of (max_startups_rate/100). the probability increases linearly until
515 * all connections are dropped for startups > max_startups
516 */
517int
518drop_connection(int startups)
519{
520 double p, r;
521
522 if (startups < options.max_startups_begin)
523 return 0;
524 if (startups >= options.max_startups)
525 return 1;
526 if (options.max_startups_rate == 100)
527 return 1;
528
529 p = 100 - options.max_startups_rate;
530 p *= startups - options.max_startups_begin;
531 p /= (double) (options.max_startups - options.max_startups_begin);
532 p += options.max_startups_rate;
533 p /= 100.0;
534 r = arc4random() / (double) UINT_MAX;
535
536 debug("drop_connection: p %g, r %g", p, r);
537 return (r < p) ? 1 : 0;
538}
539
Damien Miller37023962000-07-11 17:31:38 +1000540int *startup_pipes = NULL; /* options.max_startup sized array of fd ints */
541int startup_pipe; /* in child */
542
Damien Miller95def091999-11-25 00:26:21 +1100543/*
544 * Main program for the daemon.
545 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000546int
547main(int ac, char **av)
548{
Damien Miller95def091999-11-25 00:26:21 +1100549 extern char *optarg;
550 extern int optind;
Damien Miller37023962000-07-11 17:31:38 +1000551 int opt, sock_in = 0, sock_out = 0, newsock, j, i, fdsetsz, on = 1;
Damien Miller166fca82000-04-20 07:42:21 +1000552 pid_t pid;
Damien Miller34132e52000-01-14 15:45:46 +1100553 socklen_t fromlen;
Damien Millereba71ba2000-04-29 23:57:08 +1000554 int silent = 0;
Damien Miller34132e52000-01-14 15:45:46 +1100555 fd_set *fdset;
556 struct sockaddr_storage from;
Damien Miller95def091999-11-25 00:26:21 +1100557 const char *remote_ip;
558 int remote_port;
Damien Miller95def091999-11-25 00:26:21 +1100559 FILE *f;
560 struct linger linger;
Damien Miller34132e52000-01-14 15:45:46 +1100561 struct addrinfo *ai;
562 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
563 int listen_sock, maxfd;
Damien Miller37023962000-07-11 17:31:38 +1000564 int startup_p[2];
565 int startups = 0;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000566 int ret, key_used = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000567
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000568 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000569 init_rng();
570
Kevin Stevesec84dc12000-12-13 17:45:15 +0000571 /* Save argv. */
Damien Millerb8c656e2000-06-28 15:22:41 +1000572 saved_argc = ac;
Damien Miller95def091999-11-25 00:26:21 +1100573 saved_argv = av;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000574
Damien Miller95def091999-11-25 00:26:21 +1100575 /* Initialize configuration options to their default values. */
576 initialize_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000577
Damien Miller95def091999-11-25 00:26:21 +1100578 /* Parse command-line arguments. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000579 while ((opt = getopt(ac, av, "f:p:b:k:h:g:V:u:dDiqQ46")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100580 switch (opt) {
Damien Miller34132e52000-01-14 15:45:46 +1100581 case '4':
582 IPv4or6 = AF_INET;
583 break;
584 case '6':
585 IPv4or6 = AF_INET6;
586 break;
Damien Miller95def091999-11-25 00:26:21 +1100587 case 'f':
588 config_file_name = optarg;
589 break;
590 case 'd':
Damien Millere4340be2000-09-16 13:29:08 +1100591 if (0 == debug_flag) {
592 debug_flag = 1;
593 options.log_level = SYSLOG_LEVEL_DEBUG1;
594 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
595 options.log_level++;
596 } else {
597 fprintf(stderr, "Too high debugging level.\n");
598 exit(1);
599 }
Damien Miller95def091999-11-25 00:26:21 +1100600 break;
Ben Lindstromc72745a2000-12-02 19:03:54 +0000601 case 'D':
602 no_daemon_flag = 1;
603 break;
Damien Miller95def091999-11-25 00:26:21 +1100604 case 'i':
605 inetd_flag = 1;
606 break;
607 case 'Q':
Damien Millereba71ba2000-04-29 23:57:08 +1000608 silent = 1;
Damien Miller95def091999-11-25 00:26:21 +1100609 break;
610 case 'q':
611 options.log_level = SYSLOG_LEVEL_QUIET;
612 break;
613 case 'b':
614 options.server_key_bits = atoi(optarg);
615 break;
616 case 'p':
Damien Miller34132e52000-01-14 15:45:46 +1100617 options.ports_from_cmdline = 1;
Damien Millere4340be2000-09-16 13:29:08 +1100618 if (options.num_ports >= MAX_PORTS) {
619 fprintf(stderr, "too many ports.\n");
620 exit(1);
621 }
Damien Miller34132e52000-01-14 15:45:46 +1100622 options.ports[options.num_ports++] = atoi(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100623 break;
624 case 'g':
625 options.login_grace_time = atoi(optarg);
626 break;
627 case 'k':
628 options.key_regeneration_time = atoi(optarg);
629 break;
630 case 'h':
Damien Miller0bc1bd82000-11-13 22:57:25 +1100631 if (options.num_host_key_files >= MAX_HOSTKEYS) {
632 fprintf(stderr, "too many host keys.\n");
633 exit(1);
634 }
635 options.host_key_files[options.num_host_key_files++] = optarg;
Damien Miller95def091999-11-25 00:26:21 +1100636 break;
637 case 'V':
638 client_version_string = optarg;
639 /* only makes sense with inetd_flag, i.e. no listen() */
640 inetd_flag = 1;
641 break;
Damien Miller942da032000-08-18 13:59:06 +1000642 case 'u':
643 utmp_len = atoi(optarg);
644 break;
Damien Miller95def091999-11-25 00:26:21 +1100645 case '?':
646 default:
647 fprintf(stderr, "sshd version %s\n", SSH_VERSION);
Kevin Stevesec84dc12000-12-13 17:45:15 +0000648 fprintf(stderr, "Usage: %s [options]\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100649 fprintf(stderr, "Options:\n");
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000650 fprintf(stderr, " -f file Configuration file (default %s)\n", _PATH_SERVER_CONFIG_FILE);
Damien Millere4340be2000-09-16 13:29:08 +1100651 fprintf(stderr, " -d Debugging mode (multiple -d means more debugging)\n");
Damien Miller95def091999-11-25 00:26:21 +1100652 fprintf(stderr, " -i Started from inetd\n");
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000653 fprintf(stderr, " -D Do not fork into daemon mode\n");
Damien Miller95def091999-11-25 00:26:21 +1100654 fprintf(stderr, " -q Quiet (no logging)\n");
655 fprintf(stderr, " -p port Listen on the specified port (default: 22)\n");
656 fprintf(stderr, " -k seconds Regenerate server key every this many seconds (default: 3600)\n");
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000657 fprintf(stderr, " -g seconds Grace period for authentication (default: 600)\n");
Damien Miller95def091999-11-25 00:26:21 +1100658 fprintf(stderr, " -b bits Size of server RSA key (default: 768 bits)\n");
659 fprintf(stderr, " -h file File from which to read host key (default: %s)\n",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000660 _PATH_HOST_KEY_FILE);
Damien Miller942da032000-08-18 13:59:06 +1000661 fprintf(stderr, " -u len Maximum hostname length for utmp recording\n");
Damien Miller34132e52000-01-14 15:45:46 +1100662 fprintf(stderr, " -4 Use IPv4 only\n");
663 fprintf(stderr, " -6 Use IPv6 only\n");
Damien Miller95def091999-11-25 00:26:21 +1100664 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000665 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000666 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000667
Damien Miller34132e52000-01-14 15:45:46 +1100668 /*
669 * Force logging to stderr until we have loaded the private host
670 * key (unless started from inetd)
671 */
Kevin Stevesec84dc12000-12-13 17:45:15 +0000672 log_init(__progname,
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000673 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
Damien Miller34132e52000-01-14 15:45:46 +1100674 options.log_facility == -1 ? SYSLOG_FACILITY_AUTH : options.log_facility,
Damien Millereba71ba2000-04-29 23:57:08 +1000675 !silent && !inetd_flag);
Damien Miller34132e52000-01-14 15:45:46 +1100676
Damien Miller95def091999-11-25 00:26:21 +1100677 /* Read server configuration options from the configuration file. */
678 read_server_config(&options, config_file_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000679
Damien Miller95def091999-11-25 00:26:21 +1100680 /* Fill in default values for those options not explicitly set. */
681 fill_default_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000682
Damien Miller95def091999-11-25 00:26:21 +1100683 /* Check that there are no remaining arguments. */
684 if (optind < ac) {
685 fprintf(stderr, "Extra argument %s.\n", av[optind]);
686 exit(1);
687 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000688
Damien Miller95def091999-11-25 00:26:21 +1100689 debug("sshd version %.100s", SSH_VERSION);
Damien Miller2ccf6611999-11-15 15:25:10 +1100690
Damien Miller0bc1bd82000-11-13 22:57:25 +1100691 /* load private host keys */
692 sensitive_data.host_keys = xmalloc(options.num_host_key_files*sizeof(Key*));
Ben Lindstrom46c16222000-12-22 01:43:59 +0000693 for(i = 0; i < options.num_host_key_files; i++)
694 sensitive_data.host_keys[i] = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100695 sensitive_data.server_key = NULL;
696 sensitive_data.ssh1_host_key = NULL;
697 sensitive_data.have_ssh1_key = 0;
698 sensitive_data.have_ssh2_key = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000699
Damien Miller0bc1bd82000-11-13 22:57:25 +1100700 for(i = 0; i < options.num_host_key_files; i++) {
701 Key *key = load_private_key_autodetect(options.host_key_files[i]);
702 if (key == NULL) {
703 error("Could not load host key: %.200s: %.100s",
704 options.host_key_files[i], strerror(errno));
705 continue;
706 }
707 switch(key->type){
708 case KEY_RSA1:
709 sensitive_data.ssh1_host_key = key;
710 sensitive_data.have_ssh1_key = 1;
711 break;
712 case KEY_RSA:
713 case KEY_DSA:
714 sensitive_data.have_ssh2_key = 1;
715 break;
716 }
717 sensitive_data.host_keys[i] = key;
718 }
719 if ((options.protocol & SSH_PROTO_1) && !sensitive_data.have_ssh1_key) {
720 log("Disabling protocol version 1. Could not load host key");
Damien Millereba71ba2000-04-29 23:57:08 +1000721 options.protocol &= ~SSH_PROTO_1;
722 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100723 if ((options.protocol & SSH_PROTO_2) && !sensitive_data.have_ssh2_key) {
724 log("Disabling protocol version 2. Could not load host key");
725 options.protocol &= ~SSH_PROTO_2;
Damien Millereba71ba2000-04-29 23:57:08 +1000726 }
727 if (! options.protocol & (SSH_PROTO_1|SSH_PROTO_2)) {
728 if (silent == 0)
729 fprintf(stderr, "sshd: no hostkeys available -- exiting.\n");
730 log("sshd: no hostkeys available -- exiting.\n");
Damien Miller95def091999-11-25 00:26:21 +1100731 exit(1);
732 }
Damien Miller95def091999-11-25 00:26:21 +1100733
Damien Millereba71ba2000-04-29 23:57:08 +1000734 /* Check certain values for sanity. */
735 if (options.protocol & SSH_PROTO_1) {
736 if (options.server_key_bits < 512 ||
737 options.server_key_bits > 32768) {
738 fprintf(stderr, "Bad server key size.\n");
739 exit(1);
740 }
741 /*
742 * Check that server and host key lengths differ sufficiently. This
743 * is necessary to make double encryption work with rsaref. Oh, I
744 * hate software patents. I dont know if this can go? Niels
745 */
746 if (options.server_key_bits >
Damien Miller0bc1bd82000-11-13 22:57:25 +1100747 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) - SSH_KEY_BITS_RESERVED &&
Damien Millereba71ba2000-04-29 23:57:08 +1000748 options.server_key_bits <
Damien Miller0bc1bd82000-11-13 22:57:25 +1100749 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
Damien Millereba71ba2000-04-29 23:57:08 +1000750 options.server_key_bits =
Damien Miller0bc1bd82000-11-13 22:57:25 +1100751 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED;
Damien Millereba71ba2000-04-29 23:57:08 +1000752 debug("Forcing server key to %d bits to make it differ from host key.",
753 options.server_key_bits);
754 }
755 }
756
Damien Miller78315eb2000-09-29 23:01:36 +1100757#ifdef HAVE_SCO_PROTECTED_PW
758 (void) set_auth_parameters(ac, av);
759#endif
760
Damien Millereba71ba2000-04-29 23:57:08 +1000761 /* Initialize the log (it is reinitialized below in case we forked). */
Damien Miller95def091999-11-25 00:26:21 +1100762 if (debug_flag && !inetd_flag)
763 log_stderr = 1;
Kevin Stevesec84dc12000-12-13 17:45:15 +0000764 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +1100765
Damien Millereba71ba2000-04-29 23:57:08 +1000766 /*
767 * If not in debugging mode, and not started from inetd, disconnect
768 * from the controlling terminal, and fork. The original process
769 * exits.
770 */
Ben Lindstromc72745a2000-12-02 19:03:54 +0000771 if (!(debug_flag || inetd_flag || no_daemon_flag)) {
Damien Miller95def091999-11-25 00:26:21 +1100772#ifdef TIOCNOTTY
773 int fd;
774#endif /* TIOCNOTTY */
775 if (daemon(0, 0) < 0)
776 fatal("daemon() failed: %.200s", strerror(errno));
777
778 /* Disconnect from the controlling tty. */
779#ifdef TIOCNOTTY
780 fd = open("/dev/tty", O_RDWR | O_NOCTTY);
781 if (fd >= 0) {
782 (void) ioctl(fd, TIOCNOTTY, NULL);
783 close(fd);
784 }
785#endif /* TIOCNOTTY */
786 }
787 /* Reinitialize the log (because of the fork above). */
Kevin Stevesec84dc12000-12-13 17:45:15 +0000788 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +1100789
Damien Miller95def091999-11-25 00:26:21 +1100790 /* Initialize the random number generator. */
791 arc4random_stir();
792
793 /* Chdir to the root directory so that the current disk can be
794 unmounted if desired. */
795 chdir("/");
796
Damien Miller95def091999-11-25 00:26:21 +1100797 /* Start listening for a socket, unless started from inetd. */
798 if (inetd_flag) {
799 int s1, s2;
800 s1 = dup(0); /* Make sure descriptors 0, 1, and 2 are in use. */
801 s2 = dup(s1);
802 sock_in = dup(0);
803 sock_out = dup(1);
Damien Miller994cf142000-07-21 10:19:44 +1000804 startup_pipe = -1;
Damien Millereba71ba2000-04-29 23:57:08 +1000805 /*
806 * We intentionally do not close the descriptors 0, 1, and 2
807 * as our code for setting the descriptors won\'t work if
808 * ttyfd happens to be one of those.
809 */
Damien Miller95def091999-11-25 00:26:21 +1100810 debug("inetd sockets after dupping: %d, %d", sock_in, sock_out);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100811 if (options.protocol & SSH_PROTO_1)
812 generate_empheral_server_key();
Damien Miller95def091999-11-25 00:26:21 +1100813 } else {
Damien Miller34132e52000-01-14 15:45:46 +1100814 for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
815 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
816 continue;
817 if (num_listen_socks >= MAX_LISTEN_SOCKS)
818 fatal("Too many listen sockets. "
819 "Enlarge MAX_LISTEN_SOCKS");
820 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
821 ntop, sizeof(ntop), strport, sizeof(strport),
822 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
823 error("getnameinfo failed");
824 continue;
825 }
826 /* Create socket for listening. */
827 listen_sock = socket(ai->ai_family, SOCK_STREAM, 0);
828 if (listen_sock < 0) {
829 /* kernel may not support ipv6 */
830 verbose("socket: %.100s", strerror(errno));
831 continue;
832 }
833 if (fcntl(listen_sock, F_SETFL, O_NONBLOCK) < 0) {
834 error("listen_sock O_NONBLOCK: %s", strerror(errno));
835 close(listen_sock);
836 continue;
837 }
838 /*
839 * Set socket options. We try to make the port
840 * reusable and have it close as fast as possible
841 * without waiting in unnecessary wait states on
842 * close.
843 */
844 setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
845 (void *) &on, sizeof(on));
846 linger.l_onoff = 1;
847 linger.l_linger = 5;
848 setsockopt(listen_sock, SOL_SOCKET, SO_LINGER,
849 (void *) &linger, sizeof(linger));
Damien Miller95def091999-11-25 00:26:21 +1100850
Damien Miller34132e52000-01-14 15:45:46 +1100851 debug("Bind to port %s on %s.", strport, ntop);
Damien Miller95def091999-11-25 00:26:21 +1100852
Damien Miller34132e52000-01-14 15:45:46 +1100853 /* Bind the socket to the desired port. */
Damien Miller3c7eeb22000-03-03 22:35:33 +1100854 if ((bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) &&
855 (!ai->ai_next)) {
Damien Miller34132e52000-01-14 15:45:46 +1100856 error("Bind to port %s on %s failed: %.200s.",
857 strport, ntop, strerror(errno));
858 close(listen_sock);
859 continue;
860 }
861 listen_socks[num_listen_socks] = listen_sock;
862 num_listen_socks++;
Damien Miller95def091999-11-25 00:26:21 +1100863
Damien Miller34132e52000-01-14 15:45:46 +1100864 /* Start listening on the port. */
865 log("Server listening on %s port %s.", ntop, strport);
866 if (listen(listen_sock, 5) < 0)
867 fatal("listen: %.100s", strerror(errno));
868
Damien Miller95def091999-11-25 00:26:21 +1100869 }
Damien Miller34132e52000-01-14 15:45:46 +1100870 freeaddrinfo(options.listen_addrs);
871
872 if (!num_listen_socks)
873 fatal("Cannot bind any address.");
874
Damien Miller95def091999-11-25 00:26:21 +1100875 if (!debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +1100876 /*
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000877 * Record our pid in /var/run/sshd.pid to make it
878 * easier to kill the correct sshd. We don't want to
879 * do this before the bind above because the bind will
Damien Miller5428f641999-11-25 11:54:57 +1100880 * fail if there already is a daemon, and this will
881 * overwrite any old pid in the file.
882 */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100883 f = fopen(options.pid_file, "wb");
Damien Miller95def091999-11-25 00:26:21 +1100884 if (f) {
Ben Lindstrom46c16222000-12-22 01:43:59 +0000885 fprintf(f, "%u\n", (u_int) getpid());
Damien Miller95def091999-11-25 00:26:21 +1100886 fclose(f);
887 }
888 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000889 if (options.protocol & SSH_PROTO_1)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100890 generate_empheral_server_key();
Damien Miller95def091999-11-25 00:26:21 +1100891
Damien Miller95def091999-11-25 00:26:21 +1100892 /* Arrange to restart on SIGHUP. The handler needs listen_sock. */
893 signal(SIGHUP, sighup_handler);
Damien Miller37023962000-07-11 17:31:38 +1000894
Damien Miller95def091999-11-25 00:26:21 +1100895 signal(SIGTERM, sigterm_handler);
896 signal(SIGQUIT, sigterm_handler);
897
898 /* Arrange SIGCHLD to be caught. */
899 signal(SIGCHLD, main_sigchld_handler);
900
Damien Miller34132e52000-01-14 15:45:46 +1100901 /* setup fd set for listen */
Damien Miller37023962000-07-11 17:31:38 +1000902 fdset = NULL;
Damien Miller34132e52000-01-14 15:45:46 +1100903 maxfd = 0;
904 for (i = 0; i < num_listen_socks; i++)
905 if (listen_socks[i] > maxfd)
906 maxfd = listen_socks[i];
Damien Miller37023962000-07-11 17:31:38 +1000907 /* pipes connected to unauthenticated childs */
908 startup_pipes = xmalloc(options.max_startups * sizeof(int));
909 for (i = 0; i < options.max_startups; i++)
910 startup_pipes[i] = -1;
Damien Miller34132e52000-01-14 15:45:46 +1100911
Damien Miller5428f641999-11-25 11:54:57 +1100912 /*
913 * Stay listening for connections until the system crashes or
914 * the daemon is killed with a signal.
915 */
Damien Miller95def091999-11-25 00:26:21 +1100916 for (;;) {
917 if (received_sighup)
918 sighup_restart();
Damien Miller37023962000-07-11 17:31:38 +1000919 if (fdset != NULL)
920 xfree(fdset);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000921 fdsetsz = howmany(maxfd+1, NFDBITS) * sizeof(fd_mask);
Damien Miller37023962000-07-11 17:31:38 +1000922 fdset = (fd_set *)xmalloc(fdsetsz);
Damien Miller34132e52000-01-14 15:45:46 +1100923 memset(fdset, 0, fdsetsz);
Damien Miller37023962000-07-11 17:31:38 +1000924
Damien Miller34132e52000-01-14 15:45:46 +1100925 for (i = 0; i < num_listen_socks; i++)
926 FD_SET(listen_socks[i], fdset);
Damien Miller37023962000-07-11 17:31:38 +1000927 for (i = 0; i < options.max_startups; i++)
928 if (startup_pipes[i] != -1)
929 FD_SET(startup_pipes[i], fdset);
930
931 /* Wait in select until there is a connection. */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000932 ret = select(maxfd+1, fdset, NULL, NULL, NULL);
933 if (ret < 0 && errno != EINTR)
934 error("select: %.100s", strerror(errno));
935 if (key_used && key_do_regen) {
936 generate_empheral_server_key();
937 key_used = 0;
938 key_do_regen = 0;
Damien Miller34132e52000-01-14 15:45:46 +1100939 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000940 if (ret < 0)
941 continue;
942
Damien Miller37023962000-07-11 17:31:38 +1000943 for (i = 0; i < options.max_startups; i++)
944 if (startup_pipes[i] != -1 &&
945 FD_ISSET(startup_pipes[i], fdset)) {
946 /*
947 * the read end of the pipe is ready
948 * if the child has closed the pipe
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000949 * after successful authentication
Damien Miller37023962000-07-11 17:31:38 +1000950 * or if the child has died
951 */
952 close(startup_pipes[i]);
953 startup_pipes[i] = -1;
954 startups--;
955 }
Damien Miller34132e52000-01-14 15:45:46 +1100956 for (i = 0; i < num_listen_socks; i++) {
957 if (!FD_ISSET(listen_socks[i], fdset))
Damien Miller95def091999-11-25 00:26:21 +1100958 continue;
Damien Miller37023962000-07-11 17:31:38 +1000959 fromlen = sizeof(from);
960 newsock = accept(listen_socks[i], (struct sockaddr *)&from,
961 &fromlen);
962 if (newsock < 0) {
963 if (errno != EINTR && errno != EWOULDBLOCK)
964 error("accept: %.100s", strerror(errno));
965 continue;
966 }
967 if (fcntl(newsock, F_SETFL, 0) < 0) {
968 error("newsock del O_NONBLOCK: %s", strerror(errno));
969 continue;
970 }
Damien Miller942da032000-08-18 13:59:06 +1000971 if (drop_connection(startups) == 1) {
972 debug("drop connection #%d", startups);
Damien Miller37023962000-07-11 17:31:38 +1000973 close(newsock);
974 continue;
975 }
976 if (pipe(startup_p) == -1) {
977 close(newsock);
978 continue;
979 }
980
981 for (j = 0; j < options.max_startups; j++)
982 if (startup_pipes[j] == -1) {
983 startup_pipes[j] = startup_p[0];
984 if (maxfd < startup_p[0])
985 maxfd = startup_p[0];
986 startups++;
987 break;
988 }
989
Damien Miller5428f641999-11-25 11:54:57 +1100990 /*
Damien Miller37023962000-07-11 17:31:38 +1000991 * Got connection. Fork a child to handle it, unless
992 * we are in debugging mode.
Damien Miller5428f641999-11-25 11:54:57 +1100993 */
Damien Miller37023962000-07-11 17:31:38 +1000994 if (debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +1100995 /*
Damien Miller37023962000-07-11 17:31:38 +1000996 * In debugging mode. Close the listening
997 * socket, and start processing the
998 * connection without forking.
Damien Miller5428f641999-11-25 11:54:57 +1100999 */
Damien Miller37023962000-07-11 17:31:38 +10001000 debug("Server will not fork when running in debugging mode.");
Damien Miller34132e52000-01-14 15:45:46 +11001001 close_listen_socks();
Damien Miller95def091999-11-25 00:26:21 +11001002 sock_in = newsock;
1003 sock_out = newsock;
Damien Miller4d97ba22000-07-11 18:15:50 +10001004 startup_pipe = -1;
Damien Miller182ee6e2000-07-12 09:45:27 +10001005 pid = getpid();
Damien Miller95def091999-11-25 00:26:21 +11001006 break;
Damien Miller37023962000-07-11 17:31:38 +10001007 } else {
1008 /*
1009 * Normal production daemon. Fork, and have
1010 * the child process the connection. The
1011 * parent continues listening.
1012 */
1013 if ((pid = fork()) == 0) {
1014 /*
1015 * Child. Close the listening and max_startup
1016 * sockets. Start using the accepted socket.
1017 * Reinitialize logging (since our pid has
1018 * changed). We break out of the loop to handle
1019 * the connection.
1020 */
1021 startup_pipe = startup_p[1];
1022 for (j = 0; j < options.max_startups; j++)
1023 if (startup_pipes[j] != -1)
1024 close(startup_pipes[j]);
1025 close_listen_socks();
1026 sock_in = newsock;
1027 sock_out = newsock;
Kevin Stevesec84dc12000-12-13 17:45:15 +00001028 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller37023962000-07-11 17:31:38 +10001029 break;
1030 }
Damien Miller95def091999-11-25 00:26:21 +11001031 }
Damien Miller37023962000-07-11 17:31:38 +10001032
1033 /* Parent. Stay in the loop. */
1034 if (pid < 0)
1035 error("fork: %.100s", strerror(errno));
1036 else
1037 debug("Forked child %d.", pid);
1038
1039 close(startup_p[1]);
1040
1041 /* Mark that the key has been used (it was "given" to the child). */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001042 if ((options.protocol & SSH_PROTO_1) &&
1043 key_used == 0) {
1044 /* Schedule server key regeneration alarm. */
1045 signal(SIGALRM, key_regeneration_alarm);
1046 alarm(options.key_regeneration_time);
1047 key_used = 1;
1048 }
Damien Miller37023962000-07-11 17:31:38 +10001049
1050 arc4random_stir();
1051
1052 /* Close the new socket (the child is now taking care of it). */
1053 close(newsock);
Damien Miller95def091999-11-25 00:26:21 +11001054 }
Damien Miller34132e52000-01-14 15:45:46 +11001055 /* child process check (or debug mode) */
1056 if (num_listen_socks < 0)
1057 break;
Damien Miller95def091999-11-25 00:26:21 +11001058 }
1059 }
1060
1061 /* This is the child processing a new connection. */
1062
Damien Miller5428f641999-11-25 11:54:57 +11001063 /*
1064 * Disable the key regeneration alarm. We will not regenerate the
1065 * key since we are no longer in a position to give it to anyone. We
1066 * will not restart on SIGHUP since it no longer makes sense.
1067 */
Damien Miller95def091999-11-25 00:26:21 +11001068 alarm(0);
1069 signal(SIGALRM, SIG_DFL);
1070 signal(SIGHUP, SIG_DFL);
1071 signal(SIGTERM, SIG_DFL);
1072 signal(SIGQUIT, SIG_DFL);
1073 signal(SIGCHLD, SIG_DFL);
Damien Miller4e0f5e12000-08-29 11:05:50 +11001074 signal(SIGINT, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001075
Damien Miller5428f641999-11-25 11:54:57 +11001076 /*
1077 * Set socket options for the connection. We want the socket to
1078 * close as fast as possible without waiting for anything. If the
1079 * connection is not a socket, these will do nothing.
1080 */
1081 /* setsockopt(sock_in, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on)); */
Damien Miller95def091999-11-25 00:26:21 +11001082 linger.l_onoff = 1;
1083 linger.l_linger = 5;
1084 setsockopt(sock_in, SOL_SOCKET, SO_LINGER, (void *) &linger, sizeof(linger));
1085
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001086 /* Set keepalives if requested. */
1087 if (options.keepalives &&
1088 setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, (void *)&on,
1089 sizeof(on)) < 0)
1090 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
1091
Damien Miller5428f641999-11-25 11:54:57 +11001092 /*
1093 * Register our connection. This turns encryption off because we do
1094 * not have a key.
1095 */
Damien Miller95def091999-11-25 00:26:21 +11001096 packet_set_connection(sock_in, sock_out);
1097
1098 remote_port = get_remote_port();
1099 remote_ip = get_remote_ipaddr();
1100
1101 /* Check whether logins are denied from this host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001102#ifdef LIBWRAP
Damien Miller34132e52000-01-14 15:45:46 +11001103 /* XXX LIBWRAP noes not know about IPv6 */
Damien Miller95def091999-11-25 00:26:21 +11001104 {
1105 struct request_info req;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001106
Kevin Stevesec84dc12000-12-13 17:45:15 +00001107 request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, NULL);
Damien Miller95def091999-11-25 00:26:21 +11001108 fromhost(&req);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001109
Damien Miller95def091999-11-25 00:26:21 +11001110 if (!hosts_access(&req)) {
1111 close(sock_in);
1112 close(sock_out);
1113 refuse(&req);
1114 }
Damien Miller34132e52000-01-14 15:45:46 +11001115/*XXX IPv6 verbose("Connection from %.500s port %d", eval_client(&req), remote_port); */
Damien Miller95def091999-11-25 00:26:21 +11001116 }
Damien Miller34132e52000-01-14 15:45:46 +11001117#endif /* LIBWRAP */
Damien Miller95def091999-11-25 00:26:21 +11001118 /* Log the connection. */
1119 verbose("Connection from %.500s port %d", remote_ip, remote_port);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001120
Damien Miller5428f641999-11-25 11:54:57 +11001121 /*
1122 * We don\'t want to listen forever unless the other side
1123 * successfully authenticates itself. So we set up an alarm which is
1124 * cleared after successful authentication. A limit of zero
1125 * indicates no limit. Note that we don\'t set the alarm in debugging
1126 * mode; it is just annoying to have the server exit just when you
1127 * are about to discover the bug.
1128 */
Damien Miller95def091999-11-25 00:26:21 +11001129 signal(SIGALRM, grace_alarm_handler);
1130 if (!debug_flag)
1131 alarm(options.login_grace_time);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001132
Damien Millerb38eff82000-04-01 11:09:21 +10001133 sshd_exchange_identification(sock_in, sock_out);
Damien Miller5428f641999-11-25 11:54:57 +11001134 /*
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001135 * Check that the connection comes from a privileged port.
1136 * Rhosts-Authentication only makes sense from priviledged
Damien Miller5428f641999-11-25 11:54:57 +11001137 * programs. Of course, if the intruder has root access on his local
1138 * machine, he can connect from any port. So do not use these
1139 * authentication methods from machines that you do not trust.
1140 */
Damien Miller95def091999-11-25 00:26:21 +11001141 if (remote_port >= IPPORT_RESERVED ||
1142 remote_port < IPPORT_RESERVED / 2) {
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001143 debug("Rhosts Authentication disabled, "
Damien Miller0bc1bd82000-11-13 22:57:25 +11001144 "originating port not trusted.");
Damien Miller95def091999-11-25 00:26:21 +11001145 options.rhosts_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +11001146 }
Damien Miller34132e52000-01-14 15:45:46 +11001147#ifdef KRB4
1148 if (!packet_connection_is_ipv4() &&
1149 options.kerberos_authentication) {
1150 debug("Kerberos Authentication disabled, only available for IPv4.");
1151 options.kerberos_authentication = 0;
1152 }
1153#endif /* KRB4 */
1154
Damien Miller95def091999-11-25 00:26:21 +11001155 packet_set_nonblocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001156
Damien Miller396691a2000-01-20 22:44:08 +11001157 /* perform the key exchange */
Damien Miller396691a2000-01-20 22:44:08 +11001158 /* authenticate user and start session */
Damien Millerefb4afe2000-04-12 18:45:05 +10001159 if (compat20) {
1160 do_ssh2_kex();
1161 do_authentication2();
1162 } else {
1163 do_ssh1_kex();
1164 do_authentication();
1165 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001166
1167#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +11001168 /* Cleanup user's ticket cache file. */
1169 if (options.kerberos_ticket_cleanup)
1170 (void) dest_tkt();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001171#endif /* KRB4 */
1172
Damien Miller95def091999-11-25 00:26:21 +11001173 /* The connection has been terminated. */
1174 verbose("Closing connection to %.100s", remote_ip);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001175
Damien Millerbeb4ba51999-12-28 15:09:35 +11001176#ifdef USE_PAM
Damien Millere72b7af1999-12-30 15:08:44 +11001177 finish_pam();
Damien Millerbeb4ba51999-12-28 15:09:35 +11001178#endif /* USE_PAM */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001179
Damien Miller95def091999-11-25 00:26:21 +11001180 packet_close();
1181 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001182}
1183
Damien Miller95def091999-11-25 00:26:21 +11001184/*
Damien Miller396691a2000-01-20 22:44:08 +11001185 * SSH1 key exchange
Damien Miller95def091999-11-25 00:26:21 +11001186 */
Damien Miller2ccf6611999-11-15 15:25:10 +11001187void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001188do_ssh1_kex(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001189{
Damien Miller95def091999-11-25 00:26:21 +11001190 int i, len;
Damien Miller396691a2000-01-20 22:44:08 +11001191 int plen, slen;
Damien Miller95def091999-11-25 00:26:21 +11001192 BIGNUM *session_key_int;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001193 u_char session_key[SSH_SESSION_KEY_LENGTH];
1194 u_char cookie[8];
1195 u_int cipher_type, auth_mask, protocol_flags;
Damien Miller95def091999-11-25 00:26:21 +11001196 u_int32_t rand = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001197
Damien Miller5428f641999-11-25 11:54:57 +11001198 /*
1199 * Generate check bytes that the client must send back in the user
1200 * packet in order for it to be accepted; this is used to defy ip
1201 * spoofing attacks. Note that this only works against somebody
1202 * doing IP spoofing from a remote machine; any machine on the local
1203 * network can still see outgoing packets and catch the random
1204 * cookie. This only affects rhosts authentication, and this is one
1205 * of the reasons why it is inherently insecure.
1206 */
Damien Miller95def091999-11-25 00:26:21 +11001207 for (i = 0; i < 8; i++) {
1208 if (i % 4 == 0)
1209 rand = arc4random();
Damien Miller396691a2000-01-20 22:44:08 +11001210 cookie[i] = rand & 0xff;
Damien Miller95def091999-11-25 00:26:21 +11001211 rand >>= 8;
1212 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001213
Damien Miller5428f641999-11-25 11:54:57 +11001214 /*
1215 * Send our public key. We include in the packet 64 bits of random
1216 * data that must be matched in the reply in order to prevent IP
1217 * spoofing.
1218 */
Damien Miller95def091999-11-25 00:26:21 +11001219 packet_start(SSH_SMSG_PUBLIC_KEY);
1220 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001221 packet_put_char(cookie[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001222
Damien Miller95def091999-11-25 00:26:21 +11001223 /* Store our public server RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001224 packet_put_int(BN_num_bits(sensitive_data.server_key->rsa->n));
1225 packet_put_bignum(sensitive_data.server_key->rsa->e);
1226 packet_put_bignum(sensitive_data.server_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001227
Damien Miller95def091999-11-25 00:26:21 +11001228 /* Store our public host RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001229 packet_put_int(BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
1230 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->e);
1231 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001232
Damien Miller95def091999-11-25 00:26:21 +11001233 /* Put protocol flags. */
1234 packet_put_int(SSH_PROTOFLAG_HOST_IN_FWD_OPEN);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001235
Damien Miller95def091999-11-25 00:26:21 +11001236 /* Declare which ciphers we support. */
Damien Miller874d77b2000-10-14 16:23:11 +11001237 packet_put_int(cipher_mask_ssh1(0));
Damien Miller95def091999-11-25 00:26:21 +11001238
1239 /* Declare supported authentication types. */
1240 auth_mask = 0;
1241 if (options.rhosts_authentication)
1242 auth_mask |= 1 << SSH_AUTH_RHOSTS;
1243 if (options.rhosts_rsa_authentication)
1244 auth_mask |= 1 << SSH_AUTH_RHOSTS_RSA;
1245 if (options.rsa_authentication)
1246 auth_mask |= 1 << SSH_AUTH_RSA;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001247#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +11001248 if (options.kerberos_authentication)
1249 auth_mask |= 1 << SSH_AUTH_KERBEROS;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001250#endif
1251#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +11001252 if (options.kerberos_tgt_passing)
1253 auth_mask |= 1 << SSH_PASS_KERBEROS_TGT;
1254 if (options.afs_token_passing)
1255 auth_mask |= 1 << SSH_PASS_AFS_TOKEN;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001256#endif
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +00001257 if (options.challenge_reponse_authentication == 1)
Damien Miller95def091999-11-25 00:26:21 +11001258 auth_mask |= 1 << SSH_AUTH_TIS;
Damien Miller95def091999-11-25 00:26:21 +11001259 if (options.password_authentication)
1260 auth_mask |= 1 << SSH_AUTH_PASSWORD;
1261 packet_put_int(auth_mask);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001262
Damien Miller95def091999-11-25 00:26:21 +11001263 /* Send the packet and wait for it to be sent. */
1264 packet_send();
1265 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001266
Damien Miller0bc1bd82000-11-13 22:57:25 +11001267 debug("Sent %d bit server key and %d bit host key.",
1268 BN_num_bits(sensitive_data.server_key->rsa->n),
1269 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001270
Damien Miller95def091999-11-25 00:26:21 +11001271 /* Read clients reply (cipher type and session key). */
1272 packet_read_expect(&plen, SSH_CMSG_SESSION_KEY);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001273
Damien Miller50945fa1999-12-09 10:31:37 +11001274 /* Get cipher type and check whether we accept this. */
Damien Miller95def091999-11-25 00:26:21 +11001275 cipher_type = packet_get_char();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001276
Damien Miller874d77b2000-10-14 16:23:11 +11001277 if (!(cipher_mask_ssh1(0) & (1 << cipher_type)))
Damien Miller50945fa1999-12-09 10:31:37 +11001278 packet_disconnect("Warning: client selects unsupported cipher.");
1279
Damien Miller95def091999-11-25 00:26:21 +11001280 /* Get check bytes from the packet. These must match those we
1281 sent earlier with the public key packet. */
1282 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001283 if (cookie[i] != packet_get_char())
Damien Miller95def091999-11-25 00:26:21 +11001284 packet_disconnect("IP Spoofing check bytes do not match.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001285
Damien Miller95def091999-11-25 00:26:21 +11001286 debug("Encryption type: %.200s", cipher_name(cipher_type));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001287
Damien Miller95def091999-11-25 00:26:21 +11001288 /* Get the encrypted integer. */
1289 session_key_int = BN_new();
1290 packet_get_bignum(session_key_int, &slen);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001291
Damien Miller95def091999-11-25 00:26:21 +11001292 protocol_flags = packet_get_int();
1293 packet_set_protocol_flags(protocol_flags);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001294
Damien Miller95def091999-11-25 00:26:21 +11001295 packet_integrity_check(plen, 1 + 8 + slen + 4, SSH_CMSG_SESSION_KEY);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001296
Damien Miller5428f641999-11-25 11:54:57 +11001297 /*
1298 * Decrypt it using our private server key and private host key (key
1299 * with larger modulus first).
1300 */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001301 if (BN_cmp(sensitive_data.server_key->rsa->n, sensitive_data.ssh1_host_key->rsa->n) > 0) {
Damien Miller95def091999-11-25 00:26:21 +11001302 /* Private key has bigger modulus. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001303 if (BN_num_bits(sensitive_data.server_key->rsa->n) <
1304 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1305 fatal("do_connection: %s: server_key %d < host_key %d + SSH_KEY_BITS_RESERVED %d",
1306 get_remote_ipaddr(),
1307 BN_num_bits(sensitive_data.server_key->rsa->n),
1308 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1309 SSH_KEY_BITS_RESERVED);
Damien Miller95def091999-11-25 00:26:21 +11001310 }
1311 rsa_private_decrypt(session_key_int, session_key_int,
Damien Miller0bc1bd82000-11-13 22:57:25 +11001312 sensitive_data.server_key->rsa);
Damien Miller95def091999-11-25 00:26:21 +11001313 rsa_private_decrypt(session_key_int, session_key_int,
Damien Miller0bc1bd82000-11-13 22:57:25 +11001314 sensitive_data.ssh1_host_key->rsa);
Damien Miller95def091999-11-25 00:26:21 +11001315 } else {
1316 /* Host key has bigger modulus (or they are equal). */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001317 if (BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) <
1318 BN_num_bits(sensitive_data.server_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1319 fatal("do_connection: %s: host_key %d < server_key %d + SSH_KEY_BITS_RESERVED %d",
1320 get_remote_ipaddr(),
1321 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1322 BN_num_bits(sensitive_data.server_key->rsa->n),
1323 SSH_KEY_BITS_RESERVED);
Damien Miller95def091999-11-25 00:26:21 +11001324 }
1325 rsa_private_decrypt(session_key_int, session_key_int,
Damien Miller0bc1bd82000-11-13 22:57:25 +11001326 sensitive_data.ssh1_host_key->rsa);
Damien Miller95def091999-11-25 00:26:21 +11001327 rsa_private_decrypt(session_key_int, session_key_int,
Damien Miller0bc1bd82000-11-13 22:57:25 +11001328 sensitive_data.server_key->rsa);
Damien Miller95def091999-11-25 00:26:21 +11001329 }
Damien Miller356a0b01999-11-08 15:30:59 +11001330
Damien Miller396691a2000-01-20 22:44:08 +11001331 compute_session_id(session_id, cookie,
Damien Miller0bc1bd82000-11-13 22:57:25 +11001332 sensitive_data.ssh1_host_key->rsa->n,
1333 sensitive_data.server_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001334
Damien Miller396691a2000-01-20 22:44:08 +11001335 /* Destroy the private and public keys. They will no longer be needed. */
Damien Millereba71ba2000-04-29 23:57:08 +10001336 destroy_sensitive_data();
Damien Miller396691a2000-01-20 22:44:08 +11001337
Damien Miller5428f641999-11-25 11:54:57 +11001338 /*
1339 * Extract session key from the decrypted integer. The key is in the
1340 * least significant 256 bits of the integer; the first byte of the
1341 * key is in the highest bits.
1342 */
Damien Miller95def091999-11-25 00:26:21 +11001343 BN_mask_bits(session_key_int, sizeof(session_key) * 8);
1344 len = BN_num_bytes(session_key_int);
1345 if (len < 0 || len > sizeof(session_key))
1346 fatal("do_connection: bad len from %s: session_key_int %d > sizeof(session_key) %d",
Damien Miller0bc1bd82000-11-13 22:57:25 +11001347 get_remote_ipaddr(),
1348 len, sizeof(session_key));
Damien Miller95def091999-11-25 00:26:21 +11001349 memset(session_key, 0, sizeof(session_key));
1350 BN_bn2bin(session_key_int, session_key + sizeof(session_key) - len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001351
Damien Miller396691a2000-01-20 22:44:08 +11001352 /* Destroy the decrypted integer. It is no longer needed. */
1353 BN_clear_free(session_key_int);
1354
Damien Miller95def091999-11-25 00:26:21 +11001355 /* Xor the first 16 bytes of the session key with the session id. */
1356 for (i = 0; i < 16; i++)
1357 session_key[i] ^= session_id[i];
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001358
Damien Miller95def091999-11-25 00:26:21 +11001359 /* Set the session key. From this on all communications will be encrypted. */
1360 packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, cipher_type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001361
Damien Miller95def091999-11-25 00:26:21 +11001362 /* Destroy our copy of the session key. It is no longer needed. */
1363 memset(session_key, 0, sizeof(session_key));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001364
Damien Miller95def091999-11-25 00:26:21 +11001365 debug("Received session key; encryption turned on.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001366
Damien Miller95def091999-11-25 00:26:21 +11001367 /* Send an acknowledgement packet. Note that this packet is sent encrypted. */
1368 packet_start(SSH_SMSG_SUCCESS);
1369 packet_send();
1370 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001371}
Damien Millerefb4afe2000-04-12 18:45:05 +10001372
1373/*
1374 * SSH2 key exchange: diffie-hellman-group1-sha1
1375 */
1376void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001377do_ssh2_kex(void)
Damien Millerefb4afe2000-04-12 18:45:05 +10001378{
1379 Buffer *server_kexinit;
1380 Buffer *client_kexinit;
Damien Miller874d77b2000-10-14 16:23:11 +11001381 int payload_len;
Damien Millerefb4afe2000-04-12 18:45:05 +10001382 int i;
Damien Millerefb4afe2000-04-12 18:45:05 +10001383 Kex *kex;
Damien Millerefb4afe2000-04-12 18:45:05 +10001384 char *cprop[PROPOSAL_MAX];
Damien Millerefb4afe2000-04-12 18:45:05 +10001385
1386/* KEXINIT */
1387
Damien Miller78928792000-04-12 20:17:38 +10001388 if (options.ciphers != NULL) {
Damien Miller4af51302000-04-16 11:18:38 +10001389 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
Damien Miller78928792000-04-12 20:17:38 +10001390 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
1391 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001392 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = list_hostkey_types();
1393
Damien Millerb1715dc2000-05-30 13:44:51 +10001394 server_kexinit = kex_init(myproposal);
Damien Millerefb4afe2000-04-12 18:45:05 +10001395 client_kexinit = xmalloc(sizeof(*client_kexinit));
1396 buffer_init(client_kexinit);
Damien Millerefb4afe2000-04-12 18:45:05 +10001397
Damien Millerb1715dc2000-05-30 13:44:51 +10001398 /* algorithm negotiation */
1399 kex_exchange_kexinit(server_kexinit, client_kexinit, cprop);
1400 kex = kex_choose_conf(cprop, myproposal, 1);
1401 for (i = 0; i < PROPOSAL_MAX; i++)
1402 xfree(cprop[i]);
Damien Millerefb4afe2000-04-12 18:45:05 +10001403
Damien Miller874d77b2000-10-14 16:23:11 +11001404 switch (kex->kex_type) {
1405 case DH_GRP1_SHA1:
1406 ssh_dh1_server(kex, client_kexinit, server_kexinit);
1407 break;
1408 case DH_GEX_SHA1:
1409 ssh_dhgex_server(kex, client_kexinit, server_kexinit);
1410 break;
1411 default:
1412 fatal("Unsupported key exchange %d", kex->kex_type);
1413 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001414
Damien Miller874d77b2000-10-14 16:23:11 +11001415 debug("send SSH2_MSG_NEWKEYS.");
1416 packet_start(SSH2_MSG_NEWKEYS);
1417 packet_send();
1418 packet_write_wait();
1419 debug("done: send SSH2_MSG_NEWKEYS.");
1420
1421 debug("Wait SSH2_MSG_NEWKEYS.");
1422 packet_read_expect(&payload_len, SSH2_MSG_NEWKEYS);
1423 debug("GOT SSH2_MSG_NEWKEYS.");
1424
1425#ifdef DEBUG_KEXDH
1426 /* send 1st encrypted/maced/compressed message */
1427 packet_start(SSH2_MSG_IGNORE);
1428 packet_put_cstring("markus");
1429 packet_send();
1430 packet_write_wait();
1431#endif
1432
1433 debug("done: KEX2.");
1434}
1435
1436/*
1437 * SSH2 key exchange
1438 */
1439
1440/* diffie-hellman-group1-sha1 */
1441
1442void
1443ssh_dh1_server(Kex *kex, Buffer *client_kexinit, Buffer *server_kexinit)
1444{
1445#ifdef DEBUG_KEXDH
1446 int i;
1447#endif
1448 int payload_len, dlen;
1449 int slen;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001450 u_char *signature = NULL;
1451 u_char *server_host_key_blob = NULL;
1452 u_int sbloblen;
1453 u_int klen, kout;
1454 u_char *kbuf;
1455 u_char *hash;
Damien Miller874d77b2000-10-14 16:23:11 +11001456 BIGNUM *shared_secret = 0;
1457 DH *dh;
1458 BIGNUM *dh_client_pub = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001459 Key *hostkey;
1460
1461 hostkey = get_hostkey_by_type(kex->hostkey_type);
1462 if (hostkey == NULL)
1463 fatal("Unsupported hostkey type %d", kex->hostkey_type);
Damien Miller874d77b2000-10-14 16:23:11 +11001464
1465/* KEXDH */
Kevin Steves6b875862000-12-15 23:31:01 +00001466 /* generate DH key */
1467 dh = dh_new_group1(); /* XXX depends on 'kex' */
1468 dh_gen_key(dh);
1469
Damien Millerefb4afe2000-04-12 18:45:05 +10001470 debug("Wait SSH2_MSG_KEXDH_INIT.");
1471 packet_read_expect(&payload_len, SSH2_MSG_KEXDH_INIT);
1472
1473 /* key, cert */
1474 dh_client_pub = BN_new();
1475 if (dh_client_pub == NULL)
1476 fatal("dh_client_pub == NULL");
1477 packet_get_bignum2(dh_client_pub, &dlen);
1478
1479#ifdef DEBUG_KEXDH
1480 fprintf(stderr, "\ndh_client_pub= ");
Damien Miller62cee002000-09-23 17:15:56 +11001481 BN_print_fp(stderr, dh_client_pub);
Damien Millerefb4afe2000-04-12 18:45:05 +10001482 fprintf(stderr, "\n");
1483 debug("bits %d", BN_num_bits(dh_client_pub));
1484#endif
1485
Damien Millerefb4afe2000-04-12 18:45:05 +10001486#ifdef DEBUG_KEXDH
1487 fprintf(stderr, "\np= ");
Damien Miller62cee002000-09-23 17:15:56 +11001488 BN_print_fp(stderr, dh->p);
Damien Millerefb4afe2000-04-12 18:45:05 +10001489 fprintf(stderr, "\ng= ");
Damien Miller62cee002000-09-23 17:15:56 +11001490 bn_print(dh->g);
Damien Millerefb4afe2000-04-12 18:45:05 +10001491 fprintf(stderr, "\npub= ");
Damien Miller62cee002000-09-23 17:15:56 +11001492 BN_print_fp(stderr, dh->pub_key);
Damien Millerefb4afe2000-04-12 18:45:05 +10001493 fprintf(stderr, "\n");
Damien Miller62cee002000-09-23 17:15:56 +11001494 DHparams_print_fp(stderr, dh);
Damien Millerefb4afe2000-04-12 18:45:05 +10001495#endif
Damien Miller78928792000-04-12 20:17:38 +10001496 if (!dh_pub_is_valid(dh, dh_client_pub))
1497 packet_disconnect("bad client public DH value");
Damien Millerefb4afe2000-04-12 18:45:05 +10001498
1499 klen = DH_size(dh);
1500 kbuf = xmalloc(klen);
1501 kout = DH_compute_key(kbuf, dh_client_pub, dh);
1502
1503#ifdef DEBUG_KEXDH
1504 debug("shared secret: len %d/%d", klen, kout);
1505 fprintf(stderr, "shared secret == ");
1506 for (i = 0; i< kout; i++)
1507 fprintf(stderr, "%02x", (kbuf[i])&0xff);
1508 fprintf(stderr, "\n");
1509#endif
1510 shared_secret = BN_new();
1511
1512 BN_bin2bn(kbuf, kout, shared_secret);
1513 memset(kbuf, 0, klen);
1514 xfree(kbuf);
1515
Damien Millereba71ba2000-04-29 23:57:08 +10001516 /* XXX precompute? */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001517 key_to_blob(hostkey, &server_host_key_blob, &sbloblen);
Damien Millerefb4afe2000-04-12 18:45:05 +10001518
1519 /* calc H */ /* XXX depends on 'kex' */
1520 hash = kex_hash(
1521 client_version_string,
1522 server_version_string,
1523 buffer_ptr(client_kexinit), buffer_len(client_kexinit),
1524 buffer_ptr(server_kexinit), buffer_len(server_kexinit),
1525 (char *)server_host_key_blob, sbloblen,
1526 dh_client_pub,
1527 dh->pub_key,
1528 shared_secret
1529 );
1530 buffer_free(client_kexinit);
1531 buffer_free(server_kexinit);
1532 xfree(client_kexinit);
1533 xfree(server_kexinit);
Ben Lindstromb1985f72001-01-23 00:19:15 +00001534 BN_free(dh_client_pub);
Damien Millerefb4afe2000-04-12 18:45:05 +10001535#ifdef DEBUG_KEXDH
Damien Miller4af51302000-04-16 11:18:38 +10001536 fprintf(stderr, "hash == ");
1537 for (i = 0; i< 20; i++)
1538 fprintf(stderr, "%02x", (hash[i])&0xff);
1539 fprintf(stderr, "\n");
Damien Millerefb4afe2000-04-12 18:45:05 +10001540#endif
Damien Millereba71ba2000-04-29 23:57:08 +10001541 /* save session id := H */
1542 /* XXX hashlen depends on KEX */
1543 session_id2_len = 20;
1544 session_id2 = xmalloc(session_id2_len);
1545 memcpy(session_id2, hash, session_id2_len);
1546
Damien Millerefb4afe2000-04-12 18:45:05 +10001547 /* sign H */
Damien Millereba71ba2000-04-29 23:57:08 +10001548 /* XXX hashlen depends on KEX */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001549 key_sign(hostkey, &signature, &slen, hash, 20);
Damien Millereba71ba2000-04-29 23:57:08 +10001550
1551 destroy_sensitive_data();
Damien Millerefb4afe2000-04-12 18:45:05 +10001552
1553 /* send server hostkey, DH pubkey 'f' and singed H */
1554 packet_start(SSH2_MSG_KEXDH_REPLY);
1555 packet_put_string((char *)server_host_key_blob, sbloblen);
Damien Millere247cc42000-05-07 12:03:14 +10001556 packet_put_bignum2(dh->pub_key); /* f */
Damien Millerefb4afe2000-04-12 18:45:05 +10001557 packet_put_string((char *)signature, slen);
1558 packet_send();
Damien Miller8bb73be2000-04-19 16:26:12 +10001559 xfree(signature);
Damien Millereba71ba2000-04-29 23:57:08 +10001560 xfree(server_host_key_blob);
Damien Millerefb4afe2000-04-12 18:45:05 +10001561 packet_write_wait();
1562
1563 kex_derive_keys(kex, hash, shared_secret);
Ben Lindstromb1985f72001-01-23 00:19:15 +00001564 BN_clear_free(shared_secret);
Damien Millerefb4afe2000-04-12 18:45:05 +10001565 packet_set_kex(kex);
1566
1567 /* have keys, free DH */
1568 DH_free(dh);
Damien Miller874d77b2000-10-14 16:23:11 +11001569}
Damien Millerefb4afe2000-04-12 18:45:05 +10001570
Damien Miller874d77b2000-10-14 16:23:11 +11001571/* diffie-hellman-group-exchange-sha1 */
1572
1573void
1574ssh_dhgex_server(Kex *kex, Buffer *client_kexinit, Buffer *server_kexinit)
1575{
1576#ifdef DEBUG_KEXDH
1577 int i;
1578#endif
1579 int payload_len, dlen;
1580 int slen, nbits;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001581 u_char *signature = NULL;
1582 u_char *server_host_key_blob = NULL;
1583 u_int sbloblen;
1584 u_int klen, kout;
1585 u_char *kbuf;
1586 u_char *hash;
Damien Miller874d77b2000-10-14 16:23:11 +11001587 BIGNUM *shared_secret = 0;
1588 DH *dh;
1589 BIGNUM *dh_client_pub = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001590 Key *hostkey;
1591
1592 hostkey = get_hostkey_by_type(kex->hostkey_type);
1593 if (hostkey == NULL)
1594 fatal("Unsupported hostkey type %d", kex->hostkey_type);
Damien Miller874d77b2000-10-14 16:23:11 +11001595
1596/* KEXDHGEX */
1597 debug("Wait SSH2_MSG_KEX_DH_GEX_REQUEST.");
1598 packet_read_expect(&payload_len, SSH2_MSG_KEX_DH_GEX_REQUEST);
1599 nbits = packet_get_int();
1600 dh = choose_dh(nbits);
1601
1602 debug("Sending SSH2_MSG_KEX_DH_GEX_GROUP.");
1603 packet_start(SSH2_MSG_KEX_DH_GEX_GROUP);
1604 packet_put_bignum2(dh->p);
1605 packet_put_bignum2(dh->g);
Damien Millerefb4afe2000-04-12 18:45:05 +10001606 packet_send();
1607 packet_write_wait();
Damien Millerefb4afe2000-04-12 18:45:05 +10001608
Kevin Steves6b875862000-12-15 23:31:01 +00001609 /* Compute our exchange value in parallel with the client */
1610
1611 dh_gen_key(dh);
1612
Damien Miller874d77b2000-10-14 16:23:11 +11001613 debug("Wait SSH2_MSG_KEX_DH_GEX_INIT.");
1614 packet_read_expect(&payload_len, SSH2_MSG_KEX_DH_GEX_INIT);
1615
1616 /* key, cert */
1617 dh_client_pub = BN_new();
1618 if (dh_client_pub == NULL)
1619 fatal("dh_client_pub == NULL");
1620 packet_get_bignum2(dh_client_pub, &dlen);
Damien Millerefb4afe2000-04-12 18:45:05 +10001621
Damien Miller78928792000-04-12 20:17:38 +10001622#ifdef DEBUG_KEXDH
Damien Miller874d77b2000-10-14 16:23:11 +11001623 fprintf(stderr, "\ndh_client_pub= ");
1624 BN_print_fp(stderr, dh_client_pub);
1625 fprintf(stderr, "\n");
1626 debug("bits %d", BN_num_bits(dh_client_pub));
Damien Miller78928792000-04-12 20:17:38 +10001627#endif
Damien Miller874d77b2000-10-14 16:23:11 +11001628
1629#ifdef DEBUG_KEXDH
1630 fprintf(stderr, "\np= ");
1631 BN_print_fp(stderr, dh->p);
1632 fprintf(stderr, "\ng= ");
1633 bn_print(dh->g);
1634 fprintf(stderr, "\npub= ");
1635 BN_print_fp(stderr, dh->pub_key);
1636 fprintf(stderr, "\n");
1637 DHparams_print_fp(stderr, dh);
1638#endif
1639 if (!dh_pub_is_valid(dh, dh_client_pub))
1640 packet_disconnect("bad client public DH value");
1641
1642 klen = DH_size(dh);
1643 kbuf = xmalloc(klen);
1644 kout = DH_compute_key(kbuf, dh_client_pub, dh);
1645
1646#ifdef DEBUG_KEXDH
1647 debug("shared secret: len %d/%d", klen, kout);
1648 fprintf(stderr, "shared secret == ");
1649 for (i = 0; i< kout; i++)
1650 fprintf(stderr, "%02x", (kbuf[i])&0xff);
1651 fprintf(stderr, "\n");
1652#endif
1653 shared_secret = BN_new();
1654
1655 BN_bin2bn(kbuf, kout, shared_secret);
1656 memset(kbuf, 0, klen);
1657 xfree(kbuf);
1658
1659 /* XXX precompute? */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001660 key_to_blob(hostkey, &server_host_key_blob, &sbloblen);
Damien Miller874d77b2000-10-14 16:23:11 +11001661
1662 /* calc H */ /* XXX depends on 'kex' */
1663 hash = kex_hash_gex(
1664 client_version_string,
1665 server_version_string,
1666 buffer_ptr(client_kexinit), buffer_len(client_kexinit),
1667 buffer_ptr(server_kexinit), buffer_len(server_kexinit),
1668 (char *)server_host_key_blob, sbloblen,
1669 nbits, dh->p, dh->g,
1670 dh_client_pub,
1671 dh->pub_key,
1672 shared_secret
1673 );
1674 buffer_free(client_kexinit);
1675 buffer_free(server_kexinit);
1676 xfree(client_kexinit);
1677 xfree(server_kexinit);
Ben Lindstromb1985f72001-01-23 00:19:15 +00001678 BN_free(dh_client_pub);
Damien Miller874d77b2000-10-14 16:23:11 +11001679#ifdef DEBUG_KEXDH
1680 fprintf(stderr, "hash == ");
1681 for (i = 0; i< 20; i++)
1682 fprintf(stderr, "%02x", (hash[i])&0xff);
1683 fprintf(stderr, "\n");
1684#endif
1685 /* save session id := H */
1686 /* XXX hashlen depends on KEX */
1687 session_id2_len = 20;
1688 session_id2 = xmalloc(session_id2_len);
1689 memcpy(session_id2, hash, session_id2_len);
1690
1691 /* sign H */
1692 /* XXX hashlen depends on KEX */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001693 key_sign(hostkey, &signature, &slen, hash, 20);
Damien Miller874d77b2000-10-14 16:23:11 +11001694
1695 destroy_sensitive_data();
1696
1697 /* send server hostkey, DH pubkey 'f' and singed H */
1698 packet_start(SSH2_MSG_KEX_DH_GEX_REPLY);
1699 packet_put_string((char *)server_host_key_blob, sbloblen);
1700 packet_put_bignum2(dh->pub_key); /* f */
1701 packet_put_string((char *)signature, slen);
1702 packet_send();
1703 xfree(signature);
1704 xfree(server_host_key_blob);
1705 packet_write_wait();
1706
1707 kex_derive_keys(kex, hash, shared_secret);
Ben Lindstromb1985f72001-01-23 00:19:15 +00001708 BN_clear_free(shared_secret);
Damien Miller874d77b2000-10-14 16:23:11 +11001709 packet_set_kex(kex);
1710
1711 /* have keys, free DH */
1712 DH_free(dh);
Damien Millerefb4afe2000-04-12 18:45:05 +10001713}