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