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