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