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