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