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