]> andersk Git - openssh.git/blame_incremental - sshd.c
- markus@cvs.openbsd.org 2001/07/25 14:35:18
[openssh.git] / sshd.c
... / ...
CommitLineData
1/*
2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
5 * This program is the ssh daemon. It listens for connections from clients,
6 * and performs authentication, executes use commands or shell, and forwards
7 * information to/from the application to the user client over an encrypted
8 * connection. This can also handle forwarding of X11, TCP/IP, and
9 * authentication agent connections.
10 *
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.
40 */
41
42#include "includes.h"
43RCSID("$OpenBSD: sshd.c,v 1.202 2001/06/26 16:15:25 dugsong Exp $");
44
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"
52#include "xmalloc.h"
53#include "rsa.h"
54#include "sshpty.h"
55#include "packet.h"
56#include "mpaux.h"
57#include "log.h"
58#include "servconf.h"
59#include "uidswap.h"
60#include "compat.h"
61#include "buffer.h"
62#include "cipher.h"
63#include "kex.h"
64#include "key.h"
65#include "dh.h"
66#include "myproposal.h"
67#include "authfile.h"
68#include "pathnames.h"
69#include "atomicio.h"
70#include "canohost.h"
71#include "auth.h"
72#include "misc.h"
73#include "dispatch.h"
74
75#ifdef LIBWRAP
76#include <tcpd.h>
77#include <syslog.h>
78int allow_severity = LOG_INFO;
79int deny_severity = LOG_WARNING;
80#endif /* LIBWRAP */
81
82#ifndef O_NOCTTY
83#define O_NOCTTY 0
84#endif
85
86#ifdef HAVE___PROGNAME
87extern char *__progname;
88#else
89char *__progname;
90#endif
91
92/* Server configuration options. */
93ServerOptions options;
94
95/* Name of the server configuration file. */
96char *config_file_name = _PATH_SERVER_CONFIG_FILE;
97
98/*
99 * Flag indicating whether IPv4 or IPv6. This can be set on the command line.
100 * Default value is AF_UNSPEC means both IPv4 and IPv6.
101 */
102#ifdef IPV4_DEFAULT
103int IPv4or6 = AF_INET;
104#else
105int IPv4or6 = AF_UNSPEC;
106#endif
107
108/*
109 * Debug mode flag. This can be set on the command line. If debug
110 * mode is enabled, extra debugging output will be sent to the system
111 * log, the daemon will not go to background, and will exit after processing
112 * the first connection.
113 */
114int debug_flag = 0;
115
116/* Flag indicating that the daemon is being started from inetd. */
117int inetd_flag = 0;
118
119/* Flag indicating that sshd should not detach and become a daemon. */
120int no_daemon_flag = 0;
121
122/* debug goes to stderr unless inetd_flag is set */
123int log_stderr = 0;
124
125/* Saved arguments to main(). */
126char **saved_argv;
127int saved_argc;
128
129/*
130 * The sockets that the server is listening; this is used in the SIGHUP
131 * signal handler.
132 */
133#define MAX_LISTEN_SOCKS 16
134int listen_socks[MAX_LISTEN_SOCKS];
135int num_listen_socks = 0;
136
137/*
138 * the client's version string, passed by sshd2 in compat mode. if != NULL,
139 * sshd will skip the version-number exchange
140 */
141char *client_version_string = NULL;
142char *server_version_string = NULL;
143
144/* for rekeying XXX fixme */
145Kex *xxx_kex;
146
147/*
148 * Any really sensitive data in the application is contained in this
149 * structure. The idea is that this structure could be locked into memory so
150 * that the pages do not get written into swap. However, there are some
151 * problems. The private key contains BIGNUMs, and we do not (in principle)
152 * have access to the internals of them, and locking just the structure is
153 * not very useful. Currently, memory locking is not implemented.
154 */
155struct {
156 Key *server_key; /* ephemeral server key */
157 Key *ssh1_host_key; /* ssh1 host key */
158 Key **host_keys; /* all private host keys */
159 int have_ssh1_key;
160 int have_ssh2_key;
161 u_char ssh1_cookie[SSH_SESSION_KEY_LENGTH];
162} sensitive_data;
163
164/*
165 * Flag indicating whether the RSA server key needs to be regenerated.
166 * Is set in the SIGALRM handler and cleared when the key is regenerated.
167 */
168int key_do_regen = 0;
169
170/* This is set to true when a signal is received. */
171int received_sighup = 0;
172int received_sigterm = 0;
173
174/* session identifier, used by RSA-auth */
175u_char session_id[16];
176
177/* same for ssh2 */
178u_char *session_id2 = NULL;
179int session_id2_len = 0;
180
181/* record remote hostname or ip */
182u_int utmp_len = MAXHOSTNAMELEN;
183
184/* Prototypes for various functions defined later in this file. */
185void destroy_sensitive_data(void);
186
187static void do_ssh1_kex(void);
188static void do_ssh2_kex(void);
189
190/*
191 * Close all listening sockets
192 */
193static void
194close_listen_socks(void)
195{
196 int i;
197 for (i = 0; i < num_listen_socks; i++)
198 close(listen_socks[i]);
199 num_listen_socks = -1;
200}
201
202/*
203 * Signal handler for SIGHUP. Sshd execs itself when it receives SIGHUP;
204 * the effect is to reread the configuration file (and to regenerate
205 * the server key).
206 */
207static void
208sighup_handler(int sig)
209{
210 received_sighup = 1;
211 signal(SIGHUP, sighup_handler);
212}
213
214/*
215 * Called from the main program after receiving SIGHUP.
216 * Restarts the server.
217 */
218static void
219sighup_restart(void)
220{
221 log("Received SIGHUP; restarting.");
222 close_listen_socks();
223 execv(saved_argv[0], saved_argv);
224 log("RESTART FAILED: av[0]='%.100s', error: %.100s.", saved_argv[0], strerror(errno));
225 exit(1);
226}
227
228/*
229 * Generic signal handler for terminating signals in the master daemon.
230 */
231static void
232sigterm_handler(int sig)
233{
234 received_sigterm = sig;
235}
236
237/*
238 * SIGCHLD handler. This is called whenever a child dies. This will then
239 * reap any zombies left by exited children.
240 */
241static void
242main_sigchld_handler(int sig)
243{
244 int save_errno = errno;
245 int status;
246
247 while (waitpid(-1, &status, WNOHANG) > 0)
248 ;
249
250 signal(SIGCHLD, main_sigchld_handler);
251 errno = save_errno;
252}
253
254/*
255 * Signal handler for the alarm after the login grace period has expired.
256 */
257static void
258grace_alarm_handler(int sig)
259{
260 /* XXX no idea how fix this signal handler */
261
262 /* Close the connection. */
263 packet_close();
264
265 /* Log error and exit. */
266 fatal("Timeout before authentication for %s.", get_remote_ipaddr());
267}
268
269/*
270 * Signal handler for the key regeneration alarm. Note that this
271 * alarm only occurs in the daemon waiting for connections, and it does not
272 * do anything with the private key or random state before forking.
273 * Thus there should be no concurrency control/asynchronous execution
274 * problems.
275 */
276static void
277generate_ephemeral_server_key(void)
278{
279 u_int32_t rand = 0;
280 int i;
281
282 verbose("Generating %s%d bit RSA key.",
283 sensitive_data.server_key ? "new " : "", options.server_key_bits);
284 if (sensitive_data.server_key != NULL)
285 key_free(sensitive_data.server_key);
286 sensitive_data.server_key = key_generate(KEY_RSA1,
287 options.server_key_bits);
288 verbose("RSA key generation complete.");
289
290 for (i = 0; i < SSH_SESSION_KEY_LENGTH; i++) {
291 if (i % 4 == 0)
292 rand = arc4random();
293 sensitive_data.ssh1_cookie[i] = rand & 0xff;
294 rand >>= 8;
295 }
296 arc4random_stir();
297}
298
299static void
300key_regeneration_alarm(int sig)
301{
302 int save_errno = errno;
303 signal(SIGALRM, SIG_DFL);
304 errno = save_errno;
305 key_do_regen = 1;
306}
307
308static void
309sshd_exchange_identification(int sock_in, int sock_out)
310{
311 int i, mismatch;
312 int remote_major, remote_minor;
313 int major, minor;
314 char *s;
315 char buf[256]; /* Must not be larger than remote_version. */
316 char remote_version[256]; /* Must be at least as big as buf. */
317
318 if ((options.protocol & SSH_PROTO_1) &&
319 (options.protocol & SSH_PROTO_2)) {
320 major = PROTOCOL_MAJOR_1;
321 minor = 99;
322 } else if (options.protocol & SSH_PROTO_2) {
323 major = PROTOCOL_MAJOR_2;
324 minor = PROTOCOL_MINOR_2;
325 } else {
326 major = PROTOCOL_MAJOR_1;
327 minor = PROTOCOL_MINOR_1;
328 }
329 snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n", major, minor, SSH_VERSION);
330 server_version_string = xstrdup(buf);
331
332 if (client_version_string == NULL) {
333 /* Send our protocol version identification. */
334 if (atomicio(write, sock_out, server_version_string, strlen(server_version_string))
335 != strlen(server_version_string)) {
336 log("Could not write ident string to %s.", get_remote_ipaddr());
337 fatal_cleanup();
338 }
339
340 /* Read other side's version identification. */
341 memset(buf, 0, sizeof(buf));
342 for (i = 0; i < sizeof(buf) - 1; i++) {
343 if (atomicio(read, sock_in, &buf[i], 1) != 1) {
344 log("Did not receive identification string from %s.",
345 get_remote_ipaddr());
346 fatal_cleanup();
347 }
348 if (buf[i] == '\r') {
349 buf[i] = 0;
350 /* Kludge for F-Secure Macintosh < 1.0.2 */
351 if (i == 12 &&
352 strncmp(buf, "SSH-1.5-W1.0", 12) == 0)
353 break;
354 continue;
355 }
356 if (buf[i] == '\n') {
357 buf[i] = 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) {
371 s = "Protocol mismatch.\n";
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
382 compat_datafellows(remote_version);
383
384 if (datafellows & SSH_BUG_SCANNER) {
385 log("scanned from %s with %s. Don't panic.",
386 get_remote_ipaddr(), client_version_string);
387 fatal_cleanup();
388 }
389
390 mismatch = 0;
391 switch(remote_major) {
392 case 1:
393 if (remote_minor == 99) {
394 if (options.protocol & SSH_PROTO_2)
395 enable_compat20();
396 else
397 mismatch = 1;
398 break;
399 }
400 if (!(options.protocol & SSH_PROTO_1)) {
401 mismatch = 1;
402 break;
403 }
404 if (remote_minor < 3) {
405 packet_disconnect("Your ssh version is too old and "
406 "is no longer supported. Please install a newer version.");
407 } else if (remote_minor == 3) {
408 /* note that this disables agent-forwarding */
409 enable_compat13();
410 }
411 break;
412 case 2:
413 if (options.protocol & SSH_PROTO_2) {
414 enable_compat20();
415 break;
416 }
417 /* FALLTHROUGH */
418 default:
419 mismatch = 1;
420 break;
421 }
422 chop(server_version_string);
423 debug("Local version string %.200s", server_version_string);
424
425 if (mismatch) {
426 s = "Protocol major versions differ.\n";
427 (void) atomicio(write, sock_out, s, strlen(s));
428 close(sock_in);
429 close(sock_out);
430 log("Protocol major versions differ for %s: %.200s vs. %.200s",
431 get_remote_ipaddr(),
432 server_version_string, client_version_string);
433 fatal_cleanup();
434 }
435}
436
437
438/* Destroy the host and server keys. They will no longer be needed. */
439void
440destroy_sensitive_data(void)
441{
442 int i;
443
444 if (sensitive_data.server_key) {
445 key_free(sensitive_data.server_key);
446 sensitive_data.server_key = NULL;
447 }
448 for(i = 0; i < options.num_host_key_files; i++) {
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;
455 memset(sensitive_data.ssh1_cookie, 0, SSH_SESSION_KEY_LENGTH);
456}
457
458static char *
459list_hostkey_types(void)
460{
461 static char buf[1024];
462 int i;
463 buf[0] = '\0';
464 for(i = 0; i < options.num_host_key_files; i++) {
465 Key *key = sensitive_data.host_keys[i];
466 if (key == NULL)
467 continue;
468 switch(key->type) {
469 case KEY_RSA:
470 case KEY_DSA:
471 strlcat(buf, key_ssh_name(key), sizeof buf);
472 strlcat(buf, ",", sizeof buf);
473 break;
474 }
475 }
476 i = strlen(buf);
477 if (i > 0 && buf[i-1] == ',')
478 buf[i-1] = '\0';
479 debug("list_hostkey_types: %s", buf);
480 return buf;
481}
482
483static Key *
484get_hostkey_by_type(int type)
485{
486 int i;
487 for(i = 0; i < options.num_host_key_files; i++) {
488 Key *key = sensitive_data.host_keys[i];
489 if (key != NULL && key->type == type)
490 return key;
491 }
492 return NULL;
493}
494
495/*
496 * returns 1 if connection should be dropped, 0 otherwise.
497 * dropping starts at connection #max_startups_begin with a probability
498 * of (max_startups_rate/100). the probability increases linearly until
499 * all connections are dropped for startups > max_startups
500 */
501static int
502drop_connection(int startups)
503{
504 double p, r;
505
506 if (startups < options.max_startups_begin)
507 return 0;
508 if (startups >= options.max_startups)
509 return 1;
510 if (options.max_startups_rate == 100)
511 return 1;
512
513 p = 100 - options.max_startups_rate;
514 p *= startups - options.max_startups_begin;
515 p /= (double) (options.max_startups - options.max_startups_begin);
516 p += options.max_startups_rate;
517 p /= 100.0;
518 r = arc4random() / (double) UINT_MAX;
519
520 debug("drop_connection: p %g, r %g", p, r);
521 return (r < p) ? 1 : 0;
522}
523
524int *startup_pipes = NULL; /* options.max_startup sized array of fd ints */
525int startup_pipe; /* in child */
526
527/*
528 * Main program for the daemon.
529 */
530int
531main(int ac, char **av)
532{
533 extern char *optarg;
534 extern int optind;
535 int opt, sock_in = 0, sock_out = 0, newsock, j, i, fdsetsz, on = 1;
536 pid_t pid;
537 socklen_t fromlen;
538 fd_set *fdset;
539 struct sockaddr_storage from;
540 const char *remote_ip;
541 int remote_port;
542 FILE *f;
543 struct linger linger;
544 struct addrinfo *ai;
545 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
546 int listen_sock, maxfd;
547 int startup_p[2];
548 int startups = 0;
549 Key *key;
550 int ret, key_used = 0;
551
552 __progname = get_progname(av[0]);
553 init_rng();
554
555 /* Save argv. */
556 saved_argc = ac;
557 saved_argv = av;
558
559 /* Initialize configuration options to their default values. */
560 initialize_server_options(&options);
561
562 /* Parse command-line arguments. */
563 while ((opt = getopt(ac, av, "f:p:b:k:h:g:V:u:dDeiqQ46")) != -1) {
564 switch (opt) {
565 case '4':
566 IPv4or6 = AF_INET;
567 break;
568 case '6':
569 IPv4or6 = AF_INET6;
570 break;
571 case 'f':
572 config_file_name = optarg;
573 break;
574 case 'd':
575 if (0 == debug_flag) {
576 debug_flag = 1;
577 options.log_level = SYSLOG_LEVEL_DEBUG1;
578 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
579 options.log_level++;
580 } else {
581 fprintf(stderr, "Too high debugging level.\n");
582 exit(1);
583 }
584 break;
585 case 'D':
586 no_daemon_flag = 1;
587 break;
588 case 'e':
589 log_stderr = 1;
590 break;
591 case 'i':
592 inetd_flag = 1;
593 break;
594 case 'Q':
595 /* ignored */
596 break;
597 case 'q':
598 options.log_level = SYSLOG_LEVEL_QUIET;
599 break;
600 case 'b':
601 options.server_key_bits = atoi(optarg);
602 break;
603 case 'p':
604 options.ports_from_cmdline = 1;
605 if (options.num_ports >= MAX_PORTS) {
606 fprintf(stderr, "too many ports.\n");
607 exit(1);
608 }
609 options.ports[options.num_ports++] = a2port(optarg);
610 if (options.ports[options.num_ports-1] == 0) {
611 fprintf(stderr, "Bad port number.\n");
612 exit(1);
613 }
614 break;
615 case 'g':
616 if ((options.login_grace_time = convtime(optarg)) == -1) {
617 fprintf(stderr, "Invalid login grace time.\n");
618 exit(1);
619 }
620 break;
621 case 'k':
622 if ((options.key_regeneration_time = convtime(optarg)) == -1) {
623 fprintf(stderr, "Invalid key regeneration interval.\n");
624 exit(1);
625 }
626 break;
627 case 'h':
628 if (options.num_host_key_files >= MAX_HOSTKEYS) {
629 fprintf(stderr, "too many host keys.\n");
630 exit(1);
631 }
632 options.host_key_files[options.num_host_key_files++] = optarg;
633 break;
634 case 'V':
635 client_version_string = optarg;
636 /* only makes sense with inetd_flag, i.e. no listen() */
637 inetd_flag = 1;
638 break;
639 case 'u':
640 utmp_len = atoi(optarg);
641 break;
642 case '?':
643 default:
644 fprintf(stderr, "sshd version %s\n", SSH_VERSION);
645 fprintf(stderr, "Usage: %s [options]\n", __progname);
646 fprintf(stderr, "Options:\n");
647 fprintf(stderr, " -f file Configuration file (default %s)\n", _PATH_SERVER_CONFIG_FILE);
648 fprintf(stderr, " -d Debugging mode (multiple -d means more debugging)\n");
649 fprintf(stderr, " -i Started from inetd\n");
650 fprintf(stderr, " -D Do not fork into daemon mode\n");
651 fprintf(stderr, " -q Quiet (no logging)\n");
652 fprintf(stderr, " -p port Listen on the specified port (default: 22)\n");
653 fprintf(stderr, " -k seconds Regenerate server key every this many seconds (default: 3600)\n");
654 fprintf(stderr, " -g seconds Grace period for authentication (default: 600)\n");
655 fprintf(stderr, " -b bits Size of server RSA key (default: 768 bits)\n");
656 fprintf(stderr, " -h file File from which to read host key (default: %s)\n",
657 _PATH_HOST_KEY_FILE);
658 fprintf(stderr, " -u len Maximum hostname length for utmp recording\n");
659 fprintf(stderr, " -4 Use IPv4 only\n");
660 fprintf(stderr, " -6 Use IPv6 only\n");
661 exit(1);
662 }
663 }
664 SSLeay_add_all_algorithms();
665
666 /*
667 * Force logging to stderr until we have loaded the private host
668 * key (unless started from inetd)
669 */
670 log_init(__progname,
671 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
672 options.log_facility == -1 ? SYSLOG_FACILITY_AUTH : options.log_facility,
673 !inetd_flag);
674
675 seed_rng();
676
677 /* Read server configuration options from the configuration file. */
678 read_server_config(&options, config_file_name);
679
680 /* Fill in default values for those options not explicitly set. */
681 fill_default_server_options(&options);
682
683 /* Check that there are no remaining arguments. */
684 if (optind < ac) {
685 fprintf(stderr, "Extra argument %s.\n", av[optind]);
686 exit(1);
687 }
688
689 debug("sshd version %.100s", SSH_VERSION);
690
691 /* load private host keys */
692 sensitive_data.host_keys = xmalloc(options.num_host_key_files*sizeof(Key*));
693 for(i = 0; i < options.num_host_key_files; i++)
694 sensitive_data.host_keys[i] = NULL;
695 sensitive_data.server_key = NULL;
696 sensitive_data.ssh1_host_key = NULL;
697 sensitive_data.have_ssh1_key = 0;
698 sensitive_data.have_ssh2_key = 0;
699
700 for(i = 0; i < options.num_host_key_files; i++) {
701 key = key_load_private(options.host_key_files[i], "", NULL);
702 sensitive_data.host_keys[i] = key;
703 if (key == NULL) {
704 error("Could not load host key: %s",
705 options.host_key_files[i]);
706 sensitive_data.host_keys[i] = NULL;
707 continue;
708 }
709 switch(key->type){
710 case KEY_RSA1:
711 sensitive_data.ssh1_host_key = key;
712 sensitive_data.have_ssh1_key = 1;
713 break;
714 case KEY_RSA:
715 case KEY_DSA:
716 sensitive_data.have_ssh2_key = 1;
717 break;
718 }
719 debug("private host key: #%d type %d %s", i, key->type,
720 key_type(key));
721 }
722 if ((options.protocol & SSH_PROTO_1) && !sensitive_data.have_ssh1_key) {
723 log("Disabling protocol version 1. Could not load host key");
724 options.protocol &= ~SSH_PROTO_1;
725 }
726 if ((options.protocol & SSH_PROTO_2) && !sensitive_data.have_ssh2_key) {
727 log("Disabling protocol version 2. Could not load host key");
728 options.protocol &= ~SSH_PROTO_2;
729 }
730 if (!(options.protocol & (SSH_PROTO_1|SSH_PROTO_2))) {
731 log("sshd: no hostkeys available -- exiting.");
732 exit(1);
733 }
734
735 /* Check certain values for sanity. */
736 if (options.protocol & SSH_PROTO_1) {
737 if (options.server_key_bits < 512 ||
738 options.server_key_bits > 32768) {
739 fprintf(stderr, "Bad server key size.\n");
740 exit(1);
741 }
742 /*
743 * Check that server and host key lengths differ sufficiently. This
744 * is necessary to make double encryption work with rsaref. Oh, I
745 * hate software patents. I dont know if this can go? Niels
746 */
747 if (options.server_key_bits >
748 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) - SSH_KEY_BITS_RESERVED &&
749 options.server_key_bits <
750 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
751 options.server_key_bits =
752 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED;
753 debug("Forcing server key to %d bits to make it differ from host key.",
754 options.server_key_bits);
755 }
756 }
757
758#ifdef HAVE_SCO_PROTECTED_PW
759 (void) set_auth_parameters(ac, av);
760#endif
761
762 /* Initialize the log (it is reinitialized below in case we forked). */
763 if (debug_flag && !inetd_flag)
764 log_stderr = 1;
765 log_init(__progname, options.log_level, options.log_facility, log_stderr);
766
767 /*
768 * If not in debugging mode, and not started from inetd, disconnect
769 * from the controlling terminal, and fork. The original process
770 * exits.
771 */
772 if (!(debug_flag || inetd_flag || no_daemon_flag)) {
773#ifdef TIOCNOTTY
774 int fd;
775#endif /* TIOCNOTTY */
776 if (daemon(0, 0) < 0)
777 fatal("daemon() failed: %.200s", strerror(errno));
778
779 /* Disconnect from the controlling tty. */
780#ifdef TIOCNOTTY
781 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
782 if (fd >= 0) {
783 (void) ioctl(fd, TIOCNOTTY, NULL);
784 close(fd);
785 }
786#endif /* TIOCNOTTY */
787 }
788 /* Reinitialize the log (because of the fork above). */
789 log_init(__progname, options.log_level, options.log_facility, log_stderr);
790
791 /* Initialize the random number generator. */
792 arc4random_stir();
793
794 /* Chdir to the root directory so that the current disk can be
795 unmounted if desired. */
796 chdir("/");
797
798 /* ignore SIGPIPE */
799 signal(SIGPIPE, SIG_IGN);
800
801 /* Start listening for a socket, unless started from inetd. */
802 if (inetd_flag) {
803 int s1;
804 s1 = dup(0); /* Make sure descriptors 0, 1, and 2 are in use. */
805 dup(s1);
806 sock_in = dup(0);
807 sock_out = dup(1);
808 startup_pipe = -1;
809 /*
810 * We intentionally do not close the descriptors 0, 1, and 2
811 * as our code for setting the descriptors won\'t work if
812 * ttyfd happens to be one of those.
813 */
814 debug("inetd sockets after dupping: %d, %d", sock_in, sock_out);
815 if (options.protocol & SSH_PROTO_1)
816 generate_ephemeral_server_key();
817 } else {
818 for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
819 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
820 continue;
821 if (num_listen_socks >= MAX_LISTEN_SOCKS)
822 fatal("Too many listen sockets. "
823 "Enlarge MAX_LISTEN_SOCKS");
824 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
825 ntop, sizeof(ntop), strport, sizeof(strport),
826 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
827 error("getnameinfo failed");
828 continue;
829 }
830 /* Create socket for listening. */
831 listen_sock = socket(ai->ai_family, SOCK_STREAM, 0);
832 if (listen_sock < 0) {
833 /* kernel may not support ipv6 */
834 verbose("socket: %.100s", strerror(errno));
835 continue;
836 }
837 if (fcntl(listen_sock, F_SETFL, O_NONBLOCK) < 0) {
838 error("listen_sock O_NONBLOCK: %s", strerror(errno));
839 close(listen_sock);
840 continue;
841 }
842 /*
843 * Set socket options. We try to make the port
844 * reusable and have it close as fast as possible
845 * without waiting in unnecessary wait states on
846 * close.
847 */
848 setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
849 (void *) &on, sizeof(on));
850 linger.l_onoff = 1;
851 linger.l_linger = 5;
852 setsockopt(listen_sock, SOL_SOCKET, SO_LINGER,
853 (void *) &linger, sizeof(linger));
854
855 debug("Bind to port %s on %s.", strport, ntop);
856
857 /* Bind the socket to the desired port. */
858 if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) {
859 if (!ai->ai_next)
860 error("Bind to port %s on %s failed: %.200s.",
861 strport, ntop, strerror(errno));
862 close(listen_sock);
863 continue;
864 }
865 listen_socks[num_listen_socks] = listen_sock;
866 num_listen_socks++;
867
868 /* Start listening on the port. */
869 log("Server listening on %s port %s.", ntop, strport);
870 if (listen(listen_sock, 5) < 0)
871 fatal("listen: %.100s", strerror(errno));
872
873 }
874 freeaddrinfo(options.listen_addrs);
875
876 if (!num_listen_socks)
877 fatal("Cannot bind any address.");
878
879 if (options.protocol & SSH_PROTO_1)
880 generate_ephemeral_server_key();
881
882 /*
883 * Arrange to restart on SIGHUP. The handler needs
884 * listen_sock.
885 */
886 signal(SIGHUP, sighup_handler);
887
888 signal(SIGTERM, sigterm_handler);
889 signal(SIGQUIT, sigterm_handler);
890
891 /* Arrange SIGCHLD to be caught. */
892 signal(SIGCHLD, main_sigchld_handler);
893
894 /* Write out the pid file after the sigterm handler is setup */
895 if (!debug_flag) {
896 /*
897 * Record our pid in /var/run/sshd.pid to make it
898 * easier to kill the correct sshd. We don't want to
899 * do this before the bind above because the bind will
900 * fail if there already is a daemon, and this will
901 * overwrite any old pid in the file.
902 */
903 f = fopen(options.pid_file, "wb");
904 if (f) {
905 fprintf(f, "%u\n", (u_int) getpid());
906 fclose(f);
907 }
908 }
909
910 /* setup fd set for listen */
911 fdset = NULL;
912 maxfd = 0;
913 for (i = 0; i < num_listen_socks; i++)
914 if (listen_socks[i] > maxfd)
915 maxfd = listen_socks[i];
916 /* pipes connected to unauthenticated childs */
917 startup_pipes = xmalloc(options.max_startups * sizeof(int));
918 for (i = 0; i < options.max_startups; i++)
919 startup_pipes[i] = -1;
920
921 /*
922 * Stay listening for connections until the system crashes or
923 * the daemon is killed with a signal.
924 */
925 for (;;) {
926 if (received_sighup)
927 sighup_restart();
928 if (fdset != NULL)
929 xfree(fdset);
930 fdsetsz = howmany(maxfd+1, NFDBITS) * sizeof(fd_mask);
931 fdset = (fd_set *)xmalloc(fdsetsz);
932 memset(fdset, 0, fdsetsz);
933
934 for (i = 0; i < num_listen_socks; i++)
935 FD_SET(listen_socks[i], fdset);
936 for (i = 0; i < options.max_startups; i++)
937 if (startup_pipes[i] != -1)
938 FD_SET(startup_pipes[i], fdset);
939
940 /* Wait in select until there is a connection. */
941 ret = select(maxfd+1, fdset, NULL, NULL, NULL);
942 if (ret < 0 && errno != EINTR)
943 error("select: %.100s", strerror(errno));
944 if (received_sigterm) {
945 log("Received signal %d; terminating.",
946 received_sigterm);
947 close_listen_socks();
948 unlink(options.pid_file);
949 exit(255);
950 }
951 if (key_used && key_do_regen) {
952 generate_ephemeral_server_key();
953 key_used = 0;
954 key_do_regen = 0;
955 }
956 if (ret < 0)
957 continue;
958
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
965 * after successful authentication
966 * or if the child has died
967 */
968 close(startup_pipes[i]);
969 startup_pipes[i] = -1;
970 startups--;
971 }
972 for (i = 0; i < num_listen_socks; i++) {
973 if (!FD_ISSET(listen_socks[i], fdset))
974 continue;
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 }
987 if (drop_connection(startups) == 1) {
988 debug("drop connection #%d", startups);
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 }
1005
1006 /*
1007 * Got connection. Fork a child to handle it, unless
1008 * we are in debugging mode.
1009 */
1010 if (debug_flag) {
1011 /*
1012 * In debugging mode. Close the listening
1013 * socket, and start processing the
1014 * connection without forking.
1015 */
1016 debug("Server will not fork when running in debugging mode.");
1017 close_listen_socks();
1018 sock_in = newsock;
1019 sock_out = newsock;
1020 startup_pipe = -1;
1021 pid = getpid();
1022 break;
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;
1044 log_init(__progname, options.log_level, options.log_facility, log_stderr);
1045 break;
1046 }
1047 }
1048
1049 /* Parent. Stay in the loop. */
1050 if (pid < 0)
1051 error("fork: %.100s", strerror(errno));
1052 else
1053 debug("Forked child %d.", pid);
1054
1055 close(startup_p[1]);
1056
1057 /* Mark that the key has been used (it was "given" to the child). */
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 }
1065
1066 arc4random_stir();
1067
1068 /* Close the new socket (the child is now taking care of it). */
1069 close(newsock);
1070 }
1071 /* child process check (or debug mode) */
1072 if (num_listen_socks < 0)
1073 break;
1074 }
1075 }
1076
1077 /* This is the child processing a new connection. */
1078
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 */
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);
1090 signal(SIGINT, SIG_DFL);
1091
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)); */
1098 linger.l_onoff = 1;
1099 linger.l_linger = 5;
1100 setsockopt(sock_in, SOL_SOCKET, SO_LINGER, (void *) &linger, sizeof(linger));
1101
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
1108 /*
1109 * Register our connection. This turns encryption off because we do
1110 * not have a key.
1111 */
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
1119 /* XXX LIBWRAP noes not know about IPv6 */
1120 {
1121 struct request_info req;
1122
1123 request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, NULL);
1124 fromhost(&req);
1125
1126 if (!hosts_access(&req)) {
1127 refuse(&req);
1128 close(sock_in);
1129 close(sock_out);
1130 }
1131/*XXX IPv6 verbose("Connection from %.500s port %d", eval_client(&req), remote_port); */
1132 }
1133#endif /* LIBWRAP */
1134 /* Log the connection. */
1135 verbose("Connection from %.500s port %d", remote_ip, remote_port);
1136
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 */
1145 signal(SIGALRM, grace_alarm_handler);
1146 if (!debug_flag)
1147 alarm(options.login_grace_time);
1148
1149 sshd_exchange_identification(sock_in, sock_out);
1150 /*
1151 * Check that the connection comes from a privileged port.
1152 * Rhosts-Authentication only makes sense from priviledged
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 */
1157 if (remote_port >= IPPORT_RESERVED ||
1158 remote_port < IPPORT_RESERVED / 2) {
1159 debug("Rhosts Authentication disabled, "
1160 "originating port not trusted.");
1161 options.rhosts_authentication = 0;
1162 }
1163#if defined(KRB4) && !defined(KRB5)
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 && !KRB5 */
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 */
1177
1178 packet_set_nonblocking();
1179
1180 /* perform the key exchange */
1181 /* authenticate user and start session */
1182 if (compat20) {
1183 do_ssh2_kex();
1184 do_authentication2();
1185 } else {
1186 do_ssh1_kex();
1187 do_authentication();
1188 }
1189 /* The connection has been terminated. */
1190 verbose("Closing connection to %.100s", remote_ip);
1191
1192#ifdef USE_PAM
1193 finish_pam();
1194#endif /* USE_PAM */
1195
1196 packet_close();
1197 exit(0);
1198}
1199
1200/*
1201 * SSH1 key exchange
1202 */
1203static void
1204do_ssh1_kex(void)
1205{
1206 int i, len;
1207 int plen, slen;
1208 int rsafail = 0;
1209 BIGNUM *session_key_int;
1210 u_char session_key[SSH_SESSION_KEY_LENGTH];
1211 u_char cookie[8];
1212 u_int cipher_type, auth_mask, protocol_flags;
1213 u_int32_t rand = 0;
1214
1215 /*
1216 * Generate check bytes that the client must send back in the user
1217 * packet in order for it to be accepted; this is used to defy ip
1218 * spoofing attacks. Note that this only works against somebody
1219 * doing IP spoofing from a remote machine; any machine on the local
1220 * network can still see outgoing packets and catch the random
1221 * cookie. This only affects rhosts authentication, and this is one
1222 * of the reasons why it is inherently insecure.
1223 */
1224 for (i = 0; i < 8; i++) {
1225 if (i % 4 == 0)
1226 rand = arc4random();
1227 cookie[i] = rand & 0xff;
1228 rand >>= 8;
1229 }
1230
1231 /*
1232 * Send our public key. We include in the packet 64 bits of random
1233 * data that must be matched in the reply in order to prevent IP
1234 * spoofing.
1235 */
1236 packet_start(SSH_SMSG_PUBLIC_KEY);
1237 for (i = 0; i < 8; i++)
1238 packet_put_char(cookie[i]);
1239
1240 /* Store our public server RSA key. */
1241 packet_put_int(BN_num_bits(sensitive_data.server_key->rsa->n));
1242 packet_put_bignum(sensitive_data.server_key->rsa->e);
1243 packet_put_bignum(sensitive_data.server_key->rsa->n);
1244
1245 /* Store our public host RSA key. */
1246 packet_put_int(BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
1247 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->e);
1248 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->n);
1249
1250 /* Put protocol flags. */
1251 packet_put_int(SSH_PROTOFLAG_HOST_IN_FWD_OPEN);
1252
1253 /* Declare which ciphers we support. */
1254 packet_put_int(cipher_mask_ssh1(0));
1255
1256 /* Declare supported authentication types. */
1257 auth_mask = 0;
1258 if (options.rhosts_authentication)
1259 auth_mask |= 1 << SSH_AUTH_RHOSTS;
1260 if (options.rhosts_rsa_authentication)
1261 auth_mask |= 1 << SSH_AUTH_RHOSTS_RSA;
1262 if (options.rsa_authentication)
1263 auth_mask |= 1 << SSH_AUTH_RSA;
1264#if defined(KRB4) || defined(KRB5)
1265 if (options.kerberos_authentication)
1266 auth_mask |= 1 << SSH_AUTH_KERBEROS;
1267#endif
1268#if defined(AFS) || defined(KRB5)
1269 if (options.kerberos_tgt_passing)
1270 auth_mask |= 1 << SSH_PASS_KERBEROS_TGT;
1271#endif
1272#ifdef AFS
1273 if (options.afs_token_passing)
1274 auth_mask |= 1 << SSH_PASS_AFS_TOKEN;
1275#endif
1276 if (options.challenge_response_authentication == 1)
1277 auth_mask |= 1 << SSH_AUTH_TIS;
1278 if (options.password_authentication)
1279 auth_mask |= 1 << SSH_AUTH_PASSWORD;
1280 packet_put_int(auth_mask);
1281
1282 /* Send the packet and wait for it to be sent. */
1283 packet_send();
1284 packet_write_wait();
1285
1286 debug("Sent %d bit server key and %d bit host key.",
1287 BN_num_bits(sensitive_data.server_key->rsa->n),
1288 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
1289
1290 /* Read clients reply (cipher type and session key). */
1291 packet_read_expect(&plen, SSH_CMSG_SESSION_KEY);
1292
1293 /* Get cipher type and check whether we accept this. */
1294 cipher_type = packet_get_char();
1295
1296 if (!(cipher_mask_ssh1(0) & (1 << cipher_type)))
1297 packet_disconnect("Warning: client selects unsupported cipher.");
1298
1299 /* Get check bytes from the packet. These must match those we
1300 sent earlier with the public key packet. */
1301 for (i = 0; i < 8; i++)
1302 if (cookie[i] != packet_get_char())
1303 packet_disconnect("IP Spoofing check bytes do not match.");
1304
1305 debug("Encryption type: %.200s", cipher_name(cipher_type));
1306
1307 /* Get the encrypted integer. */
1308 session_key_int = BN_new();
1309 packet_get_bignum(session_key_int, &slen);
1310
1311 protocol_flags = packet_get_int();
1312 packet_set_protocol_flags(protocol_flags);
1313
1314 packet_integrity_check(plen, 1 + 8 + slen + 4, SSH_CMSG_SESSION_KEY);
1315
1316 /*
1317 * Decrypt it using our private server key and private host key (key
1318 * with larger modulus first).
1319 */
1320 if (BN_cmp(sensitive_data.server_key->rsa->n, sensitive_data.ssh1_host_key->rsa->n) > 0) {
1321 /* Server key has bigger modulus. */
1322 if (BN_num_bits(sensitive_data.server_key->rsa->n) <
1323 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1324 fatal("do_connection: %s: server_key %d < host_key %d + SSH_KEY_BITS_RESERVED %d",
1325 get_remote_ipaddr(),
1326 BN_num_bits(sensitive_data.server_key->rsa->n),
1327 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1328 SSH_KEY_BITS_RESERVED);
1329 }
1330 if (rsa_private_decrypt(session_key_int, session_key_int,
1331 sensitive_data.server_key->rsa) <= 0)
1332 rsafail++;
1333 if (rsa_private_decrypt(session_key_int, session_key_int,
1334 sensitive_data.ssh1_host_key->rsa) <= 0)
1335 rsafail++;
1336 } else {
1337 /* Host key has bigger modulus (or they are equal). */
1338 if (BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) <
1339 BN_num_bits(sensitive_data.server_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1340 fatal("do_connection: %s: host_key %d < server_key %d + SSH_KEY_BITS_RESERVED %d",
1341 get_remote_ipaddr(),
1342 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1343 BN_num_bits(sensitive_data.server_key->rsa->n),
1344 SSH_KEY_BITS_RESERVED);
1345 }
1346 if (rsa_private_decrypt(session_key_int, session_key_int,
1347 sensitive_data.ssh1_host_key->rsa) < 0)
1348 rsafail++;
1349 if (rsa_private_decrypt(session_key_int, session_key_int,
1350 sensitive_data.server_key->rsa) < 0)
1351 rsafail++;
1352 }
1353 /*
1354 * Extract session key from the decrypted integer. The key is in the
1355 * least significant 256 bits of the integer; the first byte of the
1356 * key is in the highest bits.
1357 */
1358 if (!rsafail) {
1359 BN_mask_bits(session_key_int, sizeof(session_key) * 8);
1360 len = BN_num_bytes(session_key_int);
1361 if (len < 0 || len > sizeof(session_key)) {
1362 error("do_connection: bad session key len from %s: "
1363 "session_key_int %d > sizeof(session_key) %lu",
1364 get_remote_ipaddr(), len, (u_long)sizeof(session_key));
1365 rsafail++;
1366 } else {
1367 memset(session_key, 0, sizeof(session_key));
1368 BN_bn2bin(session_key_int,
1369 session_key + sizeof(session_key) - len);
1370
1371 compute_session_id(session_id, cookie,
1372 sensitive_data.ssh1_host_key->rsa->n,
1373 sensitive_data.server_key->rsa->n);
1374 /*
1375 * Xor the first 16 bytes of the session key with the
1376 * session id.
1377 */
1378 for (i = 0; i < 16; i++)
1379 session_key[i] ^= session_id[i];
1380 }
1381 }
1382 if (rsafail) {
1383 int bytes = BN_num_bytes(session_key_int);
1384 char *buf = xmalloc(bytes);
1385 MD5_CTX md;
1386
1387 log("do_connection: generating a fake encryption key");
1388 BN_bn2bin(session_key_int, buf);
1389 MD5_Init(&md);
1390 MD5_Update(&md, buf, bytes);
1391 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1392 MD5_Final(session_key, &md);
1393 MD5_Init(&md);
1394 MD5_Update(&md, session_key, 16);
1395 MD5_Update(&md, buf, bytes);
1396 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1397 MD5_Final(session_key + 16, &md);
1398 memset(buf, 0, bytes);
1399 xfree(buf);
1400 for (i = 0; i < 16; i++)
1401 session_id[i] = session_key[i] ^ session_key[i + 16];
1402 }
1403 /* Destroy the private and public keys. They will no longer be needed. */
1404 destroy_sensitive_data();
1405
1406 /* Destroy the decrypted integer. It is no longer needed. */
1407 BN_clear_free(session_key_int);
1408
1409 /* Set the session key. From this on all communications will be encrypted. */
1410 packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, cipher_type);
1411
1412 /* Destroy our copy of the session key. It is no longer needed. */
1413 memset(session_key, 0, sizeof(session_key));
1414
1415 debug("Received session key; encryption turned on.");
1416
1417 /* Send an acknowledgement packet. Note that this packet is sent encrypted. */
1418 packet_start(SSH_SMSG_SUCCESS);
1419 packet_send();
1420 packet_write_wait();
1421}
1422
1423/*
1424 * SSH2 key exchange: diffie-hellman-group1-sha1
1425 */
1426static void
1427do_ssh2_kex(void)
1428{
1429 Kex *kex;
1430
1431 if (options.ciphers != NULL) {
1432 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
1433 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
1434 }
1435 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
1436 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
1437 myproposal[PROPOSAL_ENC_ALGS_STOC] =
1438 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
1439
1440 if (options.macs != NULL) {
1441 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
1442 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
1443 }
1444 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = list_hostkey_types();
1445
1446 /* start key exchange */
1447 kex = kex_setup(myproposal);
1448 kex->server = 1;
1449 kex->client_version_string=client_version_string;
1450 kex->server_version_string=server_version_string;
1451 kex->load_host_key=&get_hostkey_by_type;
1452
1453 xxx_kex = kex;
1454
1455 dispatch_run(DISPATCH_BLOCK, &kex->done, kex);
1456
1457 session_id2 = kex->session_id;
1458 session_id2_len = kex->session_id_len;
1459
1460#ifdef DEBUG_KEXDH
1461 /* send 1st encrypted/maced/compressed message */
1462 packet_start(SSH2_MSG_IGNORE);
1463 packet_put_cstring("markus");
1464 packet_send();
1465 packet_write_wait();
1466#endif
1467 debug("KEX done");
1468}
This page took 0.078005 seconds and 5 git commands to generate.