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