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