]> andersk Git - openssh.git/blame - sshd.c
- (dtucker) [configure.ac openbsd-compat/misc.c [openbsd-compat/misc.h]
[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;
f420d2ba 898 saved_argv = xmalloc(sizeof(*saved_argv) * (ac + 1));
d0104542 899 for (i = 0; i < ac; i++)
900 saved_argv[i] = xstrdup(av[i]);
f420d2ba 901 saved_argv[i] = NULL;
d0104542 902
903#ifndef HAVE_SETPROCTITLE
904 /* Prepare for later setproctitle emulation */
905 compat_init_setproctitle(ac, av);
416c732d 906 av = saved_argv;
d0104542 907#endif
5260325f 908
a4c0faa2 909 if (geteuid() == 0 && setgroups(0, NULL) == -1)
910 debug("setgroups(): %.200s", strerror(errno));
911
5260325f 912 /* Initialize configuration options to their default values. */
913 initialize_server_options(&options);
914
915 /* Parse command-line arguments. */
b9a549d7 916 while ((opt = getopt(ac, av, "f:p:b:k:h:g:u:o:dDeiqrtQR46")) != -1) {
5260325f 917 switch (opt) {
48e671d5 918 case '4':
919 IPv4or6 = AF_INET;
920 break;
921 case '6':
922 IPv4or6 = AF_INET6;
923 break;
5260325f 924 case 'f':
925 config_file_name = optarg;
926 break;
927 case 'd':
e053cd2c 928 if (debug_flag == 0) {
bcbf86ec 929 debug_flag = 1;
930 options.log_level = SYSLOG_LEVEL_DEBUG1;
e053cd2c 931 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3)
bcbf86ec 932 options.log_level++;
5260325f 933 break;
0b6fbf03 934 case 'D':
935 no_daemon_flag = 1;
936 break;
ff14faf1 937 case 'e':
938 log_stderr = 1;
939 break;
5260325f 940 case 'i':
941 inetd_flag = 1;
942 break;
b9a549d7 943 case 'r':
944 rexec_flag = 0;
945 break;
946 case 'R':
947 rexeced_flag = 1;
948 inetd_flag = 1;
949 break;
5260325f 950 case 'Q':
9bd5b720 951 /* ignored */
5260325f 952 break;
953 case 'q':
954 options.log_level = SYSLOG_LEVEL_QUIET;
955 break;
956 case 'b':
957 options.server_key_bits = atoi(optarg);
958 break;
959 case 'p':
48e671d5 960 options.ports_from_cmdline = 1;
bcbf86ec 961 if (options.num_ports >= MAX_PORTS) {
962 fprintf(stderr, "too many ports.\n");
963 exit(1);
964 }
2d2a2c65 965 options.ports[options.num_ports++] = a2port(optarg);
966 if (options.ports[options.num_ports-1] == 0) {
967 fprintf(stderr, "Bad port number.\n");
968 exit(1);
969 }
5260325f 970 break;
971 case 'g':
e2b1fb42 972 if ((options.login_grace_time = convtime(optarg)) == -1) {
973 fprintf(stderr, "Invalid login grace time.\n");
974 exit(1);
975 }
5260325f 976 break;
977 case 'k':
e2b1fb42 978 if ((options.key_regeneration_time = convtime(optarg)) == -1) {
979 fprintf(stderr, "Invalid key regeneration interval.\n");
980 exit(1);
981 }
5260325f 982 break;
983 case 'h':
fa08c86b 984 if (options.num_host_key_files >= MAX_HOSTKEYS) {
985 fprintf(stderr, "too many host keys.\n");
986 exit(1);
987 }
988 options.host_key_files[options.num_host_key_files++] = optarg;
5260325f 989 break;
f87f09aa 990 case 't':
991 test_flag = 1;
992 break;
c345cf9d 993 case 'u':
994 utmp_len = atoi(optarg);
67f04db1 995 if (utmp_len > MAXHOSTNAMELEN) {
996 fprintf(stderr, "Invalid utmp length.\n");
997 exit(1);
998 }
c345cf9d 999 break;
2717fa0f 1000 case 'o':
c5894280 1001 line = xstrdup(optarg);
1002 if (process_server_config_line(&options, line,
2717fa0f 1003 "command-line", 0) != 0)
184eed6a 1004 exit(1);
c5894280 1005 xfree(line);
2717fa0f 1006 break;
5260325f 1007 case '?':
1008 default:
2717fa0f 1009 usage();
1010 break;
5260325f 1011 }
1012 }
b9a549d7 1013 if (rexeced_flag || inetd_flag)
1014 rexec_flag = 0;
1015 if (rexec_flag && (av[0] == NULL || *av[0] != '/'))
1016 fatal("sshd re-exec requires execution with an absolute path");
1017 if (rexeced_flag)
1018 closefrom(STDERR_FILENO + 3);
1019
1a92bd7e 1020 SSLeay_add_all_algorithms();
5e4a7219 1021 channel_set_af(IPv4or6);
5260325f 1022
48e671d5 1023 /*
1024 * Force logging to stderr until we have loaded the private host
1025 * key (unless started from inetd)
1026 */
1fe6a48f 1027 log_init(__progname,
980c9344 1028 options.log_level == SYSLOG_LEVEL_NOT_SET ?
1029 SYSLOG_LEVEL_INFO : options.log_level,
1030 options.log_facility == SYSLOG_FACILITY_NOT_SET ?
1031 SYSLOG_FACILITY_AUTH : options.log_facility,
51efad8c 1032 log_stderr || !inetd_flag);
48e671d5 1033
351f44a0 1034#ifdef _AIX
1035 /*
1036 * Unset KRB5CCNAME, otherwise the user's session may inherit it from
1037 * root's environment
1038 */
1039 unsetenv("KRB5CCNAME");
1040#endif /* _AIX */
ef51930f 1041#ifdef _UNICOS
e5ba4718 1042 /* Cray can define user privs drop all privs now!
1a23ac2c 1043 * Not needed on PRIV_SU systems!
1044 */
1045 drop_cray_privs();
1046#endif
1047
e339aa53 1048 seed_rng();
1049
b9a549d7 1050 sensitive_data.server_key = NULL;
1051 sensitive_data.ssh1_host_key = NULL;
1052 sensitive_data.have_ssh1_key = 0;
1053 sensitive_data.have_ssh2_key = 0;
1054
1055 /* Fetch our configuration */
1056 buffer_init(&cfg);
1057 if (rexeced_flag)
1058 recv_rexec_state(STDERR_FILENO + 2, &cfg);
1059 else
1060 load_server_config(config_file_name, &cfg);
1061
1062 parse_server_config(&options,
1063 rexeced_flag ? "rexec" : config_file_name, &cfg);
1064
1065 if (!rexec_flag)
1066 buffer_free(&cfg);
5260325f 1067
1068 /* Fill in default values for those options not explicitly set. */
1069 fill_default_server_options(&options);
1070
5260325f 1071 /* Check that there are no remaining arguments. */
1072 if (optind < ac) {
1073 fprintf(stderr, "Extra argument %s.\n", av[optind]);
1074 exit(1);
8efc0c15 1075 }
5260325f 1076
1077 debug("sshd version %.100s", SSH_VERSION);
1078
fa08c86b 1079 /* load private host keys */
343288b8 1080 sensitive_data.host_keys = xmalloc(options.num_host_key_files *
1081 sizeof(Key *));
184eed6a 1082 for (i = 0; i < options.num_host_key_files; i++)
1e3b8b07 1083 sensitive_data.host_keys[i] = NULL;
a306f2dd 1084
184eed6a 1085 for (i = 0; i < options.num_host_key_files; i++) {
aeaa3d9e 1086 key = key_load_private(options.host_key_files[i], "", NULL);
1087 sensitive_data.host_keys[i] = key;
fa08c86b 1088 if (key == NULL) {
58cfa257 1089 error("Could not load host key: %s",
1090 options.host_key_files[i]);
aeaa3d9e 1091 sensitive_data.host_keys[i] = NULL;
fa08c86b 1092 continue;
a306f2dd 1093 }
6aacefa7 1094 switch (key->type) {
fa08c86b 1095 case KEY_RSA1:
1096 sensitive_data.ssh1_host_key = key;
1097 sensitive_data.have_ssh1_key = 1;
1098 break;
1099 case KEY_RSA:
1100 case KEY_DSA:
1101 sensitive_data.have_ssh2_key = 1;
1102 break;
a306f2dd 1103 }
aeaa3d9e 1104 debug("private host key: #%d type %d %s", i, key->type,
1105 key_type(key));
fa08c86b 1106 }
1107 if ((options.protocol & SSH_PROTO_1) && !sensitive_data.have_ssh1_key) {
bbe88b6d 1108 logit("Disabling protocol version 1. Could not load host key");
fa08c86b 1109 options.protocol &= ~SSH_PROTO_1;
1110 }
1111 if ((options.protocol & SSH_PROTO_2) && !sensitive_data.have_ssh2_key) {
bbe88b6d 1112 logit("Disabling protocol version 2. Could not load host key");
fa08c86b 1113 options.protocol &= ~SSH_PROTO_2;
a306f2dd 1114 }
6a416424 1115 if (!(options.protocol & (SSH_PROTO_1|SSH_PROTO_2))) {
bbe88b6d 1116 logit("sshd: no hostkeys available -- exiting.");
5260325f 1117 exit(1);
1118 }
5260325f 1119
a306f2dd 1120 /* Check certain values for sanity. */
1121 if (options.protocol & SSH_PROTO_1) {
1122 if (options.server_key_bits < 512 ||
1123 options.server_key_bits > 32768) {
1124 fprintf(stderr, "Bad server key size.\n");
1125 exit(1);
1126 }
1127 /*
1128 * Check that server and host key lengths differ sufficiently. This
1129 * is necessary to make double encryption work with rsaref. Oh, I
1130 * hate software patents. I dont know if this can go? Niels
1131 */
1132 if (options.server_key_bits >
e424e241 1133 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) -
1134 SSH_KEY_BITS_RESERVED && options.server_key_bits <
1135 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) +
1136 SSH_KEY_BITS_RESERVED) {
a306f2dd 1137 options.server_key_bits =
e424e241 1138 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) +
1139 SSH_KEY_BITS_RESERVED;
a306f2dd 1140 debug("Forcing server key to %d bits to make it differ from host key.",
1141 options.server_key_bits);
1142 }
1143 }
1144
3cc54fbb 1145 if (use_privsep) {
1146 struct passwd *pw;
1147 struct stat st;
1148
1149 if ((pw = getpwnam(SSH_PRIVSEP_USER)) == NULL)
1150 fatal("Privilege separation user %s does not exist",
1151 SSH_PRIVSEP_USER);
1152 if ((stat(_PATH_PRIVSEP_CHROOT_DIR, &st) == -1) ||
1153 (S_ISDIR(st.st_mode) == 0))
1154 fatal("Missing privilege separation directory: %s",
1155 _PATH_PRIVSEP_CHROOT_DIR);
b9b82dab 1156
1157#ifdef HAVE_CYGWIN
1158 if (check_ntsec(_PATH_PRIVSEP_CHROOT_DIR) &&
1159 (st.st_uid != getuid () ||
1160 (st.st_mode & (S_IWGRP|S_IWOTH)) != 0))
1161#else
a56313d7 1162 if (st.st_uid != 0 || (st.st_mode & (S_IWGRP|S_IWOTH)) != 0)
b9b82dab 1163#endif
5f021474 1164 fatal("%s must be owned by root and not group or "
1165 "world-writable.", _PATH_PRIVSEP_CHROOT_DIR);
3cc54fbb 1166 }
1167
f87f09aa 1168 /* Configuration looks good, so exit if in test mode. */
1169 if (test_flag)
1170 exit(0);
1171
018a5ea3 1172 /*
1173 * Clear out any supplemental groups we may have inherited. This
1174 * prevents inadvertent creation of files with bad modes (in the
aff51935 1175 * portable version at least, it's certainly possible for PAM
1176 * to create a file, and we can't control the code in every
018a5ea3 1177 * module which might be used).
1178 */
1179 if (setgroups(0, NULL) < 0)
1180 debug("setgroups() failed: %.200s", strerror(errno));
1181
b9a549d7 1182 if (rexec_flag) {
1183 rexec_argv = xmalloc(sizeof(char *) * (rexec_argc + 2));
1184 for (i = 0; i < rexec_argc; i++) {
1185 debug("rexec_argv[%d]='%s'", i, saved_argv[i]);
1186 rexec_argv[i] = saved_argv[i];
1187 }
1188 rexec_argv[rexec_argc] = "-R";
1189 rexec_argv[rexec_argc + 1] = NULL;
1190 }
1191
a306f2dd 1192 /* Initialize the log (it is reinitialized below in case we forked). */
5260325f 1193 if (debug_flag && !inetd_flag)
1194 log_stderr = 1;
1fe6a48f 1195 log_init(__progname, options.log_level, options.log_facility, log_stderr);
5260325f 1196
a306f2dd 1197 /*
1198 * If not in debugging mode, and not started from inetd, disconnect
1199 * from the controlling terminal, and fork. The original process
1200 * exits.
1201 */
0b6fbf03 1202 if (!(debug_flag || inetd_flag || no_daemon_flag)) {
8efc0c15 1203#ifdef TIOCNOTTY
5260325f 1204 int fd;
8efc0c15 1205#endif /* TIOCNOTTY */
5260325f 1206 if (daemon(0, 0) < 0)
1207 fatal("daemon() failed: %.200s", strerror(errno));
1208
1209 /* Disconnect from the controlling tty. */
8efc0c15 1210#ifdef TIOCNOTTY
5ca51e19 1211 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
5260325f 1212 if (fd >= 0) {
1213 (void) ioctl(fd, TIOCNOTTY, NULL);
1214 close(fd);
1215 }
8efc0c15 1216#endif /* TIOCNOTTY */
8efc0c15 1217 }
5260325f 1218 /* Reinitialize the log (because of the fork above). */
1fe6a48f 1219 log_init(__progname, options.log_level, options.log_facility, log_stderr);
5260325f 1220
5260325f 1221 /* Initialize the random number generator. */
1222 arc4random_stir();
1223
1224 /* Chdir to the root directory so that the current disk can be
1225 unmounted if desired. */
1226 chdir("/");
184eed6a 1227
1d3c30db 1228 /* ignore SIGPIPE */
1229 signal(SIGPIPE, SIG_IGN);
5260325f 1230
5260325f 1231 /* Start listening for a socket, unless started from inetd. */
1232 if (inetd_flag) {
b9a549d7 1233 int fd;
1234
4c8722d9 1235 startup_pipe = -1;
b9a549d7 1236 if (rexeced_flag) {
1237 close(STDERR_FILENO + 2);
1238 sock_in = sock_out = dup(STDIN_FILENO);
1239 if (!debug_flag) {
1240 startup_pipe = dup(STDERR_FILENO + 1);
1241 close(STDERR_FILENO + 1);
1242 }
1243 } else {
1244 sock_in = dup(STDIN_FILENO);
1245 sock_out = dup(STDOUT_FILENO);
1246 }
a306f2dd 1247 /*
1248 * We intentionally do not close the descriptors 0, 1, and 2
b9a549d7 1249 * as our code for setting the descriptors won't work if
a306f2dd 1250 * ttyfd happens to be one of those.
1251 */
b9a549d7 1252 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
1253 dup2(fd, STDIN_FILENO);
1254 dup2(fd, STDOUT_FILENO);
1255 if (fd > STDOUT_FILENO)
1256 close(fd);
1257 }
5260325f 1258 debug("inetd sockets after dupping: %d, %d", sock_in, sock_out);
b9a549d7 1259 if ((options.protocol & SSH_PROTO_1) &&
1260 sensitive_data.server_key == NULL)
cb7bd922 1261 generate_ephemeral_server_key();
5260325f 1262 } else {
48e671d5 1263 for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
1264 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1265 continue;
1266 if (num_listen_socks >= MAX_LISTEN_SOCKS)
1267 fatal("Too many listen sockets. "
1268 "Enlarge MAX_LISTEN_SOCKS");
1269 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
1270 ntop, sizeof(ntop), strport, sizeof(strport),
1271 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
1272 error("getnameinfo failed");
1273 continue;
1274 }
1275 /* Create socket for listening. */
3e131a6d 1276 listen_sock = socket(ai->ai_family, ai->ai_socktype,
1277 ai->ai_protocol);
48e671d5 1278 if (listen_sock < 0) {
1279 /* kernel may not support ipv6 */
1280 verbose("socket: %.100s", strerror(errno));
1281 continue;
1282 }
170694d7 1283 if (set_nonblock(listen_sock) == -1) {
a666e3b1 1284 close(listen_sock);
1285 continue;
1286 }
48e671d5 1287 /*
facfd613 1288 * Set socket options.
1289 * Allow local port reuse in TIME_WAIT.
48e671d5 1290 */
facfd613 1291 if (setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
1292 &on, sizeof(on)) == -1)
1293 error("setsockopt SO_REUSEADDR: %s", strerror(errno));
48e671d5 1294
1295 debug("Bind to port %s on %s.", strport, ntop);
1296
1297 /* Bind the socket to the desired port. */
32ced054 1298 if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1299 if (!ai->ai_next)
1300 error("Bind to port %s on %s failed: %.200s.",
1301 strport, ntop, strerror(errno));
48e671d5 1302 close(listen_sock);
1303 continue;
1304 }
1305 listen_socks[num_listen_socks] = listen_sock;
1306 num_listen_socks++;
1307
1308 /* Start listening on the port. */
bbe88b6d 1309 logit("Server listening on %s port %s.", ntop, strport);
fce39749 1310 if (listen(listen_sock, SSH_LISTEN_BACKLOG) < 0)
48e671d5 1311 fatal("listen: %.100s", strerror(errno));
1312
5260325f 1313 }
48e671d5 1314 freeaddrinfo(options.listen_addrs);
1315
1316 if (!num_listen_socks)
1317 fatal("Cannot bind any address.");
1318
3aca00a3 1319 if (options.protocol & SSH_PROTO_1)
1320 generate_ephemeral_server_key();
1321
1322 /*
1323 * Arrange to restart on SIGHUP. The handler needs
1324 * listen_sock.
1325 */
1326 signal(SIGHUP, sighup_handler);
1327
1328 signal(SIGTERM, sigterm_handler);
1329 signal(SIGQUIT, sigterm_handler);
1330
1331 /* Arrange SIGCHLD to be caught. */
1332 signal(SIGCHLD, main_sigchld_handler);
1333
1334 /* Write out the pid file after the sigterm handler is setup */
5260325f 1335 if (!debug_flag) {
aa3378df 1336 /*
97fb6912 1337 * Record our pid in /var/run/sshd.pid to make it
1338 * easier to kill the correct sshd. We don't want to
1339 * do this before the bind above because the bind will
aa3378df 1340 * fail if there already is a daemon, and this will
1341 * overwrite any old pid in the file.
1342 */
3c62e7eb 1343 f = fopen(options.pid_file, "wb");
71b9ced0 1344 if (f == NULL) {
1345 error("Couldn't create pid file \"%s\": %s",
1346 options.pid_file, strerror(errno));
1347 } else {
c457707e 1348 fprintf(f, "%ld\n", (long) getpid());
5260325f 1349 fclose(f);
1350 }
8efc0c15 1351 }
5260325f 1352
48e671d5 1353 /* setup fd set for listen */
089fbbd2 1354 fdset = NULL;
48e671d5 1355 maxfd = 0;
1356 for (i = 0; i < num_listen_socks; i++)
1357 if (listen_socks[i] > maxfd)
1358 maxfd = listen_socks[i];
089fbbd2 1359 /* pipes connected to unauthenticated childs */
1360 startup_pipes = xmalloc(options.max_startups * sizeof(int));
1361 for (i = 0; i < options.max_startups; i++)
1362 startup_pipes[i] = -1;
48e671d5 1363
aa3378df 1364 /*
1365 * Stay listening for connections until the system crashes or
1366 * the daemon is killed with a signal.
1367 */
5260325f 1368 for (;;) {
1369 if (received_sighup)
1370 sighup_restart();
089fbbd2 1371 if (fdset != NULL)
1372 xfree(fdset);
b5c334cc 1373 fdsetsz = howmany(maxfd+1, NFDBITS) * sizeof(fd_mask);
089fbbd2 1374 fdset = (fd_set *)xmalloc(fdsetsz);
48e671d5 1375 memset(fdset, 0, fdsetsz);
089fbbd2 1376
48e671d5 1377 for (i = 0; i < num_listen_socks; i++)
1378 FD_SET(listen_socks[i], fdset);
089fbbd2 1379 for (i = 0; i < options.max_startups; i++)
1380 if (startup_pipes[i] != -1)
1381 FD_SET(startup_pipes[i], fdset);
1382
1383 /* Wait in select until there is a connection. */
59c97189 1384 ret = select(maxfd+1, fdset, NULL, NULL, NULL);
1385 if (ret < 0 && errno != EINTR)
1386 error("select: %.100s", strerror(errno));
c9130033 1387 if (received_sigterm) {
bbe88b6d 1388 logit("Received signal %d; terminating.",
010f9726 1389 (int) received_sigterm);
c9130033 1390 close_listen_socks();
1391 unlink(options.pid_file);
1392 exit(255);
1393 }
59c97189 1394 if (key_used && key_do_regen) {
cb7bd922 1395 generate_ephemeral_server_key();
59c97189 1396 key_used = 0;
1397 key_do_regen = 0;
48e671d5 1398 }
59c97189 1399 if (ret < 0)
1400 continue;
1401
089fbbd2 1402 for (i = 0; i < options.max_startups; i++)
1403 if (startup_pipes[i] != -1 &&
1404 FD_ISSET(startup_pipes[i], fdset)) {
1405 /*
1406 * the read end of the pipe is ready
1407 * if the child has closed the pipe
8abcdba4 1408 * after successful authentication
089fbbd2 1409 * or if the child has died
1410 */
1411 close(startup_pipes[i]);
1412 startup_pipes[i] = -1;
1413 startups--;
1414 }
48e671d5 1415 for (i = 0; i < num_listen_socks; i++) {
1416 if (!FD_ISSET(listen_socks[i], fdset))
5260325f 1417 continue;
089fbbd2 1418 fromlen = sizeof(from);
1419 newsock = accept(listen_socks[i], (struct sockaddr *)&from,
1420 &fromlen);
1421 if (newsock < 0) {
1422 if (errno != EINTR && errno != EWOULDBLOCK)
1423 error("accept: %.100s", strerror(errno));
1424 continue;
1425 }
170694d7 1426 if (unset_nonblock(newsock) == -1) {
a666e3b1 1427 close(newsock);
1428 continue;
1429 }
c345cf9d 1430 if (drop_connection(startups) == 1) {
1431 debug("drop connection #%d", startups);
089fbbd2 1432 close(newsock);
1433 continue;
1434 }
1435 if (pipe(startup_p) == -1) {
1436 close(newsock);
1437 continue;
1438 }
1439
b9a549d7 1440 if (rexec_flag && socketpair(AF_UNIX,
1441 SOCK_STREAM, 0, config_s) == -1) {
1442 error("reexec socketpair: %s",
1443 strerror(errno));
1444 close(newsock);
1445 close(startup_p[0]);
1446 close(startup_p[1]);
1447 continue;
1448 }
1449
089fbbd2 1450 for (j = 0; j < options.max_startups; j++)
1451 if (startup_pipes[j] == -1) {
1452 startup_pipes[j] = startup_p[0];
1453 if (maxfd < startup_p[0])
1454 maxfd = startup_p[0];
1455 startups++;
1456 break;
1457 }
2b87da3b 1458
aa3378df 1459 /*
089fbbd2 1460 * Got connection. Fork a child to handle it, unless
1461 * we are in debugging mode.
aa3378df 1462 */
089fbbd2 1463 if (debug_flag) {
aa3378df 1464 /*
089fbbd2 1465 * In debugging mode. Close the listening
1466 * socket, and start processing the
1467 * connection without forking.
aa3378df 1468 */
089fbbd2 1469 debug("Server will not fork when running in debugging mode.");
48e671d5 1470 close_listen_socks();
5260325f 1471 sock_in = newsock;
1472 sock_out = newsock;
b9a549d7 1473 close(startup_p[0]);
1474 close(startup_p[1]);
5540ea9b 1475 startup_pipe = -1;
3f7a7e4a 1476 pid = getpid();
b9a549d7 1477 if (rexec_flag) {
1478 send_rexec_state(config_s[0],
1479 &cfg);
1480 close(config_s[0]);
1481 }
5260325f 1482 break;
089fbbd2 1483 } else {
1484 /*
1485 * Normal production daemon. Fork, and have
1486 * the child process the connection. The
1487 * parent continues listening.
1488 */
1489 if ((pid = fork()) == 0) {
1490 /*
1491 * Child. Close the listening and max_startup
1492 * sockets. Start using the accepted socket.
1493 * Reinitialize logging (since our pid has
1494 * changed). We break out of the loop to handle
1495 * the connection.
1496 */
1497 startup_pipe = startup_p[1];
7ace8c3b 1498 close_startup_pipes();
089fbbd2 1499 close_listen_socks();
1500 sock_in = newsock;
1501 sock_out = newsock;
1fe6a48f 1502 log_init(__progname, options.log_level, options.log_facility, log_stderr);
089fbbd2 1503 break;
1504 }
5260325f 1505 }
5260325f 1506
089fbbd2 1507 /* Parent. Stay in the loop. */
1508 if (pid < 0)
1509 error("fork: %.100s", strerror(errno));
1510 else
c457707e 1511 debug("Forked child %ld.", (long)pid);
5260325f 1512
089fbbd2 1513 close(startup_p[1]);
5260325f 1514
b9a549d7 1515 if (rexec_flag) {
1516 send_rexec_state(config_s[0], &cfg);
1517 close(config_s[0]);
1518 close(config_s[1]);
1519 }
1520
089fbbd2 1521 /* Mark that the key has been used (it was "given" to the child). */
59c97189 1522 if ((options.protocol & SSH_PROTO_1) &&
1523 key_used == 0) {
1524 /* Schedule server key regeneration alarm. */
f00d1f78 1525 signal(SIGALRM, key_regeneration_alarm);
59c97189 1526 alarm(options.key_regeneration_time);
1527 key_used = 1;
1528 }
5260325f 1529
089fbbd2 1530 arc4random_stir();
1531
1532 /* Close the new socket (the child is now taking care of it). */
1533 close(newsock);
1534 }
48e671d5 1535 /* child process check (or debug mode) */
1536 if (num_listen_socks < 0)
1537 break;
5260325f 1538 }
1539 }
8efc0c15 1540
5260325f 1541 /* This is the child processing a new connection. */
cc120685 1542 setproctitle("%s", "[accepted]");
5260325f 1543
b9a549d7 1544 if (rexec_flag) {
1545 int fd;
1546
1547 debug("rexec newsock %d pipe %d sock %d", newsock,
1548 startup_pipe, config_s[0]);
1549 dup2(newsock, STDIN_FILENO);
1550 dup2(STDIN_FILENO, STDOUT_FILENO);
1551 if (startup_pipe == -1)
1552 close(STDERR_FILENO + 1);
1553 else
1554 dup2(startup_pipe, STDERR_FILENO + 1);
1555
1556 dup2(config_s[1], STDERR_FILENO + 2);
1557 close(config_s[1]);
1558 execv(rexec_argv[0], rexec_argv);
1559
1560 /* Reexec has failed, fall back and continue */
1561 error("rexec of %s failed: %s", rexec_argv[0], strerror(errno));
1562 recv_rexec_state(STDERR_FILENO + 2, NULL);
1563 log_init(__progname, options.log_level,
1564 options.log_facility, log_stderr);
1565
1566 /* Clean up fds */
1567 close(config_s[1]);
1568 close(STDERR_FILENO + 1);
1569 close(STDERR_FILENO + 2);
1570 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
1571 dup2(fd, STDIN_FILENO);
1572 dup2(fd, STDOUT_FILENO);
1573 if (fd > STDERR_FILENO)
1574 close(fd);
1575 }
1576 }
1577
4ac8556b 1578 /*
1579 * Create a new session and process group since the 4.4BSD
1580 * setlogin() affects the entire process group. We don't
1581 * want the child to be able to affect the parent.
1582 */
ad84c479 1583#if !defined(SSHD_ACQUIRES_CTTY)
6ecd00f8 1584 /*
ad84c479 1585 * If setsid is called, on some platforms sshd will later acquire a
1586 * controlling terminal which will result in "could not set
1587 * controlling tty" errors.
6ecd00f8 1588 */
c28876e9 1589 if (!debug_flag && !inetd_flag && setsid() < 0)
4ac8556b 1590 error("setsid: %.100s", strerror(errno));
30321a9b 1591#endif
4ac8556b 1592
aa3378df 1593 /*
1594 * Disable the key regeneration alarm. We will not regenerate the
1595 * key since we are no longer in a position to give it to anyone. We
1596 * will not restart on SIGHUP since it no longer makes sense.
1597 */
5260325f 1598 alarm(0);
1599 signal(SIGALRM, SIG_DFL);
1600 signal(SIGHUP, SIG_DFL);
1601 signal(SIGTERM, SIG_DFL);
1602 signal(SIGQUIT, SIG_DFL);
1603 signal(SIGCHLD, SIG_DFL);
9aaf9be4 1604 signal(SIGINT, SIG_DFL);
5260325f 1605
fd573618 1606 /* Set SO_KEEPALIVE if requested. */
1607 if (options.tcp_keep_alive &&
db518d9b 1608 setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, &on,
b5c334cc 1609 sizeof(on)) < 0)
1610 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
1611
aa3378df 1612 /*
1613 * Register our connection. This turns encryption off because we do
1614 * not have a key.
1615 */
5260325f 1616 packet_set_connection(sock_in, sock_out);
1617
1618 remote_port = get_remote_port();
1619 remote_ip = get_remote_ipaddr();
1620
5260325f 1621#ifdef LIBWRAP
ac28afd8 1622 /* Check whether logins are denied from this host. */
33e5359c 1623 if (packet_connection_is_on_socket()) {
5260325f 1624 struct request_info req;
8efc0c15 1625
8fbc356d 1626 request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, 0);
5260325f 1627 fromhost(&req);
8efc0c15 1628
5260325f 1629 if (!hosts_access(&req)) {
ac28afd8 1630 debug("Connection refused by tcp wrapper");
563834bb 1631 refuse(&req);
ac28afd8 1632 /* NOTREACHED */
1633 fatal("libwrap refuse returns");
5260325f 1634 }
8efc0c15 1635 }
48e671d5 1636#endif /* LIBWRAP */
ac28afd8 1637
5260325f 1638 /* Log the connection. */
1639 verbose("Connection from %.500s port %d", remote_ip, remote_port);
8efc0c15 1640
aa3378df 1641 /*
1642 * We don\'t want to listen forever unless the other side
1643 * successfully authenticates itself. So we set up an alarm which is
1644 * cleared after successful authentication. A limit of zero
1645 * indicates no limit. Note that we don\'t set the alarm in debugging
1646 * mode; it is just annoying to have the server exit just when you
1647 * are about to discover the bug.
1648 */
f00d1f78 1649 signal(SIGALRM, grace_alarm_handler);
5260325f 1650 if (!debug_flag)
1651 alarm(options.login_grace_time);
1652
7368a6c8 1653 sshd_exchange_identification(sock_in, sock_out);
0598d99d 1654
5260325f 1655 packet_set_nonblocking();
1656
aff51935 1657 /* prepare buffers to collect authentication messages */
bc7dfc06 1658 buffer_init(&loginmsg);
1659
2362db19 1660 /* allocate authentication context */
1661 authctxt = xmalloc(sizeof(*authctxt));
1662 memset(authctxt, 0, sizeof(*authctxt));
1663
1664 /* XXX global for cleanup, access from other modules */
1665 the_authctxt = authctxt;
1666
324bf712 1667 if (use_privsep)
2362db19 1668 if (privsep_preauth(authctxt) == 1)
324bf712 1669 goto authenticated;
1853d1ef 1670
7b2ea3a1 1671 /* perform the key exchange */
7b2ea3a1 1672 /* authenticate user and start session */
e78a59f5 1673 if (compat20) {
1674 do_ssh2_kex();
2362db19 1675 do_authentication2(authctxt);
e78a59f5 1676 } else {
1677 do_ssh1_kex();
2362db19 1678 do_authentication(authctxt);
e78a59f5 1679 }
324bf712 1680 /*
1681 * If we use privilege separation, the unprivileged child transfers
1682 * the current keystate and exits
1683 */
1684 if (use_privsep) {
b5a28cbc 1685 mm_send_keystate(pmonitor);
1853d1ef 1686 exit(0);
324bf712 1687 }
1853d1ef 1688
1689 authenticated:
762715ce 1690 /*
1853d1ef 1691 * In privilege separation, we fork another child and prepare
1692 * file descriptor passing.
1693 */
1694 if (use_privsep) {
324bf712 1695 privsep_postauth(authctxt);
1696 /* the monitor process [priv] will not return */
1853d1ef 1697 if (!compat20)
1698 destroy_sensitive_data();
1699 }
1b34c1b3 1700
2362db19 1701 /* Start session. */
1b34c1b3 1702 do_authenticated(authctxt);
1703
63284fbb 1704 /* The connection has been terminated. */
1705 verbose("Closing connection to %.100s", remote_ip);
8efc0c15 1706
d94aa2ae 1707#ifdef USE_PAM
7fceb20d 1708 if (options.use_pam)
1709 finish_pam();
d94aa2ae 1710#endif /* USE_PAM */
8efc0c15 1711
5260325f 1712 packet_close();
1853d1ef 1713
1714 if (use_privsep)
1715 mm_terminate();
1716
5260325f 1717 exit(0);
1718}
8efc0c15 1719
4f08e98d 1720/*
1721 * Decrypt session_key_int using our private server key and private host key
1722 * (key with larger modulus first).
1723 */
1853d1ef 1724int
4f08e98d 1725ssh1_session_key(BIGNUM *session_key_int)
1726{
1727 int rsafail = 0;
1728
1729 if (BN_cmp(sensitive_data.server_key->rsa->n, sensitive_data.ssh1_host_key->rsa->n) > 0) {
1730 /* Server key has bigger modulus. */
1731 if (BN_num_bits(sensitive_data.server_key->rsa->n) <
1732 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1733 fatal("do_connection: %s: server_key %d < host_key %d + SSH_KEY_BITS_RESERVED %d",
1734 get_remote_ipaddr(),
1735 BN_num_bits(sensitive_data.server_key->rsa->n),
1736 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1737 SSH_KEY_BITS_RESERVED);
1738 }
1739 if (rsa_private_decrypt(session_key_int, session_key_int,
1740 sensitive_data.server_key->rsa) <= 0)
1741 rsafail++;
1742 if (rsa_private_decrypt(session_key_int, session_key_int,
1743 sensitive_data.ssh1_host_key->rsa) <= 0)
1744 rsafail++;
1745 } else {
1746 /* Host key has bigger modulus (or they are equal). */
1747 if (BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) <
1748 BN_num_bits(sensitive_data.server_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1749 fatal("do_connection: %s: host_key %d < server_key %d + SSH_KEY_BITS_RESERVED %d",
1750 get_remote_ipaddr(),
1751 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1752 BN_num_bits(sensitive_data.server_key->rsa->n),
1753 SSH_KEY_BITS_RESERVED);
1754 }
1755 if (rsa_private_decrypt(session_key_int, session_key_int,
1756 sensitive_data.ssh1_host_key->rsa) < 0)
1757 rsafail++;
1758 if (rsa_private_decrypt(session_key_int, session_key_int,
1759 sensitive_data.server_key->rsa) < 0)
1760 rsafail++;
1761 }
1762 return (rsafail);
1763}
5260325f 1764/*
7b2ea3a1 1765 * SSH1 key exchange
5260325f 1766 */
396c147e 1767static void
1e3b8b07 1768do_ssh1_kex(void)
8efc0c15 1769{
5260325f 1770 int i, len;
46aa2d1f 1771 int rsafail = 0;
5260325f 1772 BIGNUM *session_key_int;
1e3b8b07 1773 u_char session_key[SSH_SESSION_KEY_LENGTH];
1774 u_char cookie[8];
1775 u_int cipher_type, auth_mask, protocol_flags;
7fdc56c5 1776 u_int32_t rnd = 0;
5260325f 1777
aa3378df 1778 /*
1779 * Generate check bytes that the client must send back in the user
1780 * packet in order for it to be accepted; this is used to defy ip
1781 * spoofing attacks. Note that this only works against somebody
1782 * doing IP spoofing from a remote machine; any machine on the local
1783 * network can still see outgoing packets and catch the random
1784 * cookie. This only affects rhosts authentication, and this is one
1785 * of the reasons why it is inherently insecure.
1786 */
5260325f 1787 for (i = 0; i < 8; i++) {
1788 if (i % 4 == 0)
7fdc56c5 1789 rnd = arc4random();
1790 cookie[i] = rnd & 0xff;
1791 rnd >>= 8;
5260325f 1792 }
1793
aa3378df 1794 /*
1795 * Send our public key. We include in the packet 64 bits of random
1796 * data that must be matched in the reply in order to prevent IP
1797 * spoofing.
1798 */
5260325f 1799 packet_start(SSH_SMSG_PUBLIC_KEY);
1800 for (i = 0; i < 8; i++)
7b2ea3a1 1801 packet_put_char(cookie[i]);
5260325f 1802
1803 /* Store our public server RSA key. */
fa08c86b 1804 packet_put_int(BN_num_bits(sensitive_data.server_key->rsa->n));
1805 packet_put_bignum(sensitive_data.server_key->rsa->e);
1806 packet_put_bignum(sensitive_data.server_key->rsa->n);
5260325f 1807
1808 /* Store our public host RSA key. */
fa08c86b 1809 packet_put_int(BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
1810 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->e);
1811 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->n);
5260325f 1812
1813 /* Put protocol flags. */
1814 packet_put_int(SSH_PROTOFLAG_HOST_IN_FWD_OPEN);
1815
1816 /* Declare which ciphers we support. */
94ec8c6b 1817 packet_put_int(cipher_mask_ssh1(0));
5260325f 1818
1819 /* Declare supported authentication types. */
1820 auth_mask = 0;
5260325f 1821 if (options.rhosts_rsa_authentication)
1822 auth_mask |= 1 << SSH_AUTH_RHOSTS_RSA;
1823 if (options.rsa_authentication)
1824 auth_mask |= 1 << SSH_AUTH_RSA;
5ba55ada 1825 if (options.challenge_response_authentication == 1)
5260325f 1826 auth_mask |= 1 << SSH_AUTH_TIS;
5260325f 1827 if (options.password_authentication)
1828 auth_mask |= 1 << SSH_AUTH_PASSWORD;
1829 packet_put_int(auth_mask);
1830
1831 /* Send the packet and wait for it to be sent. */
1832 packet_send();
1833 packet_write_wait();
1834
fa08c86b 1835 debug("Sent %d bit server key and %d bit host key.",
1836 BN_num_bits(sensitive_data.server_key->rsa->n),
1837 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
5260325f 1838
1839 /* Read clients reply (cipher type and session key). */
54a5250f 1840 packet_read_expect(SSH_CMSG_SESSION_KEY);
5260325f 1841
2d86a6cc 1842 /* Get cipher type and check whether we accept this. */
5260325f 1843 cipher_type = packet_get_char();
1844
94ec8c6b 1845 if (!(cipher_mask_ssh1(0) & (1 << cipher_type)))
2d86a6cc 1846 packet_disconnect("Warning: client selects unsupported cipher.");
1847
5260325f 1848 /* Get check bytes from the packet. These must match those we
1849 sent earlier with the public key packet. */
1850 for (i = 0; i < 8; i++)
7b2ea3a1 1851 if (cookie[i] != packet_get_char())
5260325f 1852 packet_disconnect("IP Spoofing check bytes do not match.");
1853
1854 debug("Encryption type: %.200s", cipher_name(cipher_type));
1855
1856 /* Get the encrypted integer. */
b775c6f2 1857 if ((session_key_int = BN_new()) == NULL)
1858 fatal("do_ssh1_kex: BN_new failed");
20b279e6 1859 packet_get_bignum(session_key_int);
5260325f 1860
5260325f 1861 protocol_flags = packet_get_int();
1862 packet_set_protocol_flags(protocol_flags);
95500969 1863 packet_check_eom();
5260325f 1864
4f08e98d 1865 /* Decrypt session_key_int using host/server keys */
1853d1ef 1866 rsafail = PRIVSEP(ssh1_session_key(session_key_int));
1867
aa3378df 1868 /*
1869 * Extract session key from the decrypted integer. The key is in the
1870 * least significant 256 bits of the integer; the first byte of the
1871 * key is in the highest bits.
1872 */
46aa2d1f 1873 if (!rsafail) {
1874 BN_mask_bits(session_key_int, sizeof(session_key) * 8);
1875 len = BN_num_bytes(session_key_int);
1876 if (len < 0 || len > sizeof(session_key)) {
1877 error("do_connection: bad session key len from %s: "
5ca51e19 1878 "session_key_int %d > sizeof(session_key) %lu",
1879 get_remote_ipaddr(), len, (u_long)sizeof(session_key));
46aa2d1f 1880 rsafail++;
1881 } else {
1882 memset(session_key, 0, sizeof(session_key));
1883 BN_bn2bin(session_key_int,
1884 session_key + sizeof(session_key) - len);
00be5382 1885
8bbf1fa6 1886 derive_ssh1_session_id(
1887 sensitive_data.ssh1_host_key->rsa->n,
1888 sensitive_data.server_key->rsa->n,
1889 cookie, session_id);
00be5382 1890 /*
1891 * Xor the first 16 bytes of the session key with the
1892 * session id.
1893 */
1894 for (i = 0; i < 16; i++)
1895 session_key[i] ^= session_id[i];
46aa2d1f 1896 }
1897 }
1898 if (rsafail) {
00be5382 1899 int bytes = BN_num_bytes(session_key_int);
f6b1ba8f 1900 u_char *buf = xmalloc(bytes);
00be5382 1901 MD5_CTX md;
1902
bbe88b6d 1903 logit("do_connection: generating a fake encryption key");
00be5382 1904 BN_bn2bin(session_key_int, buf);
1905 MD5_Init(&md);
1906 MD5_Update(&md, buf, bytes);
1907 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1908 MD5_Final(session_key, &md);
1909 MD5_Init(&md);
1910 MD5_Update(&md, session_key, 16);
1911 MD5_Update(&md, buf, bytes);
1912 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1913 MD5_Final(session_key + 16, &md);
1914 memset(buf, 0, bytes);
1915 xfree(buf);
0572fe75 1916 for (i = 0; i < 16; i++)
1917 session_id[i] = session_key[i] ^ session_key[i + 16];
46aa2d1f 1918 }
1853d1ef 1919 /* Destroy the private and public keys. No longer. */
63284fbb 1920 destroy_sensitive_data();
00be5382 1921
1853d1ef 1922 if (use_privsep)
1923 mm_ssh1_session_id(session_id);
1924
7b2ea3a1 1925 /* Destroy the decrypted integer. It is no longer needed. */
1926 BN_clear_free(session_key_int);
1927
5260325f 1928 /* Set the session key. From this on all communications will be encrypted. */
1929 packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, cipher_type);
1930
1931 /* Destroy our copy of the session key. It is no longer needed. */
1932 memset(session_key, 0, sizeof(session_key));
1933
1934 debug("Received session key; encryption turned on.");
1935
c242fc96 1936 /* Send an acknowledgment packet. Note that this packet is sent encrypted. */
5260325f 1937 packet_start(SSH_SMSG_SUCCESS);
1938 packet_send();
1939 packet_write_wait();
5260325f 1940}
e78a59f5 1941
1942/*
1943 * SSH2 key exchange: diffie-hellman-group1-sha1
1944 */
396c147e 1945static void
1e3b8b07 1946do_ssh2_kex(void)
e78a59f5 1947{
e78a59f5 1948 Kex *kex;
e78a59f5 1949
a8be9f80 1950 if (options.ciphers != NULL) {
6ae2364d 1951 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
a8be9f80 1952 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
1953 }
1ad64a93 1954 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
1955 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
1956 myproposal[PROPOSAL_ENC_ALGS_STOC] =
1957 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
1958
b2552997 1959 if (options.macs != NULL) {
1960 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
1961 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
1962 }
636f76ca 1963 if (!options.compression) {
1964 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
1965 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none";
1966 }
fa08c86b 1967 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = list_hostkey_types();
1968
7a37c112 1969 /* start key exchange */
d8ee838b 1970 kex = kex_setup(myproposal);
98a58eda 1971 kex->kex[KEX_DH_GRP1_SHA1] = kexdh_server;
41e5bd9a 1972 kex->kex[KEX_DH_GRP14_SHA1] = kexdh_server;
98a58eda 1973 kex->kex[KEX_DH_GEX_SHA1] = kexgex_server;
a5c9ffdb 1974 kex->server = 1;
1975 kex->client_version_string=client_version_string;
1976 kex->server_version_string=server_version_string;
1977 kex->load_host_key=&get_hostkey_by_type;
1853d1ef 1978 kex->host_key_index=&get_hostkey_index;
94ec8c6b 1979
7a37c112 1980 xxx_kex = kex;
1981
c422989b 1982 dispatch_run(DISPATCH_BLOCK, &kex->done, kex);
94ec8c6b 1983
d1ac6175 1984 session_id2 = kex->session_id;
1985 session_id2_len = kex->session_id_len;
1986
94ec8c6b 1987#ifdef DEBUG_KEXDH
1988 /* send 1st encrypted/maced/compressed message */
1989 packet_start(SSH2_MSG_IGNORE);
1990 packet_put_cstring("markus");
1991 packet_send();
1992 packet_write_wait();
1993#endif
a5c9ffdb 1994 debug("KEX done");
e78a59f5 1995}
2362db19 1996
1997/* server specific fatal cleanup */
1998void
1999cleanup_exit(int i)
2000{
2001 if (the_authctxt)
2002 do_cleanup(the_authctxt);
2003 _exit(i);
2004}
This page took 0.691257 seconds and 5 git commands to generate.