blob: 0bb4269d5a8a0cfacf2791109836ee3f762a727d [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 Lindstrom238abf62001-04-04 17:52:53 +000043RCSID("$OpenBSD: sshd.c,v 1.188 2001/04/04 09:48:35 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
Damien Miller5428f641999-11-25 11:54:57 +1100144/*
145 * Any really sensitive data in the application is contained in this
146 * structure. The idea is that this structure could be locked into memory so
147 * that the pages do not get written into swap. However, there are some
148 * problems. The private key contains BIGNUMs, and we do not (in principle)
149 * have access to the internals of them, and locking just the structure is
150 * not very useful. Currently, memory locking is not implemented.
151 */
Damien Miller95def091999-11-25 00:26:21 +1100152struct {
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000153 Key *server_key; /* ephemeral server key */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100154 Key *ssh1_host_key; /* ssh1 host key */
155 Key **host_keys; /* all private host keys */
156 int have_ssh1_key;
157 int have_ssh2_key;
Ben Lindstromeb648a72001-03-05 06:00:29 +0000158 u_char ssh1_cookie[SSH_SESSION_KEY_LENGTH];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000159} sensitive_data;
160
Damien Miller5428f641999-11-25 11:54:57 +1100161/*
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000162 * Flag indicating whether the RSA server key needs to be regenerated.
163 * Is set in the SIGALRM handler and cleared when the key is regenerated.
Damien Miller5428f641999-11-25 11:54:57 +1100164 */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000165int key_do_regen = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000166
167/* This is set to true when SIGHUP is received. */
168int received_sighup = 0;
169
Damien Millerb38eff82000-04-01 11:09:21 +1000170/* session identifier, used by RSA-auth */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000171u_char session_id[16];
Damien Millerb38eff82000-04-01 11:09:21 +1000172
Damien Millereba71ba2000-04-29 23:57:08 +1000173/* same for ssh2 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000174u_char *session_id2 = NULL;
Damien Millereba71ba2000-04-29 23:57:08 +1000175int session_id2_len = 0;
176
Damien Miller942da032000-08-18 13:59:06 +1000177/* record remote hostname or ip */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000178u_int utmp_len = MAXHOSTNAMELEN;
Damien Miller942da032000-08-18 13:59:06 +1000179
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000180/* Prototypes for various functions defined later in this file. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000181void do_ssh1_kex(void);
182void do_ssh2_kex(void);
Damien Miller98c7ad62000-03-09 21:27:49 +1100183
Damien Miller874d77b2000-10-14 16:23:11 +1100184void ssh_dh1_server(Kex *, Buffer *_kexinit, Buffer *);
185void ssh_dhgex_server(Kex *, Buffer *_kexinit, Buffer *);
186
Damien Miller98c7ad62000-03-09 21:27:49 +1100187/*
Damien Miller34132e52000-01-14 15:45:46 +1100188 * Close all listening sockets
189 */
190void
191close_listen_socks(void)
192{
193 int i;
194 for (i = 0; i < num_listen_socks; i++)
195 close(listen_socks[i]);
196 num_listen_socks = -1;
197}
198
199/*
Damien Miller95def091999-11-25 00:26:21 +1100200 * Signal handler for SIGHUP. Sshd execs itself when it receives SIGHUP;
201 * the effect is to reread the configuration file (and to regenerate
202 * the server key).
203 */
Damien Miller4af51302000-04-16 11:18:38 +1000204void
Damien Miller95def091999-11-25 00:26:21 +1100205sighup_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000206{
Damien Miller95def091999-11-25 00:26:21 +1100207 received_sighup = 1;
208 signal(SIGHUP, sighup_handler);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000209}
210
Damien Miller95def091999-11-25 00:26:21 +1100211/*
212 * Called from the main program after receiving SIGHUP.
213 * Restarts the server.
214 */
Damien Miller4af51302000-04-16 11:18:38 +1000215void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000216sighup_restart(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000217{
Damien Miller95def091999-11-25 00:26:21 +1100218 log("Received SIGHUP; restarting.");
Damien Miller34132e52000-01-14 15:45:46 +1100219 close_listen_socks();
Damien Miller95def091999-11-25 00:26:21 +1100220 execv(saved_argv[0], saved_argv);
Kevin Stevesec84dc12000-12-13 17:45:15 +0000221 log("RESTART FAILED: av[0]='%.100s', error: %.100s.", saved_argv[0], strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100222 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000223}
224
Damien Miller95def091999-11-25 00:26:21 +1100225/*
226 * Generic signal handler for terminating signals in the master daemon.
227 * These close the listen socket; not closing it seems to cause "Address
228 * already in use" problems on some machines, which is inconvenient.
229 */
Damien Miller4af51302000-04-16 11:18:38 +1000230void
Damien Miller95def091999-11-25 00:26:21 +1100231sigterm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000232{
Damien Miller95def091999-11-25 00:26:21 +1100233 log("Received signal %d; terminating.", sig);
Damien Miller34132e52000-01-14 15:45:46 +1100234 close_listen_socks();
Damien Miller6f83b8e2000-05-02 09:23:45 +1000235 unlink(options.pid_file);
Damien Miller95def091999-11-25 00:26:21 +1100236 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000237}
238
Damien Miller95def091999-11-25 00:26:21 +1100239/*
240 * SIGCHLD handler. This is called whenever a child dies. This will then
241 * reap any zombies left by exited c.
242 */
Damien Miller4af51302000-04-16 11:18:38 +1000243void
Damien Miller95def091999-11-25 00:26:21 +1100244main_sigchld_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000245{
Damien Miller95def091999-11-25 00:26:21 +1100246 int save_errno = errno;
247 int status;
Damien Miller431f66b1999-11-21 18:31:57 +1100248
Damien Miller95def091999-11-25 00:26:21 +1100249 while (waitpid(-1, &status, WNOHANG) > 0)
250 ;
Damien Miller431f66b1999-11-21 18:31:57 +1100251
Damien Miller95def091999-11-25 00:26:21 +1100252 signal(SIGCHLD, main_sigchld_handler);
253 errno = save_errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000254}
255
Damien Miller95def091999-11-25 00:26:21 +1100256/*
257 * Signal handler for the alarm after the login grace period has expired.
258 */
Damien Miller4af51302000-04-16 11:18:38 +1000259void
Damien Miller95def091999-11-25 00:26:21 +1100260grace_alarm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000261{
Damien Miller95def091999-11-25 00:26:21 +1100262 /* Close the connection. */
263 packet_close();
264
265 /* Log error and exit. */
266 fatal("Timeout before authentication for %s.", get_remote_ipaddr());
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000267}
268
Damien Miller95def091999-11-25 00:26:21 +1100269/*
Damien Miller95def091999-11-25 00:26:21 +1100270 * Signal handler for the key regeneration alarm. Note that this
271 * alarm only occurs in the daemon waiting for connections, and it does not
272 * do anything with the private key or random state before forking.
273 * Thus there should be no concurrency control/asynchronous execution
274 * problems.
275 */
Damien Miller4af51302000-04-16 11:18:38 +1000276void
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000277generate_ephemeral_server_key(void)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100278{
Ben Lindstromeb648a72001-03-05 06:00:29 +0000279 u_int32_t rand = 0;
280 int i;
281
Damien Millerff75ac42001-03-30 10:50:32 +1000282 verbose("Generating %s%d bit RSA key.",
283 sensitive_data.server_key ? "new " : "", options.server_key_bits);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100284 if (sensitive_data.server_key != NULL)
285 key_free(sensitive_data.server_key);
Damien Millerff75ac42001-03-30 10:50:32 +1000286 sensitive_data.server_key = key_generate(KEY_RSA1,
287 options.server_key_bits);
288 verbose("RSA key generation complete.");
Ben Lindstromeb648a72001-03-05 06:00:29 +0000289
290 for (i = 0; i < SSH_SESSION_KEY_LENGTH; i++) {
291 if (i % 4 == 0)
292 rand = arc4random();
293 sensitive_data.ssh1_cookie[i] = rand & 0xff;
294 rand >>= 8;
295 }
296 arc4random_stir();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100297}
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000298
Damien Miller0bc1bd82000-11-13 22:57:25 +1100299void
Damien Miller95def091999-11-25 00:26:21 +1100300key_regeneration_alarm(int sig)
301{
302 int save_errno = errno;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000303 signal(SIGALRM, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +1100304 errno = save_errno;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000305 key_do_regen = 1;
Damien Miller95def091999-11-25 00:26:21 +1100306}
307
Damien Millerb38eff82000-04-01 11:09:21 +1000308void
309sshd_exchange_identification(int sock_in, int sock_out)
310{
Damien Miller78928792000-04-12 20:17:38 +1000311 int i, mismatch;
Damien Millerb38eff82000-04-01 11:09:21 +1000312 int remote_major, remote_minor;
Damien Miller78928792000-04-12 20:17:38 +1000313 int major, minor;
Damien Millerb38eff82000-04-01 11:09:21 +1000314 char *s;
315 char buf[256]; /* Must not be larger than remote_version. */
316 char remote_version[256]; /* Must be at least as big as buf. */
317
Damien Miller78928792000-04-12 20:17:38 +1000318 if ((options.protocol & SSH_PROTO_1) &&
319 (options.protocol & SSH_PROTO_2)) {
320 major = PROTOCOL_MAJOR_1;
321 minor = 99;
322 } else if (options.protocol & SSH_PROTO_2) {
323 major = PROTOCOL_MAJOR_2;
324 minor = PROTOCOL_MINOR_2;
325 } else {
326 major = PROTOCOL_MAJOR_1;
327 minor = PROTOCOL_MINOR_1;
328 }
329 snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n", major, minor, SSH_VERSION);
Damien Millerb38eff82000-04-01 11:09:21 +1000330 server_version_string = xstrdup(buf);
331
332 if (client_version_string == NULL) {
333 /* Send our protocol version identification. */
334 if (atomicio(write, sock_out, server_version_string, strlen(server_version_string))
335 != strlen(server_version_string)) {
336 log("Could not write ident string to %s.", get_remote_ipaddr());
337 fatal_cleanup();
338 }
339
Ben Lindstrom5393f932001-02-15 03:17:13 +0000340 /* Read other side's version identification. */
341 memset(buf, 0, sizeof(buf));
Damien Millerb38eff82000-04-01 11:09:21 +1000342 for (i = 0; i < sizeof(buf) - 1; i++) {
Damien Millerbf7f4662000-06-23 10:16:38 +1000343 if (atomicio(read, sock_in, &buf[i], 1) != 1) {
Ben Lindstroma9a29e12001-02-20 01:20:47 +0000344 log("Did not receive identification string from %s.",
345 get_remote_ipaddr());
Damien Millerb38eff82000-04-01 11:09:21 +1000346 fatal_cleanup();
347 }
348 if (buf[i] == '\r') {
Ben Lindstrom69d8c072001-03-22 22:45:33 +0000349 buf[i] = 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100350 /* Kludge for F-Secure Macintosh < 1.0.2 */
351 if (i == 12 &&
352 strncmp(buf, "SSH-1.5-W1.0", 12) == 0)
353 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000354 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000355 }
356 if (buf[i] == '\n') {
Ben Lindstrom69d8c072001-03-22 22:45:33 +0000357 buf[i] = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000358 break;
359 }
360 }
361 buf[sizeof(buf) - 1] = 0;
362 client_version_string = xstrdup(buf);
363 }
364
365 /*
366 * Check that the versions match. In future this might accept
367 * several versions and set appropriate flags to handle them.
368 */
369 if (sscanf(client_version_string, "SSH-%d.%d-%[^\n]\n",
370 &remote_major, &remote_minor, remote_version) != 3) {
Damien Miller4af51302000-04-16 11:18:38 +1000371 s = "Protocol mismatch.\n";
Damien Millerb38eff82000-04-01 11:09:21 +1000372 (void) atomicio(write, sock_out, s, strlen(s));
373 close(sock_in);
374 close(sock_out);
375 log("Bad protocol version identification '%.100s' from %s",
376 client_version_string, get_remote_ipaddr());
377 fatal_cleanup();
378 }
379 debug("Client protocol version %d.%d; client software version %.100s",
380 remote_major, remote_minor, remote_version);
381
Damien Millerefb4afe2000-04-12 18:45:05 +1000382 compat_datafellows(remote_version);
383
Damien Miller27dbe6f2001-03-19 22:36:20 +1100384 if (datafellows & SSH_BUG_SCANNER) {
385 log("scanned from %s with %s. Don't panic.",
386 get_remote_ipaddr(), client_version_string);
387 fatal_cleanup();
388 }
389
Damien Miller78928792000-04-12 20:17:38 +1000390 mismatch = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000391 switch(remote_major) {
392 case 1:
Damien Millereba71ba2000-04-29 23:57:08 +1000393 if (remote_minor == 99) {
394 if (options.protocol & SSH_PROTO_2)
395 enable_compat20();
396 else
397 mismatch = 1;
398 break;
399 }
Damien Miller78928792000-04-12 20:17:38 +1000400 if (!(options.protocol & SSH_PROTO_1)) {
401 mismatch = 1;
402 break;
403 }
Damien Millerb38eff82000-04-01 11:09:21 +1000404 if (remote_minor < 3) {
Damien Miller37023962000-07-11 17:31:38 +1000405 packet_disconnect("Your ssh version is too old and "
Damien Millerb38eff82000-04-01 11:09:21 +1000406 "is no longer supported. Please install a newer version.");
407 } else if (remote_minor == 3) {
408 /* note that this disables agent-forwarding */
409 enable_compat13();
410 }
Damien Miller78928792000-04-12 20:17:38 +1000411 break;
Damien Millerefb4afe2000-04-12 18:45:05 +1000412 case 2:
Damien Miller78928792000-04-12 20:17:38 +1000413 if (options.protocol & SSH_PROTO_2) {
Damien Millerefb4afe2000-04-12 18:45:05 +1000414 enable_compat20();
415 break;
416 }
417 /* FALLTHROUGH */
Damien Miller4af51302000-04-16 11:18:38 +1000418 default:
Damien Miller78928792000-04-12 20:17:38 +1000419 mismatch = 1;
Damien Millerb38eff82000-04-01 11:09:21 +1000420 break;
421 }
Damien Millerefb4afe2000-04-12 18:45:05 +1000422 chop(server_version_string);
Damien Miller78928792000-04-12 20:17:38 +1000423 debug("Local version string %.200s", server_version_string);
424
425 if (mismatch) {
426 s = "Protocol major versions differ.\n";
427 (void) atomicio(write, sock_out, s, strlen(s));
428 close(sock_in);
429 close(sock_out);
430 log("Protocol major versions differ for %s: %.200s vs. %.200s",
431 get_remote_ipaddr(),
432 server_version_string, client_version_string);
433 fatal_cleanup();
434 }
Damien Millereba71ba2000-04-29 23:57:08 +1000435 if (compat20)
436 packet_set_ssh2_format();
437}
438
439
Damien Miller0bc1bd82000-11-13 22:57:25 +1100440/* Destroy the host and server keys. They will no longer be needed. */
Damien Millereba71ba2000-04-29 23:57:08 +1000441void
442destroy_sensitive_data(void)
443{
Damien Miller0bc1bd82000-11-13 22:57:25 +1100444 int i;
445
446 if (sensitive_data.server_key) {
447 key_free(sensitive_data.server_key);
448 sensitive_data.server_key = NULL;
449 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000450 for(i = 0; i < options.num_host_key_files; i++) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100451 if (sensitive_data.host_keys[i]) {
452 key_free(sensitive_data.host_keys[i]);
453 sensitive_data.host_keys[i] = NULL;
454 }
455 }
456 sensitive_data.ssh1_host_key = NULL;
Ben Lindstromeb648a72001-03-05 06:00:29 +0000457 memset(sensitive_data.ssh1_cookie, 0, SSH_SESSION_KEY_LENGTH);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100458}
Damien Miller0bc1bd82000-11-13 22:57:25 +1100459
460char *
461list_hostkey_types(void)
462{
463 static char buf[1024];
464 int i;
465 buf[0] = '\0';
466 for(i = 0; i < options.num_host_key_files; i++) {
467 Key *key = sensitive_data.host_keys[i];
468 if (key == NULL)
469 continue;
470 switch(key->type) {
471 case KEY_RSA:
472 case KEY_DSA:
473 strlcat(buf, key_ssh_name(key), sizeof buf);
474 strlcat(buf, ",", sizeof buf);
475 break;
476 }
477 }
478 i = strlen(buf);
479 if (i > 0 && buf[i-1] == ',')
480 buf[i-1] = '\0';
481 debug("list_hostkey_types: %s", buf);
482 return buf;
483}
484
485Key *
486get_hostkey_by_type(int type)
487{
488 int i;
489 for(i = 0; i < options.num_host_key_files; i++) {
490 Key *key = sensitive_data.host_keys[i];
491 if (key != NULL && key->type == type)
492 return key;
493 }
494 return NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000495}
496
Damien Miller942da032000-08-18 13:59:06 +1000497/*
498 * returns 1 if connection should be dropped, 0 otherwise.
499 * dropping starts at connection #max_startups_begin with a probability
500 * of (max_startups_rate/100). the probability increases linearly until
501 * all connections are dropped for startups > max_startups
502 */
503int
504drop_connection(int startups)
505{
506 double p, r;
507
508 if (startups < options.max_startups_begin)
509 return 0;
510 if (startups >= options.max_startups)
511 return 1;
512 if (options.max_startups_rate == 100)
513 return 1;
514
515 p = 100 - options.max_startups_rate;
516 p *= startups - options.max_startups_begin;
517 p /= (double) (options.max_startups - options.max_startups_begin);
518 p += options.max_startups_rate;
519 p /= 100.0;
520 r = arc4random() / (double) UINT_MAX;
521
522 debug("drop_connection: p %g, r %g", p, r);
523 return (r < p) ? 1 : 0;
524}
525
Damien Miller37023962000-07-11 17:31:38 +1000526int *startup_pipes = NULL; /* options.max_startup sized array of fd ints */
527int startup_pipe; /* in child */
528
Damien Miller95def091999-11-25 00:26:21 +1100529/*
530 * Main program for the daemon.
531 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000532int
533main(int ac, char **av)
534{
Damien Miller95def091999-11-25 00:26:21 +1100535 extern char *optarg;
536 extern int optind;
Damien Miller37023962000-07-11 17:31:38 +1000537 int opt, sock_in = 0, sock_out = 0, newsock, j, i, fdsetsz, on = 1;
Damien Miller166fca82000-04-20 07:42:21 +1000538 pid_t pid;
Damien Miller34132e52000-01-14 15:45:46 +1100539 socklen_t fromlen;
Damien Miller34132e52000-01-14 15:45:46 +1100540 fd_set *fdset;
541 struct sockaddr_storage from;
Damien Miller95def091999-11-25 00:26:21 +1100542 const char *remote_ip;
543 int remote_port;
Damien Miller95def091999-11-25 00:26:21 +1100544 FILE *f;
545 struct linger linger;
Damien Miller34132e52000-01-14 15:45:46 +1100546 struct addrinfo *ai;
547 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
548 int listen_sock, maxfd;
Damien Miller37023962000-07-11 17:31:38 +1000549 int startup_p[2];
550 int startups = 0;
Ben Lindstromd0fca422001-03-26 13:44:06 +0000551 Key *key;
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000552 int ret, key_used = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000553
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000554 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000555 init_rng();
556
Kevin Stevesec84dc12000-12-13 17:45:15 +0000557 /* Save argv. */
Damien Millerb8c656e2000-06-28 15:22:41 +1000558 saved_argc = ac;
Damien Miller95def091999-11-25 00:26:21 +1100559 saved_argv = av;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000560
Damien Miller95def091999-11-25 00:26:21 +1100561 /* Initialize configuration options to their default values. */
562 initialize_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000563
Damien Miller95def091999-11-25 00:26:21 +1100564 /* Parse command-line arguments. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000565 while ((opt = getopt(ac, av, "f:p:b:k:h:g:V:u:dDiqQ46")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100566 switch (opt) {
Damien Miller34132e52000-01-14 15:45:46 +1100567 case '4':
568 IPv4or6 = AF_INET;
569 break;
570 case '6':
571 IPv4or6 = AF_INET6;
572 break;
Damien Miller95def091999-11-25 00:26:21 +1100573 case 'f':
574 config_file_name = optarg;
575 break;
576 case 'd':
Damien Millere4340be2000-09-16 13:29:08 +1100577 if (0 == debug_flag) {
578 debug_flag = 1;
579 options.log_level = SYSLOG_LEVEL_DEBUG1;
580 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
581 options.log_level++;
582 } else {
583 fprintf(stderr, "Too high debugging level.\n");
584 exit(1);
585 }
Damien Miller95def091999-11-25 00:26:21 +1100586 break;
Ben Lindstromc72745a2000-12-02 19:03:54 +0000587 case 'D':
588 no_daemon_flag = 1;
589 break;
Damien Miller95def091999-11-25 00:26:21 +1100590 case 'i':
591 inetd_flag = 1;
592 break;
593 case 'Q':
Ben Lindstromd5390202001-01-29 08:07:43 +0000594 /* ignored */
Damien Miller95def091999-11-25 00:26:21 +1100595 break;
596 case 'q':
597 options.log_level = SYSLOG_LEVEL_QUIET;
598 break;
599 case 'b':
600 options.server_key_bits = atoi(optarg);
601 break;
602 case 'p':
Damien Miller34132e52000-01-14 15:45:46 +1100603 options.ports_from_cmdline = 1;
Damien Millere4340be2000-09-16 13:29:08 +1100604 if (options.num_ports >= MAX_PORTS) {
605 fprintf(stderr, "too many ports.\n");
606 exit(1);
607 }
Damien Miller34132e52000-01-14 15:45:46 +1100608 options.ports[options.num_ports++] = atoi(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100609 break;
610 case 'g':
611 options.login_grace_time = atoi(optarg);
612 break;
613 case 'k':
614 options.key_regeneration_time = atoi(optarg);
615 break;
616 case 'h':
Damien Miller0bc1bd82000-11-13 22:57:25 +1100617 if (options.num_host_key_files >= MAX_HOSTKEYS) {
618 fprintf(stderr, "too many host keys.\n");
619 exit(1);
620 }
621 options.host_key_files[options.num_host_key_files++] = optarg;
Damien Miller95def091999-11-25 00:26:21 +1100622 break;
623 case 'V':
624 client_version_string = optarg;
625 /* only makes sense with inetd_flag, i.e. no listen() */
626 inetd_flag = 1;
627 break;
Damien Miller942da032000-08-18 13:59:06 +1000628 case 'u':
629 utmp_len = atoi(optarg);
630 break;
Damien Miller95def091999-11-25 00:26:21 +1100631 case '?':
632 default:
633 fprintf(stderr, "sshd version %s\n", SSH_VERSION);
Kevin Stevesec84dc12000-12-13 17:45:15 +0000634 fprintf(stderr, "Usage: %s [options]\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100635 fprintf(stderr, "Options:\n");
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000636 fprintf(stderr, " -f file Configuration file (default %s)\n", _PATH_SERVER_CONFIG_FILE);
Damien Millere4340be2000-09-16 13:29:08 +1100637 fprintf(stderr, " -d Debugging mode (multiple -d means more debugging)\n");
Damien Miller95def091999-11-25 00:26:21 +1100638 fprintf(stderr, " -i Started from inetd\n");
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000639 fprintf(stderr, " -D Do not fork into daemon mode\n");
Damien Miller95def091999-11-25 00:26:21 +1100640 fprintf(stderr, " -q Quiet (no logging)\n");
641 fprintf(stderr, " -p port Listen on the specified port (default: 22)\n");
642 fprintf(stderr, " -k seconds Regenerate server key every this many seconds (default: 3600)\n");
Ben Lindstromd26dcf32001-01-06 15:18:16 +0000643 fprintf(stderr, " -g seconds Grace period for authentication (default: 600)\n");
Damien Miller95def091999-11-25 00:26:21 +1100644 fprintf(stderr, " -b bits Size of server RSA key (default: 768 bits)\n");
645 fprintf(stderr, " -h file File from which to read host key (default: %s)\n",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000646 _PATH_HOST_KEY_FILE);
Damien Miller942da032000-08-18 13:59:06 +1000647 fprintf(stderr, " -u len Maximum hostname length for utmp recording\n");
Damien Miller34132e52000-01-14 15:45:46 +1100648 fprintf(stderr, " -4 Use IPv4 only\n");
649 fprintf(stderr, " -6 Use IPv6 only\n");
Damien Miller95def091999-11-25 00:26:21 +1100650 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000651 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000652 }
Ben Lindstrom425fb022001-03-29 00:31:20 +0000653 SSLeay_add_all_algorithms();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000654
Damien Miller34132e52000-01-14 15:45:46 +1100655 /*
656 * Force logging to stderr until we have loaded the private host
657 * key (unless started from inetd)
658 */
Kevin Stevesec84dc12000-12-13 17:45:15 +0000659 log_init(__progname,
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000660 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
Damien Miller34132e52000-01-14 15:45:46 +1100661 options.log_facility == -1 ? SYSLOG_FACILITY_AUTH : options.log_facility,
Ben Lindstromd5390202001-01-29 08:07:43 +0000662 !inetd_flag);
Damien Miller34132e52000-01-14 15:45:46 +1100663
Damien Miller60bc5172001-03-19 09:38:15 +1100664 seed_rng();
665
Damien Miller95def091999-11-25 00:26:21 +1100666 /* Read server configuration options from the configuration file. */
667 read_server_config(&options, config_file_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000668
Damien Miller95def091999-11-25 00:26:21 +1100669 /* Fill in default values for those options not explicitly set. */
670 fill_default_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000671
Damien Miller95def091999-11-25 00:26:21 +1100672 /* Check that there are no remaining arguments. */
673 if (optind < ac) {
674 fprintf(stderr, "Extra argument %s.\n", av[optind]);
675 exit(1);
676 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000677
Damien Miller95def091999-11-25 00:26:21 +1100678 debug("sshd version %.100s", SSH_VERSION);
Damien Miller2ccf6611999-11-15 15:25:10 +1100679
Damien Miller0bc1bd82000-11-13 22:57:25 +1100680 /* load private host keys */
681 sensitive_data.host_keys = xmalloc(options.num_host_key_files*sizeof(Key*));
Ben Lindstrom46c16222000-12-22 01:43:59 +0000682 for(i = 0; i < options.num_host_key_files; i++)
683 sensitive_data.host_keys[i] = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100684 sensitive_data.server_key = NULL;
685 sensitive_data.ssh1_host_key = NULL;
686 sensitive_data.have_ssh1_key = 0;
687 sensitive_data.have_ssh2_key = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000688
Damien Miller0bc1bd82000-11-13 22:57:25 +1100689 for(i = 0; i < options.num_host_key_files; i++) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000690 key = key_load_private(options.host_key_files[i], "", NULL);
691 sensitive_data.host_keys[i] = key;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100692 if (key == NULL) {
693 error("Could not load host key: %.200s: %.100s",
694 options.host_key_files[i], strerror(errno));
Ben Lindstromd0fca422001-03-26 13:44:06 +0000695 sensitive_data.host_keys[i] = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100696 continue;
697 }
698 switch(key->type){
699 case KEY_RSA1:
700 sensitive_data.ssh1_host_key = key;
701 sensitive_data.have_ssh1_key = 1;
702 break;
703 case KEY_RSA:
704 case KEY_DSA:
705 sensitive_data.have_ssh2_key = 1;
706 break;
707 }
Ben Lindstromd0fca422001-03-26 13:44:06 +0000708 debug("private host key: #%d type %d %s", i, key->type,
709 key_type(key));
Damien Miller0bc1bd82000-11-13 22:57:25 +1100710 }
711 if ((options.protocol & SSH_PROTO_1) && !sensitive_data.have_ssh1_key) {
712 log("Disabling protocol version 1. Could not load host key");
Damien Millereba71ba2000-04-29 23:57:08 +1000713 options.protocol &= ~SSH_PROTO_1;
714 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100715 if ((options.protocol & SSH_PROTO_2) && !sensitive_data.have_ssh2_key) {
716 log("Disabling protocol version 2. Could not load host key");
717 options.protocol &= ~SSH_PROTO_2;
Damien Millereba71ba2000-04-29 23:57:08 +1000718 }
Kevin Stevesadf74cd2001-02-05 14:22:50 +0000719 if (!(options.protocol & (SSH_PROTO_1|SSH_PROTO_2))) {
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000720 log("sshd: no hostkeys available -- exiting.");
Damien Miller95def091999-11-25 00:26:21 +1100721 exit(1);
722 }
Damien Miller95def091999-11-25 00:26:21 +1100723
Damien Millereba71ba2000-04-29 23:57:08 +1000724 /* Check certain values for sanity. */
725 if (options.protocol & SSH_PROTO_1) {
726 if (options.server_key_bits < 512 ||
727 options.server_key_bits > 32768) {
728 fprintf(stderr, "Bad server key size.\n");
729 exit(1);
730 }
731 /*
732 * Check that server and host key lengths differ sufficiently. This
733 * is necessary to make double encryption work with rsaref. Oh, I
734 * hate software patents. I dont know if this can go? Niels
735 */
736 if (options.server_key_bits >
Damien Miller0bc1bd82000-11-13 22:57:25 +1100737 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) - SSH_KEY_BITS_RESERVED &&
Damien Millereba71ba2000-04-29 23:57:08 +1000738 options.server_key_bits <
Damien Miller0bc1bd82000-11-13 22:57:25 +1100739 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
Damien Millereba71ba2000-04-29 23:57:08 +1000740 options.server_key_bits =
Damien Miller0bc1bd82000-11-13 22:57:25 +1100741 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED;
Damien Millereba71ba2000-04-29 23:57:08 +1000742 debug("Forcing server key to %d bits to make it differ from host key.",
743 options.server_key_bits);
744 }
745 }
746
Damien Miller78315eb2000-09-29 23:01:36 +1100747#ifdef HAVE_SCO_PROTECTED_PW
748 (void) set_auth_parameters(ac, av);
749#endif
750
Damien Millereba71ba2000-04-29 23:57:08 +1000751 /* Initialize the log (it is reinitialized below in case we forked). */
Damien Miller95def091999-11-25 00:26:21 +1100752 if (debug_flag && !inetd_flag)
753 log_stderr = 1;
Kevin Stevesec84dc12000-12-13 17:45:15 +0000754 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +1100755
Damien Millereba71ba2000-04-29 23:57:08 +1000756 /*
757 * If not in debugging mode, and not started from inetd, disconnect
758 * from the controlling terminal, and fork. The original process
759 * exits.
760 */
Ben Lindstromc72745a2000-12-02 19:03:54 +0000761 if (!(debug_flag || inetd_flag || no_daemon_flag)) {
Damien Miller95def091999-11-25 00:26:21 +1100762#ifdef TIOCNOTTY
763 int fd;
764#endif /* TIOCNOTTY */
765 if (daemon(0, 0) < 0)
766 fatal("daemon() failed: %.200s", strerror(errno));
767
768 /* Disconnect from the controlling tty. */
769#ifdef TIOCNOTTY
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000770 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
Damien Miller95def091999-11-25 00:26:21 +1100771 if (fd >= 0) {
772 (void) ioctl(fd, TIOCNOTTY, NULL);
773 close(fd);
774 }
775#endif /* TIOCNOTTY */
776 }
777 /* Reinitialize the log (because of the fork above). */
Kevin Stevesec84dc12000-12-13 17:45:15 +0000778 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +1100779
Damien Miller95def091999-11-25 00:26:21 +1100780 /* Initialize the random number generator. */
781 arc4random_stir();
782
783 /* Chdir to the root directory so that the current disk can be
784 unmounted if desired. */
785 chdir("/");
Ben Lindstromde71cda2001-03-24 00:43:26 +0000786
787 /* ignore SIGPIPE */
788 signal(SIGPIPE, SIG_IGN);
Damien Miller95def091999-11-25 00:26:21 +1100789
Damien Miller95def091999-11-25 00:26:21 +1100790 /* Start listening for a socket, unless started from inetd. */
791 if (inetd_flag) {
792 int s1, s2;
793 s1 = dup(0); /* Make sure descriptors 0, 1, and 2 are in use. */
794 s2 = dup(s1);
795 sock_in = dup(0);
796 sock_out = dup(1);
Damien Miller994cf142000-07-21 10:19:44 +1000797 startup_pipe = -1;
Damien Millereba71ba2000-04-29 23:57:08 +1000798 /*
799 * We intentionally do not close the descriptors 0, 1, and 2
800 * as our code for setting the descriptors won\'t work if
801 * ttyfd happens to be one of those.
802 */
Damien Miller95def091999-11-25 00:26:21 +1100803 debug("inetd sockets after dupping: %d, %d", sock_in, sock_out);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100804 if (options.protocol & SSH_PROTO_1)
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000805 generate_ephemeral_server_key();
Damien Miller95def091999-11-25 00:26:21 +1100806 } else {
Damien Miller34132e52000-01-14 15:45:46 +1100807 for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
808 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
809 continue;
810 if (num_listen_socks >= MAX_LISTEN_SOCKS)
811 fatal("Too many listen sockets. "
812 "Enlarge MAX_LISTEN_SOCKS");
813 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
814 ntop, sizeof(ntop), strport, sizeof(strport),
815 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
816 error("getnameinfo failed");
817 continue;
818 }
819 /* Create socket for listening. */
820 listen_sock = socket(ai->ai_family, SOCK_STREAM, 0);
821 if (listen_sock < 0) {
822 /* kernel may not support ipv6 */
823 verbose("socket: %.100s", strerror(errno));
824 continue;
825 }
826 if (fcntl(listen_sock, F_SETFL, O_NONBLOCK) < 0) {
827 error("listen_sock O_NONBLOCK: %s", strerror(errno));
828 close(listen_sock);
829 continue;
830 }
831 /*
832 * Set socket options. We try to make the port
833 * reusable and have it close as fast as possible
834 * without waiting in unnecessary wait states on
835 * close.
836 */
837 setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
838 (void *) &on, sizeof(on));
839 linger.l_onoff = 1;
840 linger.l_linger = 5;
841 setsockopt(listen_sock, SOL_SOCKET, SO_LINGER,
842 (void *) &linger, sizeof(linger));
Damien Miller95def091999-11-25 00:26:21 +1100843
Damien Miller34132e52000-01-14 15:45:46 +1100844 debug("Bind to port %s on %s.", strport, ntop);
Damien Miller95def091999-11-25 00:26:21 +1100845
Damien Miller34132e52000-01-14 15:45:46 +1100846 /* Bind the socket to the desired port. */
Damien Miller0a4e27d2001-02-18 12:36:39 +1100847 if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) {
848 if (!ai->ai_next)
849 error("Bind to port %s on %s failed: %.200s.",
850 strport, ntop, strerror(errno));
Damien Miller34132e52000-01-14 15:45:46 +1100851 close(listen_sock);
852 continue;
853 }
854 listen_socks[num_listen_socks] = listen_sock;
855 num_listen_socks++;
Damien Miller95def091999-11-25 00:26:21 +1100856
Damien Miller34132e52000-01-14 15:45:46 +1100857 /* Start listening on the port. */
858 log("Server listening on %s port %s.", ntop, strport);
859 if (listen(listen_sock, 5) < 0)
860 fatal("listen: %.100s", strerror(errno));
861
Damien Miller95def091999-11-25 00:26:21 +1100862 }
Damien Miller34132e52000-01-14 15:45:46 +1100863 freeaddrinfo(options.listen_addrs);
864
865 if (!num_listen_socks)
866 fatal("Cannot bind any address.");
867
Damien Miller95def091999-11-25 00:26:21 +1100868 if (!debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +1100869 /*
Ben Lindstrom7ad97102000-12-06 01:42:49 +0000870 * Record our pid in /var/run/sshd.pid to make it
871 * easier to kill the correct sshd. We don't want to
872 * do this before the bind above because the bind will
Damien Miller5428f641999-11-25 11:54:57 +1100873 * fail if there already is a daemon, and this will
874 * overwrite any old pid in the file.
875 */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100876 f = fopen(options.pid_file, "wb");
Damien Miller95def091999-11-25 00:26:21 +1100877 if (f) {
Ben Lindstrom46c16222000-12-22 01:43:59 +0000878 fprintf(f, "%u\n", (u_int) getpid());
Damien Miller95def091999-11-25 00:26:21 +1100879 fclose(f);
880 }
881 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000882 if (options.protocol & SSH_PROTO_1)
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000883 generate_ephemeral_server_key();
Damien Miller95def091999-11-25 00:26:21 +1100884
Damien Miller95def091999-11-25 00:26:21 +1100885 /* Arrange to restart on SIGHUP. The handler needs listen_sock. */
886 signal(SIGHUP, sighup_handler);
Damien Miller37023962000-07-11 17:31:38 +1000887
Damien Miller95def091999-11-25 00:26:21 +1100888 signal(SIGTERM, sigterm_handler);
889 signal(SIGQUIT, sigterm_handler);
890
891 /* Arrange SIGCHLD to be caught. */
892 signal(SIGCHLD, main_sigchld_handler);
893
Damien Miller34132e52000-01-14 15:45:46 +1100894 /* setup fd set for listen */
Damien Miller37023962000-07-11 17:31:38 +1000895 fdset = NULL;
Damien Miller34132e52000-01-14 15:45:46 +1100896 maxfd = 0;
897 for (i = 0; i < num_listen_socks; i++)
898 if (listen_socks[i] > maxfd)
899 maxfd = listen_socks[i];
Damien Miller37023962000-07-11 17:31:38 +1000900 /* pipes connected to unauthenticated childs */
901 startup_pipes = xmalloc(options.max_startups * sizeof(int));
902 for (i = 0; i < options.max_startups; i++)
903 startup_pipes[i] = -1;
Damien Miller34132e52000-01-14 15:45:46 +1100904
Damien Miller5428f641999-11-25 11:54:57 +1100905 /*
906 * Stay listening for connections until the system crashes or
907 * the daemon is killed with a signal.
908 */
Damien Miller95def091999-11-25 00:26:21 +1100909 for (;;) {
910 if (received_sighup)
911 sighup_restart();
Damien Miller37023962000-07-11 17:31:38 +1000912 if (fdset != NULL)
913 xfree(fdset);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000914 fdsetsz = howmany(maxfd+1, NFDBITS) * sizeof(fd_mask);
Damien Miller37023962000-07-11 17:31:38 +1000915 fdset = (fd_set *)xmalloc(fdsetsz);
Damien Miller34132e52000-01-14 15:45:46 +1100916 memset(fdset, 0, fdsetsz);
Damien Miller37023962000-07-11 17:31:38 +1000917
Damien Miller34132e52000-01-14 15:45:46 +1100918 for (i = 0; i < num_listen_socks; i++)
919 FD_SET(listen_socks[i], fdset);
Damien Miller37023962000-07-11 17:31:38 +1000920 for (i = 0; i < options.max_startups; i++)
921 if (startup_pipes[i] != -1)
922 FD_SET(startup_pipes[i], fdset);
923
924 /* Wait in select until there is a connection. */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000925 ret = select(maxfd+1, fdset, NULL, NULL, NULL);
926 if (ret < 0 && errno != EINTR)
927 error("select: %.100s", strerror(errno));
928 if (key_used && key_do_regen) {
Ben Lindstromca42d5f2001-03-09 18:25:32 +0000929 generate_ephemeral_server_key();
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000930 key_used = 0;
931 key_do_regen = 0;
Damien Miller34132e52000-01-14 15:45:46 +1100932 }
Ben Lindstromdb65e8f2001-01-19 04:26:52 +0000933 if (ret < 0)
934 continue;
935
Damien Miller37023962000-07-11 17:31:38 +1000936 for (i = 0; i < options.max_startups; i++)
937 if (startup_pipes[i] != -1 &&
938 FD_ISSET(startup_pipes[i], fdset)) {
939 /*
940 * the read end of the pipe is ready
941 * if the child has closed the pipe
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000942 * after successful authentication
Damien Miller37023962000-07-11 17:31:38 +1000943 * or if the child has died
944 */
945 close(startup_pipes[i]);
946 startup_pipes[i] = -1;
947 startups--;
948 }
Damien Miller34132e52000-01-14 15:45:46 +1100949 for (i = 0; i < num_listen_socks; i++) {
950 if (!FD_ISSET(listen_socks[i], fdset))
Damien Miller95def091999-11-25 00:26:21 +1100951 continue;
Damien Miller37023962000-07-11 17:31:38 +1000952 fromlen = sizeof(from);
953 newsock = accept(listen_socks[i], (struct sockaddr *)&from,
954 &fromlen);
955 if (newsock < 0) {
956 if (errno != EINTR && errno != EWOULDBLOCK)
957 error("accept: %.100s", strerror(errno));
958 continue;
959 }
960 if (fcntl(newsock, F_SETFL, 0) < 0) {
961 error("newsock del O_NONBLOCK: %s", strerror(errno));
962 continue;
963 }
Damien Miller942da032000-08-18 13:59:06 +1000964 if (drop_connection(startups) == 1) {
965 debug("drop connection #%d", startups);
Damien Miller37023962000-07-11 17:31:38 +1000966 close(newsock);
967 continue;
968 }
969 if (pipe(startup_p) == -1) {
970 close(newsock);
971 continue;
972 }
973
974 for (j = 0; j < options.max_startups; j++)
975 if (startup_pipes[j] == -1) {
976 startup_pipes[j] = startup_p[0];
977 if (maxfd < startup_p[0])
978 maxfd = startup_p[0];
979 startups++;
980 break;
981 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000982
Damien Miller5428f641999-11-25 11:54:57 +1100983 /*
Damien Miller37023962000-07-11 17:31:38 +1000984 * Got connection. Fork a child to handle it, unless
985 * we are in debugging mode.
Damien Miller5428f641999-11-25 11:54:57 +1100986 */
Damien Miller37023962000-07-11 17:31:38 +1000987 if (debug_flag) {
Damien Miller5428f641999-11-25 11:54:57 +1100988 /*
Damien Miller37023962000-07-11 17:31:38 +1000989 * In debugging mode. Close the listening
990 * socket, and start processing the
991 * connection without forking.
Damien Miller5428f641999-11-25 11:54:57 +1100992 */
Damien Miller37023962000-07-11 17:31:38 +1000993 debug("Server will not fork when running in debugging mode.");
Damien Miller34132e52000-01-14 15:45:46 +1100994 close_listen_socks();
Damien Miller95def091999-11-25 00:26:21 +1100995 sock_in = newsock;
996 sock_out = newsock;
Damien Miller4d97ba22000-07-11 18:15:50 +1000997 startup_pipe = -1;
Damien Miller182ee6e2000-07-12 09:45:27 +1000998 pid = getpid();
Damien Miller95def091999-11-25 00:26:21 +1100999 break;
Damien Miller37023962000-07-11 17:31:38 +10001000 } else {
1001 /*
1002 * Normal production daemon. Fork, and have
1003 * the child process the connection. The
1004 * parent continues listening.
1005 */
1006 if ((pid = fork()) == 0) {
1007 /*
1008 * Child. Close the listening and max_startup
1009 * sockets. Start using the accepted socket.
1010 * Reinitialize logging (since our pid has
1011 * changed). We break out of the loop to handle
1012 * the connection.
1013 */
1014 startup_pipe = startup_p[1];
1015 for (j = 0; j < options.max_startups; j++)
1016 if (startup_pipes[j] != -1)
1017 close(startup_pipes[j]);
1018 close_listen_socks();
1019 sock_in = newsock;
1020 sock_out = newsock;
Kevin Stevesec84dc12000-12-13 17:45:15 +00001021 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller37023962000-07-11 17:31:38 +10001022 break;
1023 }
Damien Miller95def091999-11-25 00:26:21 +11001024 }
Damien Miller37023962000-07-11 17:31:38 +10001025
1026 /* Parent. Stay in the loop. */
1027 if (pid < 0)
1028 error("fork: %.100s", strerror(errno));
1029 else
1030 debug("Forked child %d.", pid);
1031
1032 close(startup_p[1]);
1033
1034 /* Mark that the key has been used (it was "given" to the child). */
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00001035 if ((options.protocol & SSH_PROTO_1) &&
1036 key_used == 0) {
1037 /* Schedule server key regeneration alarm. */
1038 signal(SIGALRM, key_regeneration_alarm);
1039 alarm(options.key_regeneration_time);
1040 key_used = 1;
1041 }
Damien Miller37023962000-07-11 17:31:38 +10001042
1043 arc4random_stir();
1044
1045 /* Close the new socket (the child is now taking care of it). */
1046 close(newsock);
Damien Miller95def091999-11-25 00:26:21 +11001047 }
Damien Miller34132e52000-01-14 15:45:46 +11001048 /* child process check (or debug mode) */
1049 if (num_listen_socks < 0)
1050 break;
Damien Miller95def091999-11-25 00:26:21 +11001051 }
1052 }
1053
1054 /* This is the child processing a new connection. */
1055
Damien Miller5428f641999-11-25 11:54:57 +11001056 /*
1057 * Disable the key regeneration alarm. We will not regenerate the
1058 * key since we are no longer in a position to give it to anyone. We
1059 * will not restart on SIGHUP since it no longer makes sense.
1060 */
Damien Miller95def091999-11-25 00:26:21 +11001061 alarm(0);
1062 signal(SIGALRM, SIG_DFL);
1063 signal(SIGHUP, SIG_DFL);
1064 signal(SIGTERM, SIG_DFL);
1065 signal(SIGQUIT, SIG_DFL);
1066 signal(SIGCHLD, SIG_DFL);
Damien Miller4e0f5e12000-08-29 11:05:50 +11001067 signal(SIGINT, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001068
Damien Miller5428f641999-11-25 11:54:57 +11001069 /*
1070 * Set socket options for the connection. We want the socket to
1071 * close as fast as possible without waiting for anything. If the
1072 * connection is not a socket, these will do nothing.
1073 */
1074 /* setsockopt(sock_in, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on)); */
Damien Miller95def091999-11-25 00:26:21 +11001075 linger.l_onoff = 1;
1076 linger.l_linger = 5;
1077 setsockopt(sock_in, SOL_SOCKET, SO_LINGER, (void *) &linger, sizeof(linger));
1078
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001079 /* Set keepalives if requested. */
1080 if (options.keepalives &&
1081 setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, (void *)&on,
1082 sizeof(on)) < 0)
1083 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
1084
Damien Miller5428f641999-11-25 11:54:57 +11001085 /*
1086 * Register our connection. This turns encryption off because we do
1087 * not have a key.
1088 */
Damien Miller95def091999-11-25 00:26:21 +11001089 packet_set_connection(sock_in, sock_out);
1090
1091 remote_port = get_remote_port();
1092 remote_ip = get_remote_ipaddr();
1093
1094 /* Check whether logins are denied from this host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001095#ifdef LIBWRAP
Damien Miller34132e52000-01-14 15:45:46 +11001096 /* XXX LIBWRAP noes not know about IPv6 */
Damien Miller95def091999-11-25 00:26:21 +11001097 {
1098 struct request_info req;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001099
Kevin Stevesec84dc12000-12-13 17:45:15 +00001100 request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, NULL);
Damien Miller95def091999-11-25 00:26:21 +11001101 fromhost(&req);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001102
Damien Miller95def091999-11-25 00:26:21 +11001103 if (!hosts_access(&req)) {
Ben Lindstrom7de696e2001-03-29 00:45:12 +00001104 refuse(&req);
Damien Miller95def091999-11-25 00:26:21 +11001105 close(sock_in);
1106 close(sock_out);
Damien Miller95def091999-11-25 00:26:21 +11001107 }
Damien Miller34132e52000-01-14 15:45:46 +11001108/*XXX IPv6 verbose("Connection from %.500s port %d", eval_client(&req), remote_port); */
Damien Miller95def091999-11-25 00:26:21 +11001109 }
Damien Miller34132e52000-01-14 15:45:46 +11001110#endif /* LIBWRAP */
Damien Miller95def091999-11-25 00:26:21 +11001111 /* Log the connection. */
1112 verbose("Connection from %.500s port %d", remote_ip, remote_port);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001113
Damien Miller5428f641999-11-25 11:54:57 +11001114 /*
1115 * We don\'t want to listen forever unless the other side
1116 * successfully authenticates itself. So we set up an alarm which is
1117 * cleared after successful authentication. A limit of zero
1118 * indicates no limit. Note that we don\'t set the alarm in debugging
1119 * mode; it is just annoying to have the server exit just when you
1120 * are about to discover the bug.
1121 */
Damien Miller95def091999-11-25 00:26:21 +11001122 signal(SIGALRM, grace_alarm_handler);
1123 if (!debug_flag)
1124 alarm(options.login_grace_time);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001125
Damien Millerb38eff82000-04-01 11:09:21 +10001126 sshd_exchange_identification(sock_in, sock_out);
Damien Miller5428f641999-11-25 11:54:57 +11001127 /*
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001128 * Check that the connection comes from a privileged port.
1129 * Rhosts-Authentication only makes sense from priviledged
Damien Miller5428f641999-11-25 11:54:57 +11001130 * programs. Of course, if the intruder has root access on his local
1131 * machine, he can connect from any port. So do not use these
1132 * authentication methods from machines that you do not trust.
1133 */
Damien Miller95def091999-11-25 00:26:21 +11001134 if (remote_port >= IPPORT_RESERVED ||
1135 remote_port < IPPORT_RESERVED / 2) {
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001136 debug("Rhosts Authentication disabled, "
Damien Miller0bc1bd82000-11-13 22:57:25 +11001137 "originating port not trusted.");
Damien Miller95def091999-11-25 00:26:21 +11001138 options.rhosts_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +11001139 }
Damien Miller34132e52000-01-14 15:45:46 +11001140#ifdef KRB4
1141 if (!packet_connection_is_ipv4() &&
1142 options.kerberos_authentication) {
1143 debug("Kerberos Authentication disabled, only available for IPv4.");
1144 options.kerberos_authentication = 0;
1145 }
1146#endif /* KRB4 */
Ben Lindstromf79aeff2001-02-10 21:27:11 +00001147#ifdef AFS
1148 /* If machine has AFS, set process authentication group. */
1149 if (k_hasafs()) {
1150 k_setpag();
1151 k_unlog();
1152 }
1153#endif /* AFS */
Damien Miller34132e52000-01-14 15:45:46 +11001154
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 Miller7650bc62001-01-30 09:27:26 +11001192 int rsafail = 0;
Damien Miller95def091999-11-25 00:26:21 +11001193 BIGNUM *session_key_int;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001194 u_char session_key[SSH_SESSION_KEY_LENGTH];
1195 u_char cookie[8];
1196 u_int cipher_type, auth_mask, protocol_flags;
Damien Miller95def091999-11-25 00:26:21 +11001197 u_int32_t rand = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001198
Damien Miller5428f641999-11-25 11:54:57 +11001199 /*
1200 * Generate check bytes that the client must send back in the user
1201 * packet in order for it to be accepted; this is used to defy ip
1202 * spoofing attacks. Note that this only works against somebody
1203 * doing IP spoofing from a remote machine; any machine on the local
1204 * network can still see outgoing packets and catch the random
1205 * cookie. This only affects rhosts authentication, and this is one
1206 * of the reasons why it is inherently insecure.
1207 */
Damien Miller95def091999-11-25 00:26:21 +11001208 for (i = 0; i < 8; i++) {
1209 if (i % 4 == 0)
1210 rand = arc4random();
Damien Miller396691a2000-01-20 22:44:08 +11001211 cookie[i] = rand & 0xff;
Damien Miller95def091999-11-25 00:26:21 +11001212 rand >>= 8;
1213 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001214
Damien Miller5428f641999-11-25 11:54:57 +11001215 /*
1216 * Send our public key. We include in the packet 64 bits of random
1217 * data that must be matched in the reply in order to prevent IP
1218 * spoofing.
1219 */
Damien Miller95def091999-11-25 00:26:21 +11001220 packet_start(SSH_SMSG_PUBLIC_KEY);
1221 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001222 packet_put_char(cookie[i]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001223
Damien Miller95def091999-11-25 00:26:21 +11001224 /* Store our public server RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001225 packet_put_int(BN_num_bits(sensitive_data.server_key->rsa->n));
1226 packet_put_bignum(sensitive_data.server_key->rsa->e);
1227 packet_put_bignum(sensitive_data.server_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001228
Damien Miller95def091999-11-25 00:26:21 +11001229 /* Store our public host RSA key. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001230 packet_put_int(BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
1231 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->e);
1232 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001233
Damien Miller95def091999-11-25 00:26:21 +11001234 /* Put protocol flags. */
1235 packet_put_int(SSH_PROTOFLAG_HOST_IN_FWD_OPEN);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001236
Damien Miller95def091999-11-25 00:26:21 +11001237 /* Declare which ciphers we support. */
Damien Miller874d77b2000-10-14 16:23:11 +11001238 packet_put_int(cipher_mask_ssh1(0));
Damien Miller95def091999-11-25 00:26:21 +11001239
1240 /* Declare supported authentication types. */
1241 auth_mask = 0;
1242 if (options.rhosts_authentication)
1243 auth_mask |= 1 << SSH_AUTH_RHOSTS;
1244 if (options.rhosts_rsa_authentication)
1245 auth_mask |= 1 << SSH_AUTH_RHOSTS_RSA;
1246 if (options.rsa_authentication)
1247 auth_mask |= 1 << SSH_AUTH_RSA;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001248#ifdef KRB4
Damien Miller95def091999-11-25 00:26:21 +11001249 if (options.kerberos_authentication)
1250 auth_mask |= 1 << SSH_AUTH_KERBEROS;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001251#endif
1252#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +11001253 if (options.kerberos_tgt_passing)
1254 auth_mask |= 1 << SSH_PASS_KERBEROS_TGT;
1255 if (options.afs_token_passing)
1256 auth_mask |= 1 << SSH_PASS_AFS_TOKEN;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001257#endif
Ben Lindstrom95fb2dd2001-01-23 03:12:10 +00001258 if (options.challenge_reponse_authentication == 1)
Damien Miller95def091999-11-25 00:26:21 +11001259 auth_mask |= 1 << SSH_AUTH_TIS;
Damien Miller95def091999-11-25 00:26:21 +11001260 if (options.password_authentication)
1261 auth_mask |= 1 << SSH_AUTH_PASSWORD;
1262 packet_put_int(auth_mask);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001263
Damien Miller95def091999-11-25 00:26:21 +11001264 /* Send the packet and wait for it to be sent. */
1265 packet_send();
1266 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001267
Damien Miller0bc1bd82000-11-13 22:57:25 +11001268 debug("Sent %d bit server key and %d bit host key.",
1269 BN_num_bits(sensitive_data.server_key->rsa->n),
1270 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001271
Damien Miller95def091999-11-25 00:26:21 +11001272 /* Read clients reply (cipher type and session key). */
1273 packet_read_expect(&plen, SSH_CMSG_SESSION_KEY);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001274
Damien Miller50945fa1999-12-09 10:31:37 +11001275 /* Get cipher type and check whether we accept this. */
Damien Miller95def091999-11-25 00:26:21 +11001276 cipher_type = packet_get_char();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001277
Damien Miller874d77b2000-10-14 16:23:11 +11001278 if (!(cipher_mask_ssh1(0) & (1 << cipher_type)))
Damien Miller50945fa1999-12-09 10:31:37 +11001279 packet_disconnect("Warning: client selects unsupported cipher.");
1280
Damien Miller95def091999-11-25 00:26:21 +11001281 /* Get check bytes from the packet. These must match those we
1282 sent earlier with the public key packet. */
1283 for (i = 0; i < 8; i++)
Damien Miller396691a2000-01-20 22:44:08 +11001284 if (cookie[i] != packet_get_char())
Damien Miller95def091999-11-25 00:26:21 +11001285 packet_disconnect("IP Spoofing check bytes do not match.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001286
Damien Miller95def091999-11-25 00:26:21 +11001287 debug("Encryption type: %.200s", cipher_name(cipher_type));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001288
Damien Miller95def091999-11-25 00:26:21 +11001289 /* Get the encrypted integer. */
1290 session_key_int = BN_new();
1291 packet_get_bignum(session_key_int, &slen);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001292
Damien Miller95def091999-11-25 00:26:21 +11001293 protocol_flags = packet_get_int();
1294 packet_set_protocol_flags(protocol_flags);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001295
Damien Miller95def091999-11-25 00:26:21 +11001296 packet_integrity_check(plen, 1 + 8 + slen + 4, SSH_CMSG_SESSION_KEY);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001297
Damien Miller5428f641999-11-25 11:54:57 +11001298 /*
1299 * Decrypt it using our private server key and private host key (key
1300 * with larger modulus first).
1301 */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001302 if (BN_cmp(sensitive_data.server_key->rsa->n, sensitive_data.ssh1_host_key->rsa->n) > 0) {
Damien Miller7650bc62001-01-30 09:27:26 +11001303 /* Server key has bigger modulus. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001304 if (BN_num_bits(sensitive_data.server_key->rsa->n) <
1305 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1306 fatal("do_connection: %s: server_key %d < host_key %d + SSH_KEY_BITS_RESERVED %d",
1307 get_remote_ipaddr(),
1308 BN_num_bits(sensitive_data.server_key->rsa->n),
1309 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1310 SSH_KEY_BITS_RESERVED);
Damien Miller95def091999-11-25 00:26:21 +11001311 }
Damien Miller7650bc62001-01-30 09:27:26 +11001312 if (rsa_private_decrypt(session_key_int, session_key_int,
1313 sensitive_data.server_key->rsa) <= 0)
1314 rsafail++;
1315 if (rsa_private_decrypt(session_key_int, session_key_int,
1316 sensitive_data.ssh1_host_key->rsa) <= 0)
1317 rsafail++;
Damien Miller95def091999-11-25 00:26:21 +11001318 } else {
1319 /* Host key has bigger modulus (or they are equal). */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001320 if (BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) <
1321 BN_num_bits(sensitive_data.server_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1322 fatal("do_connection: %s: host_key %d < server_key %d + SSH_KEY_BITS_RESERVED %d",
1323 get_remote_ipaddr(),
1324 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1325 BN_num_bits(sensitive_data.server_key->rsa->n),
1326 SSH_KEY_BITS_RESERVED);
Damien Miller95def091999-11-25 00:26:21 +11001327 }
Damien Miller7650bc62001-01-30 09:27:26 +11001328 if (rsa_private_decrypt(session_key_int, session_key_int,
1329 sensitive_data.ssh1_host_key->rsa) < 0)
1330 rsafail++;
1331 if (rsa_private_decrypt(session_key_int, session_key_int,
1332 sensitive_data.server_key->rsa) < 0)
1333 rsafail++;
Damien Miller95def091999-11-25 00:26:21 +11001334 }
Damien Miller5428f641999-11-25 11:54:57 +11001335 /*
1336 * Extract session key from the decrypted integer. The key is in the
1337 * least significant 256 bits of the integer; the first byte of the
1338 * key is in the highest bits.
1339 */
Damien Miller7650bc62001-01-30 09:27:26 +11001340 if (!rsafail) {
1341 BN_mask_bits(session_key_int, sizeof(session_key) * 8);
1342 len = BN_num_bytes(session_key_int);
1343 if (len < 0 || len > sizeof(session_key)) {
1344 error("do_connection: bad session key len from %s: "
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001345 "session_key_int %d > sizeof(session_key) %lu",
1346 get_remote_ipaddr(), len, (u_long)sizeof(session_key));
Damien Miller7650bc62001-01-30 09:27:26 +11001347 rsafail++;
1348 } else {
1349 memset(session_key, 0, sizeof(session_key));
1350 BN_bn2bin(session_key_int,
1351 session_key + sizeof(session_key) - len);
Ben Lindstromeb648a72001-03-05 06:00:29 +00001352
1353 compute_session_id(session_id, cookie,
1354 sensitive_data.ssh1_host_key->rsa->n,
1355 sensitive_data.server_key->rsa->n);
1356 /*
1357 * Xor the first 16 bytes of the session key with the
1358 * session id.
1359 */
1360 for (i = 0; i < 16; i++)
1361 session_key[i] ^= session_id[i];
Damien Miller7650bc62001-01-30 09:27:26 +11001362 }
1363 }
1364 if (rsafail) {
Ben Lindstromeb648a72001-03-05 06:00:29 +00001365 int bytes = BN_num_bytes(session_key_int);
1366 char *buf = xmalloc(bytes);
1367 MD5_CTX md;
1368
Damien Miller7650bc62001-01-30 09:27:26 +11001369 log("do_connection: generating a fake encryption key");
Ben Lindstromeb648a72001-03-05 06:00:29 +00001370 BN_bn2bin(session_key_int, buf);
1371 MD5_Init(&md);
1372 MD5_Update(&md, buf, bytes);
1373 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1374 MD5_Final(session_key, &md);
1375 MD5_Init(&md);
1376 MD5_Update(&md, session_key, 16);
1377 MD5_Update(&md, buf, bytes);
1378 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1379 MD5_Final(session_key + 16, &md);
1380 memset(buf, 0, bytes);
1381 xfree(buf);
Ben Lindstrom941ac822001-03-05 06:25:23 +00001382 for (i = 0; i < 16; i++)
1383 session_id[i] = session_key[i] ^ session_key[i + 16];
Damien Miller7650bc62001-01-30 09:27:26 +11001384 }
Ben Lindstromeb648a72001-03-05 06:00:29 +00001385 /* Destroy the private and public keys. They will no longer be needed. */
1386 destroy_sensitive_data();
1387
Damien Miller396691a2000-01-20 22:44:08 +11001388 /* Destroy the decrypted integer. It is no longer needed. */
1389 BN_clear_free(session_key_int);
1390
Damien Miller95def091999-11-25 00:26:21 +11001391 /* Set the session key. From this on all communications will be encrypted. */
1392 packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, cipher_type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001393
Damien Miller95def091999-11-25 00:26:21 +11001394 /* Destroy our copy of the session key. It is no longer needed. */
1395 memset(session_key, 0, sizeof(session_key));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001396
Damien Miller95def091999-11-25 00:26:21 +11001397 debug("Received session key; encryption turned on.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001398
Damien Miller95def091999-11-25 00:26:21 +11001399 /* Send an acknowledgement packet. Note that this packet is sent encrypted. */
1400 packet_start(SSH_SMSG_SUCCESS);
1401 packet_send();
1402 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001403}
Damien Millerefb4afe2000-04-12 18:45:05 +10001404
1405/*
1406 * SSH2 key exchange: diffie-hellman-group1-sha1
1407 */
1408void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001409do_ssh2_kex(void)
Damien Millerefb4afe2000-04-12 18:45:05 +10001410{
Damien Millerefb4afe2000-04-12 18:45:05 +10001411 Kex *kex;
Damien Millerefb4afe2000-04-12 18:45:05 +10001412
Damien Miller78928792000-04-12 20:17:38 +10001413 if (options.ciphers != NULL) {
Damien Miller4af51302000-04-16 11:18:38 +10001414 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
Damien Miller78928792000-04-12 20:17:38 +10001415 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
1416 }
Damien Millera0ff4662001-03-30 10:49:35 +10001417 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
1418 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
1419 myproposal[PROPOSAL_ENC_ALGS_STOC] =
1420 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
1421
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001422 if (options.macs != NULL) {
1423 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
1424 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
1425 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001426 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = list_hostkey_types();
1427
Ben Lindstrom238abf62001-04-04 17:52:53 +00001428 kex = kex_setup(myproposal);
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +00001429 kex->server = 1;
1430 kex->client_version_string=client_version_string;
1431 kex->server_version_string=server_version_string;
1432 kex->load_host_key=&get_hostkey_by_type;
Damien Millerefb4afe2000-04-12 18:45:05 +10001433
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +00001434 /* start key exchange */
1435 dispatch_run(DISPATCH_BLOCK, &kex->newkeys, kex);
Damien Miller874d77b2000-10-14 16:23:11 +11001436
Ben Lindstrom2d90e002001-04-04 02:00:54 +00001437 session_id2 = kex->session_id;
1438 session_id2_len = kex->session_id_len;
1439
Damien Miller874d77b2000-10-14 16:23:11 +11001440#ifdef DEBUG_KEXDH
1441 /* send 1st encrypted/maced/compressed message */
1442 packet_start(SSH2_MSG_IGNORE);
1443 packet_put_cstring("markus");
1444 packet_send();
1445 packet_write_wait();
1446#endif
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +00001447 debug("KEX done");
Damien Millerefb4afe2000-04-12 18:45:05 +10001448}