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