]> andersk Git - openssh.git/blame - sshd.c
- dtucker@cvs.openbsd.org 2004/06/25 05:38:48
[openssh.git] / sshd.c
CommitLineData
8efc0c15 1/*
5260325f 2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
bcbf86ec 5 * This program is the ssh daemon. It listens for connections from clients,
6 * and performs authentication, executes use commands or shell, and forwards
5260325f 7 * information to/from the application to the user client over an encrypted
bcbf86ec 8 * connection. This can also handle forwarding of X11, TCP/IP, and
9 * authentication agent connections.
e78a59f5 10 *
bcbf86ec 11 * 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:
1853d1ef 18 * Privilege Separation:
bcbf86ec 19 *
1853d1ef 20 * Copyright (c) 2000, 2001, 2002 Markus Friedl. All rights reserved.
21 * Copyright (c) 2002 Niels Provos. All rights reserved.
bcbf86ec 22 *
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
25 * are met:
26 * 1. Redistributions of source code must retain the above copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 *
32 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
33 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
34 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
35 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
36 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
37 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
38 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
39 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
40 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
41 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5260325f 42 */
8efc0c15 43
44#include "includes.h"
33e5359c 45RCSID("$OpenBSD: sshd.c,v 1.295 2004/06/25 01:16:09 djm Exp $");
8efc0c15 46
42f11eb2 47#include <openssl/dh.h>
48#include <openssl/bn.h>
436c347c 49#include <openssl/md5.h>
1853d1ef 50#include <openssl/rand.h>
6e879cb4 51#ifdef HAVE_SECUREWARE
52#include <sys/security.h>
53#include <prot.h>
54#endif
42f11eb2 55
56#include "ssh.h"
57#include "ssh1.h"
58#include "ssh2.h"
8efc0c15 59#include "xmalloc.h"
60#include "rsa.h"
1729c161 61#include "sshpty.h"
8efc0c15 62#include "packet.h"
42f11eb2 63#include "log.h"
8efc0c15 64#include "servconf.h"
65#include "uidswap.h"
66#include "compat.h"
7368a6c8 67#include "buffer.h"
b9a549d7 68#include "bufaux.h"
42f11eb2 69#include "cipher.h"
e78a59f5 70#include "kex.h"
7368a6c8 71#include "key.h"
94ec8c6b 72#include "dh.h"
e78a59f5 73#include "myproposal.h"
a306f2dd 74#include "authfile.h"
42f11eb2 75#include "pathnames.h"
76#include "atomicio.h"
77#include "canohost.h"
78#include "auth.h"
79#include "misc.h"
b9a549d7 80#include "msg.h"
a5c9ffdb 81#include "dispatch.h"
e4d7f734 82#include "channels.h"
1b34c1b3 83#include "session.h"
1853d1ef 84#include "monitor_mm.h"
85#include "monitor.h"
86#include "monitor_wrap.h"
87#include "monitor_fdpass.h"
8efc0c15 88
89#ifdef LIBWRAP
90#include <tcpd.h>
91#include <syslog.h>
92int allow_severity = LOG_INFO;
93int deny_severity = LOG_WARNING;
94#endif /* LIBWRAP */
95
96#ifndef O_NOCTTY
97#define O_NOCTTY 0
98#endif
99
260d427b 100#ifdef HAVE___PROGNAME
101extern char *__progname;
102#else
103char *__progname;
104#endif
105
8efc0c15 106/* Server configuration options. */
107ServerOptions options;
108
109/* Name of the server configuration file. */
42f11eb2 110char *config_file_name = _PATH_SERVER_CONFIG_FILE;
8efc0c15 111
6ae2364d 112/*
48e671d5 113 * Flag indicating whether IPv4 or IPv6. This can be set on the command line.
114 * Default value is AF_UNSPEC means both IPv4 and IPv6.
115 */
116int IPv4or6 = AF_UNSPEC;
117
5260325f 118/*
119 * Debug mode flag. This can be set on the command line. If debug
120 * mode is enabled, extra debugging output will be sent to the system
121 * log, the daemon will not go to background, and will exit after processing
122 * the first connection.
123 */
8efc0c15 124int debug_flag = 0;
125
f87f09aa 126/* Flag indicating that the daemon should only test the configuration and keys. */
127int test_flag = 0;
128
8efc0c15 129/* Flag indicating that the daemon is being started from inetd. */
130int inetd_flag = 0;
131
0b6fbf03 132/* Flag indicating that sshd should not detach and become a daemon. */
133int no_daemon_flag = 0;
134
6a17f9c2 135/* debug goes to stderr unless inetd_flag is set */
136int log_stderr = 0;
137
8efc0c15 138/* Saved arguments to main(). */
139char **saved_argv;
4d33e531 140int saved_argc;
8efc0c15 141
b9a549d7 142/* re-exec */
143int rexeced_flag = 0;
144int rexec_flag = 1;
145int rexec_argc = 0;
146char **rexec_argv;
147
aa3378df 148/*
48e671d5 149 * The sockets that the server is listening; this is used in the SIGHUP
150 * signal handler.
aa3378df 151 */
48e671d5 152#define MAX_LISTEN_SOCKS 16
153int listen_socks[MAX_LISTEN_SOCKS];
154int num_listen_socks = 0;
8efc0c15 155
aa3378df 156/*
157 * the client's version string, passed by sshd2 in compat mode. if != NULL,
158 * sshd will skip the version-number exchange
159 */
5260325f 160char *client_version_string = NULL;
7368a6c8 161char *server_version_string = NULL;
8efc0c15 162
7a37c112 163/* for rekeying XXX fixme */
164Kex *xxx_kex;
165
aa3378df 166/*
167 * Any really sensitive data in the application is contained in this
168 * structure. The idea is that this structure could be locked into memory so
169 * that the pages do not get written into swap. However, there are some
170 * problems. The private key contains BIGNUMs, and we do not (in principle)
171 * have access to the internals of them, and locking just the structure is
172 * not very useful. Currently, memory locking is not implemented.
173 */
5260325f 174struct {
cb7bd922 175 Key *server_key; /* ephemeral server key */
fa08c86b 176 Key *ssh1_host_key; /* ssh1 host key */
177 Key **host_keys; /* all private host keys */
178 int have_ssh1_key;
179 int have_ssh2_key;
00be5382 180 u_char ssh1_cookie[SSH_SESSION_KEY_LENGTH];
8efc0c15 181} sensitive_data;
182
aa3378df 183/*
59c97189 184 * Flag indicating whether the RSA server key needs to be regenerated.
185 * Is set in the SIGALRM handler and cleared when the key is regenerated.
aa3378df 186 */
7a934d1b 187static volatile sig_atomic_t key_do_regen = 0;
8efc0c15 188
c9130033 189/* This is set to true when a signal is received. */
7a934d1b 190static volatile sig_atomic_t received_sighup = 0;
191static volatile sig_atomic_t received_sigterm = 0;
8efc0c15 192
7368a6c8 193/* session identifier, used by RSA-auth */
1e3b8b07 194u_char session_id[16];
e7c0f9d5 195
a306f2dd 196/* same for ssh2 */
1e3b8b07 197u_char *session_id2 = NULL;
a27002e5 198u_int session_id2_len = 0;
a306f2dd 199
c345cf9d 200/* record remote hostname or ip */
1e3b8b07 201u_int utmp_len = MAXHOSTNAMELEN;
c345cf9d 202
7ace8c3b 203/* options.max_startup sized array of fd ints */
204int *startup_pipes = NULL;
205int startup_pipe; /* in child */
206
1853d1ef 207/* variables used for privilege separation */
98a58eda 208int use_privsep;
a9b33b95 209struct monitor *pmonitor = NULL;
1853d1ef 210
bc7dfc06 211/* message to be displayed after login */
212Buffer loginmsg;
213
2362db19 214/* global authentication context */
215Authctxt *the_authctxt = NULL;
216
7368a6c8 217/* Prototypes for various functions defined later in this file. */
396c147e 218void destroy_sensitive_data(void);
1853d1ef 219void demote_sensitive_data(void);
c8d54615 220
396c147e 221static void do_ssh1_kex(void);
222static void do_ssh2_kex(void);
94ec8c6b 223
48e671d5 224/*
225 * Close all listening sockets
226 */
396c147e 227static void
48e671d5 228close_listen_socks(void)
229{
230 int i;
e424e241 231
48e671d5 232 for (i = 0; i < num_listen_socks; i++)
233 close(listen_socks[i]);
234 num_listen_socks = -1;
235}
236
7ace8c3b 237static void
238close_startup_pipes(void)
239{
240 int i;
e424e241 241
7ace8c3b 242 if (startup_pipes)
243 for (i = 0; i < options.max_startups; i++)
244 if (startup_pipes[i] != -1)
245 close(startup_pipes[i]);
246}
247
5260325f 248/*
249 * Signal handler for SIGHUP. Sshd execs itself when it receives SIGHUP;
250 * the effect is to reread the configuration file (and to regenerate
251 * the server key).
252 */
396c147e 253static void
5260325f 254sighup_handler(int sig)
8efc0c15 255{
6056eb35 256 int save_errno = errno;
257
5260325f 258 received_sighup = 1;
259 signal(SIGHUP, sighup_handler);
6056eb35 260 errno = save_errno;
8efc0c15 261}
262
5260325f 263/*
264 * Called from the main program after receiving SIGHUP.
265 * Restarts the server.
266 */
396c147e 267static void
5ca51e19 268sighup_restart(void)
8efc0c15 269{
bbe88b6d 270 logit("Received SIGHUP; restarting.");
48e671d5 271 close_listen_socks();
7ace8c3b 272 close_startup_pipes();
5260325f 273 execv(saved_argv[0], saved_argv);
bbe88b6d 274 logit("RESTART FAILED: av[0]='%.100s', error: %.100s.", saved_argv[0],
e424e241 275 strerror(errno));
5260325f 276 exit(1);
8efc0c15 277}
278
5260325f 279/*
280 * Generic signal handler for terminating signals in the master daemon.
5260325f 281 */
396c147e 282static void
5260325f 283sigterm_handler(int sig)
8efc0c15 284{
c9130033 285 received_sigterm = sig;
8efc0c15 286}
287
5260325f 288/*
289 * SIGCHLD handler. This is called whenever a child dies. This will then
c9130033 290 * reap any zombies left by exited children.
5260325f 291 */
396c147e 292static void
5260325f 293main_sigchld_handler(int sig)
8efc0c15 294{
5260325f 295 int save_errno = errno;
e424e241 296 pid_t pid;
5260325f 297 int status;
5ad13cd7 298
8c38e88b 299 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
300 (pid < 0 && errno == EINTR))
5260325f 301 ;
5ad13cd7 302
5260325f 303 signal(SIGCHLD, main_sigchld_handler);
304 errno = save_errno;
8efc0c15 305}
306
5260325f 307/*
308 * Signal handler for the alarm after the login grace period has expired.
309 */
396c147e 310static void
5260325f 311grace_alarm_handler(int sig)
8efc0c15 312{
c9130033 313 /* XXX no idea how fix this signal handler */
314
a9b33b95 315 if (use_privsep && pmonitor != NULL && pmonitor->m_pid > 0)
316 kill(pmonitor->m_pid, SIGALRM);
317
5260325f 318 /* Log error and exit. */
26b9a3d2 319 fatal("Timeout before authentication for %s", get_remote_ipaddr());
5260325f 320}
8efc0c15 321
5260325f 322/*
323 * Signal handler for the key regeneration alarm. Note that this
324 * alarm only occurs in the daemon waiting for connections, and it does not
325 * do anything with the private key or random state before forking.
326 * Thus there should be no concurrency control/asynchronous execution
327 * problems.
328 */
396c147e 329static void
cb7bd922 330generate_ephemeral_server_key(void)
fa08c86b 331{
7fdc56c5 332 u_int32_t rnd = 0;
00be5382 333 int i;
334
cd332296 335 verbose("Generating %s%d bit RSA key.",
76ca7b01 336 sensitive_data.server_key ? "new " : "", options.server_key_bits);
fa08c86b 337 if (sensitive_data.server_key != NULL)
338 key_free(sensitive_data.server_key);
cd332296 339 sensitive_data.server_key = key_generate(KEY_RSA1,
76ca7b01 340 options.server_key_bits);
341 verbose("RSA key generation complete.");
00be5382 342
343 for (i = 0; i < SSH_SESSION_KEY_LENGTH; i++) {
344 if (i % 4 == 0)
7fdc56c5 345 rnd = arc4random();
346 sensitive_data.ssh1_cookie[i] = rnd & 0xff;
347 rnd >>= 8;
00be5382 348 }
349 arc4random_stir();
fa08c86b 350}
f546c780 351
396c147e 352static void
5260325f 353key_regeneration_alarm(int sig)
354{
355 int save_errno = errno;
e424e241 356
59c97189 357 signal(SIGALRM, SIG_DFL);
5260325f 358 errno = save_errno;
59c97189 359 key_do_regen = 1;
5260325f 360}
8efc0c15 361
396c147e 362static void
7368a6c8 363sshd_exchange_identification(int sock_in, int sock_out)
364{
a8be9f80 365 int i, mismatch;
7368a6c8 366 int remote_major, remote_minor;
a8be9f80 367 int major, minor;
7368a6c8 368 char *s;
369 char buf[256]; /* Must not be larger than remote_version. */
370 char remote_version[256]; /* Must be at least as big as buf. */
371
a8be9f80 372 if ((options.protocol & SSH_PROTO_1) &&
373 (options.protocol & SSH_PROTO_2)) {
374 major = PROTOCOL_MAJOR_1;
375 minor = 99;
376 } else if (options.protocol & SSH_PROTO_2) {
377 major = PROTOCOL_MAJOR_2;
378 minor = PROTOCOL_MINOR_2;
379 } else {
380 major = PROTOCOL_MAJOR_1;
381 minor = PROTOCOL_MINOR_1;
382 }
383 snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n", major, minor, SSH_VERSION);
7368a6c8 384 server_version_string = xstrdup(buf);
385
7b390973 386 /* Send our protocol version identification. */
387 if (atomicio(vwrite, sock_out, server_version_string,
388 strlen(server_version_string))
389 != strlen(server_version_string)) {
390 logit("Could not write ident string to %s", get_remote_ipaddr());
2362db19 391 cleanup_exit(255);
7b390973 392 }
393
394 /* Read other sides version identification. */
395 memset(buf, 0, sizeof(buf));
396 for (i = 0; i < sizeof(buf) - 1; i++) {
397 if (atomicio(read, sock_in, &buf[i], 1) != 1) {
398 logit("Did not receive identification string from %s",
399 get_remote_ipaddr());
2362db19 400 cleanup_exit(255);
7368a6c8 401 }
7b390973 402 if (buf[i] == '\r') {
403 buf[i] = 0;
404 /* Kludge for F-Secure Macintosh < 1.0.2 */
405 if (i == 12 &&
406 strncmp(buf, "SSH-1.5-W1.0", 12) == 0)
7368a6c8 407 break;
7b390973 408 continue;
409 }
410 if (buf[i] == '\n') {
411 buf[i] = 0;
412 break;
7368a6c8 413 }
7368a6c8 414 }
7b390973 415 buf[sizeof(buf) - 1] = 0;
416 client_version_string = xstrdup(buf);
7368a6c8 417
418 /*
419 * Check that the versions match. In future this might accept
420 * several versions and set appropriate flags to handle them.
421 */
422 if (sscanf(client_version_string, "SSH-%d.%d-%[^\n]\n",
423 &remote_major, &remote_minor, remote_version) != 3) {
6ae2364d 424 s = "Protocol mismatch.\n";
dc54438a 425 (void) atomicio(vwrite, sock_out, s, strlen(s));
7368a6c8 426 close(sock_in);
427 close(sock_out);
bbe88b6d 428 logit("Bad protocol version identification '%.100s' from %s",
7368a6c8 429 client_version_string, get_remote_ipaddr());
2362db19 430 cleanup_exit(255);
7368a6c8 431 }
432 debug("Client protocol version %d.%d; client software version %.100s",
184eed6a 433 remote_major, remote_minor, remote_version);
7368a6c8 434
e78a59f5 435 compat_datafellows(remote_version);
436
9a87e2ac 437 if (datafellows & SSH_BUG_PROBE) {
bbe88b6d 438 logit("probed from %s with %s. Don't panic.",
9a87e2ac 439 get_remote_ipaddr(), client_version_string);
2362db19 440 cleanup_exit(255);
9a87e2ac 441 }
442
3a1c54d4 443 if (datafellows & SSH_BUG_SCANNER) {
bbe88b6d 444 logit("scanned from %s with %s. Don't panic.",
3a1c54d4 445 get_remote_ipaddr(), client_version_string);
2362db19 446 cleanup_exit(255);
3a1c54d4 447 }
448
a8be9f80 449 mismatch = 0;
6aacefa7 450 switch (remote_major) {
7368a6c8 451 case 1:
a306f2dd 452 if (remote_minor == 99) {
453 if (options.protocol & SSH_PROTO_2)
454 enable_compat20();
455 else
456 mismatch = 1;
457 break;
458 }
a8be9f80 459 if (!(options.protocol & SSH_PROTO_1)) {
460 mismatch = 1;
461 break;
462 }
7368a6c8 463 if (remote_minor < 3) {
089fbbd2 464 packet_disconnect("Your ssh version is too old and "
7368a6c8 465 "is no longer supported. Please install a newer version.");
466 } else if (remote_minor == 3) {
467 /* note that this disables agent-forwarding */
468 enable_compat13();
469 }
a8be9f80 470 break;
e78a59f5 471 case 2:
a8be9f80 472 if (options.protocol & SSH_PROTO_2) {
e78a59f5 473 enable_compat20();
474 break;
475 }
476 /* FALLTHROUGH */
6ae2364d 477 default:
a8be9f80 478 mismatch = 1;
479 break;
480 }
481 chop(server_version_string);
a8be9f80 482 debug("Local version string %.200s", server_version_string);
483
484 if (mismatch) {
7368a6c8 485 s = "Protocol major versions differ.\n";
dc54438a 486 (void) atomicio(vwrite, sock_out, s, strlen(s));
7368a6c8 487 close(sock_in);
488 close(sock_out);
bbe88b6d 489 logit("Protocol major versions differ for %s: %.200s vs. %.200s",
a8be9f80 490 get_remote_ipaddr(),
491 server_version_string, client_version_string);
2362db19 492 cleanup_exit(255);
7368a6c8 493 }
a306f2dd 494}
495
fa08c86b 496/* Destroy the host and server keys. They will no longer be needed. */
a306f2dd 497void
498destroy_sensitive_data(void)
499{
fa08c86b 500 int i;
501
502 if (sensitive_data.server_key) {
503 key_free(sensitive_data.server_key);
504 sensitive_data.server_key = NULL;
505 }
184eed6a 506 for (i = 0; i < options.num_host_key_files; i++) {
fa08c86b 507 if (sensitive_data.host_keys[i]) {
508 key_free(sensitive_data.host_keys[i]);
509 sensitive_data.host_keys[i] = NULL;
510 }
511 }
512 sensitive_data.ssh1_host_key = NULL;
00be5382 513 memset(sensitive_data.ssh1_cookie, 0, SSH_SESSION_KEY_LENGTH);
fa08c86b 514}
fa08c86b 515
1853d1ef 516/* Demote private to public keys for network child */
517void
518demote_sensitive_data(void)
519{
520 Key *tmp;
521 int i;
522
523 if (sensitive_data.server_key) {
524 tmp = key_demote(sensitive_data.server_key);
525 key_free(sensitive_data.server_key);
526 sensitive_data.server_key = tmp;
527 }
528
529 for (i = 0; i < options.num_host_key_files; i++) {
530 if (sensitive_data.host_keys[i]) {
531 tmp = key_demote(sensitive_data.host_keys[i]);
532 key_free(sensitive_data.host_keys[i]);
533 sensitive_data.host_keys[i] = tmp;
534 if (tmp->type == KEY_RSA1)
535 sensitive_data.ssh1_host_key = tmp;
536 }
537 }
538
539 /* We do not clear ssh1_host key and cookie. XXX - Okay Niels? */
540}
541
51aeb639 542static void
1853d1ef 543privsep_preauth_child(void)
544{
7fdc56c5 545 u_int32_t rnd[256];
6ded293b 546 gid_t gidset[1];
2ea6de2b 547 struct passwd *pw;
e424e241 548 int i;
1853d1ef 549
550 /* Enable challenge-response authentication for privilege separation */
551 privsep_challenge_enable();
552
553 for (i = 0; i < 256; i++)
7fdc56c5 554 rnd[i] = arc4random();
555 RAND_seed(rnd, sizeof(rnd));
1853d1ef 556
557 /* Demote the private keys to public keys. */
558 demote_sensitive_data();
559
2ea6de2b 560 if ((pw = getpwnam(SSH_PRIVSEP_USER)) == NULL)
cdc4fc39 561 fatal("Privilege separation user %s does not exist",
562 SSH_PRIVSEP_USER);
2ea6de2b 563 memset(pw->pw_passwd, 0, strlen(pw->pw_passwd));
564 endpwent();
565
343288b8 566 /* Change our root directory */
1c352e97 567 if (chroot(_PATH_PRIVSEP_CHROOT_DIR) == -1)
568 fatal("chroot(\"%s\"): %s", _PATH_PRIVSEP_CHROOT_DIR,
569 strerror(errno));
1853d1ef 570 if (chdir("/") == -1)
edfb66cb 571 fatal("chdir(\"/\"): %s", strerror(errno));
762715ce 572
1853d1ef 573 /* Drop our privileges */
2ea6de2b 574 debug3("privsep user:group %u:%u", (u_int)pw->pw_uid,
575 (u_int)pw->pw_gid);
87809a1f 576#if 0
6ff58a4b 577 /* XXX not ready, too heavy after chroot */
2ea6de2b 578 do_setusercontext(pw);
87809a1f 579#else
580 gidset[0] = pw->pw_gid;
87809a1f 581 if (setgroups(1, gidset) < 0)
582 fatal("setgroups: %.100s", strerror(errno));
583 permanently_set_uid(pw);
584#endif
1853d1ef 585}
586
2362db19 587static int
588privsep_preauth(Authctxt *authctxt)
1853d1ef 589{
1853d1ef 590 int status;
324bf712 591 pid_t pid;
1853d1ef 592
324bf712 593 /* Set up unprivileged child process to deal with network data */
b5a28cbc 594 pmonitor = monitor_init();
324bf712 595 /* Store a pointer to the kex for later rekeying */
b5a28cbc 596 pmonitor->m_pkex = &xxx_kex;
324bf712 597
598 pid = fork();
599 if (pid == -1) {
600 fatal("fork of unprivileged child failed");
601 } else if (pid != 0) {
c457707e 602 debug2("Network child is on pid %ld", (long)pid);
324bf712 603
b5a28cbc 604 close(pmonitor->m_recvfd);
a9b33b95 605 pmonitor->m_pid = pid;
2362db19 606 monitor_child_preauth(authctxt, pmonitor);
b5a28cbc 607 close(pmonitor->m_sendfd);
324bf712 608
609 /* Sync memory */
b5a28cbc 610 monitor_sync(pmonitor);
324bf712 611
612 /* Wait for the child's exit status */
8c38e88b 613 while (waitpid(pid, &status, 0) < 0)
614 if (errno != EINTR)
615 break;
2362db19 616 return (1);
324bf712 617 } else {
618 /* child */
619
b5a28cbc 620 close(pmonitor->m_sendfd);
324bf712 621
622 /* Demote the child */
623 if (getuid() == 0 || geteuid() == 0)
624 privsep_preauth_child();
47c36e5b 625 setproctitle("%s", "[net]");
324bf712 626 }
2362db19 627 return (0);
324bf712 628}
629
630static void
631privsep_postauth(Authctxt *authctxt)
632{
94d8258b 633#ifdef DISABLE_FD_PASSING
d170feb1 634 if (1) {
635#else
1853d1ef 636 if (authctxt->pw->pw_uid == 0 || options.use_login) {
d170feb1 637#endif
1853d1ef 638 /* File descriptor passing is broken or root login */
b5a28cbc 639 monitor_apply_keystate(pmonitor);
1853d1ef 640 use_privsep = 0;
641 return;
642 }
762715ce 643
1853d1ef 644 /* Authentication complete */
645 alarm(0);
646 if (startup_pipe != -1) {
647 close(startup_pipe);
648 startup_pipe = -1;
649 }
650
651 /* New socket pair */
b5a28cbc 652 monitor_reinit(pmonitor);
1853d1ef 653
b5a28cbc 654 pmonitor->m_pid = fork();
655 if (pmonitor->m_pid == -1)
1853d1ef 656 fatal("fork of unprivileged child failed");
b5a28cbc 657 else if (pmonitor->m_pid != 0) {
c457707e 658 debug2("User child is on pid %ld", (long)pmonitor->m_pid);
b5a28cbc 659 close(pmonitor->m_recvfd);
660 monitor_child_postauth(pmonitor);
1853d1ef 661
662 /* NEVERREACHED */
663 exit(0);
664 }
665
b5a28cbc 666 close(pmonitor->m_sendfd);
1853d1ef 667
668 /* Demote the private keys to public keys. */
669 demote_sensitive_data();
670
671 /* Drop privileges */
672 do_setusercontext(authctxt->pw);
673
674 /* It is safe now to apply the key state */
b5a28cbc 675 monitor_apply_keystate(pmonitor);
1853d1ef 676}
677
396c147e 678static char *
fa08c86b 679list_hostkey_types(void)
680{
3469eac4 681 Buffer b;
b6c7b7b7 682 const char *p;
683 char *ret;
fa08c86b 684 int i;
3469eac4 685
686 buffer_init(&b);
184eed6a 687 for (i = 0; i < options.num_host_key_files; i++) {
fa08c86b 688 Key *key = sensitive_data.host_keys[i];
689 if (key == NULL)
690 continue;
6aacefa7 691 switch (key->type) {
fa08c86b 692 case KEY_RSA:
693 case KEY_DSA:
3469eac4 694 if (buffer_len(&b) > 0)
695 buffer_append(&b, ",", 1);
696 p = key_ssh_name(key);
697 buffer_append(&b, p, strlen(p));
fa08c86b 698 break;
699 }
700 }
3469eac4 701 buffer_append(&b, "\0", 1);
b6c7b7b7 702 ret = xstrdup(buffer_ptr(&b));
3469eac4 703 buffer_free(&b);
b6c7b7b7 704 debug("list_hostkey_types: %s", ret);
705 return ret;
fa08c86b 706}
707
1853d1ef 708Key *
fa08c86b 709get_hostkey_by_type(int type)
710{
711 int i;
e424e241 712
184eed6a 713 for (i = 0; i < options.num_host_key_files; i++) {
fa08c86b 714 Key *key = sensitive_data.host_keys[i];
715 if (key != NULL && key->type == type)
716 return key;
717 }
718 return NULL;
7368a6c8 719}
720
1853d1ef 721Key *
722get_hostkey_by_index(int ind)
723{
724 if (ind < 0 || ind >= options.num_host_key_files)
725 return (NULL);
726 return (sensitive_data.host_keys[ind]);
727}
728
729int
730get_hostkey_index(Key *key)
731{
732 int i;
e424e241 733
1853d1ef 734 for (i = 0; i < options.num_host_key_files; i++) {
735 if (key == sensitive_data.host_keys[i])
736 return (i);
737 }
738 return (-1);
739}
740
c345cf9d 741/*
742 * returns 1 if connection should be dropped, 0 otherwise.
743 * dropping starts at connection #max_startups_begin with a probability
744 * of (max_startups_rate/100). the probability increases linearly until
745 * all connections are dropped for startups > max_startups
746 */
396c147e 747static int
c345cf9d 748drop_connection(int startups)
749{
750 double p, r;
751
752 if (startups < options.max_startups_begin)
753 return 0;
754 if (startups >= options.max_startups)
755 return 1;
756 if (options.max_startups_rate == 100)
757 return 1;
758
759 p = 100 - options.max_startups_rate;
760 p *= startups - options.max_startups_begin;
761 p /= (double) (options.max_startups - options.max_startups_begin);
762 p += options.max_startups_rate;
763 p /= 100.0;
764 r = arc4random() / (double) UINT_MAX;
765
766 debug("drop_connection: p %g, r %g", p, r);
767 return (r < p) ? 1 : 0;
768}
769
2717fa0f 770static void
771usage(void)
772{
85ac7a84 773 fprintf(stderr, "%s, %s\n",
418ae4b4 774 SSH_VERSION, SSLeay_version(SSLEAY_VERSION));
65edde94 775 fprintf(stderr,
776"usage: sshd [-46Ddeiqt] [-b bits] [-f config_file] [-g login_grace_time]\n"
777" [-h host_key_file] [-k key_gen_time] [-o option] [-p port] [-u len]\n"
778 );
2717fa0f 779 exit(1);
780}
781
b9a549d7 782static void
783send_rexec_state(int fd, Buffer *conf)
784{
785 Buffer m;
786
787 debug3("%s: entering fd = %d config len %d", __func__, fd,
788 buffer_len(conf));
789
790 /*
791 * Protocol from reexec master to child:
792 * string configuration
793 * u_int ephemeral_key_follows
794 * bignum e (only if ephemeral_key_follows == 1)
795 * bignum n "
796 * bignum d "
797 * bignum iqmp "
798 * bignum p "
799 * bignum q "
800 */
801 buffer_init(&m);
802 buffer_put_cstring(&m, buffer_ptr(conf));
803
804 if (sensitive_data.server_key != NULL &&
805 sensitive_data.server_key->type == KEY_RSA1) {
806 buffer_put_int(&m, 1);
807 buffer_put_bignum(&m, sensitive_data.server_key->rsa->e);
808 buffer_put_bignum(&m, sensitive_data.server_key->rsa->n);
809 buffer_put_bignum(&m, sensitive_data.server_key->rsa->d);
810 buffer_put_bignum(&m, sensitive_data.server_key->rsa->iqmp);
811 buffer_put_bignum(&m, sensitive_data.server_key->rsa->p);
812 buffer_put_bignum(&m, sensitive_data.server_key->rsa->q);
813 } else
814 buffer_put_int(&m, 0);
815
816 if (ssh_msg_send(fd, 0, &m) == -1)
817 fatal("%s: ssh_msg_send failed", __func__);
818
819 buffer_free(&m);
820
821 debug3("%s: done", __func__);
822}
823
824static void
825recv_rexec_state(int fd, Buffer *conf)
826{
827 Buffer m;
828 char *cp;
829 u_int len;
830
831 debug3("%s: entering fd = %d", __func__, fd);
832
833 buffer_init(&m);
834
835 if (ssh_msg_recv(fd, &m) == -1)
836 fatal("%s: ssh_msg_recv failed", __func__);
837 if (buffer_get_char(&m) != 0)
838 fatal("%s: rexec version mismatch", __func__);
839
840 cp = buffer_get_string(&m, &len);
841 if (conf != NULL)
842 buffer_append(conf, cp, len + 1);
843 xfree(cp);
844
845 if (buffer_get_int(&m)) {
846 if (sensitive_data.server_key != NULL)
847 key_free(sensitive_data.server_key);
848 sensitive_data.server_key = key_new_private(KEY_RSA1);
849 buffer_get_bignum(&m, sensitive_data.server_key->rsa->e);
850 buffer_get_bignum(&m, sensitive_data.server_key->rsa->n);
851 buffer_get_bignum(&m, sensitive_data.server_key->rsa->d);
852 buffer_get_bignum(&m, sensitive_data.server_key->rsa->iqmp);
853 buffer_get_bignum(&m, sensitive_data.server_key->rsa->p);
854 buffer_get_bignum(&m, sensitive_data.server_key->rsa->q);
855 rsa_generate_additional_parameters(
856 sensitive_data.server_key->rsa);
857 }
858 buffer_free(&m);
859
860 debug3("%s: done", __func__);
861}
862
5260325f 863/*
864 * Main program for the daemon.
865 */
8efc0c15 866int
867main(int ac, char **av)
868{
5260325f 869 extern char *optarg;
870 extern int optind;
089fbbd2 871 int opt, sock_in = 0, sock_out = 0, newsock, j, i, fdsetsz, on = 1;
9da5c3c9 872 pid_t pid;
48e671d5 873 socklen_t fromlen;
48e671d5 874 fd_set *fdset;
875 struct sockaddr_storage from;
5260325f 876 const char *remote_ip;
877 int remote_port;
5260325f 878 FILE *f;
48e671d5 879 struct addrinfo *ai;
880 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
c5894280 881 char *line;
48e671d5 882 int listen_sock, maxfd;
b9a549d7 883 int startup_p[2], config_s[2];
089fbbd2 884 int startups = 0;
aeaa3d9e 885 Key *key;
2362db19 886 Authctxt *authctxt;
59c97189 887 int ret, key_used = 0;
b9a549d7 888 Buffer cfg;
5260325f 889
6e879cb4 890#ifdef HAVE_SECUREWARE
891 (void)set_auth_parameters(ac, av);
892#endif
fda04d7d 893 __progname = ssh_get_progname(av[0]);
264dce47 894 init_rng();
895
d0104542 896 /* Save argv. Duplicate so setproctitle emulation doesn't clobber it */
4d33e531 897 saved_argc = ac;
7706b4c7 898 rexec_argc = ac;
f420d2ba 899 saved_argv = xmalloc(sizeof(*saved_argv) * (ac + 1));
d0104542 900 for (i = 0; i < ac; i++)
901 saved_argv[i] = xstrdup(av[i]);
f420d2ba 902 saved_argv[i] = NULL;
d0104542 903
904#ifndef HAVE_SETPROCTITLE
905 /* Prepare for later setproctitle emulation */
906 compat_init_setproctitle(ac, av);
416c732d 907 av = saved_argv;
d0104542 908#endif
5260325f 909
a4c0faa2 910 if (geteuid() == 0 && setgroups(0, NULL) == -1)
911 debug("setgroups(): %.200s", strerror(errno));
912
5260325f 913 /* Initialize configuration options to their default values. */
914 initialize_server_options(&options);
915
916 /* Parse command-line arguments. */
b9a549d7 917 while ((opt = getopt(ac, av, "f:p:b:k:h:g:u:o:dDeiqrtQR46")) != -1) {
5260325f 918 switch (opt) {
48e671d5 919 case '4':
920 IPv4or6 = AF_INET;
921 break;
922 case '6':
923 IPv4or6 = AF_INET6;
924 break;
5260325f 925 case 'f':
926 config_file_name = optarg;
927 break;
928 case 'd':
e053cd2c 929 if (debug_flag == 0) {
bcbf86ec 930 debug_flag = 1;
931 options.log_level = SYSLOG_LEVEL_DEBUG1;
e053cd2c 932 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3)
bcbf86ec 933 options.log_level++;
5260325f 934 break;
0b6fbf03 935 case 'D':
936 no_daemon_flag = 1;
937 break;
ff14faf1 938 case 'e':
939 log_stderr = 1;
940 break;
5260325f 941 case 'i':
942 inetd_flag = 1;
943 break;
b9a549d7 944 case 'r':
945 rexec_flag = 0;
946 break;
947 case 'R':
948 rexeced_flag = 1;
949 inetd_flag = 1;
950 break;
5260325f 951 case 'Q':
9bd5b720 952 /* ignored */
5260325f 953 break;
954 case 'q':
955 options.log_level = SYSLOG_LEVEL_QUIET;
956 break;
957 case 'b':
958 options.server_key_bits = atoi(optarg);
959 break;
960 case 'p':
48e671d5 961 options.ports_from_cmdline = 1;
bcbf86ec 962 if (options.num_ports >= MAX_PORTS) {
963 fprintf(stderr, "too many ports.\n");
964 exit(1);
965 }
2d2a2c65 966 options.ports[options.num_ports++] = a2port(optarg);
967 if (options.ports[options.num_ports-1] == 0) {
968 fprintf(stderr, "Bad port number.\n");
969 exit(1);
970 }
5260325f 971 break;
972 case 'g':
e2b1fb42 973 if ((options.login_grace_time = convtime(optarg)) == -1) {
974 fprintf(stderr, "Invalid login grace time.\n");
975 exit(1);
976 }
5260325f 977 break;
978 case 'k':
e2b1fb42 979 if ((options.key_regeneration_time = convtime(optarg)) == -1) {
980 fprintf(stderr, "Invalid key regeneration interval.\n");
981 exit(1);
982 }
5260325f 983 break;
984 case 'h':
fa08c86b 985 if (options.num_host_key_files >= MAX_HOSTKEYS) {
986 fprintf(stderr, "too many host keys.\n");
987 exit(1);
988 }
989 options.host_key_files[options.num_host_key_files++] = optarg;
5260325f 990 break;
f87f09aa 991 case 't':
992 test_flag = 1;
993 break;
c345cf9d 994 case 'u':
995 utmp_len = atoi(optarg);
67f04db1 996 if (utmp_len > MAXHOSTNAMELEN) {
997 fprintf(stderr, "Invalid utmp length.\n");
998 exit(1);
999 }
c345cf9d 1000 break;
2717fa0f 1001 case 'o':
c5894280 1002 line = xstrdup(optarg);
1003 if (process_server_config_line(&options, line,
2717fa0f 1004 "command-line", 0) != 0)
184eed6a 1005 exit(1);
c5894280 1006 xfree(line);
2717fa0f 1007 break;
5260325f 1008 case '?':
1009 default:
2717fa0f 1010 usage();
1011 break;
5260325f 1012 }
1013 }
b9a549d7 1014 if (rexeced_flag || inetd_flag)
1015 rexec_flag = 0;
1016 if (rexec_flag && (av[0] == NULL || *av[0] != '/'))
1017 fatal("sshd re-exec requires execution with an absolute path");
1018 if (rexeced_flag)
1019 closefrom(STDERR_FILENO + 3);
1020
1a92bd7e 1021 SSLeay_add_all_algorithms();
5e4a7219 1022 channel_set_af(IPv4or6);
5260325f 1023
48e671d5 1024 /*
1025 * Force logging to stderr until we have loaded the private host
1026 * key (unless started from inetd)
1027 */
1fe6a48f 1028 log_init(__progname,
980c9344 1029 options.log_level == SYSLOG_LEVEL_NOT_SET ?
1030 SYSLOG_LEVEL_INFO : options.log_level,
1031 options.log_facility == SYSLOG_FACILITY_NOT_SET ?
1032 SYSLOG_FACILITY_AUTH : options.log_facility,
51efad8c 1033 log_stderr || !inetd_flag);
48e671d5 1034
351f44a0 1035#ifdef _AIX
1036 /*
1037 * Unset KRB5CCNAME, otherwise the user's session may inherit it from
1038 * root's environment
1039 */
1040 unsetenv("KRB5CCNAME");
1041#endif /* _AIX */
ef51930f 1042#ifdef _UNICOS
e5ba4718 1043 /* Cray can define user privs drop all privs now!
1a23ac2c 1044 * Not needed on PRIV_SU systems!
1045 */
1046 drop_cray_privs();
1047#endif
1048
e339aa53 1049 seed_rng();
1050
b9a549d7 1051 sensitive_data.server_key = NULL;
1052 sensitive_data.ssh1_host_key = NULL;
1053 sensitive_data.have_ssh1_key = 0;
1054 sensitive_data.have_ssh2_key = 0;
1055
1056 /* Fetch our configuration */
1057 buffer_init(&cfg);
1058 if (rexeced_flag)
1059 recv_rexec_state(STDERR_FILENO + 2, &cfg);
1060 else
1061 load_server_config(config_file_name, &cfg);
1062
1063 parse_server_config(&options,
1064 rexeced_flag ? "rexec" : config_file_name, &cfg);
1065
1066 if (!rexec_flag)
1067 buffer_free(&cfg);
5260325f 1068
1069 /* Fill in default values for those options not explicitly set. */
1070 fill_default_server_options(&options);
1071
5260325f 1072 /* Check that there are no remaining arguments. */
1073 if (optind < ac) {
1074 fprintf(stderr, "Extra argument %s.\n", av[optind]);
1075 exit(1);
8efc0c15 1076 }
5260325f 1077
1078 debug("sshd version %.100s", SSH_VERSION);
1079
fa08c86b 1080 /* load private host keys */
343288b8 1081 sensitive_data.host_keys = xmalloc(options.num_host_key_files *
1082 sizeof(Key *));
184eed6a 1083 for (i = 0; i < options.num_host_key_files; i++)
1e3b8b07 1084 sensitive_data.host_keys[i] = NULL;
a306f2dd 1085
184eed6a 1086 for (i = 0; i < options.num_host_key_files; i++) {
aeaa3d9e 1087 key = key_load_private(options.host_key_files[i], "", NULL);
1088 sensitive_data.host_keys[i] = key;
fa08c86b 1089 if (key == NULL) {
58cfa257 1090 error("Could not load host key: %s",
1091 options.host_key_files[i]);
aeaa3d9e 1092 sensitive_data.host_keys[i] = NULL;
fa08c86b 1093 continue;
a306f2dd 1094 }
6aacefa7 1095 switch (key->type) {
fa08c86b 1096 case KEY_RSA1:
1097 sensitive_data.ssh1_host_key = key;
1098 sensitive_data.have_ssh1_key = 1;
1099 break;
1100 case KEY_RSA:
1101 case KEY_DSA:
1102 sensitive_data.have_ssh2_key = 1;
1103 break;
a306f2dd 1104 }
aeaa3d9e 1105 debug("private host key: #%d type %d %s", i, key->type,
1106 key_type(key));
fa08c86b 1107 }
1108 if ((options.protocol & SSH_PROTO_1) && !sensitive_data.have_ssh1_key) {
bbe88b6d 1109 logit("Disabling protocol version 1. Could not load host key");
fa08c86b 1110 options.protocol &= ~SSH_PROTO_1;
1111 }
1112 if ((options.protocol & SSH_PROTO_2) && !sensitive_data.have_ssh2_key) {
bbe88b6d 1113 logit("Disabling protocol version 2. Could not load host key");
fa08c86b 1114 options.protocol &= ~SSH_PROTO_2;
a306f2dd 1115 }
6a416424 1116 if (!(options.protocol & (SSH_PROTO_1|SSH_PROTO_2))) {
bbe88b6d 1117 logit("sshd: no hostkeys available -- exiting.");
5260325f 1118 exit(1);
1119 }
5260325f 1120
a306f2dd 1121 /* Check certain values for sanity. */
1122 if (options.protocol & SSH_PROTO_1) {
1123 if (options.server_key_bits < 512 ||
1124 options.server_key_bits > 32768) {
1125 fprintf(stderr, "Bad server key size.\n");
1126 exit(1);
1127 }
1128 /*
1129 * Check that server and host key lengths differ sufficiently. This
1130 * is necessary to make double encryption work with rsaref. Oh, I
1131 * hate software patents. I dont know if this can go? Niels
1132 */
1133 if (options.server_key_bits >
e424e241 1134 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) -
1135 SSH_KEY_BITS_RESERVED && options.server_key_bits <
1136 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) +
1137 SSH_KEY_BITS_RESERVED) {
a306f2dd 1138 options.server_key_bits =
e424e241 1139 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) +
1140 SSH_KEY_BITS_RESERVED;
a306f2dd 1141 debug("Forcing server key to %d bits to make it differ from host key.",
1142 options.server_key_bits);
1143 }
1144 }
1145
3cc54fbb 1146 if (use_privsep) {
1147 struct passwd *pw;
1148 struct stat st;
1149
1150 if ((pw = getpwnam(SSH_PRIVSEP_USER)) == NULL)
1151 fatal("Privilege separation user %s does not exist",
1152 SSH_PRIVSEP_USER);
1153 if ((stat(_PATH_PRIVSEP_CHROOT_DIR, &st) == -1) ||
1154 (S_ISDIR(st.st_mode) == 0))
1155 fatal("Missing privilege separation directory: %s",
1156 _PATH_PRIVSEP_CHROOT_DIR);
b9b82dab 1157
1158#ifdef HAVE_CYGWIN
1159 if (check_ntsec(_PATH_PRIVSEP_CHROOT_DIR) &&
1160 (st.st_uid != getuid () ||
1161 (st.st_mode & (S_IWGRP|S_IWOTH)) != 0))
1162#else
a56313d7 1163 if (st.st_uid != 0 || (st.st_mode & (S_IWGRP|S_IWOTH)) != 0)
b9b82dab 1164#endif
5f021474 1165 fatal("%s must be owned by root and not group or "
1166 "world-writable.", _PATH_PRIVSEP_CHROOT_DIR);
3cc54fbb 1167 }
1168
f87f09aa 1169 /* Configuration looks good, so exit if in test mode. */
1170 if (test_flag)
1171 exit(0);
1172
018a5ea3 1173 /*
1174 * Clear out any supplemental groups we may have inherited. This
1175 * prevents inadvertent creation of files with bad modes (in the
aff51935 1176 * portable version at least, it's certainly possible for PAM
1177 * to create a file, and we can't control the code in every
018a5ea3 1178 * module which might be used).
1179 */
1180 if (setgroups(0, NULL) < 0)
1181 debug("setgroups() failed: %.200s", strerror(errno));
1182
b9a549d7 1183 if (rexec_flag) {
1184 rexec_argv = xmalloc(sizeof(char *) * (rexec_argc + 2));
1185 for (i = 0; i < rexec_argc; i++) {
1186 debug("rexec_argv[%d]='%s'", i, saved_argv[i]);
1187 rexec_argv[i] = saved_argv[i];
1188 }
1189 rexec_argv[rexec_argc] = "-R";
1190 rexec_argv[rexec_argc + 1] = NULL;
1191 }
1192
a306f2dd 1193 /* Initialize the log (it is reinitialized below in case we forked). */
5260325f 1194 if (debug_flag && !inetd_flag)
1195 log_stderr = 1;
1fe6a48f 1196 log_init(__progname, options.log_level, options.log_facility, log_stderr);
5260325f 1197
a306f2dd 1198 /*
1199 * If not in debugging mode, and not started from inetd, disconnect
1200 * from the controlling terminal, and fork. The original process
1201 * exits.
1202 */
0b6fbf03 1203 if (!(debug_flag || inetd_flag || no_daemon_flag)) {
8efc0c15 1204#ifdef TIOCNOTTY
5260325f 1205 int fd;
8efc0c15 1206#endif /* TIOCNOTTY */
5260325f 1207 if (daemon(0, 0) < 0)
1208 fatal("daemon() failed: %.200s", strerror(errno));
1209
1210 /* Disconnect from the controlling tty. */
8efc0c15 1211#ifdef TIOCNOTTY
5ca51e19 1212 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
5260325f 1213 if (fd >= 0) {
1214 (void) ioctl(fd, TIOCNOTTY, NULL);
1215 close(fd);
1216 }
8efc0c15 1217#endif /* TIOCNOTTY */
8efc0c15 1218 }
5260325f 1219 /* Reinitialize the log (because of the fork above). */
1fe6a48f 1220 log_init(__progname, options.log_level, options.log_facility, log_stderr);
5260325f 1221
5260325f 1222 /* Initialize the random number generator. */
1223 arc4random_stir();
1224
1225 /* Chdir to the root directory so that the current disk can be
1226 unmounted if desired. */
1227 chdir("/");
184eed6a 1228
1d3c30db 1229 /* ignore SIGPIPE */
1230 signal(SIGPIPE, SIG_IGN);
5260325f 1231
5260325f 1232 /* Start listening for a socket, unless started from inetd. */
1233 if (inetd_flag) {
b9a549d7 1234 int fd;
1235
4c8722d9 1236 startup_pipe = -1;
b9a549d7 1237 if (rexeced_flag) {
1238 close(STDERR_FILENO + 2);
1239 sock_in = sock_out = dup(STDIN_FILENO);
1240 if (!debug_flag) {
1241 startup_pipe = dup(STDERR_FILENO + 1);
1242 close(STDERR_FILENO + 1);
1243 }
1244 } else {
1245 sock_in = dup(STDIN_FILENO);
1246 sock_out = dup(STDOUT_FILENO);
1247 }
a306f2dd 1248 /*
1249 * We intentionally do not close the descriptors 0, 1, and 2
b9a549d7 1250 * as our code for setting the descriptors won't work if
a306f2dd 1251 * ttyfd happens to be one of those.
1252 */
b9a549d7 1253 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
1254 dup2(fd, STDIN_FILENO);
1255 dup2(fd, STDOUT_FILENO);
1256 if (fd > STDOUT_FILENO)
1257 close(fd);
1258 }
5260325f 1259 debug("inetd sockets after dupping: %d, %d", sock_in, sock_out);
b9a549d7 1260 if ((options.protocol & SSH_PROTO_1) &&
1261 sensitive_data.server_key == NULL)
cb7bd922 1262 generate_ephemeral_server_key();
5260325f 1263 } else {
48e671d5 1264 for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
1265 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1266 continue;
1267 if (num_listen_socks >= MAX_LISTEN_SOCKS)
1268 fatal("Too many listen sockets. "
1269 "Enlarge MAX_LISTEN_SOCKS");
1270 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
1271 ntop, sizeof(ntop), strport, sizeof(strport),
1272 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
1273 error("getnameinfo failed");
1274 continue;
1275 }
1276 /* Create socket for listening. */
3e131a6d 1277 listen_sock = socket(ai->ai_family, ai->ai_socktype,
1278 ai->ai_protocol);
48e671d5 1279 if (listen_sock < 0) {
1280 /* kernel may not support ipv6 */
1281 verbose("socket: %.100s", strerror(errno));
1282 continue;
1283 }
170694d7 1284 if (set_nonblock(listen_sock) == -1) {
a666e3b1 1285 close(listen_sock);
1286 continue;
1287 }
48e671d5 1288 /*
facfd613 1289 * Set socket options.
1290 * Allow local port reuse in TIME_WAIT.
48e671d5 1291 */
facfd613 1292 if (setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
1293 &on, sizeof(on)) == -1)
1294 error("setsockopt SO_REUSEADDR: %s", strerror(errno));
48e671d5 1295
1296 debug("Bind to port %s on %s.", strport, ntop);
1297
1298 /* Bind the socket to the desired port. */
32ced054 1299 if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1300 if (!ai->ai_next)
1301 error("Bind to port %s on %s failed: %.200s.",
1302 strport, ntop, strerror(errno));
48e671d5 1303 close(listen_sock);
1304 continue;
1305 }
1306 listen_socks[num_listen_socks] = listen_sock;
1307 num_listen_socks++;
1308
1309 /* Start listening on the port. */
bbe88b6d 1310 logit("Server listening on %s port %s.", ntop, strport);
fce39749 1311 if (listen(listen_sock, SSH_LISTEN_BACKLOG) < 0)
48e671d5 1312 fatal("listen: %.100s", strerror(errno));
1313
5260325f 1314 }
48e671d5 1315 freeaddrinfo(options.listen_addrs);
1316
1317 if (!num_listen_socks)
1318 fatal("Cannot bind any address.");
1319
3aca00a3 1320 if (options.protocol & SSH_PROTO_1)
1321 generate_ephemeral_server_key();
1322
1323 /*
1324 * Arrange to restart on SIGHUP. The handler needs
1325 * listen_sock.
1326 */
1327 signal(SIGHUP, sighup_handler);
1328
1329 signal(SIGTERM, sigterm_handler);
1330 signal(SIGQUIT, sigterm_handler);
1331
1332 /* Arrange SIGCHLD to be caught. */
1333 signal(SIGCHLD, main_sigchld_handler);
1334
1335 /* Write out the pid file after the sigterm handler is setup */
5260325f 1336 if (!debug_flag) {
aa3378df 1337 /*
97fb6912 1338 * Record our pid in /var/run/sshd.pid to make it
1339 * easier to kill the correct sshd. We don't want to
1340 * do this before the bind above because the bind will
aa3378df 1341 * fail if there already is a daemon, and this will
1342 * overwrite any old pid in the file.
1343 */
3c62e7eb 1344 f = fopen(options.pid_file, "wb");
71b9ced0 1345 if (f == NULL) {
1346 error("Couldn't create pid file \"%s\": %s",
1347 options.pid_file, strerror(errno));
1348 } else {
c457707e 1349 fprintf(f, "%ld\n", (long) getpid());
5260325f 1350 fclose(f);
1351 }
8efc0c15 1352 }
5260325f 1353
48e671d5 1354 /* setup fd set for listen */
089fbbd2 1355 fdset = NULL;
48e671d5 1356 maxfd = 0;
1357 for (i = 0; i < num_listen_socks; i++)
1358 if (listen_socks[i] > maxfd)
1359 maxfd = listen_socks[i];
089fbbd2 1360 /* pipes connected to unauthenticated childs */
1361 startup_pipes = xmalloc(options.max_startups * sizeof(int));
1362 for (i = 0; i < options.max_startups; i++)
1363 startup_pipes[i] = -1;
48e671d5 1364
aa3378df 1365 /*
1366 * Stay listening for connections until the system crashes or
1367 * the daemon is killed with a signal.
1368 */
5260325f 1369 for (;;) {
1370 if (received_sighup)
1371 sighup_restart();
089fbbd2 1372 if (fdset != NULL)
1373 xfree(fdset);
b5c334cc 1374 fdsetsz = howmany(maxfd+1, NFDBITS) * sizeof(fd_mask);
089fbbd2 1375 fdset = (fd_set *)xmalloc(fdsetsz);
48e671d5 1376 memset(fdset, 0, fdsetsz);
089fbbd2 1377
48e671d5 1378 for (i = 0; i < num_listen_socks; i++)
1379 FD_SET(listen_socks[i], fdset);
089fbbd2 1380 for (i = 0; i < options.max_startups; i++)
1381 if (startup_pipes[i] != -1)
1382 FD_SET(startup_pipes[i], fdset);
1383
1384 /* Wait in select until there is a connection. */
59c97189 1385 ret = select(maxfd+1, fdset, NULL, NULL, NULL);
1386 if (ret < 0 && errno != EINTR)
1387 error("select: %.100s", strerror(errno));
c9130033 1388 if (received_sigterm) {
bbe88b6d 1389 logit("Received signal %d; terminating.",
010f9726 1390 (int) received_sigterm);
c9130033 1391 close_listen_socks();
1392 unlink(options.pid_file);
1393 exit(255);
1394 }
59c97189 1395 if (key_used && key_do_regen) {
cb7bd922 1396 generate_ephemeral_server_key();
59c97189 1397 key_used = 0;
1398 key_do_regen = 0;
48e671d5 1399 }
59c97189 1400 if (ret < 0)
1401 continue;
1402
089fbbd2 1403 for (i = 0; i < options.max_startups; i++)
1404 if (startup_pipes[i] != -1 &&
1405 FD_ISSET(startup_pipes[i], fdset)) {
1406 /*
1407 * the read end of the pipe is ready
1408 * if the child has closed the pipe
8abcdba4 1409 * after successful authentication
089fbbd2 1410 * or if the child has died
1411 */
1412 close(startup_pipes[i]);
1413 startup_pipes[i] = -1;
1414 startups--;
1415 }
48e671d5 1416 for (i = 0; i < num_listen_socks; i++) {
1417 if (!FD_ISSET(listen_socks[i], fdset))
5260325f 1418 continue;
089fbbd2 1419 fromlen = sizeof(from);
1420 newsock = accept(listen_socks[i], (struct sockaddr *)&from,
1421 &fromlen);
1422 if (newsock < 0) {
1423 if (errno != EINTR && errno != EWOULDBLOCK)
1424 error("accept: %.100s", strerror(errno));
1425 continue;
1426 }
170694d7 1427 if (unset_nonblock(newsock) == -1) {
a666e3b1 1428 close(newsock);
1429 continue;
1430 }
c345cf9d 1431 if (drop_connection(startups) == 1) {
1432 debug("drop connection #%d", startups);
089fbbd2 1433 close(newsock);
1434 continue;
1435 }
1436 if (pipe(startup_p) == -1) {
1437 close(newsock);
1438 continue;
1439 }
1440
b9a549d7 1441 if (rexec_flag && socketpair(AF_UNIX,
1442 SOCK_STREAM, 0, config_s) == -1) {
1443 error("reexec socketpair: %s",
1444 strerror(errno));
1445 close(newsock);
1446 close(startup_p[0]);
1447 close(startup_p[1]);
1448 continue;
1449 }
1450
089fbbd2 1451 for (j = 0; j < options.max_startups; j++)
1452 if (startup_pipes[j] == -1) {
1453 startup_pipes[j] = startup_p[0];
1454 if (maxfd < startup_p[0])
1455 maxfd = startup_p[0];
1456 startups++;
1457 break;
1458 }
2b87da3b 1459
aa3378df 1460 /*
089fbbd2 1461 * Got connection. Fork a child to handle it, unless
1462 * we are in debugging mode.
aa3378df 1463 */
089fbbd2 1464 if (debug_flag) {
aa3378df 1465 /*
089fbbd2 1466 * In debugging mode. Close the listening
1467 * socket, and start processing the
1468 * connection without forking.
aa3378df 1469 */
089fbbd2 1470 debug("Server will not fork when running in debugging mode.");
48e671d5 1471 close_listen_socks();
5260325f 1472 sock_in = newsock;
1473 sock_out = newsock;
b9a549d7 1474 close(startup_p[0]);
1475 close(startup_p[1]);
5540ea9b 1476 startup_pipe = -1;
3f7a7e4a 1477 pid = getpid();
b9a549d7 1478 if (rexec_flag) {
1479 send_rexec_state(config_s[0],
1480 &cfg);
1481 close(config_s[0]);
1482 }
5260325f 1483 break;
089fbbd2 1484 } else {
1485 /*
1486 * Normal production daemon. Fork, and have
1487 * the child process the connection. The
1488 * parent continues listening.
1489 */
1490 if ((pid = fork()) == 0) {
1491 /*
1492 * Child. Close the listening and max_startup
1493 * sockets. Start using the accepted socket.
1494 * Reinitialize logging (since our pid has
1495 * changed). We break out of the loop to handle
1496 * the connection.
1497 */
1498 startup_pipe = startup_p[1];
7ace8c3b 1499 close_startup_pipes();
089fbbd2 1500 close_listen_socks();
1501 sock_in = newsock;
1502 sock_out = newsock;
1fe6a48f 1503 log_init(__progname, options.log_level, options.log_facility, log_stderr);
089fbbd2 1504 break;
1505 }
5260325f 1506 }
5260325f 1507
089fbbd2 1508 /* Parent. Stay in the loop. */
1509 if (pid < 0)
1510 error("fork: %.100s", strerror(errno));
1511 else
c457707e 1512 debug("Forked child %ld.", (long)pid);
5260325f 1513
089fbbd2 1514 close(startup_p[1]);
5260325f 1515
b9a549d7 1516 if (rexec_flag) {
1517 send_rexec_state(config_s[0], &cfg);
1518 close(config_s[0]);
1519 close(config_s[1]);
1520 }
1521
089fbbd2 1522 /* Mark that the key has been used (it was "given" to the child). */
59c97189 1523 if ((options.protocol & SSH_PROTO_1) &&
1524 key_used == 0) {
1525 /* Schedule server key regeneration alarm. */
f00d1f78 1526 signal(SIGALRM, key_regeneration_alarm);
59c97189 1527 alarm(options.key_regeneration_time);
1528 key_used = 1;
1529 }
5260325f 1530
089fbbd2 1531 arc4random_stir();
1532
1533 /* Close the new socket (the child is now taking care of it). */
1534 close(newsock);
1535 }
48e671d5 1536 /* child process check (or debug mode) */
1537 if (num_listen_socks < 0)
1538 break;
5260325f 1539 }
1540 }
8efc0c15 1541
5260325f 1542 /* This is the child processing a new connection. */
cc120685 1543 setproctitle("%s", "[accepted]");
5260325f 1544
b9a549d7 1545 if (rexec_flag) {
1546 int fd;
1547
1548 debug("rexec newsock %d pipe %d sock %d", newsock,
1549 startup_pipe, config_s[0]);
1550 dup2(newsock, STDIN_FILENO);
1551 dup2(STDIN_FILENO, STDOUT_FILENO);
1552 if (startup_pipe == -1)
1553 close(STDERR_FILENO + 1);
1554 else
1555 dup2(startup_pipe, STDERR_FILENO + 1);
1556
1557 dup2(config_s[1], STDERR_FILENO + 2);
1558 close(config_s[1]);
1559 execv(rexec_argv[0], rexec_argv);
1560
1561 /* Reexec has failed, fall back and continue */
1562 error("rexec of %s failed: %s", rexec_argv[0], strerror(errno));
1563 recv_rexec_state(STDERR_FILENO + 2, NULL);
1564 log_init(__progname, options.log_level,
1565 options.log_facility, log_stderr);
1566
1567 /* Clean up fds */
1568 close(config_s[1]);
1569 close(STDERR_FILENO + 1);
1570 close(STDERR_FILENO + 2);
1571 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
1572 dup2(fd, STDIN_FILENO);
1573 dup2(fd, STDOUT_FILENO);
1574 if (fd > STDERR_FILENO)
1575 close(fd);
1576 }
1577 }
1578
4ac8556b 1579 /*
1580 * Create a new session and process group since the 4.4BSD
1581 * setlogin() affects the entire process group. We don't
1582 * want the child to be able to affect the parent.
1583 */
ad84c479 1584#if !defined(SSHD_ACQUIRES_CTTY)
6ecd00f8 1585 /*
ad84c479 1586 * If setsid is called, on some platforms sshd will later acquire a
1587 * controlling terminal which will result in "could not set
1588 * controlling tty" errors.
6ecd00f8 1589 */
c28876e9 1590 if (!debug_flag && !inetd_flag && setsid() < 0)
4ac8556b 1591 error("setsid: %.100s", strerror(errno));
30321a9b 1592#endif
4ac8556b 1593
aa3378df 1594 /*
1595 * Disable the key regeneration alarm. We will not regenerate the
1596 * key since we are no longer in a position to give it to anyone. We
1597 * will not restart on SIGHUP since it no longer makes sense.
1598 */
5260325f 1599 alarm(0);
1600 signal(SIGALRM, SIG_DFL);
1601 signal(SIGHUP, SIG_DFL);
1602 signal(SIGTERM, SIG_DFL);
1603 signal(SIGQUIT, SIG_DFL);
1604 signal(SIGCHLD, SIG_DFL);
9aaf9be4 1605 signal(SIGINT, SIG_DFL);
5260325f 1606
fd573618 1607 /* Set SO_KEEPALIVE if requested. */
1608 if (options.tcp_keep_alive &&
db518d9b 1609 setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, &on,
b5c334cc 1610 sizeof(on)) < 0)
1611 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
1612
aa3378df 1613 /*
1614 * Register our connection. This turns encryption off because we do
1615 * not have a key.
1616 */
5260325f 1617 packet_set_connection(sock_in, sock_out);
1618
1619 remote_port = get_remote_port();
1620 remote_ip = get_remote_ipaddr();
1621
5260325f 1622#ifdef LIBWRAP
ac28afd8 1623 /* Check whether logins are denied from this host. */
33e5359c 1624 if (packet_connection_is_on_socket()) {
5260325f 1625 struct request_info req;
8efc0c15 1626
8fbc356d 1627 request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, 0);
5260325f 1628 fromhost(&req);
8efc0c15 1629
5260325f 1630 if (!hosts_access(&req)) {
ac28afd8 1631 debug("Connection refused by tcp wrapper");
563834bb 1632 refuse(&req);
ac28afd8 1633 /* NOTREACHED */
1634 fatal("libwrap refuse returns");
5260325f 1635 }
8efc0c15 1636 }
48e671d5 1637#endif /* LIBWRAP */
ac28afd8 1638
5260325f 1639 /* Log the connection. */
1640 verbose("Connection from %.500s port %d", remote_ip, remote_port);
8efc0c15 1641
aa3378df 1642 /*
1643 * We don\'t want to listen forever unless the other side
1644 * successfully authenticates itself. So we set up an alarm which is
1645 * cleared after successful authentication. A limit of zero
1646 * indicates no limit. Note that we don\'t set the alarm in debugging
1647 * mode; it is just annoying to have the server exit just when you
1648 * are about to discover the bug.
1649 */
f00d1f78 1650 signal(SIGALRM, grace_alarm_handler);
5260325f 1651 if (!debug_flag)
1652 alarm(options.login_grace_time);
1653
7368a6c8 1654 sshd_exchange_identification(sock_in, sock_out);
0598d99d 1655
5260325f 1656 packet_set_nonblocking();
1657
aff51935 1658 /* prepare buffers to collect authentication messages */
bc7dfc06 1659 buffer_init(&loginmsg);
1660
2362db19 1661 /* allocate authentication context */
1662 authctxt = xmalloc(sizeof(*authctxt));
1663 memset(authctxt, 0, sizeof(*authctxt));
1664
1665 /* XXX global for cleanup, access from other modules */
1666 the_authctxt = authctxt;
1667
324bf712 1668 if (use_privsep)
2362db19 1669 if (privsep_preauth(authctxt) == 1)
324bf712 1670 goto authenticated;
1853d1ef 1671
7b2ea3a1 1672 /* perform the key exchange */
7b2ea3a1 1673 /* authenticate user and start session */
e78a59f5 1674 if (compat20) {
1675 do_ssh2_kex();
2362db19 1676 do_authentication2(authctxt);
e78a59f5 1677 } else {
1678 do_ssh1_kex();
2362db19 1679 do_authentication(authctxt);
e78a59f5 1680 }
324bf712 1681 /*
1682 * If we use privilege separation, the unprivileged child transfers
1683 * the current keystate and exits
1684 */
1685 if (use_privsep) {
b5a28cbc 1686 mm_send_keystate(pmonitor);
1853d1ef 1687 exit(0);
324bf712 1688 }
1853d1ef 1689
1690 authenticated:
762715ce 1691 /*
1853d1ef 1692 * In privilege separation, we fork another child and prepare
1693 * file descriptor passing.
1694 */
1695 if (use_privsep) {
324bf712 1696 privsep_postauth(authctxt);
1697 /* the monitor process [priv] will not return */
1853d1ef 1698 if (!compat20)
1699 destroy_sensitive_data();
1700 }
1b34c1b3 1701
2362db19 1702 /* Start session. */
1b34c1b3 1703 do_authenticated(authctxt);
1704
63284fbb 1705 /* The connection has been terminated. */
1706 verbose("Closing connection to %.100s", remote_ip);
8efc0c15 1707
d94aa2ae 1708#ifdef USE_PAM
7fceb20d 1709 if (options.use_pam)
1710 finish_pam();
d94aa2ae 1711#endif /* USE_PAM */
8efc0c15 1712
5260325f 1713 packet_close();
1853d1ef 1714
1715 if (use_privsep)
1716 mm_terminate();
1717
5260325f 1718 exit(0);
1719}
8efc0c15 1720
4f08e98d 1721/*
1722 * Decrypt session_key_int using our private server key and private host key
1723 * (key with larger modulus first).
1724 */
1853d1ef 1725int
4f08e98d 1726ssh1_session_key(BIGNUM *session_key_int)
1727{
1728 int rsafail = 0;
1729
1730 if (BN_cmp(sensitive_data.server_key->rsa->n, sensitive_data.ssh1_host_key->rsa->n) > 0) {
1731 /* Server key has bigger modulus. */
1732 if (BN_num_bits(sensitive_data.server_key->rsa->n) <
1733 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1734 fatal("do_connection: %s: server_key %d < host_key %d + SSH_KEY_BITS_RESERVED %d",
1735 get_remote_ipaddr(),
1736 BN_num_bits(sensitive_data.server_key->rsa->n),
1737 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1738 SSH_KEY_BITS_RESERVED);
1739 }
1740 if (rsa_private_decrypt(session_key_int, session_key_int,
1741 sensitive_data.server_key->rsa) <= 0)
1742 rsafail++;
1743 if (rsa_private_decrypt(session_key_int, session_key_int,
1744 sensitive_data.ssh1_host_key->rsa) <= 0)
1745 rsafail++;
1746 } else {
1747 /* Host key has bigger modulus (or they are equal). */
1748 if (BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) <
1749 BN_num_bits(sensitive_data.server_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1750 fatal("do_connection: %s: host_key %d < server_key %d + SSH_KEY_BITS_RESERVED %d",
1751 get_remote_ipaddr(),
1752 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1753 BN_num_bits(sensitive_data.server_key->rsa->n),
1754 SSH_KEY_BITS_RESERVED);
1755 }
1756 if (rsa_private_decrypt(session_key_int, session_key_int,
1757 sensitive_data.ssh1_host_key->rsa) < 0)
1758 rsafail++;
1759 if (rsa_private_decrypt(session_key_int, session_key_int,
1760 sensitive_data.server_key->rsa) < 0)
1761 rsafail++;
1762 }
1763 return (rsafail);
1764}
5260325f 1765/*
7b2ea3a1 1766 * SSH1 key exchange
5260325f 1767 */
396c147e 1768static void
1e3b8b07 1769do_ssh1_kex(void)
8efc0c15 1770{
5260325f 1771 int i, len;
46aa2d1f 1772 int rsafail = 0;
5260325f 1773 BIGNUM *session_key_int;
1e3b8b07 1774 u_char session_key[SSH_SESSION_KEY_LENGTH];
1775 u_char cookie[8];
1776 u_int cipher_type, auth_mask, protocol_flags;
7fdc56c5 1777 u_int32_t rnd = 0;
5260325f 1778
aa3378df 1779 /*
1780 * Generate check bytes that the client must send back in the user
1781 * packet in order for it to be accepted; this is used to defy ip
1782 * spoofing attacks. Note that this only works against somebody
1783 * doing IP spoofing from a remote machine; any machine on the local
1784 * network can still see outgoing packets and catch the random
1785 * cookie. This only affects rhosts authentication, and this is one
1786 * of the reasons why it is inherently insecure.
1787 */
5260325f 1788 for (i = 0; i < 8; i++) {
1789 if (i % 4 == 0)
7fdc56c5 1790 rnd = arc4random();
1791 cookie[i] = rnd & 0xff;
1792 rnd >>= 8;
5260325f 1793 }
1794
aa3378df 1795 /*
1796 * Send our public key. We include in the packet 64 bits of random
1797 * data that must be matched in the reply in order to prevent IP
1798 * spoofing.
1799 */
5260325f 1800 packet_start(SSH_SMSG_PUBLIC_KEY);
1801 for (i = 0; i < 8; i++)
7b2ea3a1 1802 packet_put_char(cookie[i]);
5260325f 1803
1804 /* Store our public server RSA key. */
fa08c86b 1805 packet_put_int(BN_num_bits(sensitive_data.server_key->rsa->n));
1806 packet_put_bignum(sensitive_data.server_key->rsa->e);
1807 packet_put_bignum(sensitive_data.server_key->rsa->n);
5260325f 1808
1809 /* Store our public host RSA key. */
fa08c86b 1810 packet_put_int(BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
1811 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->e);
1812 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->n);
5260325f 1813
1814 /* Put protocol flags. */
1815 packet_put_int(SSH_PROTOFLAG_HOST_IN_FWD_OPEN);
1816
1817 /* Declare which ciphers we support. */
94ec8c6b 1818 packet_put_int(cipher_mask_ssh1(0));
5260325f 1819
1820 /* Declare supported authentication types. */
1821 auth_mask = 0;
5260325f 1822 if (options.rhosts_rsa_authentication)
1823 auth_mask |= 1 << SSH_AUTH_RHOSTS_RSA;
1824 if (options.rsa_authentication)
1825 auth_mask |= 1 << SSH_AUTH_RSA;
5ba55ada 1826 if (options.challenge_response_authentication == 1)
5260325f 1827 auth_mask |= 1 << SSH_AUTH_TIS;
5260325f 1828 if (options.password_authentication)
1829 auth_mask |= 1 << SSH_AUTH_PASSWORD;
1830 packet_put_int(auth_mask);
1831
1832 /* Send the packet and wait for it to be sent. */
1833 packet_send();
1834 packet_write_wait();
1835
fa08c86b 1836 debug("Sent %d bit server key and %d bit host key.",
1837 BN_num_bits(sensitive_data.server_key->rsa->n),
1838 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
5260325f 1839
1840 /* Read clients reply (cipher type and session key). */
54a5250f 1841 packet_read_expect(SSH_CMSG_SESSION_KEY);
5260325f 1842
2d86a6cc 1843 /* Get cipher type and check whether we accept this. */
5260325f 1844 cipher_type = packet_get_char();
1845
94ec8c6b 1846 if (!(cipher_mask_ssh1(0) & (1 << cipher_type)))
2d86a6cc 1847 packet_disconnect("Warning: client selects unsupported cipher.");
1848
5260325f 1849 /* Get check bytes from the packet. These must match those we
1850 sent earlier with the public key packet. */
1851 for (i = 0; i < 8; i++)
7b2ea3a1 1852 if (cookie[i] != packet_get_char())
5260325f 1853 packet_disconnect("IP Spoofing check bytes do not match.");
1854
1855 debug("Encryption type: %.200s", cipher_name(cipher_type));
1856
1857 /* Get the encrypted integer. */
b775c6f2 1858 if ((session_key_int = BN_new()) == NULL)
1859 fatal("do_ssh1_kex: BN_new failed");
20b279e6 1860 packet_get_bignum(session_key_int);
5260325f 1861
5260325f 1862 protocol_flags = packet_get_int();
1863 packet_set_protocol_flags(protocol_flags);
95500969 1864 packet_check_eom();
5260325f 1865
4f08e98d 1866 /* Decrypt session_key_int using host/server keys */
1853d1ef 1867 rsafail = PRIVSEP(ssh1_session_key(session_key_int));
1868
aa3378df 1869 /*
1870 * Extract session key from the decrypted integer. The key is in the
1871 * least significant 256 bits of the integer; the first byte of the
1872 * key is in the highest bits.
1873 */
46aa2d1f 1874 if (!rsafail) {
1875 BN_mask_bits(session_key_int, sizeof(session_key) * 8);
1876 len = BN_num_bytes(session_key_int);
1877 if (len < 0 || len > sizeof(session_key)) {
1878 error("do_connection: bad session key len from %s: "
5ca51e19 1879 "session_key_int %d > sizeof(session_key) %lu",
1880 get_remote_ipaddr(), len, (u_long)sizeof(session_key));
46aa2d1f 1881 rsafail++;
1882 } else {
1883 memset(session_key, 0, sizeof(session_key));
1884 BN_bn2bin(session_key_int,
1885 session_key + sizeof(session_key) - len);
00be5382 1886
8bbf1fa6 1887 derive_ssh1_session_id(
1888 sensitive_data.ssh1_host_key->rsa->n,
1889 sensitive_data.server_key->rsa->n,
1890 cookie, session_id);
00be5382 1891 /*
1892 * Xor the first 16 bytes of the session key with the
1893 * session id.
1894 */
1895 for (i = 0; i < 16; i++)
1896 session_key[i] ^= session_id[i];
46aa2d1f 1897 }
1898 }
1899 if (rsafail) {
00be5382 1900 int bytes = BN_num_bytes(session_key_int);
f6b1ba8f 1901 u_char *buf = xmalloc(bytes);
00be5382 1902 MD5_CTX md;
1903
bbe88b6d 1904 logit("do_connection: generating a fake encryption key");
00be5382 1905 BN_bn2bin(session_key_int, buf);
1906 MD5_Init(&md);
1907 MD5_Update(&md, buf, bytes);
1908 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1909 MD5_Final(session_key, &md);
1910 MD5_Init(&md);
1911 MD5_Update(&md, session_key, 16);
1912 MD5_Update(&md, buf, bytes);
1913 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1914 MD5_Final(session_key + 16, &md);
1915 memset(buf, 0, bytes);
1916 xfree(buf);
0572fe75 1917 for (i = 0; i < 16; i++)
1918 session_id[i] = session_key[i] ^ session_key[i + 16];
46aa2d1f 1919 }
1853d1ef 1920 /* Destroy the private and public keys. No longer. */
63284fbb 1921 destroy_sensitive_data();
00be5382 1922
1853d1ef 1923 if (use_privsep)
1924 mm_ssh1_session_id(session_id);
1925
7b2ea3a1 1926 /* Destroy the decrypted integer. It is no longer needed. */
1927 BN_clear_free(session_key_int);
1928
5260325f 1929 /* Set the session key. From this on all communications will be encrypted. */
1930 packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, cipher_type);
1931
1932 /* Destroy our copy of the session key. It is no longer needed. */
1933 memset(session_key, 0, sizeof(session_key));
1934
1935 debug("Received session key; encryption turned on.");
1936
c242fc96 1937 /* Send an acknowledgment packet. Note that this packet is sent encrypted. */
5260325f 1938 packet_start(SSH_SMSG_SUCCESS);
1939 packet_send();
1940 packet_write_wait();
5260325f 1941}
e78a59f5 1942
1943/*
1944 * SSH2 key exchange: diffie-hellman-group1-sha1
1945 */
396c147e 1946static void
1e3b8b07 1947do_ssh2_kex(void)
e78a59f5 1948{
e78a59f5 1949 Kex *kex;
e78a59f5 1950
a8be9f80 1951 if (options.ciphers != NULL) {
6ae2364d 1952 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
a8be9f80 1953 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
1954 }
1ad64a93 1955 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
1956 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
1957 myproposal[PROPOSAL_ENC_ALGS_STOC] =
1958 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
1959
b2552997 1960 if (options.macs != NULL) {
1961 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
1962 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
1963 }
636f76ca 1964 if (!options.compression) {
1965 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
1966 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none";
1967 }
fa08c86b 1968 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = list_hostkey_types();
1969
7a37c112 1970 /* start key exchange */
d8ee838b 1971 kex = kex_setup(myproposal);
98a58eda 1972 kex->kex[KEX_DH_GRP1_SHA1] = kexdh_server;
41e5bd9a 1973 kex->kex[KEX_DH_GRP14_SHA1] = kexdh_server;
98a58eda 1974 kex->kex[KEX_DH_GEX_SHA1] = kexgex_server;
a5c9ffdb 1975 kex->server = 1;
1976 kex->client_version_string=client_version_string;
1977 kex->server_version_string=server_version_string;
1978 kex->load_host_key=&get_hostkey_by_type;
1853d1ef 1979 kex->host_key_index=&get_hostkey_index;
94ec8c6b 1980
7a37c112 1981 xxx_kex = kex;
1982
c422989b 1983 dispatch_run(DISPATCH_BLOCK, &kex->done, kex);
94ec8c6b 1984
d1ac6175 1985 session_id2 = kex->session_id;
1986 session_id2_len = kex->session_id_len;
1987
94ec8c6b 1988#ifdef DEBUG_KEXDH
1989 /* send 1st encrypted/maced/compressed message */
1990 packet_start(SSH2_MSG_IGNORE);
1991 packet_put_cstring("markus");
1992 packet_send();
1993 packet_write_wait();
1994#endif
a5c9ffdb 1995 debug("KEX done");
e78a59f5 1996}
2362db19 1997
1998/* server specific fatal cleanup */
1999void
2000cleanup_exit(int i)
2001{
2002 if (the_authctxt)
2003 do_cleanup(the_authctxt);
2004 _exit(i);
2005}
This page took 0.682414 seconds and 5 git commands to generate.