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