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