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