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