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