]> andersk Git - openssh.git/blame - sshd.c
- (djm) Added 'distprep' make target to simplify packaging
[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
5 * Created: Fri Mar 17 17:09:28 1995 ylo
6 * This program is the ssh daemon. It listens for connections from clients, and
7 * performs authentication, executes use commands or shell, and forwards
8 * information to/from the application to the user client over an encrypted
9 * connection. This can also handle forwarding of X11, TCP/IP, and authentication
10 * agent connections.
e78a59f5 11 *
12 * SSH2 implementation,
13 * Copyright (c) 2000 Markus Friedl. All rights reserved.
5260325f 14 */
8efc0c15 15
16#include "includes.h"
e5a0294f 17RCSID("$OpenBSD: sshd.c,v 1.119 2000/06/22 16:32:27 markus Exp $");
8efc0c15 18
19#include "xmalloc.h"
20#include "rsa.h"
21#include "ssh.h"
22#include "pty.h"
23#include "packet.h"
8efc0c15 24#include "cipher.h"
25#include "mpaux.h"
26#include "servconf.h"
27#include "uidswap.h"
28#include "compat.h"
7368a6c8 29#include "buffer.h"
30
e78a59f5 31#include "ssh2.h"
35484284 32#include <openssl/dh.h>
33#include <openssl/bn.h>
34#include <openssl/hmac.h>
e78a59f5 35#include "kex.h"
35484284 36#include <openssl/dsa.h>
37#include <openssl/rsa.h>
7368a6c8 38#include "key.h"
e78a59f5 39#include "dsa.h"
7368a6c8 40
41#include "auth.h"
e78a59f5 42#include "myproposal.h"
a306f2dd 43#include "authfile.h"
8efc0c15 44
45#ifdef LIBWRAP
46#include <tcpd.h>
47#include <syslog.h>
48int allow_severity = LOG_INFO;
49int deny_severity = LOG_WARNING;
50#endif /* LIBWRAP */
51
52#ifndef O_NOCTTY
53#define O_NOCTTY 0
54#endif
55
8efc0c15 56/* Server configuration options. */
57ServerOptions options;
58
59/* Name of the server configuration file. */
60char *config_file_name = SERVER_CONFIG_FILE;
61
6ae2364d 62/*
48e671d5 63 * Flag indicating whether IPv4 or IPv6. This can be set on the command line.
64 * Default value is AF_UNSPEC means both IPv4 and IPv6.
65 */
59e76f33 66#ifdef IPV4_DEFAULT
67int IPv4or6 = AF_INET;
68#else
48e671d5 69int IPv4or6 = AF_UNSPEC;
59e76f33 70#endif
48e671d5 71
5260325f 72/*
73 * Debug mode flag. This can be set on the command line. If debug
74 * mode is enabled, extra debugging output will be sent to the system
75 * log, the daemon will not go to background, and will exit after processing
76 * the first connection.
77 */
8efc0c15 78int debug_flag = 0;
79
80/* Flag indicating that the daemon is being started from inetd. */
81int inetd_flag = 0;
82
6a17f9c2 83/* debug goes to stderr unless inetd_flag is set */
84int log_stderr = 0;
85
8efc0c15 86/* argv[0] without path. */
87char *av0;
88
89/* Saved arguments to main(). */
90char **saved_argv;
91
aa3378df 92/*
48e671d5 93 * The sockets that the server is listening; this is used in the SIGHUP
94 * signal handler.
aa3378df 95 */
48e671d5 96#define MAX_LISTEN_SOCKS 16
97int listen_socks[MAX_LISTEN_SOCKS];
98int num_listen_socks = 0;
8efc0c15 99
aa3378df 100/*
101 * the client's version string, passed by sshd2 in compat mode. if != NULL,
102 * sshd will skip the version-number exchange
103 */
5260325f 104char *client_version_string = NULL;
7368a6c8 105char *server_version_string = NULL;
8efc0c15 106
aa3378df 107/*
108 * Any really sensitive data in the application is contained in this
109 * structure. The idea is that this structure could be locked into memory so
110 * that the pages do not get written into swap. However, there are some
111 * problems. The private key contains BIGNUMs, and we do not (in principle)
112 * have access to the internals of them, and locking just the structure is
113 * not very useful. Currently, memory locking is not implemented.
114 */
5260325f 115struct {
a306f2dd 116 RSA *private_key; /* Private part of empheral server key. */
5260325f 117 RSA *host_key; /* Private part of host key. */
a306f2dd 118 Key *dsa_host_key; /* Private DSA host key. */
8efc0c15 119} sensitive_data;
120
aa3378df 121/*
122 * Flag indicating whether the current session key has been used. This flag
123 * is set whenever the key is used, and cleared when the key is regenerated.
124 */
8efc0c15 125int key_used = 0;
126
127/* This is set to true when SIGHUP is received. */
128int received_sighup = 0;
129
130/* Public side of the server key. This value is regenerated regularly with
131 the private key. */
132RSA *public_key;
133
7368a6c8 134/* session identifier, used by RSA-auth */
135unsigned char session_id[16];
e7c0f9d5 136
a306f2dd 137/* same for ssh2 */
138unsigned char *session_id2 = NULL;
139int session_id2_len = 0;
140
7368a6c8 141/* Prototypes for various functions defined later in this file. */
142void do_ssh1_kex();
e78a59f5 143void do_ssh2_kex();
c8d54615 144
48e671d5 145/*
146 * Close all listening sockets
147 */
148void
149close_listen_socks(void)
150{
151 int i;
152 for (i = 0; i < num_listen_socks; i++)
153 close(listen_socks[i]);
154 num_listen_socks = -1;
155}
156
5260325f 157/*
158 * Signal handler for SIGHUP. Sshd execs itself when it receives SIGHUP;
159 * the effect is to reread the configuration file (and to regenerate
160 * the server key).
161 */
6ae2364d 162void
5260325f 163sighup_handler(int sig)
8efc0c15 164{
5260325f 165 received_sighup = 1;
166 signal(SIGHUP, sighup_handler);
8efc0c15 167}
168
5260325f 169/*
170 * Called from the main program after receiving SIGHUP.
171 * Restarts the server.
172 */
6ae2364d 173void
5260325f 174sighup_restart()
8efc0c15 175{
5260325f 176 log("Received SIGHUP; restarting.");
48e671d5 177 close_listen_socks();
5260325f 178 execv(saved_argv[0], saved_argv);
179 log("RESTART FAILED: av0='%s', error: %s.", av0, strerror(errno));
180 exit(1);
8efc0c15 181}
182
5260325f 183/*
184 * Generic signal handler for terminating signals in the master daemon.
185 * These close the listen socket; not closing it seems to cause "Address
186 * already in use" problems on some machines, which is inconvenient.
187 */
6ae2364d 188void
5260325f 189sigterm_handler(int sig)
8efc0c15 190{
5260325f 191 log("Received signal %d; terminating.", sig);
48e671d5 192 close_listen_socks();
0fbe8c74 193 unlink(options.pid_file);
5260325f 194 exit(255);
8efc0c15 195}
196
5260325f 197/*
198 * SIGCHLD handler. This is called whenever a child dies. This will then
199 * reap any zombies left by exited c.
200 */
6ae2364d 201void
5260325f 202main_sigchld_handler(int sig)
8efc0c15 203{
5260325f 204 int save_errno = errno;
205 int status;
5ad13cd7 206
5260325f 207 while (waitpid(-1, &status, WNOHANG) > 0)
208 ;
5ad13cd7 209
5260325f 210 signal(SIGCHLD, main_sigchld_handler);
211 errno = save_errno;
8efc0c15 212}
213
5260325f 214/*
215 * Signal handler for the alarm after the login grace period has expired.
216 */
6ae2364d 217void
5260325f 218grace_alarm_handler(int sig)
8efc0c15 219{
5260325f 220 /* Close the connection. */
221 packet_close();
8efc0c15 222
5260325f 223 /* Log error and exit. */
224 fatal("Timeout before authentication for %s.", get_remote_ipaddr());
225}
8efc0c15 226
5260325f 227/*
228 * Signal handler for the key regeneration alarm. Note that this
229 * alarm only occurs in the daemon waiting for connections, and it does not
230 * do anything with the private key or random state before forking.
231 * Thus there should be no concurrency control/asynchronous execution
232 * problems.
233 */
a306f2dd 234/* XXX do we really want this work to be done in a signal handler ? -m */
6ae2364d 235void
5260325f 236key_regeneration_alarm(int sig)
237{
238 int save_errno = errno;
239
240 /* Check if we should generate a new key. */
241 if (key_used) {
242 /* This should really be done in the background. */
243 log("Generating new %d bit RSA key.", options.server_key_bits);
244
245 if (sensitive_data.private_key != NULL)
246 RSA_free(sensitive_data.private_key);
247 sensitive_data.private_key = RSA_new();
248
249 if (public_key != NULL)
250 RSA_free(public_key);
251 public_key = RSA_new();
252
253 rsa_generate_key(sensitive_data.private_key, public_key,
254 options.server_key_bits);
255 arc4random_stir();
256 key_used = 0;
257 log("RSA key generation complete.");
258 }
259 /* Reschedule the alarm. */
260 signal(SIGALRM, key_regeneration_alarm);
261 alarm(options.key_regeneration_time);
262 errno = save_errno;
263}
8efc0c15 264
7368a6c8 265void
266sshd_exchange_identification(int sock_in, int sock_out)
267{
a8be9f80 268 int i, mismatch;
7368a6c8 269 int remote_major, remote_minor;
a8be9f80 270 int major, minor;
7368a6c8 271 char *s;
272 char buf[256]; /* Must not be larger than remote_version. */
273 char remote_version[256]; /* Must be at least as big as buf. */
274
a8be9f80 275 if ((options.protocol & SSH_PROTO_1) &&
276 (options.protocol & SSH_PROTO_2)) {
277 major = PROTOCOL_MAJOR_1;
278 minor = 99;
279 } else if (options.protocol & SSH_PROTO_2) {
280 major = PROTOCOL_MAJOR_2;
281 minor = PROTOCOL_MINOR_2;
282 } else {
283 major = PROTOCOL_MAJOR_1;
284 minor = PROTOCOL_MINOR_1;
285 }
286 snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n", major, minor, SSH_VERSION);
7368a6c8 287 server_version_string = xstrdup(buf);
288
289 if (client_version_string == NULL) {
290 /* Send our protocol version identification. */
291 if (atomicio(write, sock_out, server_version_string, strlen(server_version_string))
292 != strlen(server_version_string)) {
293 log("Could not write ident string to %s.", get_remote_ipaddr());
294 fatal_cleanup();
295 }
296
297 /* Read other side\'s version identification. */
298 for (i = 0; i < sizeof(buf) - 1; i++) {
e5a0294f 299 if (atomicio(read, sock_in, &buf[i], 1) != 1) {
7368a6c8 300 log("Did not receive ident string from %s.", get_remote_ipaddr());
301 fatal_cleanup();
302 }
303 if (buf[i] == '\r') {
304 buf[i] = '\n';
305 buf[i + 1] = 0;
306 continue;
7368a6c8 307 }
308 if (buf[i] == '\n') {
309 /* buf[i] == '\n' */
310 buf[i + 1] = 0;
311 break;
312 }
313 }
314 buf[sizeof(buf) - 1] = 0;
315 client_version_string = xstrdup(buf);
316 }
317
318 /*
319 * Check that the versions match. In future this might accept
320 * several versions and set appropriate flags to handle them.
321 */
322 if (sscanf(client_version_string, "SSH-%d.%d-%[^\n]\n",
323 &remote_major, &remote_minor, remote_version) != 3) {
6ae2364d 324 s = "Protocol mismatch.\n";
7368a6c8 325 (void) atomicio(write, sock_out, s, strlen(s));
326 close(sock_in);
327 close(sock_out);
328 log("Bad protocol version identification '%.100s' from %s",
329 client_version_string, get_remote_ipaddr());
330 fatal_cleanup();
331 }
332 debug("Client protocol version %d.%d; client software version %.100s",
333 remote_major, remote_minor, remote_version);
334
e78a59f5 335 compat_datafellows(remote_version);
336
a8be9f80 337 mismatch = 0;
7368a6c8 338 switch(remote_major) {
339 case 1:
a306f2dd 340 if (remote_minor == 99) {
341 if (options.protocol & SSH_PROTO_2)
342 enable_compat20();
343 else
344 mismatch = 1;
345 break;
346 }
a8be9f80 347 if (!(options.protocol & SSH_PROTO_1)) {
348 mismatch = 1;
349 break;
350 }
7368a6c8 351 if (remote_minor < 3) {
352 packet_disconnect("Your ssh version is too old and"
353 "is no longer supported. Please install a newer version.");
354 } else if (remote_minor == 3) {
355 /* note that this disables agent-forwarding */
356 enable_compat13();
357 }
a8be9f80 358 break;
e78a59f5 359 case 2:
a8be9f80 360 if (options.protocol & SSH_PROTO_2) {
e78a59f5 361 enable_compat20();
362 break;
363 }
364 /* FALLTHROUGH */
6ae2364d 365 default:
a8be9f80 366 mismatch = 1;
367 break;
368 }
369 chop(server_version_string);
370 chop(client_version_string);
371 debug("Local version string %.200s", server_version_string);
372
373 if (mismatch) {
7368a6c8 374 s = "Protocol major versions differ.\n";
375 (void) atomicio(write, sock_out, s, strlen(s));
376 close(sock_in);
377 close(sock_out);
a8be9f80 378 log("Protocol major versions differ for %s: %.200s vs. %.200s",
379 get_remote_ipaddr(),
380 server_version_string, client_version_string);
7368a6c8 381 fatal_cleanup();
7368a6c8 382 }
a306f2dd 383 if (compat20)
384 packet_set_ssh2_format();
385}
386
387
388void
389destroy_sensitive_data(void)
390{
391 /* Destroy the private and public keys. They will no longer be needed. */
afa5ee68 392 if (public_key)
393 RSA_free(public_key);
394 if (sensitive_data.private_key)
395 RSA_free(sensitive_data.private_key);
396 if (sensitive_data.host_key)
397 RSA_free(sensitive_data.host_key);
a306f2dd 398 if (sensitive_data.dsa_host_key != NULL)
399 key_free(sensitive_data.dsa_host_key);
7368a6c8 400}
401
5260325f 402/*
403 * Main program for the daemon.
404 */
8efc0c15 405int
406main(int ac, char **av)
407{
5260325f 408 extern char *optarg;
409 extern int optind;
9da5c3c9 410 int opt, sock_in = 0, sock_out = 0, newsock, i, fdsetsz, on = 1;
411 pid_t pid;
48e671d5 412 socklen_t fromlen;
a306f2dd 413 int silent = 0;
48e671d5 414 fd_set *fdset;
415 struct sockaddr_storage from;
5260325f 416 const char *remote_ip;
417 int remote_port;
5260325f 418 FILE *f;
419 struct linger linger;
48e671d5 420 struct addrinfo *ai;
421 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
422 int listen_sock, maxfd;
5260325f 423
424 /* Save argv[0]. */
425 saved_argv = av;
426 if (strchr(av[0], '/'))
427 av0 = strrchr(av[0], '/') + 1;
428 else
429 av0 = av[0];
430
431 /* Initialize configuration options to their default values. */
432 initialize_server_options(&options);
433
434 /* Parse command-line arguments. */
a8be9f80 435 while ((opt = getopt(ac, av, "f:p:b:k:h:g:V:diqQ46")) != EOF) {
5260325f 436 switch (opt) {
48e671d5 437 case '4':
438 IPv4or6 = AF_INET;
439 break;
440 case '6':
441 IPv4or6 = AF_INET6;
442 break;
5260325f 443 case 'f':
444 config_file_name = optarg;
445 break;
446 case 'd':
447 debug_flag = 1;
448 options.log_level = SYSLOG_LEVEL_DEBUG;
449 break;
450 case 'i':
451 inetd_flag = 1;
452 break;
453 case 'Q':
a306f2dd 454 silent = 1;
5260325f 455 break;
456 case 'q':
457 options.log_level = SYSLOG_LEVEL_QUIET;
458 break;
459 case 'b':
460 options.server_key_bits = atoi(optarg);
461 break;
462 case 'p':
48e671d5 463 options.ports_from_cmdline = 1;
464 if (options.num_ports >= MAX_PORTS)
465 fatal("too many ports.\n");
466 options.ports[options.num_ports++] = atoi(optarg);
5260325f 467 break;
468 case 'g':
469 options.login_grace_time = atoi(optarg);
470 break;
471 case 'k':
472 options.key_regeneration_time = atoi(optarg);
473 break;
474 case 'h':
475 options.host_key_file = optarg;
476 break;
477 case 'V':
478 client_version_string = optarg;
479 /* only makes sense with inetd_flag, i.e. no listen() */
480 inetd_flag = 1;
481 break;
482 case '?':
483 default:
484 fprintf(stderr, "sshd version %s\n", SSH_VERSION);
485 fprintf(stderr, "Usage: %s [options]\n", av0);
486 fprintf(stderr, "Options:\n");
aa3378df 487 fprintf(stderr, " -f file Configuration file (default %s)\n", SERVER_CONFIG_FILE);
5260325f 488 fprintf(stderr, " -d Debugging mode\n");
489 fprintf(stderr, " -i Started from inetd\n");
490 fprintf(stderr, " -q Quiet (no logging)\n");
491 fprintf(stderr, " -p port Listen on the specified port (default: 22)\n");
492 fprintf(stderr, " -k seconds Regenerate server key every this many seconds (default: 3600)\n");
493 fprintf(stderr, " -g seconds Grace period for authentication (default: 300)\n");
494 fprintf(stderr, " -b bits Size of server RSA key (default: 768 bits)\n");
495 fprintf(stderr, " -h file File from which to read host key (default: %s)\n",
48e671d5 496 HOST_KEY_FILE);
497 fprintf(stderr, " -4 Use IPv4 only\n");
498 fprintf(stderr, " -6 Use IPv6 only\n");
5260325f 499 exit(1);
500 }
501 }
502
48e671d5 503 /*
504 * Force logging to stderr until we have loaded the private host
505 * key (unless started from inetd)
506 */
507 log_init(av0,
508 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
509 options.log_facility == -1 ? SYSLOG_FACILITY_AUTH : options.log_facility,
a306f2dd 510 !silent && !inetd_flag);
48e671d5 511
5260325f 512 /* Read server configuration options from the configuration file. */
513 read_server_config(&options, config_file_name);
514
515 /* Fill in default values for those options not explicitly set. */
516 fill_default_server_options(&options);
517
5260325f 518 /* Check that there are no remaining arguments. */
519 if (optind < ac) {
520 fprintf(stderr, "Extra argument %s.\n", av[optind]);
521 exit(1);
8efc0c15 522 }
5260325f 523
524 debug("sshd version %.100s", SSH_VERSION);
525
a306f2dd 526 sensitive_data.dsa_host_key = NULL;
527 sensitive_data.host_key = NULL;
528
529 /* check if RSA support exists */
530 if ((options.protocol & SSH_PROTO_1) &&
531 rsa_alive() == 0) {
532 log("no RSA support in libssl and libcrypto. See ssl(8)");
533 log("Disabling protocol version 1");
534 options.protocol &= ~SSH_PROTO_1;
535 }
536 /* Load the RSA/DSA host key. It must have empty passphrase. */
537 if (options.protocol & SSH_PROTO_1) {
538 Key k;
539 sensitive_data.host_key = RSA_new();
540 k.type = KEY_RSA;
541 k.rsa = sensitive_data.host_key;
542 errno = 0;
543 if (!load_private_key(options.host_key_file, "", &k, NULL)) {
544 error("Could not load host key: %.200s: %.100s",
545 options.host_key_file, strerror(errno));
546 log("Disabling protocol version 1");
547 options.protocol &= ~SSH_PROTO_1;
548 }
549 k.rsa = NULL;
550 }
551 if (options.protocol & SSH_PROTO_2) {
552 sensitive_data.dsa_host_key = key_new(KEY_DSA);
1d1ffb87 553 if (!load_private_key(options.host_dsa_key_file, "", sensitive_data.dsa_host_key, NULL)) {
554
555 error("Could not load DSA host key: %.200s", options.host_dsa_key_file);
a306f2dd 556 log("Disabling protocol version 2");
557 options.protocol &= ~SSH_PROTO_2;
558 }
559 }
560 if (! options.protocol & (SSH_PROTO_1|SSH_PROTO_2)) {
561 if (silent == 0)
562 fprintf(stderr, "sshd: no hostkeys available -- exiting.\n");
563 log("sshd: no hostkeys available -- exiting.\n");
5260325f 564 exit(1);
565 }
5260325f 566
a306f2dd 567 /* Check certain values for sanity. */
568 if (options.protocol & SSH_PROTO_1) {
569 if (options.server_key_bits < 512 ||
570 options.server_key_bits > 32768) {
571 fprintf(stderr, "Bad server key size.\n");
572 exit(1);
573 }
574 /*
575 * Check that server and host key lengths differ sufficiently. This
576 * is necessary to make double encryption work with rsaref. Oh, I
577 * hate software patents. I dont know if this can go? Niels
578 */
579 if (options.server_key_bits >
580 BN_num_bits(sensitive_data.host_key->n) - SSH_KEY_BITS_RESERVED &&
581 options.server_key_bits <
582 BN_num_bits(sensitive_data.host_key->n) + SSH_KEY_BITS_RESERVED) {
583 options.server_key_bits =
584 BN_num_bits(sensitive_data.host_key->n) + SSH_KEY_BITS_RESERVED;
585 debug("Forcing server key to %d bits to make it differ from host key.",
586 options.server_key_bits);
587 }
588 }
589
590 /* Initialize the log (it is reinitialized below in case we forked). */
5260325f 591 if (debug_flag && !inetd_flag)
592 log_stderr = 1;
593 log_init(av0, options.log_level, options.log_facility, log_stderr);
594
a306f2dd 595 /*
596 * If not in debugging mode, and not started from inetd, disconnect
597 * from the controlling terminal, and fork. The original process
598 * exits.
599 */
5260325f 600 if (!debug_flag && !inetd_flag) {
8efc0c15 601#ifdef TIOCNOTTY
5260325f 602 int fd;
8efc0c15 603#endif /* TIOCNOTTY */
5260325f 604 if (daemon(0, 0) < 0)
605 fatal("daemon() failed: %.200s", strerror(errno));
606
607 /* Disconnect from the controlling tty. */
8efc0c15 608#ifdef TIOCNOTTY
5260325f 609 fd = open("/dev/tty", O_RDWR | O_NOCTTY);
610 if (fd >= 0) {
611 (void) ioctl(fd, TIOCNOTTY, NULL);
612 close(fd);
613 }
8efc0c15 614#endif /* TIOCNOTTY */
8efc0c15 615 }
5260325f 616 /* Reinitialize the log (because of the fork above). */
617 log_init(av0, options.log_level, options.log_facility, log_stderr);
618
5260325f 619 /* Do not display messages to stdout in RSA code. */
620 rsa_set_verbose(0);
621
622 /* Initialize the random number generator. */
623 arc4random_stir();
624
625 /* Chdir to the root directory so that the current disk can be
626 unmounted if desired. */
627 chdir("/");
628
5260325f 629 /* Start listening for a socket, unless started from inetd. */
630 if (inetd_flag) {
631 int s1, s2;
632 s1 = dup(0); /* Make sure descriptors 0, 1, and 2 are in use. */
633 s2 = dup(s1);
634 sock_in = dup(0);
635 sock_out = dup(1);
a306f2dd 636 /*
637 * We intentionally do not close the descriptors 0, 1, and 2
638 * as our code for setting the descriptors won\'t work if
639 * ttyfd happens to be one of those.
640 */
5260325f 641 debug("inetd sockets after dupping: %d, %d", sock_in, sock_out);
642
a306f2dd 643 if (options.protocol & SSH_PROTO_1) {
644 public_key = RSA_new();
645 sensitive_data.private_key = RSA_new();
646 log("Generating %d bit RSA key.", options.server_key_bits);
647 rsa_generate_key(sensitive_data.private_key, public_key,
648 options.server_key_bits);
649 arc4random_stir();
650 log("RSA key generation complete.");
651 }
5260325f 652 } else {
48e671d5 653 for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
654 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
655 continue;
656 if (num_listen_socks >= MAX_LISTEN_SOCKS)
657 fatal("Too many listen sockets. "
658 "Enlarge MAX_LISTEN_SOCKS");
659 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
660 ntop, sizeof(ntop), strport, sizeof(strport),
661 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
662 error("getnameinfo failed");
663 continue;
664 }
665 /* Create socket for listening. */
666 listen_sock = socket(ai->ai_family, SOCK_STREAM, 0);
667 if (listen_sock < 0) {
668 /* kernel may not support ipv6 */
669 verbose("socket: %.100s", strerror(errno));
670 continue;
671 }
672 if (fcntl(listen_sock, F_SETFL, O_NONBLOCK) < 0) {
673 error("listen_sock O_NONBLOCK: %s", strerror(errno));
674 close(listen_sock);
675 continue;
676 }
677 /*
678 * Set socket options. We try to make the port
679 * reusable and have it close as fast as possible
680 * without waiting in unnecessary wait states on
681 * close.
682 */
683 setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
684 (void *) &on, sizeof(on));
685 linger.l_onoff = 1;
686 linger.l_linger = 5;
687 setsockopt(listen_sock, SOL_SOCKET, SO_LINGER,
688 (void *) &linger, sizeof(linger));
689
690 debug("Bind to port %s on %s.", strport, ntop);
691
692 /* Bind the socket to the desired port. */
16218745 693 if ((bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) &&
694 (!ai->ai_next)) {
48e671d5 695 error("Bind to port %s on %s failed: %.200s.",
696 strport, ntop, strerror(errno));
697 close(listen_sock);
698 continue;
699 }
700 listen_socks[num_listen_socks] = listen_sock;
701 num_listen_socks++;
702
703 /* Start listening on the port. */
704 log("Server listening on %s port %s.", ntop, strport);
705 if (listen(listen_sock, 5) < 0)
706 fatal("listen: %.100s", strerror(errno));
707
5260325f 708 }
48e671d5 709 freeaddrinfo(options.listen_addrs);
710
711 if (!num_listen_socks)
712 fatal("Cannot bind any address.");
713
5260325f 714 if (!debug_flag) {
aa3378df 715 /*
716 * Record our pid in /etc/sshd_pid to make it easier
717 * to kill the correct sshd. We don\'t want to do
718 * this before the bind above because the bind will
719 * fail if there already is a daemon, and this will
720 * overwrite any old pid in the file.
721 */
0fbe8c74 722 f = fopen(options.pid_file, "w");
5260325f 723 if (f) {
724 fprintf(f, "%u\n", (unsigned int) getpid());
725 fclose(f);
726 }
8efc0c15 727 }
a306f2dd 728 if (options.protocol & SSH_PROTO_1) {
729 public_key = RSA_new();
730 sensitive_data.private_key = RSA_new();
8efc0c15 731
a306f2dd 732 log("Generating %d bit RSA key.", options.server_key_bits);
733 rsa_generate_key(sensitive_data.private_key, public_key,
734 options.server_key_bits);
735 arc4random_stir();
736 log("RSA key generation complete.");
5260325f 737
a306f2dd 738 /* Schedule server key regeneration alarm. */
739 signal(SIGALRM, key_regeneration_alarm);
740 alarm(options.key_regeneration_time);
741 }
5260325f 742
743 /* Arrange to restart on SIGHUP. The handler needs listen_sock. */
744 signal(SIGHUP, sighup_handler);
745 signal(SIGTERM, sigterm_handler);
746 signal(SIGQUIT, sigterm_handler);
747
748 /* Arrange SIGCHLD to be caught. */
749 signal(SIGCHLD, main_sigchld_handler);
750
48e671d5 751 /* setup fd set for listen */
752 maxfd = 0;
753 for (i = 0; i < num_listen_socks; i++)
754 if (listen_socks[i] > maxfd)
755 maxfd = listen_socks[i];
6ae2364d 756 fdsetsz = howmany(maxfd, NFDBITS) * sizeof(fd_mask);
757 fdset = (fd_set *)xmalloc(fdsetsz);
48e671d5 758
aa3378df 759 /*
760 * Stay listening for connections until the system crashes or
761 * the daemon is killed with a signal.
762 */
5260325f 763 for (;;) {
764 if (received_sighup)
765 sighup_restart();
48e671d5 766 /* Wait in select until there is a connection. */
767 memset(fdset, 0, fdsetsz);
768 for (i = 0; i < num_listen_socks; i++)
769 FD_SET(listen_socks[i], fdset);
770 if (select(maxfd + 1, fdset, NULL, NULL, NULL) < 0) {
771 if (errno != EINTR)
772 error("select: %.100s", strerror(errno));
2d86a6cc 773 continue;
48e671d5 774 }
775 for (i = 0; i < num_listen_socks; i++) {
776 if (!FD_ISSET(listen_socks[i], fdset))
5260325f 777 continue;
48e671d5 778 fromlen = sizeof(from);
779 newsock = accept(listen_socks[i], (struct sockaddr *)&from,
780 &fromlen);
781 if (newsock < 0) {
782 if (errno != EINTR && errno != EWOULDBLOCK)
783 error("accept: %.100s", strerror(errno));
784 continue;
785 }
786 if (fcntl(newsock, F_SETFL, 0) < 0) {
787 error("newsock del O_NONBLOCK: %s", strerror(errno));
5260325f 788 continue;
789 }
aa3378df 790 /*
791 * Got connection. Fork a child to handle it, unless
792 * we are in debugging mode.
793 */
5260325f 794 if (debug_flag) {
aa3378df 795 /*
796 * In debugging mode. Close the listening
797 * socket, and start processing the
798 * connection without forking.
799 */
5260325f 800 debug("Server will not fork when running in debugging mode.");
48e671d5 801 close_listen_socks();
5260325f 802 sock_in = newsock;
803 sock_out = newsock;
804 pid = getpid();
805 break;
806 } else {
aa3378df 807 /*
808 * Normal production daemon. Fork, and have
809 * the child process the connection. The
810 * parent continues listening.
811 */
5260325f 812 if ((pid = fork()) == 0) {
aa3378df 813 /*
814 * Child. Close the listening socket, and start using the
815 * accepted socket. Reinitialize logging (since our pid has
816 * changed). We break out of the loop to handle the connection.
817 */
48e671d5 818 close_listen_socks();
5260325f 819 sock_in = newsock;
820 sock_out = newsock;
821 log_init(av0, options.log_level, options.log_facility, log_stderr);
822 break;
823 }
824 }
825
826 /* Parent. Stay in the loop. */
827 if (pid < 0)
828 error("fork: %.100s", strerror(errno));
829 else
830 debug("Forked child %d.", pid);
831
832 /* Mark that the key has been used (it was "given" to the child). */
833 key_used = 1;
834
835 arc4random_stir();
836
837 /* Close the new socket (the child is now taking care of it). */
838 close(newsock);
48e671d5 839 } /* for (i = 0; i < num_listen_socks; i++) */
840 /* child process check (or debug mode) */
841 if (num_listen_socks < 0)
842 break;
5260325f 843 }
844 }
8efc0c15 845
5260325f 846 /* This is the child processing a new connection. */
847
aa3378df 848 /*
849 * Disable the key regeneration alarm. We will not regenerate the
850 * key since we are no longer in a position to give it to anyone. We
851 * will not restart on SIGHUP since it no longer makes sense.
852 */
5260325f 853 alarm(0);
854 signal(SIGALRM, SIG_DFL);
855 signal(SIGHUP, SIG_DFL);
856 signal(SIGTERM, SIG_DFL);
857 signal(SIGQUIT, SIG_DFL);
858 signal(SIGCHLD, SIG_DFL);
859
aa3378df 860 /*
861 * Set socket options for the connection. We want the socket to
862 * close as fast as possible without waiting for anything. If the
863 * connection is not a socket, these will do nothing.
864 */
865 /* setsockopt(sock_in, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on)); */
5260325f 866 linger.l_onoff = 1;
867 linger.l_linger = 5;
868 setsockopt(sock_in, SOL_SOCKET, SO_LINGER, (void *) &linger, sizeof(linger));
869
aa3378df 870 /*
871 * Register our connection. This turns encryption off because we do
872 * not have a key.
873 */
5260325f 874 packet_set_connection(sock_in, sock_out);
875
876 remote_port = get_remote_port();
877 remote_ip = get_remote_ipaddr();
878
879 /* Check whether logins are denied from this host. */
880#ifdef LIBWRAP
48e671d5 881 /* XXX LIBWRAP noes not know about IPv6 */
5260325f 882 {
883 struct request_info req;
8efc0c15 884
5260325f 885 request_init(&req, RQ_DAEMON, av0, RQ_FILE, sock_in, NULL);
886 fromhost(&req);
8efc0c15 887
5260325f 888 if (!hosts_access(&req)) {
889 close(sock_in);
890 close(sock_out);
891 refuse(&req);
892 }
48e671d5 893/*XXX IPv6 verbose("Connection from %.500s port %d", eval_client(&req), remote_port); */
8efc0c15 894 }
48e671d5 895#endif /* LIBWRAP */
5260325f 896 /* Log the connection. */
897 verbose("Connection from %.500s port %d", remote_ip, remote_port);
8efc0c15 898
aa3378df 899 /*
900 * We don\'t want to listen forever unless the other side
901 * successfully authenticates itself. So we set up an alarm which is
902 * cleared after successful authentication. A limit of zero
903 * indicates no limit. Note that we don\'t set the alarm in debugging
904 * mode; it is just annoying to have the server exit just when you
905 * are about to discover the bug.
906 */
5260325f 907 signal(SIGALRM, grace_alarm_handler);
908 if (!debug_flag)
909 alarm(options.login_grace_time);
910
7368a6c8 911 sshd_exchange_identification(sock_in, sock_out);
aa3378df 912 /*
913 * Check that the connection comes from a privileged port. Rhosts-
914 * and Rhosts-RSA-Authentication only make sense from priviledged
915 * programs. Of course, if the intruder has root access on his local
916 * machine, he can connect from any port. So do not use these
917 * authentication methods from machines that you do not trust.
918 */
5260325f 919 if (remote_port >= IPPORT_RESERVED ||
920 remote_port < IPPORT_RESERVED / 2) {
921 options.rhosts_authentication = 0;
922 options.rhosts_rsa_authentication = 0;
923 }
48e671d5 924#ifdef KRB4
925 if (!packet_connection_is_ipv4() &&
926 options.kerberos_authentication) {
927 debug("Kerberos Authentication disabled, only available for IPv4.");
928 options.kerberos_authentication = 0;
929 }
930#endif /* KRB4 */
931
5260325f 932 packet_set_nonblocking();
933
7b2ea3a1 934 /* perform the key exchange */
7b2ea3a1 935 /* authenticate user and start session */
e78a59f5 936 if (compat20) {
937 do_ssh2_kex();
938 do_authentication2();
939 } else {
940 do_ssh1_kex();
941 do_authentication();
942 }
8efc0c15 943
944#ifdef KRB4
5260325f 945 /* Cleanup user's ticket cache file. */
946 if (options.kerberos_ticket_cleanup)
947 (void) dest_tkt();
8efc0c15 948#endif /* KRB4 */
949
5260325f 950 /* The connection has been terminated. */
951 verbose("Closing connection to %.100s", remote_ip);
8efc0c15 952
d94aa2ae 953#ifdef USE_PAM
a5c9cd31 954 finish_pam();
d94aa2ae 955#endif /* USE_PAM */
8efc0c15 956
5260325f 957 packet_close();
958 exit(0);
959}
8efc0c15 960
5260325f 961/*
7b2ea3a1 962 * SSH1 key exchange
5260325f 963 */
e7c0f9d5 964void
7368a6c8 965do_ssh1_kex()
8efc0c15 966{
5260325f 967 int i, len;
7b2ea3a1 968 int plen, slen;
5260325f 969 BIGNUM *session_key_int;
970 unsigned char session_key[SSH_SESSION_KEY_LENGTH];
7b2ea3a1 971 unsigned char cookie[8];
5260325f 972 unsigned int cipher_type, auth_mask, protocol_flags;
5260325f 973 u_int32_t rand = 0;
974
aa3378df 975 /*
976 * Generate check bytes that the client must send back in the user
977 * packet in order for it to be accepted; this is used to defy ip
978 * spoofing attacks. Note that this only works against somebody
979 * doing IP spoofing from a remote machine; any machine on the local
980 * network can still see outgoing packets and catch the random
981 * cookie. This only affects rhosts authentication, and this is one
982 * of the reasons why it is inherently insecure.
983 */
5260325f 984 for (i = 0; i < 8; i++) {
985 if (i % 4 == 0)
986 rand = arc4random();
7b2ea3a1 987 cookie[i] = rand & 0xff;
5260325f 988 rand >>= 8;
989 }
990
aa3378df 991 /*
992 * Send our public key. We include in the packet 64 bits of random
993 * data that must be matched in the reply in order to prevent IP
994 * spoofing.
995 */
5260325f 996 packet_start(SSH_SMSG_PUBLIC_KEY);
997 for (i = 0; i < 8; i++)
7b2ea3a1 998 packet_put_char(cookie[i]);
5260325f 999
1000 /* Store our public server RSA key. */
1001 packet_put_int(BN_num_bits(public_key->n));
1002 packet_put_bignum(public_key->e);
1003 packet_put_bignum(public_key->n);
1004
1005 /* Store our public host RSA key. */
1006 packet_put_int(BN_num_bits(sensitive_data.host_key->n));
1007 packet_put_bignum(sensitive_data.host_key->e);
1008 packet_put_bignum(sensitive_data.host_key->n);
1009
1010 /* Put protocol flags. */
1011 packet_put_int(SSH_PROTOFLAG_HOST_IN_FWD_OPEN);
1012
1013 /* Declare which ciphers we support. */
8ce64345 1014 packet_put_int(cipher_mask1());
5260325f 1015
1016 /* Declare supported authentication types. */
1017 auth_mask = 0;
1018 if (options.rhosts_authentication)
1019 auth_mask |= 1 << SSH_AUTH_RHOSTS;
1020 if (options.rhosts_rsa_authentication)
1021 auth_mask |= 1 << SSH_AUTH_RHOSTS_RSA;
1022 if (options.rsa_authentication)
1023 auth_mask |= 1 << SSH_AUTH_RSA;
8efc0c15 1024#ifdef KRB4
5260325f 1025 if (options.kerberos_authentication)
1026 auth_mask |= 1 << SSH_AUTH_KERBEROS;
8efc0c15 1027#endif
1028#ifdef AFS
5260325f 1029 if (options.kerberos_tgt_passing)
1030 auth_mask |= 1 << SSH_PASS_KERBEROS_TGT;
1031 if (options.afs_token_passing)
1032 auth_mask |= 1 << SSH_PASS_AFS_TOKEN;
8efc0c15 1033#endif
5260325f 1034#ifdef SKEY
1035 if (options.skey_authentication == 1)
1036 auth_mask |= 1 << SSH_AUTH_TIS;
1037#endif
1038 if (options.password_authentication)
1039 auth_mask |= 1 << SSH_AUTH_PASSWORD;
1040 packet_put_int(auth_mask);
1041
1042 /* Send the packet and wait for it to be sent. */
1043 packet_send();
1044 packet_write_wait();
1045
1046 debug("Sent %d bit public key and %d bit host key.",
1047 BN_num_bits(public_key->n), BN_num_bits(sensitive_data.host_key->n));
1048
1049 /* Read clients reply (cipher type and session key). */
1050 packet_read_expect(&plen, SSH_CMSG_SESSION_KEY);
1051
2d86a6cc 1052 /* Get cipher type and check whether we accept this. */
5260325f 1053 cipher_type = packet_get_char();
1054
6ae2364d 1055 if (!(cipher_mask() & (1 << cipher_type)))
2d86a6cc 1056 packet_disconnect("Warning: client selects unsupported cipher.");
1057
5260325f 1058 /* Get check bytes from the packet. These must match those we
1059 sent earlier with the public key packet. */
1060 for (i = 0; i < 8; i++)
7b2ea3a1 1061 if (cookie[i] != packet_get_char())
5260325f 1062 packet_disconnect("IP Spoofing check bytes do not match.");
1063
1064 debug("Encryption type: %.200s", cipher_name(cipher_type));
1065
1066 /* Get the encrypted integer. */
1067 session_key_int = BN_new();
1068 packet_get_bignum(session_key_int, &slen);
1069
5260325f 1070 protocol_flags = packet_get_int();
1071 packet_set_protocol_flags(protocol_flags);
1072
1073 packet_integrity_check(plen, 1 + 8 + slen + 4, SSH_CMSG_SESSION_KEY);
1074
aa3378df 1075 /*
1076 * Decrypt it using our private server key and private host key (key
1077 * with larger modulus first).
1078 */
5260325f 1079 if (BN_cmp(sensitive_data.private_key->n, sensitive_data.host_key->n) > 0) {
1080 /* Private key has bigger modulus. */
1081 if (BN_num_bits(sensitive_data.private_key->n) <
1082 BN_num_bits(sensitive_data.host_key->n) + SSH_KEY_BITS_RESERVED) {
1083 fatal("do_connection: %s: private_key %d < host_key %d + SSH_KEY_BITS_RESERVED %d",
1084 get_remote_ipaddr(),
1085 BN_num_bits(sensitive_data.private_key->n),
1086 BN_num_bits(sensitive_data.host_key->n),
1087 SSH_KEY_BITS_RESERVED);
1088 }
1089 rsa_private_decrypt(session_key_int, session_key_int,
1090 sensitive_data.private_key);
1091 rsa_private_decrypt(session_key_int, session_key_int,
1092 sensitive_data.host_key);
1093 } else {
1094 /* Host key has bigger modulus (or they are equal). */
1095 if (BN_num_bits(sensitive_data.host_key->n) <
1096 BN_num_bits(sensitive_data.private_key->n) + SSH_KEY_BITS_RESERVED) {
1097 fatal("do_connection: %s: host_key %d < private_key %d + SSH_KEY_BITS_RESERVED %d",
1098 get_remote_ipaddr(),
1099 BN_num_bits(sensitive_data.host_key->n),
1100 BN_num_bits(sensitive_data.private_key->n),
1101 SSH_KEY_BITS_RESERVED);
1102 }
1103 rsa_private_decrypt(session_key_int, session_key_int,
1104 sensitive_data.host_key);
1105 rsa_private_decrypt(session_key_int, session_key_int,
1106 sensitive_data.private_key);
1107 }
1108
7b2ea3a1 1109 compute_session_id(session_id, cookie,
5260325f 1110 sensitive_data.host_key->n,
1111 sensitive_data.private_key->n);
1112
7b2ea3a1 1113 /* Destroy the private and public keys. They will no longer be needed. */
a306f2dd 1114 destroy_sensitive_data();
7b2ea3a1 1115
aa3378df 1116 /*
1117 * Extract session key from the decrypted integer. The key is in the
1118 * least significant 256 bits of the integer; the first byte of the
1119 * key is in the highest bits.
1120 */
5260325f 1121 BN_mask_bits(session_key_int, sizeof(session_key) * 8);
1122 len = BN_num_bytes(session_key_int);
1123 if (len < 0 || len > sizeof(session_key))
1124 fatal("do_connection: bad len from %s: session_key_int %d > sizeof(session_key) %d",
1125 get_remote_ipaddr(),
1126 len, sizeof(session_key));
1127 memset(session_key, 0, sizeof(session_key));
1128 BN_bn2bin(session_key_int, session_key + sizeof(session_key) - len);
1129
7b2ea3a1 1130 /* Destroy the decrypted integer. It is no longer needed. */
1131 BN_clear_free(session_key_int);
1132
5260325f 1133 /* Xor the first 16 bytes of the session key with the session id. */
1134 for (i = 0; i < 16; i++)
1135 session_key[i] ^= session_id[i];
1136
5260325f 1137 /* Set the session key. From this on all communications will be encrypted. */
1138 packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, cipher_type);
1139
1140 /* Destroy our copy of the session key. It is no longer needed. */
1141 memset(session_key, 0, sizeof(session_key));
1142
1143 debug("Received session key; encryption turned on.");
1144
1145 /* Send an acknowledgement packet. Note that this packet is sent encrypted. */
1146 packet_start(SSH_SMSG_SUCCESS);
1147 packet_send();
1148 packet_write_wait();
5260325f 1149}
e78a59f5 1150
1151/*
1152 * SSH2 key exchange: diffie-hellman-group1-sha1
1153 */
1154void
1155do_ssh2_kex()
1156{
1157 Buffer *server_kexinit;
1158 Buffer *client_kexinit;
1159 int payload_len, dlen;
1160 int slen;
1161 unsigned int klen, kout;
e78a59f5 1162 unsigned char *signature = NULL;
1163 unsigned char *server_host_key_blob = NULL;
1164 unsigned int sbloblen;
1165 DH *dh;
1166 BIGNUM *dh_client_pub = 0;
1167 BIGNUM *shared_secret = 0;
1168 int i;
1169 unsigned char *kbuf;
1170 unsigned char *hash;
1171 Kex *kex;
e78a59f5 1172 char *cprop[PROPOSAL_MAX];
e78a59f5 1173
1174/* KEXINIT */
1175
a8be9f80 1176 if (options.ciphers != NULL) {
6ae2364d 1177 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
a8be9f80 1178 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
1179 }
71276795 1180 server_kexinit = kex_init(myproposal);
e78a59f5 1181 client_kexinit = xmalloc(sizeof(*client_kexinit));
1182 buffer_init(client_kexinit);
e78a59f5 1183
71276795 1184 /* algorithm negotiation */
1185 kex_exchange_kexinit(server_kexinit, client_kexinit, cprop);
1186 kex = kex_choose_conf(cprop, myproposal, 1);
1187 for (i = 0; i < PROPOSAL_MAX; i++)
1188 xfree(cprop[i]);
e78a59f5 1189
1190/* KEXDH */
1191
1192 debug("Wait SSH2_MSG_KEXDH_INIT.");
1193 packet_read_expect(&payload_len, SSH2_MSG_KEXDH_INIT);
1194
1195 /* key, cert */
1196 dh_client_pub = BN_new();
1197 if (dh_client_pub == NULL)
1198 fatal("dh_client_pub == NULL");
1199 packet_get_bignum2(dh_client_pub, &dlen);
1200
1201#ifdef DEBUG_KEXDH
1202 fprintf(stderr, "\ndh_client_pub= ");
1203 bignum_print(dh_client_pub);
1204 fprintf(stderr, "\n");
1205 debug("bits %d", BN_num_bits(dh_client_pub));
1206#endif
1207
1208 /* generate DH key */
a8be9f80 1209 dh = dh_new_group1(); /* XXX depends on 'kex' */
e78a59f5 1210
1211#ifdef DEBUG_KEXDH
1212 fprintf(stderr, "\np= ");
1213 bignum_print(dh->p);
1214 fprintf(stderr, "\ng= ");
1215 bignum_print(dh->g);
1216 fprintf(stderr, "\npub= ");
1217 bignum_print(dh->pub_key);
1218 fprintf(stderr, "\n");
1219#endif
a8be9f80 1220 if (!dh_pub_is_valid(dh, dh_client_pub))
1221 packet_disconnect("bad client public DH value");
e78a59f5 1222
1223 klen = DH_size(dh);
1224 kbuf = xmalloc(klen);
1225 kout = DH_compute_key(kbuf, dh_client_pub, dh);
1226
1227#ifdef DEBUG_KEXDH
1228 debug("shared secret: len %d/%d", klen, kout);
1229 fprintf(stderr, "shared secret == ");
1230 for (i = 0; i< kout; i++)
1231 fprintf(stderr, "%02x", (kbuf[i])&0xff);
1232 fprintf(stderr, "\n");
1233#endif
1234 shared_secret = BN_new();
1235
1236 BN_bin2bn(kbuf, kout, shared_secret);
1237 memset(kbuf, 0, klen);
1238 xfree(kbuf);
1239
a306f2dd 1240 /* XXX precompute? */
1241 dsa_make_key_blob(sensitive_data.dsa_host_key, &server_host_key_blob, &sbloblen);
e78a59f5 1242
1243 /* calc H */ /* XXX depends on 'kex' */
1244 hash = kex_hash(
1245 client_version_string,
1246 server_version_string,
1247 buffer_ptr(client_kexinit), buffer_len(client_kexinit),
1248 buffer_ptr(server_kexinit), buffer_len(server_kexinit),
1249 (char *)server_host_key_blob, sbloblen,
1250 dh_client_pub,
1251 dh->pub_key,
1252 shared_secret
1253 );
1254 buffer_free(client_kexinit);
1255 buffer_free(server_kexinit);
1256 xfree(client_kexinit);
1257 xfree(server_kexinit);
1258#ifdef DEBUG_KEXDH
6ae2364d 1259 fprintf(stderr, "hash == ");
1260 for (i = 0; i< 20; i++)
1261 fprintf(stderr, "%02x", (hash[i])&0xff);
1262 fprintf(stderr, "\n");
e78a59f5 1263#endif
a306f2dd 1264 /* save session id := H */
1265 /* XXX hashlen depends on KEX */
1266 session_id2_len = 20;
1267 session_id2 = xmalloc(session_id2_len);
1268 memcpy(session_id2, hash, session_id2_len);
1269
e78a59f5 1270 /* sign H */
a306f2dd 1271 /* XXX hashlen depends on KEX */
1272 dsa_sign(sensitive_data.dsa_host_key, &signature, &slen, hash, 20);
1273
1274 destroy_sensitive_data();
e78a59f5 1275
1276 /* send server hostkey, DH pubkey 'f' and singed H */
1277 packet_start(SSH2_MSG_KEXDH_REPLY);
1278 packet_put_string((char *)server_host_key_blob, sbloblen);
1d1ffb87 1279 packet_put_bignum2(dh->pub_key); /* f */
e78a59f5 1280 packet_put_string((char *)signature, slen);
1281 packet_send();
d6f24e45 1282 xfree(signature);
a306f2dd 1283 xfree(server_host_key_blob);
e78a59f5 1284 packet_write_wait();
1285
1286 kex_derive_keys(kex, hash, shared_secret);
1287 packet_set_kex(kex);
1288
1289 /* have keys, free DH */
1290 DH_free(dh);
1291
1292 debug("send SSH2_MSG_NEWKEYS.");
1293 packet_start(SSH2_MSG_NEWKEYS);
1294 packet_send();
1295 packet_write_wait();
1296 debug("done: send SSH2_MSG_NEWKEYS.");
1297
1298 debug("Wait SSH2_MSG_NEWKEYS.");
1299 packet_read_expect(&payload_len, SSH2_MSG_NEWKEYS);
1300 debug("GOT SSH2_MSG_NEWKEYS.");
1301
a8be9f80 1302#ifdef DEBUG_KEXDH
e78a59f5 1303 /* send 1st encrypted/maced/compressed message */
1304 packet_start(SSH2_MSG_IGNORE);
1305 packet_put_cstring("markus");
1306 packet_send();
1307 packet_write_wait();
a8be9f80 1308#endif
e78a59f5 1309 debug("done: KEX2.");
1310}
This page took 0.299016 seconds and 5 git commands to generate.