blob: 5b592885836073e72db05cde08a39a0dd83153fb [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 Lindstrombe2cc432001-04-04 23:46:07 +000043RCSID("$OpenBSD: sshd.c,v 1.190 2001/04/04 20:25:38 markus Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100044
Ben Lindstrom226cfa02001-01-22 05:34:40 +000045#include <openssl/dh.h>
46#include <openssl/bn.h>
47#include <openssl/hmac.h>
48
49#include "ssh.h"
50#include "ssh1.h"
51#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100052#include "xmalloc.h"
53#include "rsa.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000054#include "sshpty.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100055#include "packet.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100056#include "mpaux.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000057#include "log.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100058#include "servconf.h"
59#include "uidswap.h"
60#include "compat.h"
Damien Millerb38eff82000-04-01 11:09:21 +100061#include "buffer.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000062#include "cipher.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100063#include "kex.h"
Damien Millerb38eff82000-04-01 11:09:21 +100064#include "key.h"
Damien Miller874d77b2000-10-14 16:23:11 +110065#include "dh.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100066#include "myproposal.h"
Damien Millereba71ba2000-04-29 23:57:08 +100067#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000068#include "pathnames.h"
69#include "atomicio.h"
70#include "canohost.h"
71#include "auth.h"
72#include "misc.h"
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +000073#include "dispatch.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074
75#ifdef LIBWRAP
76#include <tcpd.h>
77#include <syslog.h>
78int allow_severity = LOG_INFO;
79int deny_severity = LOG_WARNING;
80#endif /* LIBWRAP */
81
82#ifndef O_NOCTTY
83#define O_NOCTTY 0
84#endif
85
Ben Lindstrom49a79c02000-11-17 03:47:20 +000086#ifdef HAVE___PROGNAME
87extern char *__progname;
88#else
89char *__progname;
90#endif
91
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092/* Server configuration options. */
93ServerOptions options;
94
95/* Name of the server configuration file. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +000096char *config_file_name = _PATH_SERVER_CONFIG_FILE;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100097
Damien Miller4af51302000-04-16 11:18:38 +100098/*
Damien Miller34132e52000-01-14 15:45:46 +110099 * Flag indicating whether IPv4 or IPv6. This can be set on the command line.
100 * Default value is AF_UNSPEC means both IPv4 and IPv6.
101 */
Damien Miller7d80e342000-01-19 14:36:49 +1100102#ifdef IPV4_DEFAULT
103int IPv4or6 = AF_INET;
104#else
Damien Miller34132e52000-01-14 15:45:46 +1100105int IPv4or6 = AF_UNSPEC;
Damien Miller7d80e342000-01-19 14:36:49 +1100106#endif
Damien Miller34132e52000-01-14 15:45:46 +1100107
Damien Miller95def091999-11-25 00:26:21 +1100108/*
109 * Debug mode flag. This can be set on the command line. If debug
110 * mode is enabled, extra debugging output will be sent to the system
111 * log, the daemon will not go to background, and will exit after processing
112 * the first connection.
113 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000114int debug_flag = 0;
115
116/* Flag indicating that the daemon is being started from inetd. */
117int inetd_flag = 0;
118
Ben Lindstromc72745a2000-12-02 19:03:54 +0000119/* Flag indicating that sshd should not detach and become a daemon. */
120int no_daemon_flag = 0;
121
Damien Miller5ce662a1999-11-11 17:57:39 +1100122/* debug goes to stderr unless inetd_flag is set */
123int log_stderr = 0;
124
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000125/* Saved arguments to main(). */
126char **saved_argv;
Damien Millerb8c656e2000-06-28 15:22:41 +1000127int saved_argc;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000128
Damien Miller5428f641999-11-25 11:54:57 +1100129/*
Damien Miller34132e52000-01-14 15:45:46 +1100130 * The sockets that the server is listening; this is used in the SIGHUP
131 * signal handler.
Damien Miller5428f641999-11-25 11:54:57 +1100132 */
Damien Miller34132e52000-01-14 15:45:46 +1100133#define MAX_LISTEN_SOCKS 16
134int listen_socks[MAX_LISTEN_SOCKS];
135int num_listen_socks = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000136
Damien Miller5428f641999-11-25 11:54:57 +1100137/*
138 * the client's version string, passed by sshd2 in compat mode. if != NULL,
139 * sshd will skip the version-number exchange
140 */
Damien Miller95def091999-11-25 00:26:21 +1100141char *client_version_string = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000142char *server_version_string = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000143
Ben Lindstrom8ac91062001-04-04 17:57:54 +0000144/* for rekeying XXX fixme */
145Kex *xxx_kex;
146
Damien Miller5428f641999-11-25 11:54:57 +1100147/*
148 * Any really sensitive data in the application is contained in this
149 * structure. The idea is that this structure could be locked into memory so
150 * that the pages do not get written into swap. However, there are some
151 * problems. The private key contains BIGNUMs, and we do not (in principle)
152 * have access to the internals of them, and locking just the structure is
153 * not very useful. Currently, memory locking is not implemented.
154 */
Damien Miller95def091999-11-25 00:26:21 +1100155struct {
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000156 Key *server_key; /* ephemeral server key */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100157 Key *ssh1_host_key; /* ssh1 host key */
158 Key **host_keys; /* all private host keys */
159 int have_ssh1_key;
160 int have_ssh2_key;
Ben Lindstromeb648a72001-03-05 06:00:29 +0000161 u_char ssh1_cookie[SSH_SESSION_KEY_LENGTH];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000162} sensitive_data;
163
Damien Miller5428f641999-11-25 11:54:57 +1100164/*
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000165 * Flag indicating whether the RSA server key needs to be regenerated.
166 * Is set in the SIGALRM handler and cleared when the key is regenerated.
Damien Miller5428f641999-11-25 11:54:57 +1100167 */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000168int key_do_regen = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000169
170/* This is set to true when SIGHUP is received. */
171int received_sighup = 0;
172
Damien Millerb38eff82000-04-01 11:09:21 +1000173/* session identifier, used by RSA-auth */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000174u_char session_id[16];
Damien Millerb38eff82000-04-01 11:09:21 +1000175
Damien Millereba71ba2000-04-29 23:57:08 +1000176/* same for ssh2 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000177u_char *session_id2 = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000178int session_id2_len = 0;
179
Damien Miller942da032000-08-18 13:59:06 +1000180/* record remote hostname or ip */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000181u_int utmp_len = MAXHOSTNAMELEN;
Damien Miller942da032000-08-18 13:59:06 +1000182
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000183/* Prototypes for various functions defined later in this file. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000184void do_ssh1_kex(void);
185void do_ssh2_kex(void);
Damien Miller98c7ad62000-03-09 21:27:49 +1100186
Damien Miller874d77b2000-10-14 16:23:11 +1100187void ssh_dh1_server(Kex *, Buffer *_kexinit, Buffer *);
188void ssh_dhgex_server(Kex *, Buffer *_kexinit, Buffer *);
189
Damien Miller98c7ad62000-03-09 21:27:49 +1100190/*
Damien Miller34132e52000-01-14 15:45:46 +1100191 * Close all listening sockets
192 */
193void
194close_listen_socks(void)
195{
196 int i;
197 for (i = 0; i < num_listen_socks; i++)
198 close(listen_socks[i]);
199 num_listen_socks = -1;
200}
201
202/*
Damien Miller95def091999-11-25 00:26:21 +1100203 * Signal handler for SIGHUP. Sshd execs itself when it receives SIGHUP;
204 * the effect is to reread the configuration file (and to regenerate
205 * the server key).
206 */
Damien Miller4af51302000-04-16 11:18:38 +1000207void
Damien Miller95def091999-11-25 00:26:21 +1100208sighup_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000209{
Damien Miller95def091999-11-25 00:26:21 +1100210 received_sighup = 1;
211 signal(SIGHUP, sighup_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000212}
213
Damien Miller95def091999-11-25 00:26:21 +1100214/*
215 * Called from the main program after receiving SIGHUP.
216 * Restarts the server.
217 */
Damien Miller4af51302000-04-16 11:18:38 +1000218void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000219sighup_restart(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000220{
Damien Miller95def091999-11-25 00:26:21 +1100221 log("Received SIGHUP; restarting.");
Damien Miller34132e52000-01-14 15:45:46 +1100222 close_listen_socks();
Damien Miller95def091999-11-25 00:26:21 +1100223 execv(saved_argv[0], saved_argv);
Kevin Stevesec84dc12000-12-13 17:45:15 +0000224 log("RESTART FAILED: av[0]='%.100s', error: %.100s.", saved_argv[0], strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100225 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000226}
227
Damien Miller95def091999-11-25 00:26:21 +1100228/*
229 * Generic signal handler for terminating signals in the master daemon.
230 * These close the listen socket; not closing it seems to cause "Address
231 * already in use" problems on some machines, which is inconvenient.
232 */
Damien Miller4af51302000-04-16 11:18:38 +1000233void
Damien Miller95def091999-11-25 00:26:21 +1100234sigterm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000235{
Damien Miller95def091999-11-25 00:26:21 +1100236 log("Received signal %d; terminating.", sig);
Damien Miller34132e52000-01-14 15:45:46 +1100237 close_listen_socks();
Damien Miller6f83b8e2000-05-02 09:23:45 +1000238 unlink(options.pid_file);
Damien Miller95def091999-11-25 00:26:21 +1100239 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000240}
241
Damien Miller95def091999-11-25 00:26:21 +1100242/*
243 * SIGCHLD handler. This is called whenever a child dies. This will then
244 * reap any zombies left by exited c.
245 */
Damien Miller4af51302000-04-16 11:18:38 +1000246void
Damien Miller95def091999-11-25 00:26:21 +1100247main_sigchld_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000248{
Damien Miller95def091999-11-25 00:26:21 +1100249 int save_errno = errno;
250 int status;
Damien Miller431f66b1999-11-21 18:31:57 +1100251
Damien Miller95def091999-11-25 00:26:21 +1100252 while (waitpid(-1, &status, WNOHANG) > 0)
253 ;
Damien Miller431f66b1999-11-21 18:31:57 +1100254
Damien Miller95def091999-11-25 00:26:21 +1100255 signal(SIGCHLD, main_sigchld_handler);
256 errno = save_errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000257}
258
Damien Miller95def091999-11-25 00:26:21 +1100259/*
260 * Signal handler for the alarm after the login grace period has expired.
261 */
Damien Miller4af51302000-04-16 11:18:38 +1000262void
Damien Miller95def091999-11-25 00:26:21 +1100263grace_alarm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000264{
Damien Miller95def091999-11-25 00:26:21 +1100265 /* Close the connection. */
266 packet_close();
267
268 /* Log error and exit. */
269 fatal("Timeout before authentication for %s.", get_remote_ipaddr());
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000270}
271
Damien Miller95def091999-11-25 00:26:21 +1100272/*
Damien Miller95def091999-11-25 00:26:21 +1100273 * Signal handler for the key regeneration alarm. Note that this
274 * alarm only occurs in the daemon waiting for connections, and it does not
275 * do anything with the private key or random state before forking.
276 * Thus there should be no concurrency control/asynchronous execution
277 * problems.
278 */
Damien Miller4af51302000-04-16 11:18:38 +1000279void
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000280generate_ephemeral_server_key(void)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100281{
Ben Lindstromeb648a72001-03-05 06:00:29 +0000282 u_int32_t rand = 0;
283 int i;
284
Damien Millerff75ac42001-03-30 10:50:32 +1000285 verbose("Generating %s%d bit RSA key.",
286 sensitive_data.server_key ? "new " : "", options.server_key_bits);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100287 if (sensitive_data.server_key != NULL)
288 key_free(sensitive_data.server_key);
Damien Millerff75ac42001-03-30 10:50:32 +1000289 sensitive_data.server_key = key_generate(KEY_RSA1,
290 options.server_key_bits);
291 verbose("RSA key generation complete.");
Ben Lindstromeb648a72001-03-05 06:00:29 +0000292
293 for (i = 0; i < SSH_SESSION_KEY_LENGTH; i++) {
294 if (i % 4 == 0)
295 rand = arc4random();
296 sensitive_data.ssh1_cookie[i] = rand & 0xff;
297 rand >>= 8;
298 }
299 arc4random_stir();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100300}
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000301
Damien Miller0bc1bd82000-11-13 22:57:25 +1100302void
Damien Miller95def091999-11-25 00:26:21 +1100303key_regeneration_alarm(int sig)
304{
305 int save_errno = errno;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000306 signal(SIGALRM, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +1100307 errno = save_errno;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000308 key_do_regen = 1;
Damien Miller95def091999-11-25 00:26:21 +1100309}
310
Damien Millerb38eff82000-04-01 11:09:21 +1000311void
312sshd_exchange_identification(int sock_in, int sock_out)
313{
Damien Miller78928792000-04-12 20:17:38 +1000314 int i, mismatch;
Damien Millerb38eff82000-04-01 11:09:21 +1000315 int remote_major, remote_minor;
Damien Miller78928792000-04-12 20:17:38 +1000316 int major, minor;
Damien Millerb38eff82000-04-01 11:09:21 +1000317 char *s;
318 char buf[256]; /* Must not be larger than remote_version. */
319 char remote_version[256]; /* Must be at least as big as buf. */
320
Damien Miller78928792000-04-12 20:17:38 +1000321 if ((options.protocol & SSH_PROTO_1) &&
322 (options.protocol & SSH_PROTO_2)) {
323 major = PROTOCOL_MAJOR_1;
324 minor = 99;
325 } else if (options.protocol & SSH_PROTO_2) {
326 major = PROTOCOL_MAJOR_2;
327 minor = PROTOCOL_MINOR_2;
328 } else {
329 major = PROTOCOL_MAJOR_1;
330 minor = PROTOCOL_MINOR_1;
331 }
332 snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n", major, minor, SSH_VERSION);
Damien Millerb38eff82000-04-01 11:09:21 +1000333 server_version_string = xstrdup(buf);
334
335 if (client_version_string == NULL) {
336 /* Send our protocol version identification. */
337 if (atomicio(write, sock_out, server_version_string, strlen(server_version_string))
338 != strlen(server_version_string)) {
339 log("Could not write ident string to %s.", get_remote_ipaddr());
340 fatal_cleanup();
341 }
342
Ben Lindstrom5393f932001-02-15 03:17:13 +0000343 /* Read other side's version identification. */
344 memset(buf, 0, sizeof(buf));
Damien Millerb38eff82000-04-01 11:09:21 +1000345 for (i = 0; i < sizeof(buf) - 1; i++) {
Damien Millerbf7f4662000-06-23 10:16:38 +1000346 if (atomicio(read, sock_in, &buf[i], 1) != 1) {
Ben Lindstroma9a29e12001-02-20 01:20:47 +0000347 log("Did not receive identification string from %s.",
348 get_remote_ipaddr());
Damien Millerb38eff82000-04-01 11:09:21 +1000349 fatal_cleanup();
350 }
351 if (buf[i] == '\r') {
Ben Lindstrom69d8c072001-03-22 22:45:33 +0000352 buf[i] = 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100353 /* Kludge for F-Secure Macintosh < 1.0.2 */
354 if (i == 12 &&
355 strncmp(buf, "SSH-1.5-W1.0", 12) == 0)
356 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000357 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000358 }
359 if (buf[i] == '\n') {
Ben Lindstrom69d8c072001-03-22 22:45:33 +0000360 buf[i] = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000361 break;
362 }
363 }
364 buf[sizeof(buf) - 1] = 0;
365 client_version_string = xstrdup(buf);
366 }
367
368 /*
369 * Check that the versions match. In future this might accept
370 * several versions and set appropriate flags to handle them.
371 */
372 if (sscanf(client_version_string, "SSH-%d.%d-%[^\n]\n",
373 &remote_major, &remote_minor, remote_version) != 3) {
Damien Miller4af51302000-04-16 11:18:38 +1000374 s = "Protocol mismatch.\n";
Damien Millerb38eff82000-04-01 11:09:21 +1000375 (void) atomicio(write, sock_out, s, strlen(s));
376 close(sock_in);
377 close(sock_out);
378 log("Bad protocol version identification '%.100s' from %s",
379 client_version_string, get_remote_ipaddr());
380 fatal_cleanup();
381 }
382 debug("Client protocol version %d.%d; client software version %.100s",
383 remote_major, remote_minor, remote_version);
384
Damien Millerefb4afe2000-04-12 18:45:05 +1000385 compat_datafellows(remote_version);
386
Damien Miller27dbe6f2001-03-19 22:36:20 +1100387 if (datafellows & SSH_BUG_SCANNER) {
388 log("scanned from %s with %s. Don't panic.",
389 get_remote_ipaddr(), client_version_string);
390 fatal_cleanup();
391 }
392
Damien Miller78928792000-04-12 20:17:38 +1000393 mismatch = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000394 switch(remote_major) {
395 case 1:
Damien Millereba71ba2000-04-29 23:57:08 +1000396 if (remote_minor == 99) {
397 if (options.protocol & SSH_PROTO_2)
398 enable_compat20();
399 else
400 mismatch = 1;
401 break;
402 }
Damien Miller78928792000-04-12 20:17:38 +1000403 if (!(options.protocol & SSH_PROTO_1)) {
404 mismatch = 1;
405 break;
406 }
Damien Millerb38eff82000-04-01 11:09:21 +1000407 if (remote_minor < 3) {
Damien Miller37023962000-07-11 17:31:38 +1000408 packet_disconnect("Your ssh version is too old and "
Damien Millerb38eff82000-04-01 11:09:21 +1000409 "is no longer supported. Please install a newer version.");
410 } else if (remote_minor == 3) {
411 /* note that this disables agent-forwarding */
412 enable_compat13();
413 }
Damien Miller78928792000-04-12 20:17:38 +1000414 break;
Damien Millerefb4afe2000-04-12 18:45:05 +1000415 case 2:
Damien Miller78928792000-04-12 20:17:38 +1000416 if (options.protocol & SSH_PROTO_2) {
Damien Millerefb4afe2000-04-12 18:45:05 +1000417 enable_compat20();
418 break;
419 }
420 /* FALLTHROUGH */
Damien Miller4af51302000-04-16 11:18:38 +1000421 default:
Damien Miller78928792000-04-12 20:17:38 +1000422 mismatch = 1;
Damien Millerb38eff82000-04-01 11:09:21 +1000423 break;
424 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000425 chop(server_version_string);
Damien Miller78928792000-04-12 20:17:38 +1000426 debug("Local version string %.200s", server_version_string);
427
428 if (mismatch) {
429 s = "Protocol major versions differ.\n";
430 (void) atomicio(write, sock_out, s, strlen(s));
431 close(sock_in);
432 close(sock_out);
433 log("Protocol major versions differ for %s: %.200s vs. %.200s",
434 get_remote_ipaddr(),
435 server_version_string, client_version_string);
436 fatal_cleanup();
437 }
Damien Millereba71ba2000-04-29 23:57:08 +1000438 if (compat20)
439 packet_set_ssh2_format();
440}
441
442
Damien Miller0bc1bd82000-11-13 22:57:25 +1100443/* Destroy the host and server keys. They will no longer be needed. */
Damien Millereba71ba2000-04-29 23:57:08 +1000444void
445destroy_sensitive_data(void)
446{
Damien Miller0bc1bd82000-11-13 22:57:25 +1100447 int i;
448
449 if (sensitive_data.server_key) {
450 key_free(sensitive_data.server_key);
451 sensitive_data.server_key = NULL;
452 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000453 for(i = 0; i < options.num_host_key_files; i++) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100454 if (sensitive_data.host_keys[i]) {
455 key_free(sensitive_data.host_keys[i]);
456 sensitive_data.host_keys[i] = NULL;
457 }
458 }
459 sensitive_data.ssh1_host_key = NULL;
Ben Lindstromeb648a72001-03-05 06:00:29 +0000460 memset(sensitive_data.ssh1_cookie, 0, SSH_SESSION_KEY_LENGTH);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100461}
Damien Miller0bc1bd82000-11-13 22:57:25 +1100462
463char *
464list_hostkey_types(void)
465{
466 static char buf[1024];
467 int i;
468 buf[0] = '\0';
469 for(i = 0; i < options.num_host_key_files; i++) {
470 Key *key = sensitive_data.host_keys[i];
471 if (key == NULL)
472 continue;
473 switch(key->type) {
474 case KEY_RSA:
475 case KEY_DSA:
476 strlcat(buf, key_ssh_name(key), sizeof buf);
477 strlcat(buf, ",", sizeof buf);
478 break;
479 }
480 }
481 i = strlen(buf);
482 if (i > 0 && buf[i-1] == ',')
483 buf[i-1] = '\0';
484 debug("list_hostkey_types: %s", buf);
485 return buf;
486}
487
488Key *
489get_hostkey_by_type(int type)
490{
491 int i;
492 for(i = 0; i < options.num_host_key_files; i++) {
493 Key *key = sensitive_data.host_keys[i];
494 if (key != NULL && key->type == type)
495 return key;
496 }
497 return NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000498}
499
Damien Miller942da032000-08-18 13:59:06 +1000500/*
501 * returns 1 if connection should be dropped, 0 otherwise.
502 * dropping starts at connection #max_startups_begin with a probability
503 * of (max_startups_rate/100). the probability increases linearly until
504 * all connections are dropped for startups > max_startups
505 */
506int
507drop_connection(int startups)
508{
509 double p, r;
510
511 if (startups < options.max_startups_begin)
512 return 0;
513 if (startups >= options.max_startups)
514 return 1;
515 if (options.max_startups_rate == 100)
516 return 1;
517
518 p = 100 - options.max_startups_rate;
519 p *= startups - options.max_startups_begin;
520 p /= (double) (options.max_startups - options.max_startups_begin);
521 p += options.max_startups_rate;
522 p /= 100.0;
523 r = arc4random() / (double) UINT_MAX;
524
525 debug("drop_connection: p %g, r %g", p, r);
526 return (r < p) ? 1 : 0;
527}
528
Damien Miller37023962000-07-11 17:31:38 +1000529int *startup_pipes = NULL; /* options.max_startup sized array of fd ints */
530int startup_pipe; /* in child */
531
Damien Miller95def091999-11-25 00:26:21 +1100532/*
533 * Main program for the daemon.
534 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000535int
536main(int ac, char **av)
537{
Damien Miller95def091999-11-25 00:26:21 +1100538 extern char *optarg;
539 extern int optind;
Damien Miller37023962000-07-11 17:31:38 +1000540 int opt, sock_in = 0, sock_out = 0, newsock, j, i, fdsetsz, on = 1;
Damien Miller166fca82000-04-20 07:42:21 +1000541 pid_t pid;
Damien Miller34132e52000-01-14 15:45:46 +1100542 socklen_t fromlen;
Damien Miller34132e52000-01-14 15:45:46 +1100543 fd_set *fdset;
544 struct sockaddr_storage from;
Damien Miller95def091999-11-25 00:26:21 +1100545 const char *remote_ip;
546 int remote_port;
Damien Miller95def091999-11-25 00:26:21 +1100547 FILE *f;
548 struct linger linger;
Damien Miller34132e52000-01-14 15:45:46 +1100549 struct addrinfo *ai;
550 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
551 int listen_sock, maxfd;
Damien Miller37023962000-07-11 17:31:38 +1000552 int startup_p[2];
553 int startups = 0;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000554 Key *key;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000555 int ret, key_used = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000556
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000557 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000558 init_rng();
559
Kevin Stevesec84dc12000-12-13 17:45:15 +0000560 /* Save argv. */
Damien Millerb8c656e2000-06-28 15:22:41 +1000561 saved_argc = ac;
Damien Miller95def091999-11-25 00:26:21 +1100562 saved_argv = av;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000563
Damien Miller95def091999-11-25 00:26:21 +1100564 /* Initialize configuration options to their default values. */
565 initialize_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000566
Damien Miller95def091999-11-25 00:26:21 +1100567 /* Parse command-line arguments. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000568 while ((opt = getopt(ac, av, "f:p:b:k:h:g:V:u:dDiqQ46")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100569 switch (opt) {
Damien Miller34132e52000-01-14 15:45:46 +1100570 case '4':
571 IPv4or6 = AF_INET;
572 break;
573 case '6':
574 IPv4or6 = AF_INET6;
575 break;
Damien Miller95def091999-11-25 00:26:21 +1100576 case 'f':
577 config_file_name = optarg;
578 break;
579 case 'd':
Damien Millere4340be2000-09-16 13:29:08 +1100580 if (0 == debug_flag) {
581 debug_flag = 1;
582 options.log_level = SYSLOG_LEVEL_DEBUG1;
583 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
584 options.log_level++;
585 } else {
586 fprintf(stderr, "Too high debugging level.\n");
587 exit(1);
588 }
Damien Miller95def091999-11-25 00:26:21 +1100589 break;
Ben Lindstromc72745a2000-12-02 19:03:54 +0000590 case 'D':
591 no_daemon_flag = 1;
592 break;
Damien Miller95def091999-11-25 00:26:21 +1100593 case 'i':
594 inetd_flag = 1;
595 break;
596 case 'Q':
Ben Lindstromd5390202001-01-29 08:07:43 +0000597 /* ignored */
Damien Miller95def091999-11-25 00:26:21 +1100598 break;
599 case 'q':
600 options.log_level = SYSLOG_LEVEL_QUIET;
601 break;
602 case 'b':
603 options.server_key_bits = atoi(optarg);
604 break;
605 case 'p':
Damien Miller34132e52000-01-14 15:45:46 +1100606 options.ports_from_cmdline = 1;
Damien Millere4340be2000-09-16 13:29:08 +1100607 if (options.num_ports >= MAX_PORTS) {
608 fprintf(stderr, "too many ports.\n");
609 exit(1);
610 }
Damien Miller34132e52000-01-14 15:45:46 +1100611 options.ports[options.num_ports++] = atoi(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100612 break;
613 case 'g':
614 options.login_grace_time = atoi(optarg);
615 break;
616 case 'k':
617 options.key_regeneration_time = atoi(optarg);
618 break;
619 case 'h':
Damien Miller0bc1bd82000-11-13 22:57:25 +1100620 if (options.num_host_key_files >= MAX_HOSTKEYS) {
621 fprintf(stderr, "too many host keys.\n");
622 exit(1);
623 }
624 options.host_key_files[options.num_host_key_files++] = optarg;
Damien Miller95def091999-11-25 00:26:21 +1100625 break;
626 case 'V':
627 client_version_string = optarg;
628 /* only makes sense with inetd_flag, i.e. no listen() */
629 inetd_flag = 1;
630 break;
Damien Miller942da032000-08-18 13:59:06 +1000631 case 'u':
632 utmp_len = atoi(optarg);
633 break;
Damien Miller95def091999-11-25 00:26:21 +1100634 case '?':
635 default:
636 fprintf(stderr, "sshd version %s\n", SSH_VERSION);
Kevin Stevesec84dc12000-12-13 17:45:15 +0000637 fprintf(stderr, "Usage: %s [options]\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100638 fprintf(stderr, "Options:\n");
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000639 fprintf(stderr, " -f file Configuration file (default %s)\n", _PATH_SERVER_CONFIG_FILE);
Damien Millere4340be2000-09-16 13:29:08 +1100640 fprintf(stderr, " -d Debugging mode (multiple -d means more debugging)\n");
Damien Miller95def091999-11-25 00:26:21 +1100641 fprintf(stderr, " -i Started from inetd\n");
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000642 fprintf(stderr, " -D Do not fork into daemon mode\n");
Damien Miller95def091999-11-25 00:26:21 +1100643 fprintf(stderr, " -q Quiet (no logging)\n");
644 fprintf(stderr, " -p port Listen on the specified port (default: 22)\n");
645 fprintf(stderr, " -k seconds Regenerate server key every this many seconds (default: 3600)\n");
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000646 fprintf(stderr, " -g seconds Grace period for authentication (default: 600)\n");
Damien Miller95def091999-11-25 00:26:21 +1100647 fprintf(stderr, " -b bits Size of server RSA key (default: 768 bits)\n");
648 fprintf(stderr, " -h file File from which to read host key (default: %s)\n",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000649 _PATH_HOST_KEY_FILE);
Damien Miller942da032000-08-18 13:59:06 +1000650 fprintf(stderr, " -u len Maximum hostname length for utmp recording\n");
Damien Miller34132e52000-01-14 15:45:46 +1100651 fprintf(stderr, " -4 Use IPv4 only\n");
652 fprintf(stderr, " -6 Use IPv6 only\n");
Damien Miller95def091999-11-25 00:26:21 +1100653 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000654 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000655 }
Ben Lindstrom425fb022001-03-29 00:31:20 +0000656 SSLeay_add_all_algorithms();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000657
Damien Miller34132e52000-01-14 15:45:46 +1100658 /*
659 * Force logging to stderr until we have loaded the private host
660 * key (unless started from inetd)
661 */
Kevin Stevesec84dc12000-12-13 17:45:15 +0000662 log_init(__progname,
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000663 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
Damien Miller34132e52000-01-14 15:45:46 +1100664 options.log_facility == -1 ? SYSLOG_FACILITY_AUTH : options.log_facility,
Ben Lindstromd5390202001-01-29 08:07:43 +0000665 !inetd_flag);
Damien Miller34132e52000-01-14 15:45:46 +1100666
Damien Miller60bc5172001-03-19 09:38:15 +1100667 seed_rng();
668
Damien Miller95def091999-11-25 00:26:21 +1100669 /* Read server configuration options from the configuration file. */
670 read_server_config(&options, config_file_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000671
Damien Miller95def091999-11-25 00:26:21 +1100672 /* Fill in default values for those options not explicitly set. */
673 fill_default_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000674
Damien Miller95def091999-11-25 00:26:21 +1100675 /* Check that there are no remaining arguments. */
676 if (optind < ac) {
677 fprintf(stderr, "Extra argument %s.\n", av[optind]);
678 exit(1);
679 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000680
Damien Miller95def091999-11-25 00:26:21 +1100681 debug("sshd version %.100s", SSH_VERSION);
Damien Miller2ccf6611999-11-15 15:25:10 +1100682
Damien Miller0bc1bd82000-11-13 22:57:25 +1100683 /* load private host keys */
684 sensitive_data.host_keys = xmalloc(options.num_host_key_files*sizeof(Key*));
Ben Lindstrom46c16222000-12-22 01:43:59 +0000685 for(i = 0; i < options.num_host_key_files; i++)
686 sensitive_data.host_keys[i] = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100687 sensitive_data.server_key = NULL;
688 sensitive_data.ssh1_host_key = NULL;
689 sensitive_data.have_ssh1_key = 0;
690 sensitive_data.have_ssh2_key = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000691
Damien Miller0bc1bd82000-11-13 22:57:25 +1100692 for(i = 0; i < options.num_host_key_files; i++) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000693 key = key_load_private(options.host_key_files[i], "", NULL);
694 sensitive_data.host_keys[i] = key;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100695 if (key == NULL) {
696 error("Could not load host key: %.200s: %.100s",
697 options.host_key_files[i], strerror(errno));
Ben Lindstromd0fca422001-03-26 13:44:06 +0000698 sensitive_data.host_keys[i] = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100699 continue;
700 }
701 switch(key->type){
702 case KEY_RSA1:
703 sensitive_data.ssh1_host_key = key;
704 sensitive_data.have_ssh1_key = 1;
705 break;
706 case KEY_RSA:
707 case KEY_DSA:
708 sensitive_data.have_ssh2_key = 1;
709 break;
710 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000711 debug("private host key: #%d type %d %s", i, key->type,
712 key_type(key));
Damien Miller0bc1bd82000-11-13 22:57:25 +1100713 }
714 if ((options.protocol & SSH_PROTO_1) && !sensitive_data.have_ssh1_key) {
715 log("Disabling protocol version 1. Could not load host key");
Damien Millereba71ba2000-04-29 23:57:08 +1000716 options.protocol &= ~SSH_PROTO_1;
717 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100718 if ((options.protocol & SSH_PROTO_2) && !sensitive_data.have_ssh2_key) {
719 log("Disabling protocol version 2. Could not load host key");
720 options.protocol &= ~SSH_PROTO_2;
Damien Millereba71ba2000-04-29 23:57:08 +1000721 }
Kevin Stevesadf74cd2001-02-05 14:22:50 +0000722 if (!(options.protocol & (SSH_PROTO_1|SSH_PROTO_2))) {
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000723 log("sshd: no hostkeys available -- exiting.");
Damien Miller95def091999-11-25 00:26:21 +1100724 exit(1);
725 }
Damien Miller95def091999-11-25 00:26:21 +1100726
Damien Millereba71ba2000-04-29 23:57:08 +1000727 /* Check certain values for sanity. */
728 if (options.protocol & SSH_PROTO_1) {
729 if (options.server_key_bits < 512 ||
730 options.server_key_bits > 32768) {
731 fprintf(stderr, "Bad server key size.\n");
732 exit(1);
733 }
734 /*
735 * Check that server and host key lengths differ sufficiently. This
736 * is necessary to make double encryption work with rsaref. Oh, I
737 * hate software patents. I dont know if this can go? Niels
738 */
739 if (options.server_key_bits >
Damien Miller0bc1bd82000-11-13 22:57:25 +1100740 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) - SSH_KEY_BITS_RESERVED &&
Damien Millereba71ba2000-04-29 23:57:08 +1000741 options.server_key_bits <
Damien Miller0bc1bd82000-11-13 22:57:25 +1100742 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
Damien Millereba71ba2000-04-29 23:57:08 +1000743 options.server_key_bits =
Damien Miller0bc1bd82000-11-13 22:57:25 +1100744 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED;
Damien Millereba71ba2000-04-29 23:57:08 +1000745 debug("Forcing server key to %d bits to make it differ from host key.",
746 options.server_key_bits);
747 }
748 }
749
Damien Miller78315eb2000-09-29 23:01:36 +1100750#ifdef HAVE_SCO_PROTECTED_PW
751 (void) set_auth_parameters(ac, av);
752#endif
753
Damien Millereba71ba2000-04-29 23:57:08 +1000754 /* Initialize the log (it is reinitialized below in case we forked). */
Damien Miller95def091999-11-25 00:26:21 +1100755 if (debug_flag && !inetd_flag)
756 log_stderr = 1;
Kevin Stevesec84dc12000-12-13 17:45:15 +0000757 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +1100758
Damien Millereba71ba2000-04-29 23:57:08 +1000759 /*
760 * If not in debugging mode, and not started from inetd, disconnect
761 * from the controlling terminal, and fork. The original process
762 * exits.
763 */
Ben Lindstromc72745a2000-12-02 19:03:54 +0000764 if (!(debug_flag || inetd_flag || no_daemon_flag)) {
Damien Miller95def091999-11-25 00:26:21 +1100765#ifdef TIOCNOTTY
766 int fd;
767#endif /* TIOCNOTTY */
768 if (daemon(0, 0) < 0)
769 fatal("daemon() failed: %.200s", strerror(errno));
770
771 /* Disconnect from the controlling tty. */
772#ifdef TIOCNOTTY
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000773 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
Damien Miller95def091999-11-25 00:26:21 +1100774 if (fd >= 0) {
775 (void) ioctl(fd, TIOCNOTTY, NULL);
776 close(fd);
777 }
778#endif /* TIOCNOTTY */
779 }
780 /* Reinitialize the log (because of the fork above). */
Kevin Stevesec84dc12000-12-13 17:45:15 +0000781 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +1100782
Damien Miller95def091999-11-25 00:26:21 +1100783 /* Initialize the random number generator. */
784 arc4random_stir();
785
786 /* Chdir to the root directory so that the current disk can be
787 unmounted if desired. */
788 chdir("/");
Ben Lindstromde71cda2001-03-24 00:43:26 +0000789
790 /* ignore SIGPIPE */
791 signal(SIGPIPE, SIG_IGN);
Damien Miller95def091999-11-25 00:26:21 +1100792
Damien Miller95def091999-11-25 00:26:21 +1100793 /* Start listening for a socket, unless started from inetd. */
794 if (inetd_flag) {
795 int s1, s2;
796 s1 = dup(0); /* Make sure descriptors 0, 1, and 2 are in use. */
797 s2 = dup(s1);
798 sock_in = dup(0);
799 sock_out = dup(1);
Damien Miller994cf142000-07-21 10:19:44 +1000800 startup_pipe = -1;
Damien Millereba71ba2000-04-29 23:57:08 +1000801 /*
802 * We intentionally do not close the descriptors 0, 1, and 2
803 * as our code for setting the descriptors won\'t work if
804 * ttyfd happens to be one of those.
805 */
Damien Miller95def091999-11-25 00:26:21 +1100806 debug("inetd sockets after dupping: %d, %d", sock_in, sock_out);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100807 if (options.protocol & SSH_PROTO_1)
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000808 generate_ephemeral_server_key();
Damien Miller95def091999-11-25 00:26:21 +1100809 } else {
Damien Miller34132e52000-01-14 15:45:46 +1100810 for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
811 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
812 continue;
813 if (num_listen_socks >= MAX_LISTEN_SOCKS)
814 fatal("Too many listen sockets. "
815 "Enlarge MAX_LISTEN_SOCKS");
816 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
817 ntop, sizeof(ntop), strport, sizeof(strport),
818 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
819 error("getnameinfo failed");
820 continue;
821 }
822 /* Create socket for listening. */
823 listen_sock = socket(ai->ai_family, SOCK_STREAM, 0);
824 if (listen_sock < 0) {
825 /* kernel may not support ipv6 */
826 verbose("socket: %.100s", strerror(errno));
827 continue;
828 }
829 if (fcntl(listen_sock, F_SETFL, O_NONBLOCK) < 0) {
830 error("listen_sock O_NONBLOCK: %s", strerror(errno));
831 close(listen_sock);
832 continue;
833 }
834 /*
835 * Set socket options. We try to make the port
836 * reusable and have it close as fast as possible
837 * without waiting in unnecessary wait states on
838 * close.
839 */
840 setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
841 (void *) &on, sizeof(on));
842 linger.l_onoff = 1;
843 linger.l_linger = 5;
844 setsockopt(listen_sock, SOL_SOCKET, SO_LINGER,
845 (void *) &linger, sizeof(linger));
Damien Miller95def091999-11-25 00:26:21 +1100846
Damien Miller34132e52000-01-14 15:45:46 +1100847 debug("Bind to port %s on %s.", strport, ntop);
Damien Miller95def091999-11-25 00:26:21 +1100848
Damien Miller34132e52000-01-14 15:45:46 +1100849 /* Bind the socket to the desired port. */
Damien Miller0a4e27d2001-02-18 12:36:39 +1100850 if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) {
851 if (!ai->ai_next)
852 error("Bind to port %s on %s failed: %.200s.",
853 strport, ntop, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +1100854 close(listen_sock);
855 continue;
856 }
857 listen_socks[num_listen_socks] = listen_sock;
858 num_listen_socks++;
Damien Miller95def091999-11-25 00:26:21 +1100859
Damien Miller34132e52000-01-14 15:45:46 +1100860 /* Start listening on the port. */
861 log("Server listening on %s port %s.", ntop, strport);
862 if (listen(listen_sock, 5) < 0)
863 fatal("listen: %.100s", strerror(errno));
864
Damien Miller95def091999-11-25 00:26:21 +1100865 }
Damien Miller34132e52000-01-14 15:45:46 +1100866 freeaddrinfo(options.listen_addrs);
867
868 if (!num_listen_socks)
869 fatal("Cannot bind any address.");
870
Damien Miller95def091999-11-25 00:26:21 +1100871 if (!debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +1100872 /*
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000873 * Record our pid in /var/run/sshd.pid to make it
874 * easier to kill the correct sshd. We don't want to
875 * do this before the bind above because the bind will
Damien Miller5428f641999-11-25 11:54:57 +1100876 * fail if there already is a daemon, and this will
877 * overwrite any old pid in the file.
878 */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100879 f = fopen(options.pid_file, "wb");
Damien Miller95def091999-11-25 00:26:21 +1100880 if (f) {
Ben Lindstrom46c16222000-12-22 01:43:59 +0000881 fprintf(f, "%u\n", (u_int) getpid());
Damien Miller95def091999-11-25 00:26:21 +1100882 fclose(f);
883 }
884 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000885 if (options.protocol & SSH_PROTO_1)
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000886 generate_ephemeral_server_key();
Damien Miller95def091999-11-25 00:26:21 +1100887
Damien Miller95def091999-11-25 00:26:21 +1100888 /* Arrange to restart on SIGHUP. The handler needs listen_sock. */
889 signal(SIGHUP, sighup_handler);
Damien Miller37023962000-07-11 17:31:38 +1000890
Damien Miller95def091999-11-25 00:26:21 +1100891 signal(SIGTERM, sigterm_handler);
892 signal(SIGQUIT, sigterm_handler);
893
894 /* Arrange SIGCHLD to be caught. */
895 signal(SIGCHLD, main_sigchld_handler);
896
Damien Miller34132e52000-01-14 15:45:46 +1100897 /* setup fd set for listen */
Damien Miller37023962000-07-11 17:31:38 +1000898 fdset = NULL;
Damien Miller34132e52000-01-14 15:45:46 +1100899 maxfd = 0;
900 for (i = 0; i < num_listen_socks; i++)
901 if (listen_socks[i] > maxfd)
902 maxfd = listen_socks[i];
Damien Miller37023962000-07-11 17:31:38 +1000903 /* pipes connected to unauthenticated childs */
904 startup_pipes = xmalloc(options.max_startups * sizeof(int));
905 for (i = 0; i < options.max_startups; i++)
906 startup_pipes[i] = -1;
Damien Miller34132e52000-01-14 15:45:46 +1100907
Damien Miller5428f641999-11-25 11:54:57 +1100908 /*
909 * Stay listening for connections until the system crashes or
910 * the daemon is killed with a signal.
911 */
Damien Miller95def091999-11-25 00:26:21 +1100912 for (;;) {
913 if (received_sighup)
914 sighup_restart();
Damien Miller37023962000-07-11 17:31:38 +1000915 if (fdset != NULL)
916 xfree(fdset);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000917 fdsetsz = howmany(maxfd+1, NFDBITS) * sizeof(fd_mask);
Damien Miller37023962000-07-11 17:31:38 +1000918 fdset = (fd_set *)xmalloc(fdsetsz);
Damien Miller34132e52000-01-14 15:45:46 +1100919 memset(fdset, 0, fdsetsz);
Damien Miller37023962000-07-11 17:31:38 +1000920
Damien Miller34132e52000-01-14 15:45:46 +1100921 for (i = 0; i < num_listen_socks; i++)
922 FD_SET(listen_socks[i], fdset);
Damien Miller37023962000-07-11 17:31:38 +1000923 for (i = 0; i < options.max_startups; i++)
924 if (startup_pipes[i] != -1)
925 FD_SET(startup_pipes[i], fdset);
926
927 /* Wait in select until there is a connection. */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000928 ret = select(maxfd+1, fdset, NULL, NULL, NULL);
929 if (ret < 0 && errno != EINTR)
930 error("select: %.100s", strerror(errno));
931 if (key_used && key_do_regen) {
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000932 generate_ephemeral_server_key();
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000933 key_used = 0;
934 key_do_regen = 0;
Damien Miller34132e52000-01-14 15:45:46 +1100935 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000936 if (ret < 0)
937 continue;
938
Damien Miller37023962000-07-11 17:31:38 +1000939 for (i = 0; i < options.max_startups; i++)
940 if (startup_pipes[i] != -1 &&
941 FD_ISSET(startup_pipes[i], fdset)) {
942 /*
943 * the read end of the pipe is ready
944 * if the child has closed the pipe
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000945 * after successful authentication
Damien Miller37023962000-07-11 17:31:38 +1000946 * or if the child has died
947 */
948 close(startup_pipes[i]);
949 startup_pipes[i] = -1;
950 startups--;
951 }
Damien Miller34132e52000-01-14 15:45:46 +1100952 for (i = 0; i < num_listen_socks; i++) {
953 if (!FD_ISSET(listen_socks[i], fdset))
Damien Miller95def091999-11-25 00:26:21 +1100954 continue;
Damien Miller37023962000-07-11 17:31:38 +1000955 fromlen = sizeof(from);
956 newsock = accept(listen_socks[i], (struct sockaddr *)&from,
957 &fromlen);
958 if (newsock < 0) {
959 if (errno != EINTR && errno != EWOULDBLOCK)
960 error("accept: %.100s", strerror(errno));
961 continue;
962 }
963 if (fcntl(newsock, F_SETFL, 0) < 0) {
964 error("newsock del O_NONBLOCK: %s", strerror(errno));
965 continue;
966 }
Damien Miller942da032000-08-18 13:59:06 +1000967 if (drop_connection(startups) == 1) {
968 debug("drop connection #%d", startups);
Damien Miller37023962000-07-11 17:31:38 +1000969 close(newsock);
970 continue;
971 }
972 if (pipe(startup_p) == -1) {
973 close(newsock);
974 continue;
975 }
976
977 for (j = 0; j < options.max_startups; j++)
978 if (startup_pipes[j] == -1) {
979 startup_pipes[j] = startup_p[0];
980 if (maxfd < startup_p[0])
981 maxfd = startup_p[0];
982 startups++;
983 break;
984 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000985
Damien Miller5428f641999-11-25 11:54:57 +1100986 /*
Damien Miller37023962000-07-11 17:31:38 +1000987 * Got connection. Fork a child to handle it, unless
988 * we are in debugging mode.
Damien Miller5428f641999-11-25 11:54:57 +1100989 */
Damien Miller37023962000-07-11 17:31:38 +1000990 if (debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +1100991 /*
Damien Miller37023962000-07-11 17:31:38 +1000992 * In debugging mode. Close the listening
993 * socket, and start processing the
994 * connection without forking.
Damien Miller5428f641999-11-25 11:54:57 +1100995 */
Damien Miller37023962000-07-11 17:31:38 +1000996 debug("Server will not fork when running in debugging mode.");
Damien Miller34132e52000-01-14 15:45:46 +1100997 close_listen_socks();
Damien Miller95def091999-11-25 00:26:21 +1100998 sock_in = newsock;
999 sock_out = newsock;
Damien Miller4d97ba22000-07-11 18:15:50 +10001000 startup_pipe = -1;
Damien Miller182ee6e2000-07-12 09:45:27 +10001001 pid = getpid();
Damien Miller95def091999-11-25 00:26:21 +11001002 break;
Damien Miller37023962000-07-11 17:31:38 +10001003 } else {
1004 /*
1005 * Normal production daemon. Fork, and have
1006 * the child process the connection. The
1007 * parent continues listening.
1008 */
1009 if ((pid = fork()) == 0) {
1010 /*
1011 * Child. Close the listening and max_startup
1012 * sockets. Start using the accepted socket.
1013 * Reinitialize logging (since our pid has
1014 * changed). We break out of the loop to handle
1015 * the connection.
1016 */
1017 startup_pipe = startup_p[1];
1018 for (j = 0; j < options.max_startups; j++)
1019 if (startup_pipes[j] != -1)
1020 close(startup_pipes[j]);
1021 close_listen_socks();
1022 sock_in = newsock;
1023 sock_out = newsock;
Kevin Stevesec84dc12000-12-13 17:45:15 +00001024 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller37023962000-07-11 17:31:38 +10001025 break;
1026 }
Damien Miller95def091999-11-25 00:26:21 +11001027 }
Damien Miller37023962000-07-11 17:31:38 +10001028
1029 /* Parent. Stay in the loop. */
1030 if (pid < 0)
1031 error("fork: %.100s", strerror(errno));
1032 else
1033 debug("Forked child %d.", pid);
1034
1035 close(startup_p[1]);
1036
1037 /* Mark that the key has been used (it was "given" to the child). */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001038 if ((options.protocol & SSH_PROTO_1) &&
1039 key_used == 0) {
1040 /* Schedule server key regeneration alarm. */
1041 signal(SIGALRM, key_regeneration_alarm);
1042 alarm(options.key_regeneration_time);
1043 key_used = 1;
1044 }
Damien Miller37023962000-07-11 17:31:38 +10001045
1046 arc4random_stir();
1047
1048 /* Close the new socket (the child is now taking care of it). */
1049 close(newsock);
Damien Miller95def091999-11-25 00:26:21 +11001050 }
Damien Miller34132e52000-01-14 15:45:46 +11001051 /* child process check (or debug mode) */
1052 if (num_listen_socks < 0)
1053 break;
Damien Miller95def091999-11-25 00:26:21 +11001054 }
1055 }
1056
1057 /* This is the child processing a new connection. */
1058
Damien Miller5428f641999-11-25 11:54:57 +11001059 /*
1060 * Disable the key regeneration alarm. We will not regenerate the
1061 * key since we are no longer in a position to give it to anyone. We
1062 * will not restart on SIGHUP since it no longer makes sense.
1063 */
Damien Miller95def091999-11-25 00:26:21 +11001064 alarm(0);
1065 signal(SIGALRM, SIG_DFL);
1066 signal(SIGHUP, SIG_DFL);
1067 signal(SIGTERM, SIG_DFL);
1068 signal(SIGQUIT, SIG_DFL);
1069 signal(SIGCHLD, SIG_DFL);
Damien Miller4e0f5e12000-08-29 11:05:50 +11001070 signal(SIGINT, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001071
Damien Miller5428f641999-11-25 11:54:57 +11001072 /*
1073 * Set socket options for the connection. We want the socket to
1074 * close as fast as possible without waiting for anything. If the
1075 * connection is not a socket, these will do nothing.
1076 */
1077 /* setsockopt(sock_in, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on)); */
Damien Miller95def091999-11-25 00:26:21 +11001078 linger.l_onoff = 1;
1079 linger.l_linger = 5;
1080 setsockopt(sock_in, SOL_SOCKET, SO_LINGER, (void *) &linger, sizeof(linger));
1081
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001082 /* Set keepalives if requested. */
1083 if (options.keepalives &&
1084 setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, (void *)&on,
1085 sizeof(on)) < 0)
1086 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
1087
Damien Miller5428f641999-11-25 11:54:57 +11001088 /*
1089 * Register our connection. This turns encryption off because we do
1090 * not have a key.
1091 */
Damien Miller95def091999-11-25 00:26:21 +11001092 packet_set_connection(sock_in, sock_out);
1093
1094 remote_port = get_remote_port();
1095 remote_ip = get_remote_ipaddr();
1096
1097 /* Check whether logins are denied from this host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001098#ifdef LIBWRAP
Damien Miller34132e52000-01-14 15:45:46 +11001099 /* XXX LIBWRAP noes not know about IPv6 */
Damien Miller95def091999-11-25 00:26:21 +11001100 {
1101 struct request_info req;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001102
Kevin Stevesec84dc12000-12-13 17:45:15 +00001103 request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, NULL);
Damien Miller95def091999-11-25 00:26:21 +11001104 fromhost(&req);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001105
Damien Miller95def091999-11-25 00:26:21 +11001106 if (!hosts_access(&req)) {
Ben Lindstrom7de696e2001-03-29 00:45:12 +00001107 refuse(&req);
Damien Miller95def091999-11-25 00:26:21 +11001108 close(sock_in);
1109 close(sock_out);
Damien Miller95def091999-11-25 00:26:21 +11001110 }
Damien Miller34132e52000-01-14 15:45:46 +11001111/*XXX IPv6 verbose("Connection from %.500s port %d", eval_client(&req), remote_port); */
Damien Miller95def091999-11-25 00:26:21 +11001112 }
Damien Miller34132e52000-01-14 15:45:46 +11001113#endif /* LIBWRAP */
Damien Miller95def091999-11-25 00:26:21 +11001114 /* Log the connection. */
1115 verbose("Connection from %.500s port %d", remote_ip, remote_port);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001116
Damien Miller5428f641999-11-25 11:54:57 +11001117 /*
1118 * We don\'t want to listen forever unless the other side
1119 * successfully authenticates itself. So we set up an alarm which is
1120 * cleared after successful authentication. A limit of zero
1121 * indicates no limit. Note that we don\'t set the alarm in debugging
1122 * mode; it is just annoying to have the server exit just when you
1123 * are about to discover the bug.
1124 */
Damien Miller95def091999-11-25 00:26:21 +11001125 signal(SIGALRM, grace_alarm_handler);
1126 if (!debug_flag)
1127 alarm(options.login_grace_time);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001128
Damien Millerb38eff82000-04-01 11:09:21 +10001129 sshd_exchange_identification(sock_in, sock_out);
Damien Miller5428f641999-11-25 11:54:57 +11001130 /*
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001131 * Check that the connection comes from a privileged port.
1132 * Rhosts-Authentication only makes sense from priviledged
Damien Miller5428f641999-11-25 11:54:57 +11001133 * programs. Of course, if the intruder has root access on his local
1134 * machine, he can connect from any port. So do not use these
1135 * authentication methods from machines that you do not trust.
1136 */
Damien Miller95def091999-11-25 00:26:21 +11001137 if (remote_port >= IPPORT_RESERVED ||
1138 remote_port < IPPORT_RESERVED / 2) {
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001139 debug("Rhosts Authentication disabled, "
Damien Miller0bc1bd82000-11-13 22:57:25 +11001140 "originating port not trusted.");
Damien Miller95def091999-11-25 00:26:21 +11001141 options.rhosts_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +11001142 }
Damien Miller34132e52000-01-14 15:45:46 +11001143#ifdef KRB4
1144 if (!packet_connection_is_ipv4() &&
1145 options.kerberos_authentication) {
1146 debug("Kerberos Authentication disabled, only available for IPv4.");
1147 options.kerberos_authentication = 0;
1148 }
1149#endif /* KRB4 */
Ben Lindstromf79aeff2001-02-10 21:27:11 +00001150#ifdef AFS
1151 /* If machine has AFS, set process authentication group. */
1152 if (k_hasafs()) {
1153 k_setpag();
1154 k_unlog();
1155 }
1156#endif /* AFS */
Damien Miller34132e52000-01-14 15:45:46 +11001157
Damien Miller95def091999-11-25 00:26:21 +11001158 packet_set_nonblocking();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001159
Damien Miller396691a2000-01-20 22:44:08 +11001160 /* perform the key exchange */
Damien Miller396691a2000-01-20 22:44:08 +11001161 /* authenticate user and start session */
Damien Millerefb4afe2000-04-12 18:45:05 +10001162 if (compat20) {
1163 do_ssh2_kex();
1164 do_authentication2();
1165 } else {
1166 do_ssh1_kex();
1167 do_authentication();
1168 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001169
1170#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +11001171 /* Cleanup user's ticket cache file. */
1172 if (options.kerberos_ticket_cleanup)
1173 (void) dest_tkt();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001174#endif /* KRB4 */
1175
Damien Miller95def091999-11-25 00:26:21 +11001176 /* The connection has been terminated. */
1177 verbose("Closing connection to %.100s", remote_ip);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001178
Damien Millerbeb4ba51999-12-28 15:09:35 +11001179#ifdef USE_PAM
Damien Millere72b7af1999-12-30 15:08:44 +11001180 finish_pam();
Damien Millerbeb4ba51999-12-28 15:09:35 +11001181#endif /* USE_PAM */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001182
Damien Miller95def091999-11-25 00:26:21 +11001183 packet_close();
1184 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001185}
1186
Damien Miller95def091999-11-25 00:26:21 +11001187/*
Damien Miller396691a2000-01-20 22:44:08 +11001188 * SSH1 key exchange
Damien Miller95def091999-11-25 00:26:21 +11001189 */
Damien Miller2ccf6611999-11-15 15:25:10 +11001190void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001191do_ssh1_kex(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001192{
Damien Miller95def091999-11-25 00:26:21 +11001193 int i, len;
Damien Miller396691a2000-01-20 22:44:08 +11001194 int plen, slen;
Damien Miller7650bc62001-01-30 09:27:26 +11001195 int rsafail = 0;
Damien Miller95def091999-11-25 00:26:21 +11001196 BIGNUM *session_key_int;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001197 u_char session_key[SSH_SESSION_KEY_LENGTH];
1198 u_char cookie[8];
1199 u_int cipher_type, auth_mask, protocol_flags;
Damien Miller95def091999-11-25 00:26:21 +11001200 u_int32_t rand = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001201
Damien Miller5428f641999-11-25 11:54:57 +11001202 /*
1203 * Generate check bytes that the client must send back in the user
1204 * packet in order for it to be accepted; this is used to defy ip
1205 * spoofing attacks. Note that this only works against somebody
1206 * doing IP spoofing from a remote machine; any machine on the local
1207 * network can still see outgoing packets and catch the random
1208 * cookie. This only affects rhosts authentication, and this is one
1209 * of the reasons why it is inherently insecure.
1210 */
Damien Miller95def091999-11-25 00:26:21 +11001211 for (i = 0; i < 8; i++) {
1212 if (i % 4 == 0)
1213 rand = arc4random();
Damien Miller396691a2000-01-20 22:44:08 +11001214 cookie[i] = rand & 0xff;
Damien Miller95def091999-11-25 00:26:21 +11001215 rand >>= 8;
1216 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001217
Damien Miller5428f641999-11-25 11:54:57 +11001218 /*
1219 * Send our public key. We include in the packet 64 bits of random
1220 * data that must be matched in the reply in order to prevent IP
1221 * spoofing.
1222 */
Damien Miller95def091999-11-25 00:26:21 +11001223 packet_start(SSH_SMSG_PUBLIC_KEY);
1224 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001225 packet_put_char(cookie[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001226
Damien Miller95def091999-11-25 00:26:21 +11001227 /* Store our public server RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001228 packet_put_int(BN_num_bits(sensitive_data.server_key->rsa->n));
1229 packet_put_bignum(sensitive_data.server_key->rsa->e);
1230 packet_put_bignum(sensitive_data.server_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001231
Damien Miller95def091999-11-25 00:26:21 +11001232 /* Store our public host RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001233 packet_put_int(BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
1234 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->e);
1235 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001236
Damien Miller95def091999-11-25 00:26:21 +11001237 /* Put protocol flags. */
1238 packet_put_int(SSH_PROTOFLAG_HOST_IN_FWD_OPEN);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001239
Damien Miller95def091999-11-25 00:26:21 +11001240 /* Declare which ciphers we support. */
Damien Miller874d77b2000-10-14 16:23:11 +11001241 packet_put_int(cipher_mask_ssh1(0));
Damien Miller95def091999-11-25 00:26:21 +11001242
1243 /* Declare supported authentication types. */
1244 auth_mask = 0;
1245 if (options.rhosts_authentication)
1246 auth_mask |= 1 << SSH_AUTH_RHOSTS;
1247 if (options.rhosts_rsa_authentication)
1248 auth_mask |= 1 << SSH_AUTH_RHOSTS_RSA;
1249 if (options.rsa_authentication)
1250 auth_mask |= 1 << SSH_AUTH_RSA;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001251#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +11001252 if (options.kerberos_authentication)
1253 auth_mask |= 1 << SSH_AUTH_KERBEROS;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001254#endif
1255#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +11001256 if (options.kerberos_tgt_passing)
1257 auth_mask |= 1 << SSH_PASS_KERBEROS_TGT;
1258 if (options.afs_token_passing)
1259 auth_mask |= 1 << SSH_PASS_AFS_TOKEN;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001260#endif
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +00001261 if (options.challenge_reponse_authentication == 1)
Damien Miller95def091999-11-25 00:26:21 +11001262 auth_mask |= 1 << SSH_AUTH_TIS;
Damien Miller95def091999-11-25 00:26:21 +11001263 if (options.password_authentication)
1264 auth_mask |= 1 << SSH_AUTH_PASSWORD;
1265 packet_put_int(auth_mask);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001266
Damien Miller95def091999-11-25 00:26:21 +11001267 /* Send the packet and wait for it to be sent. */
1268 packet_send();
1269 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001270
Damien Miller0bc1bd82000-11-13 22:57:25 +11001271 debug("Sent %d bit server key and %d bit host key.",
1272 BN_num_bits(sensitive_data.server_key->rsa->n),
1273 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001274
Damien Miller95def091999-11-25 00:26:21 +11001275 /* Read clients reply (cipher type and session key). */
1276 packet_read_expect(&plen, SSH_CMSG_SESSION_KEY);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001277
Damien Miller50945fa1999-12-09 10:31:37 +11001278 /* Get cipher type and check whether we accept this. */
Damien Miller95def091999-11-25 00:26:21 +11001279 cipher_type = packet_get_char();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001280
Damien Miller874d77b2000-10-14 16:23:11 +11001281 if (!(cipher_mask_ssh1(0) & (1 << cipher_type)))
Damien Miller50945fa1999-12-09 10:31:37 +11001282 packet_disconnect("Warning: client selects unsupported cipher.");
1283
Damien Miller95def091999-11-25 00:26:21 +11001284 /* Get check bytes from the packet. These must match those we
1285 sent earlier with the public key packet. */
1286 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001287 if (cookie[i] != packet_get_char())
Damien Miller95def091999-11-25 00:26:21 +11001288 packet_disconnect("IP Spoofing check bytes do not match.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001289
Damien Miller95def091999-11-25 00:26:21 +11001290 debug("Encryption type: %.200s", cipher_name(cipher_type));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001291
Damien Miller95def091999-11-25 00:26:21 +11001292 /* Get the encrypted integer. */
1293 session_key_int = BN_new();
1294 packet_get_bignum(session_key_int, &slen);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001295
Damien Miller95def091999-11-25 00:26:21 +11001296 protocol_flags = packet_get_int();
1297 packet_set_protocol_flags(protocol_flags);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001298
Damien Miller95def091999-11-25 00:26:21 +11001299 packet_integrity_check(plen, 1 + 8 + slen + 4, SSH_CMSG_SESSION_KEY);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001300
Damien Miller5428f641999-11-25 11:54:57 +11001301 /*
1302 * Decrypt it using our private server key and private host key (key
1303 * with larger modulus first).
1304 */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001305 if (BN_cmp(sensitive_data.server_key->rsa->n, sensitive_data.ssh1_host_key->rsa->n) > 0) {
Damien Miller7650bc62001-01-30 09:27:26 +11001306 /* Server key has bigger modulus. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001307 if (BN_num_bits(sensitive_data.server_key->rsa->n) <
1308 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1309 fatal("do_connection: %s: server_key %d < host_key %d + SSH_KEY_BITS_RESERVED %d",
1310 get_remote_ipaddr(),
1311 BN_num_bits(sensitive_data.server_key->rsa->n),
1312 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1313 SSH_KEY_BITS_RESERVED);
Damien Miller95def091999-11-25 00:26:21 +11001314 }
Damien Miller7650bc62001-01-30 09:27:26 +11001315 if (rsa_private_decrypt(session_key_int, session_key_int,
1316 sensitive_data.server_key->rsa) <= 0)
1317 rsafail++;
1318 if (rsa_private_decrypt(session_key_int, session_key_int,
1319 sensitive_data.ssh1_host_key->rsa) <= 0)
1320 rsafail++;
Damien Miller95def091999-11-25 00:26:21 +11001321 } else {
1322 /* Host key has bigger modulus (or they are equal). */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001323 if (BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) <
1324 BN_num_bits(sensitive_data.server_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1325 fatal("do_connection: %s: host_key %d < server_key %d + SSH_KEY_BITS_RESERVED %d",
1326 get_remote_ipaddr(),
1327 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1328 BN_num_bits(sensitive_data.server_key->rsa->n),
1329 SSH_KEY_BITS_RESERVED);
Damien Miller95def091999-11-25 00:26:21 +11001330 }
Damien Miller7650bc62001-01-30 09:27:26 +11001331 if (rsa_private_decrypt(session_key_int, session_key_int,
1332 sensitive_data.ssh1_host_key->rsa) < 0)
1333 rsafail++;
1334 if (rsa_private_decrypt(session_key_int, session_key_int,
1335 sensitive_data.server_key->rsa) < 0)
1336 rsafail++;
Damien Miller95def091999-11-25 00:26:21 +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 Miller7650bc62001-01-30 09:27:26 +11001343 if (!rsafail) {
1344 BN_mask_bits(session_key_int, sizeof(session_key) * 8);
1345 len = BN_num_bytes(session_key_int);
1346 if (len < 0 || len > sizeof(session_key)) {
1347 error("do_connection: bad session key len from %s: "
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001348 "session_key_int %d > sizeof(session_key) %lu",
1349 get_remote_ipaddr(), len, (u_long)sizeof(session_key));
Damien Miller7650bc62001-01-30 09:27:26 +11001350 rsafail++;
1351 } else {
1352 memset(session_key, 0, sizeof(session_key));
1353 BN_bn2bin(session_key_int,
1354 session_key + sizeof(session_key) - len);
Ben Lindstromeb648a72001-03-05 06:00:29 +00001355
1356 compute_session_id(session_id, cookie,
1357 sensitive_data.ssh1_host_key->rsa->n,
1358 sensitive_data.server_key->rsa->n);
1359 /*
1360 * Xor the first 16 bytes of the session key with the
1361 * session id.
1362 */
1363 for (i = 0; i < 16; i++)
1364 session_key[i] ^= session_id[i];
Damien Miller7650bc62001-01-30 09:27:26 +11001365 }
1366 }
1367 if (rsafail) {
Ben Lindstromeb648a72001-03-05 06:00:29 +00001368 int bytes = BN_num_bytes(session_key_int);
1369 char *buf = xmalloc(bytes);
1370 MD5_CTX md;
1371
Damien Miller7650bc62001-01-30 09:27:26 +11001372 log("do_connection: generating a fake encryption key");
Ben Lindstromeb648a72001-03-05 06:00:29 +00001373 BN_bn2bin(session_key_int, buf);
1374 MD5_Init(&md);
1375 MD5_Update(&md, buf, bytes);
1376 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1377 MD5_Final(session_key, &md);
1378 MD5_Init(&md);
1379 MD5_Update(&md, session_key, 16);
1380 MD5_Update(&md, buf, bytes);
1381 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1382 MD5_Final(session_key + 16, &md);
1383 memset(buf, 0, bytes);
1384 xfree(buf);
Ben Lindstrom941ac822001-03-05 06:25:23 +00001385 for (i = 0; i < 16; i++)
1386 session_id[i] = session_key[i] ^ session_key[i + 16];
Damien Miller7650bc62001-01-30 09:27:26 +11001387 }
Ben Lindstromeb648a72001-03-05 06:00:29 +00001388 /* Destroy the private and public keys. They will no longer be needed. */
1389 destroy_sensitive_data();
1390
Damien Miller396691a2000-01-20 22:44:08 +11001391 /* Destroy the decrypted integer. It is no longer needed. */
1392 BN_clear_free(session_key_int);
1393
Damien Miller95def091999-11-25 00:26:21 +11001394 /* Set the session key. From this on all communications will be encrypted. */
1395 packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, cipher_type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001396
Damien Miller95def091999-11-25 00:26:21 +11001397 /* Destroy our copy of the session key. It is no longer needed. */
1398 memset(session_key, 0, sizeof(session_key));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001399
Damien Miller95def091999-11-25 00:26:21 +11001400 debug("Received session key; encryption turned on.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001401
Damien Miller95def091999-11-25 00:26:21 +11001402 /* Send an acknowledgement packet. Note that this packet is sent encrypted. */
1403 packet_start(SSH_SMSG_SUCCESS);
1404 packet_send();
1405 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001406}
Damien Millerefb4afe2000-04-12 18:45:05 +10001407
1408/*
1409 * SSH2 key exchange: diffie-hellman-group1-sha1
1410 */
1411void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001412do_ssh2_kex(void)
Damien Millerefb4afe2000-04-12 18:45:05 +10001413{
Damien Millerefb4afe2000-04-12 18:45:05 +10001414 Kex *kex;
Damien Millerefb4afe2000-04-12 18:45:05 +10001415
Damien Miller78928792000-04-12 20:17:38 +10001416 if (options.ciphers != NULL) {
Damien Miller4af51302000-04-16 11:18:38 +10001417 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
Damien Miller78928792000-04-12 20:17:38 +10001418 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
1419 }
Damien Millera0ff4662001-03-30 10:49:35 +10001420 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
1421 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
1422 myproposal[PROPOSAL_ENC_ALGS_STOC] =
1423 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
1424
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001425 if (options.macs != NULL) {
1426 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
1427 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
1428 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001429 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = list_hostkey_types();
1430
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001431 /* start key exchange */
Ben Lindstrom238abf62001-04-04 17:52:53 +00001432 kex = kex_setup(myproposal);
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +00001433 kex->server = 1;
1434 kex->client_version_string=client_version_string;
1435 kex->server_version_string=server_version_string;
1436 kex->load_host_key=&get_hostkey_by_type;
Damien Millerefb4afe2000-04-12 18:45:05 +10001437
Ben Lindstrom8ac91062001-04-04 17:57:54 +00001438 xxx_kex = kex;
1439
Ben Lindstrombe2cc432001-04-04 23:46:07 +00001440 dispatch_run(DISPATCH_BLOCK, &kex->done, kex);
Damien Miller874d77b2000-10-14 16:23:11 +11001441
Ben Lindstrom2d90e002001-04-04 02:00:54 +00001442 session_id2 = kex->session_id;
1443 session_id2_len = kex->session_id_len;
1444
Damien Miller874d77b2000-10-14 16:23:11 +11001445#ifdef DEBUG_KEXDH
1446 /* send 1st encrypted/maced/compressed message */
1447 packet_start(SSH2_MSG_IGNORE);
1448 packet_put_cstring("markus");
1449 packet_send();
1450 packet_write_wait();
1451#endif
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +00001452 debug("KEX done");
Damien Millerefb4afe2000-04-12 18:45:05 +10001453}