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