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