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