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