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