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