]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - crypto/openssh/sshd.c
Bump version addendum.
[FreeBSD/FreeBSD.git] / crypto / openssh / sshd.c
1 /* $OpenBSD: sshd.c,v 1.347 2006/08/18 09:15:20 markus Exp $ */
2 /*
3  * Author: Tatu Ylonen <ylo@cs.hut.fi>
4  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5  *                    All rights reserved
6  * This program is the ssh daemon.  It listens for connections from clients,
7  * and 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
10  * authentication agent connections.
11  *
12  * As far as I am concerned, the code I have written for this software
13  * can be used freely for any purpose.  Any derived versions of this
14  * software must be clearly marked as such, and if the derived work is
15  * incompatible with the protocol description in the RFC file, it must be
16  * called by a name other than "ssh" or "Secure Shell".
17  *
18  * SSH2 implementation:
19  * Privilege Separation:
20  *
21  * Copyright (c) 2000, 2001, 2002 Markus Friedl.  All rights reserved.
22  * Copyright (c) 2002 Niels Provos.  All rights reserved.
23  *
24  * Redistribution and use in source and binary forms, with or without
25  * modification, are permitted provided that the following conditions
26  * are met:
27  * 1. Redistributions of source code must retain the above copyright
28  *    notice, this list of conditions and the following disclaimer.
29  * 2. Redistributions in binary form must reproduce the above copyright
30  *    notice, this list of conditions and the following disclaimer in the
31  *    documentation and/or other materials provided with the distribution.
32  *
33  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
34  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
35  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
36  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
37  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
38  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
39  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
40  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
41  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
42  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43  */
44
45 #include "includes.h"
46 __RCSID("$FreeBSD$");
47
48 #include <sys/types.h>
49 #include <sys/ioctl.h>
50 #include <sys/socket.h>
51 #ifdef HAVE_SYS_STAT_H
52 # include <sys/stat.h>
53 #endif
54 #ifdef HAVE_SYS_TIME_H
55 # include <sys/time.h>
56 #endif
57 #include "openbsd-compat/sys-tree.h"
58 #include <sys/wait.h>
59
60 #include <errno.h>
61 #include <fcntl.h>
62 #include <netdb.h>
63 #ifdef HAVE_PATHS_H
64 #include <paths.h>
65 #endif
66 #include <grp.h>
67 #include <pwd.h>
68 #include <signal.h>
69 #include <stdarg.h>
70 #include <stdio.h>
71 #include <stdlib.h>
72 #include <string.h>
73 #include <unistd.h>
74
75 #include <openssl/dh.h>
76 #include <openssl/bn.h>
77 #include <openssl/md5.h>
78 #include <openssl/rand.h>
79 #ifdef HAVE_SECUREWARE
80 #include <sys/security.h>
81 #include <prot.h>
82 #endif
83
84 #ifdef __FreeBSD__
85 #include <resolv.h>
86 #ifdef GSSAPI
87 #include <gssapi/gssapi.h>
88 #endif
89 #endif
90
91 #include "xmalloc.h"
92 #include "ssh.h"
93 #include "ssh1.h"
94 #include "ssh2.h"
95 #include "rsa.h"
96 #include "sshpty.h"
97 #include "packet.h"
98 #include "log.h"
99 #include "buffer.h"
100 #include "servconf.h"
101 #include "uidswap.h"
102 #include "compat.h"
103 #include "cipher.h"
104 #include "key.h"
105 #include "kex.h"
106 #include "dh.h"
107 #include "myproposal.h"
108 #include "authfile.h"
109 #include "pathnames.h"
110 #include "atomicio.h"
111 #include "canohost.h"
112 #include "hostfile.h"
113 #include "auth.h"
114 #include "misc.h"
115 #include "msg.h"
116 #include "dispatch.h"
117 #include "channels.h"
118 #include "session.h"
119 #include "monitor_mm.h"
120 #include "monitor.h"
121 #ifdef GSSAPI
122 #include "ssh-gss.h"
123 #endif
124 #include "monitor_wrap.h"
125 #include "monitor_fdpass.h"
126 #include "version.h"
127
128 #ifdef LIBWRAP
129 #include <tcpd.h>
130 #include <syslog.h>
131 int allow_severity = LOG_INFO;
132 int deny_severity = LOG_WARNING;
133 #endif /* LIBWRAP */
134
135 #ifndef O_NOCTTY
136 #define O_NOCTTY        0
137 #endif
138
139 /* Re-exec fds */
140 #define REEXEC_DEVCRYPTO_RESERVED_FD    (STDERR_FILENO + 1)
141 #define REEXEC_STARTUP_PIPE_FD          (STDERR_FILENO + 2)
142 #define REEXEC_CONFIG_PASS_FD           (STDERR_FILENO + 3)
143 #define REEXEC_MIN_FREE_FD              (STDERR_FILENO + 4)
144
145 extern char *__progname;
146
147 /* Server configuration options. */
148 ServerOptions options;
149
150 /* Name of the server configuration file. */
151 char *config_file_name = _PATH_SERVER_CONFIG_FILE;
152
153 /*
154  * Debug mode flag.  This can be set on the command line.  If debug
155  * mode is enabled, extra debugging output will be sent to the system
156  * log, the daemon will not go to background, and will exit after processing
157  * the first connection.
158  */
159 int debug_flag = 0;
160
161 /* Flag indicating that the daemon should only test the configuration and keys. */
162 int test_flag = 0;
163
164 /* Flag indicating that the daemon is being started from inetd. */
165 int inetd_flag = 0;
166
167 /* Flag indicating that sshd should not detach and become a daemon. */
168 int no_daemon_flag = 0;
169
170 /* debug goes to stderr unless inetd_flag is set */
171 int log_stderr = 0;
172
173 /* Saved arguments to main(). */
174 char **saved_argv;
175 int saved_argc;
176
177 /* re-exec */
178 int rexeced_flag = 0;
179 int rexec_flag = 1;
180 int rexec_argc = 0;
181 char **rexec_argv;
182
183 /*
184  * The sockets that the server is listening; this is used in the SIGHUP
185  * signal handler.
186  */
187 #define MAX_LISTEN_SOCKS        16
188 int listen_socks[MAX_LISTEN_SOCKS];
189 int num_listen_socks = 0;
190
191 /*
192  * the client's version string, passed by sshd2 in compat mode. if != NULL,
193  * sshd will skip the version-number exchange
194  */
195 char *client_version_string = NULL;
196 char *server_version_string = NULL;
197
198 /* for rekeying XXX fixme */
199 Kex *xxx_kex;
200
201 /*
202  * Any really sensitive data in the application is contained in this
203  * structure. The idea is that this structure could be locked into memory so
204  * that the pages do not get written into swap.  However, there are some
205  * problems. The private key contains BIGNUMs, and we do not (in principle)
206  * have access to the internals of them, and locking just the structure is
207  * not very useful.  Currently, memory locking is not implemented.
208  */
209 struct {
210         Key     *server_key;            /* ephemeral server key */
211         Key     *ssh1_host_key;         /* ssh1 host key */
212         Key     **host_keys;            /* all private host keys */
213         int     have_ssh1_key;
214         int     have_ssh2_key;
215         u_char  ssh1_cookie[SSH_SESSION_KEY_LENGTH];
216 } sensitive_data;
217
218 /*
219  * Flag indicating whether the RSA server key needs to be regenerated.
220  * Is set in the SIGALRM handler and cleared when the key is regenerated.
221  */
222 static volatile sig_atomic_t key_do_regen = 0;
223
224 /* This is set to true when a signal is received. */
225 static volatile sig_atomic_t received_sighup = 0;
226 static volatile sig_atomic_t received_sigterm = 0;
227
228 /* session identifier, used by RSA-auth */
229 u_char session_id[16];
230
231 /* same for ssh2 */
232 u_char *session_id2 = NULL;
233 u_int session_id2_len = 0;
234
235 /* record remote hostname or ip */
236 u_int utmp_len = MAXHOSTNAMELEN;
237
238 /* options.max_startup sized array of fd ints */
239 int *startup_pipes = NULL;
240 int startup_pipe;               /* in child */
241
242 /* variables used for privilege separation */
243 int use_privsep = -1;
244 struct monitor *pmonitor = NULL;
245
246 /* global authentication context */
247 Authctxt *the_authctxt = NULL;
248
249 /* sshd_config buffer */
250 Buffer cfg;
251
252 /* message to be displayed after login */
253 Buffer loginmsg;
254
255 /* Unprivileged user */
256 struct passwd *privsep_pw = NULL;
257
258 /* Prototypes for various functions defined later in this file. */
259 void destroy_sensitive_data(void);
260 void demote_sensitive_data(void);
261
262 static void do_ssh1_kex(void);
263 static void do_ssh2_kex(void);
264
265 /*
266  * Close all listening sockets
267  */
268 static void
269 close_listen_socks(void)
270 {
271         int i;
272
273         for (i = 0; i < num_listen_socks; i++)
274                 close(listen_socks[i]);
275         num_listen_socks = -1;
276 }
277
278 static void
279 close_startup_pipes(void)
280 {
281         int i;
282
283         if (startup_pipes)
284                 for (i = 0; i < options.max_startups; i++)
285                         if (startup_pipes[i] != -1)
286                                 close(startup_pipes[i]);
287 }
288
289 /*
290  * Signal handler for SIGHUP.  Sshd execs itself when it receives SIGHUP;
291  * the effect is to reread the configuration file (and to regenerate
292  * the server key).
293  */
294
295 /*ARGSUSED*/
296 static void
297 sighup_handler(int sig)
298 {
299         int save_errno = errno;
300
301         received_sighup = 1;
302         signal(SIGHUP, sighup_handler);
303         errno = save_errno;
304 }
305
306 /*
307  * Called from the main program after receiving SIGHUP.
308  * Restarts the server.
309  */
310 static void
311 sighup_restart(void)
312 {
313         logit("Received SIGHUP; restarting.");
314         close_listen_socks();
315         close_startup_pipes();
316         execv(saved_argv[0], saved_argv);
317         logit("RESTART FAILED: av[0]='%.100s', error: %.100s.", saved_argv[0],
318             strerror(errno));
319         exit(1);
320 }
321
322 /*
323  * Generic signal handler for terminating signals in the master daemon.
324  */
325 /*ARGSUSED*/
326 static void
327 sigterm_handler(int sig)
328 {
329         received_sigterm = sig;
330 }
331
332 /*
333  * SIGCHLD handler.  This is called whenever a child dies.  This will then
334  * reap any zombies left by exited children.
335  */
336 /*ARGSUSED*/
337 static void
338 main_sigchld_handler(int sig)
339 {
340         int save_errno = errno;
341         pid_t pid;
342         int status;
343
344         while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
345             (pid < 0 && errno == EINTR))
346                 ;
347
348         signal(SIGCHLD, main_sigchld_handler);
349         errno = save_errno;
350 }
351
352 /*
353  * Signal handler for the alarm after the login grace period has expired.
354  */
355 /*ARGSUSED*/
356 static void
357 grace_alarm_handler(int sig)
358 {
359         if (use_privsep && pmonitor != NULL && pmonitor->m_pid > 0)
360                 kill(pmonitor->m_pid, SIGALRM);
361
362         /* Log error and exit. */
363         sigdie("Timeout before authentication for %s", get_remote_ipaddr());
364 }
365
366 /*
367  * Signal handler for the key regeneration alarm.  Note that this
368  * alarm only occurs in the daemon waiting for connections, and it does not
369  * do anything with the private key or random state before forking.
370  * Thus there should be no concurrency control/asynchronous execution
371  * problems.
372  */
373 static void
374 generate_ephemeral_server_key(void)
375 {
376         u_int32_t rnd = 0;
377         int i;
378
379         verbose("Generating %s%d bit RSA key.",
380             sensitive_data.server_key ? "new " : "", options.server_key_bits);
381         if (sensitive_data.server_key != NULL)
382                 key_free(sensitive_data.server_key);
383         sensitive_data.server_key = key_generate(KEY_RSA1,
384             options.server_key_bits);
385         verbose("RSA key generation complete.");
386
387         for (i = 0; i < SSH_SESSION_KEY_LENGTH; i++) {
388                 if (i % 4 == 0)
389                         rnd = arc4random();
390                 sensitive_data.ssh1_cookie[i] = rnd & 0xff;
391                 rnd >>= 8;
392         }
393         arc4random_stir();
394 }
395
396 /*ARGSUSED*/
397 static void
398 key_regeneration_alarm(int sig)
399 {
400         int save_errno = errno;
401
402         signal(SIGALRM, SIG_DFL);
403         errno = save_errno;
404         key_do_regen = 1;
405 }
406
407 static void
408 sshd_exchange_identification(int sock_in, int sock_out)
409 {
410         u_int i;
411         int mismatch;
412         int remote_major, remote_minor;
413         int major, minor;
414         char *s;
415         char buf[256];                  /* Must not be larger than remote_version. */
416         char remote_version[256];       /* Must be at least as big as buf. */
417
418         if ((options.protocol & SSH_PROTO_1) &&
419             (options.protocol & SSH_PROTO_2)) {
420                 major = PROTOCOL_MAJOR_1;
421                 minor = 99;
422         } else if (options.protocol & SSH_PROTO_2) {
423                 major = PROTOCOL_MAJOR_2;
424                 minor = PROTOCOL_MINOR_2;
425         } else {
426                 major = PROTOCOL_MAJOR_1;
427                 minor = PROTOCOL_MINOR_1;
428         }
429         snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n", major, minor, SSH_VERSION);
430         server_version_string = xstrdup(buf);
431
432         /* Send our protocol version identification. */
433         if (atomicio(vwrite, sock_out, server_version_string,
434             strlen(server_version_string))
435             != strlen(server_version_string)) {
436                 logit("Could not write ident string to %s", get_remote_ipaddr());
437                 cleanup_exit(255);
438         }
439
440         /* Read other sides version identification. */
441         memset(buf, 0, sizeof(buf));
442         for (i = 0; i < sizeof(buf) - 1; i++) {
443                 if (atomicio(read, sock_in, &buf[i], 1) != 1) {
444                         logit("Did not receive identification string from %s",
445                             get_remote_ipaddr());
446                         cleanup_exit(255);
447                 }
448                 if (buf[i] == '\r') {
449                         buf[i] = 0;
450                         /* Kludge for F-Secure Macintosh < 1.0.2 */
451                         if (i == 12 &&
452                             strncmp(buf, "SSH-1.5-W1.0", 12) == 0)
453                                 break;
454                         continue;
455                 }
456                 if (buf[i] == '\n') {
457                         buf[i] = 0;
458                         break;
459                 }
460         }
461         buf[sizeof(buf) - 1] = 0;
462         client_version_string = xstrdup(buf);
463
464         /*
465          * Check that the versions match.  In future this might accept
466          * several versions and set appropriate flags to handle them.
467          */
468         if (sscanf(client_version_string, "SSH-%d.%d-%[^\n]\n",
469             &remote_major, &remote_minor, remote_version) != 3) {
470                 s = "Protocol mismatch.\n";
471                 (void) atomicio(vwrite, sock_out, s, strlen(s));
472                 close(sock_in);
473                 close(sock_out);
474                 logit("Bad protocol version identification '%.100s' from %s",
475                     client_version_string, get_remote_ipaddr());
476                 cleanup_exit(255);
477         }
478         debug("Client protocol version %d.%d; client software version %.100s",
479             remote_major, remote_minor, remote_version);
480
481         compat_datafellows(remote_version);
482
483         if (datafellows & SSH_BUG_PROBE) {
484                 logit("probed from %s with %s.  Don't panic.",
485                     get_remote_ipaddr(), client_version_string);
486                 cleanup_exit(255);
487         }
488
489         if (datafellows & SSH_BUG_SCANNER) {
490                 logit("scanned from %s with %s.  Don't panic.",
491                     get_remote_ipaddr(), client_version_string);
492                 cleanup_exit(255);
493         }
494
495         mismatch = 0;
496         switch (remote_major) {
497         case 1:
498                 if (remote_minor == 99) {
499                         if (options.protocol & SSH_PROTO_2)
500                                 enable_compat20();
501                         else
502                                 mismatch = 1;
503                         break;
504                 }
505                 if (!(options.protocol & SSH_PROTO_1)) {
506                         mismatch = 1;
507                         break;
508                 }
509                 if (remote_minor < 3) {
510                         packet_disconnect("Your ssh version is too old and "
511                             "is no longer supported.  Please install a newer version.");
512                 } else if (remote_minor == 3) {
513                         /* note that this disables agent-forwarding */
514                         enable_compat13();
515                 }
516                 break;
517         case 2:
518                 if (options.protocol & SSH_PROTO_2) {
519                         enable_compat20();
520                         break;
521                 }
522                 /* FALLTHROUGH */
523         default:
524                 mismatch = 1;
525                 break;
526         }
527         chop(server_version_string);
528         debug("Local version string %.200s", server_version_string);
529
530         if (mismatch) {
531                 s = "Protocol major versions differ.\n";
532                 (void) atomicio(vwrite, sock_out, s, strlen(s));
533                 close(sock_in);
534                 close(sock_out);
535                 logit("Protocol major versions differ for %s: %.200s vs. %.200s",
536                     get_remote_ipaddr(),
537                     server_version_string, client_version_string);
538                 cleanup_exit(255);
539         }
540 }
541
542 /* Destroy the host and server keys.  They will no longer be needed. */
543 void
544 destroy_sensitive_data(void)
545 {
546         int i;
547
548         if (sensitive_data.server_key) {
549                 key_free(sensitive_data.server_key);
550                 sensitive_data.server_key = NULL;
551         }
552         for (i = 0; i < options.num_host_key_files; i++) {
553                 if (sensitive_data.host_keys[i]) {
554                         key_free(sensitive_data.host_keys[i]);
555                         sensitive_data.host_keys[i] = NULL;
556                 }
557         }
558         sensitive_data.ssh1_host_key = NULL;
559         memset(sensitive_data.ssh1_cookie, 0, SSH_SESSION_KEY_LENGTH);
560 }
561
562 /* Demote private to public keys for network child */
563 void
564 demote_sensitive_data(void)
565 {
566         Key *tmp;
567         int i;
568
569         if (sensitive_data.server_key) {
570                 tmp = key_demote(sensitive_data.server_key);
571                 key_free(sensitive_data.server_key);
572                 sensitive_data.server_key = tmp;
573         }
574
575         for (i = 0; i < options.num_host_key_files; i++) {
576                 if (sensitive_data.host_keys[i]) {
577                         tmp = key_demote(sensitive_data.host_keys[i]);
578                         key_free(sensitive_data.host_keys[i]);
579                         sensitive_data.host_keys[i] = tmp;
580                         if (tmp->type == KEY_RSA1)
581                                 sensitive_data.ssh1_host_key = tmp;
582                 }
583         }
584
585         /* We do not clear ssh1_host key and cookie.  XXX - Okay Niels? */
586 }
587
588 static void
589 privsep_preauth_child(void)
590 {
591         u_int32_t rnd[256];
592         gid_t gidset[1];
593         int i;
594
595         /* Enable challenge-response authentication for privilege separation */
596         privsep_challenge_enable();
597
598         for (i = 0; i < 256; i++)
599                 rnd[i] = arc4random();
600         RAND_seed(rnd, sizeof(rnd));
601
602         /* Demote the private keys to public keys. */
603         demote_sensitive_data();
604
605         /* Change our root directory */
606         if (chroot(_PATH_PRIVSEP_CHROOT_DIR) == -1)
607                 fatal("chroot(\"%s\"): %s", _PATH_PRIVSEP_CHROOT_DIR,
608                     strerror(errno));
609         if (chdir("/") == -1)
610                 fatal("chdir(\"/\"): %s", strerror(errno));
611
612         /* Drop our privileges */
613         debug3("privsep user:group %u:%u", (u_int)privsep_pw->pw_uid,
614             (u_int)privsep_pw->pw_gid);
615 #if 0
616         /* XXX not ready, too heavy after chroot */
617         do_setusercontext(privsep_pw);
618 #else
619         gidset[0] = privsep_pw->pw_gid;
620         if (setgroups(1, gidset) < 0)
621                 fatal("setgroups: %.100s", strerror(errno));
622         permanently_set_uid(privsep_pw);
623 #endif
624 }
625
626 static int
627 privsep_preauth(Authctxt *authctxt)
628 {
629         int status;
630         pid_t pid;
631
632         /* Set up unprivileged child process to deal with network data */
633         pmonitor = monitor_init();
634         /* Store a pointer to the kex for later rekeying */
635         pmonitor->m_pkex = &xxx_kex;
636
637         pid = fork();
638         if (pid == -1) {
639                 fatal("fork of unprivileged child failed");
640         } else if (pid != 0) {
641                 debug2("Network child is on pid %ld", (long)pid);
642
643                 close(pmonitor->m_recvfd);
644                 pmonitor->m_pid = pid;
645                 monitor_child_preauth(authctxt, pmonitor);
646                 close(pmonitor->m_sendfd);
647
648                 /* Sync memory */
649                 monitor_sync(pmonitor);
650
651                 /* Wait for the child's exit status */
652                 while (waitpid(pid, &status, 0) < 0)
653                         if (errno != EINTR)
654                                 break;
655                 return (1);
656         } else {
657                 /* child */
658
659                 close(pmonitor->m_sendfd);
660
661                 /* Demote the child */
662                 if (getuid() == 0 || geteuid() == 0)
663                         privsep_preauth_child();
664                 setproctitle("%s", "[net]");
665         }
666         return (0);
667 }
668
669 static void
670 privsep_postauth(Authctxt *authctxt)
671 {
672 #ifdef DISABLE_FD_PASSING
673         if (1) {
674 #else
675         if (authctxt->pw->pw_uid == 0 || options.use_login) {
676 #endif
677                 /* File descriptor passing is broken or root login */
678                 use_privsep = 0;
679                 goto skip;
680         }
681
682         /* New socket pair */
683         monitor_reinit(pmonitor);
684
685         pmonitor->m_pid = fork();
686         if (pmonitor->m_pid == -1)
687                 fatal("fork of unprivileged child failed");
688         else if (pmonitor->m_pid != 0) {
689                 debug2("User child is on pid %ld", (long)pmonitor->m_pid);
690                 close(pmonitor->m_recvfd);
691                 buffer_clear(&loginmsg);
692                 monitor_child_postauth(pmonitor);
693
694                 /* NEVERREACHED */
695                 exit(0);
696         }
697
698         close(pmonitor->m_sendfd);
699
700         /* Demote the private keys to public keys. */
701         demote_sensitive_data();
702
703         /* Drop privileges */
704         do_setusercontext(authctxt->pw);
705
706  skip:
707         /* It is safe now to apply the key state */
708         monitor_apply_keystate(pmonitor);
709
710         /*
711          * Tell the packet layer that authentication was successful, since
712          * this information is not part of the key state.
713          */
714         packet_set_authenticated();
715 }
716
717 static char *
718 list_hostkey_types(void)
719 {
720         Buffer b;
721         const char *p;
722         char *ret;
723         int i;
724
725         buffer_init(&b);
726         for (i = 0; i < options.num_host_key_files; i++) {
727                 Key *key = sensitive_data.host_keys[i];
728                 if (key == NULL)
729                         continue;
730                 switch (key->type) {
731                 case KEY_RSA:
732                 case KEY_DSA:
733                         if (buffer_len(&b) > 0)
734                                 buffer_append(&b, ",", 1);
735                         p = key_ssh_name(key);
736                         buffer_append(&b, p, strlen(p));
737                         break;
738                 }
739         }
740         buffer_append(&b, "\0", 1);
741         ret = xstrdup(buffer_ptr(&b));
742         buffer_free(&b);
743         debug("list_hostkey_types: %s", ret);
744         return ret;
745 }
746
747 Key *
748 get_hostkey_by_type(int type)
749 {
750         int i;
751
752         for (i = 0; i < options.num_host_key_files; i++) {
753                 Key *key = sensitive_data.host_keys[i];
754                 if (key != NULL && key->type == type)
755                         return key;
756         }
757         return NULL;
758 }
759
760 Key *
761 get_hostkey_by_index(int ind)
762 {
763         if (ind < 0 || ind >= options.num_host_key_files)
764                 return (NULL);
765         return (sensitive_data.host_keys[ind]);
766 }
767
768 int
769 get_hostkey_index(Key *key)
770 {
771         int i;
772
773         for (i = 0; i < options.num_host_key_files; i++) {
774                 if (key == sensitive_data.host_keys[i])
775                         return (i);
776         }
777         return (-1);
778 }
779
780 /*
781  * returns 1 if connection should be dropped, 0 otherwise.
782  * dropping starts at connection #max_startups_begin with a probability
783  * of (max_startups_rate/100). the probability increases linearly until
784  * all connections are dropped for startups > max_startups
785  */
786 static int
787 drop_connection(int startups)
788 {
789         int p, r;
790
791         if (startups < options.max_startups_begin)
792                 return 0;
793         if (startups >= options.max_startups)
794                 return 1;
795         if (options.max_startups_rate == 100)
796                 return 1;
797
798         p  = 100 - options.max_startups_rate;
799         p *= startups - options.max_startups_begin;
800         p /= options.max_startups - options.max_startups_begin;
801         p += options.max_startups_rate;
802         r = arc4random() % 100;
803
804         debug("drop_connection: p %d, r %d", p, r);
805         return (r < p) ? 1 : 0;
806 }
807
808 static void
809 usage(void)
810 {
811         fprintf(stderr, "%s, %s\n",
812             SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
813         fprintf(stderr,
814 "usage: sshd [-46Ddeiqt] [-b bits] [-f config_file] [-g login_grace_time]\n"
815 "            [-h host_key_file] [-k key_gen_time] [-o option] [-p port] [-u len]\n"
816         );
817         exit(1);
818 }
819
820 static void
821 send_rexec_state(int fd, Buffer *conf)
822 {
823         Buffer m;
824
825         debug3("%s: entering fd = %d config len %d", __func__, fd,
826             buffer_len(conf));
827
828         /*
829          * Protocol from reexec master to child:
830          *      string  configuration
831          *      u_int   ephemeral_key_follows
832          *      bignum  e               (only if ephemeral_key_follows == 1)
833          *      bignum  n                       "
834          *      bignum  d                       "
835          *      bignum  iqmp                    "
836          *      bignum  p                       "
837          *      bignum  q                       "
838          *      string rngseed          (only if OpenSSL is not self-seeded)
839          */
840         buffer_init(&m);
841         buffer_put_cstring(&m, buffer_ptr(conf));
842
843         if (sensitive_data.server_key != NULL &&
844             sensitive_data.server_key->type == KEY_RSA1) {
845                 buffer_put_int(&m, 1);
846                 buffer_put_bignum(&m, sensitive_data.server_key->rsa->e);
847                 buffer_put_bignum(&m, sensitive_data.server_key->rsa->n);
848                 buffer_put_bignum(&m, sensitive_data.server_key->rsa->d);
849                 buffer_put_bignum(&m, sensitive_data.server_key->rsa->iqmp);
850                 buffer_put_bignum(&m, sensitive_data.server_key->rsa->p);
851                 buffer_put_bignum(&m, sensitive_data.server_key->rsa->q);
852         } else
853                 buffer_put_int(&m, 0);
854
855 #ifndef OPENSSL_PRNG_ONLY
856         rexec_send_rng_seed(&m);
857 #endif
858
859         if (ssh_msg_send(fd, 0, &m) == -1)
860                 fatal("%s: ssh_msg_send failed", __func__);
861
862         buffer_free(&m);
863
864         debug3("%s: done", __func__);
865 }
866
867 static void
868 recv_rexec_state(int fd, Buffer *conf)
869 {
870         Buffer m;
871         char *cp;
872         u_int len;
873
874         debug3("%s: entering fd = %d", __func__, fd);
875
876         buffer_init(&m);
877
878         if (ssh_msg_recv(fd, &m) == -1)
879                 fatal("%s: ssh_msg_recv failed", __func__);
880         if (buffer_get_char(&m) != 0)
881                 fatal("%s: rexec version mismatch", __func__);
882
883         cp = buffer_get_string(&m, &len);
884         if (conf != NULL)
885                 buffer_append(conf, cp, len + 1);
886         xfree(cp);
887
888         if (buffer_get_int(&m)) {
889                 if (sensitive_data.server_key != NULL)
890                         key_free(sensitive_data.server_key);
891                 sensitive_data.server_key = key_new_private(KEY_RSA1);
892                 buffer_get_bignum(&m, sensitive_data.server_key->rsa->e);
893                 buffer_get_bignum(&m, sensitive_data.server_key->rsa->n);
894                 buffer_get_bignum(&m, sensitive_data.server_key->rsa->d);
895                 buffer_get_bignum(&m, sensitive_data.server_key->rsa->iqmp);
896                 buffer_get_bignum(&m, sensitive_data.server_key->rsa->p);
897                 buffer_get_bignum(&m, sensitive_data.server_key->rsa->q);
898                 rsa_generate_additional_parameters(
899                     sensitive_data.server_key->rsa);
900         }
901
902 #ifndef OPENSSL_PRNG_ONLY
903         rexec_recv_rng_seed(&m);
904 #endif
905
906         buffer_free(&m);
907
908         debug3("%s: done", __func__);
909 }
910
911 /* Accept a connection from inetd */
912 static void
913 server_accept_inetd(int *sock_in, int *sock_out)
914 {
915         int fd;
916
917         startup_pipe = -1;
918         if (rexeced_flag) {
919                 close(REEXEC_CONFIG_PASS_FD);
920                 *sock_in = *sock_out = dup(STDIN_FILENO);
921                 if (!debug_flag) {
922                         startup_pipe = dup(REEXEC_STARTUP_PIPE_FD);
923                         close(REEXEC_STARTUP_PIPE_FD);
924                 }
925         } else {
926                 *sock_in = dup(STDIN_FILENO);
927                 *sock_out = dup(STDOUT_FILENO);
928         }
929         /*
930          * We intentionally do not close the descriptors 0, 1, and 2
931          * as our code for setting the descriptors won't work if
932          * ttyfd happens to be one of those.
933          */
934         if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
935                 dup2(fd, STDIN_FILENO);
936                 dup2(fd, STDOUT_FILENO);
937                 if (fd > STDOUT_FILENO)
938                         close(fd);
939         }
940         debug("inetd sockets after dupping: %d, %d", *sock_in, *sock_out);
941 }
942
943 /*
944  * Listen for TCP connections
945  */
946 static void
947 server_listen(void)
948 {
949         int ret, listen_sock, on = 1;
950         struct addrinfo *ai;
951         char ntop[NI_MAXHOST], strport[NI_MAXSERV];
952
953         for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
954                 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
955                         continue;
956                 if (num_listen_socks >= MAX_LISTEN_SOCKS)
957                         fatal("Too many listen sockets. "
958                             "Enlarge MAX_LISTEN_SOCKS");
959                 if ((ret = getnameinfo(ai->ai_addr, ai->ai_addrlen,
960                     ntop, sizeof(ntop), strport, sizeof(strport),
961                     NI_NUMERICHOST|NI_NUMERICSERV)) != 0) {
962                         error("getnameinfo failed: %.100s",
963                             (ret != EAI_SYSTEM) ? gai_strerror(ret) :
964                             strerror(errno));
965                         continue;
966                 }
967                 /* Create socket for listening. */
968                 listen_sock = socket(ai->ai_family, ai->ai_socktype,
969                     ai->ai_protocol);
970                 if (listen_sock < 0) {
971                         /* kernel may not support ipv6 */
972                         verbose("socket: %.100s", strerror(errno));
973                         continue;
974                 }
975                 if (set_nonblock(listen_sock) == -1) {
976                         close(listen_sock);
977                         continue;
978                 }
979                 /*
980                  * Set socket options.
981                  * Allow local port reuse in TIME_WAIT.
982                  */
983                 if (setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
984                     &on, sizeof(on)) == -1)
985                         error("setsockopt SO_REUSEADDR: %s", strerror(errno));
986
987                 debug("Bind to port %s on %s.", strport, ntop);
988
989                 /* Bind the socket to the desired port. */
990                 if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) {
991                         error("Bind to port %s on %s failed: %.200s.",
992                             strport, ntop, strerror(errno));
993                         close(listen_sock);
994                         continue;
995                 }
996                 listen_socks[num_listen_socks] = listen_sock;
997                 num_listen_socks++;
998
999                 /* Start listening on the port. */
1000                 if (listen(listen_sock, SSH_LISTEN_BACKLOG) < 0)
1001                         fatal("listen on [%s]:%s: %.100s",
1002                             ntop, strport, strerror(errno));
1003                 logit("Server listening on %s port %s.", ntop, strport);
1004         }
1005         freeaddrinfo(options.listen_addrs);
1006
1007         if (!num_listen_socks)
1008                 fatal("Cannot bind any address.");
1009 }
1010
1011 /*
1012  * The main TCP accept loop. Note that, for the non-debug case, returns
1013  * from this function are in a forked subprocess.
1014  */
1015 static void
1016 server_accept_loop(int *sock_in, int *sock_out, int *newsock, int *config_s)
1017 {
1018         fd_set *fdset;
1019         int i, j, ret, maxfd;
1020         int key_used = 0, startups = 0;
1021         int startup_p[2] = { -1 , -1 };
1022         struct sockaddr_storage from;
1023         socklen_t fromlen;
1024         pid_t pid;
1025
1026         /* setup fd set for accept */
1027         fdset = NULL;
1028         maxfd = 0;
1029         for (i = 0; i < num_listen_socks; i++)
1030                 if (listen_socks[i] > maxfd)
1031                         maxfd = listen_socks[i];
1032         /* pipes connected to unauthenticated childs */
1033         startup_pipes = xcalloc(options.max_startups, sizeof(int));
1034         for (i = 0; i < options.max_startups; i++)
1035                 startup_pipes[i] = -1;
1036
1037         /*
1038          * Stay listening for connections until the system crashes or
1039          * the daemon is killed with a signal.
1040          */
1041         for (;;) {
1042                 if (received_sighup)
1043                         sighup_restart();
1044                 if (fdset != NULL)
1045                         xfree(fdset);
1046                 fdset = (fd_set *)xcalloc(howmany(maxfd + 1, NFDBITS),
1047                     sizeof(fd_mask));
1048
1049                 for (i = 0; i < num_listen_socks; i++)
1050                         FD_SET(listen_socks[i], fdset);
1051                 for (i = 0; i < options.max_startups; i++)
1052                         if (startup_pipes[i] != -1)
1053                                 FD_SET(startup_pipes[i], fdset);
1054
1055                 /* Wait in select until there is a connection. */
1056                 ret = select(maxfd+1, fdset, NULL, NULL, NULL);
1057                 if (ret < 0 && errno != EINTR)
1058                         error("select: %.100s", strerror(errno));
1059                 if (received_sigterm) {
1060                         logit("Received signal %d; terminating.",
1061                             (int) received_sigterm);
1062                         close_listen_socks();
1063                         unlink(options.pid_file);
1064                         exit(255);
1065                 }
1066                 if (key_used && key_do_regen) {
1067                         generate_ephemeral_server_key();
1068                         key_used = 0;
1069                         key_do_regen = 0;
1070                 }
1071                 if (ret < 0)
1072                         continue;
1073
1074                 for (i = 0; i < options.max_startups; i++)
1075                         if (startup_pipes[i] != -1 &&
1076                             FD_ISSET(startup_pipes[i], fdset)) {
1077                                 /*
1078                                  * the read end of the pipe is ready
1079                                  * if the child has closed the pipe
1080                                  * after successful authentication
1081                                  * or if the child has died
1082                                  */
1083                                 close(startup_pipes[i]);
1084                                 startup_pipes[i] = -1;
1085                                 startups--;
1086                         }
1087                 for (i = 0; i < num_listen_socks; i++) {
1088                         if (!FD_ISSET(listen_socks[i], fdset))
1089                                 continue;
1090                         fromlen = sizeof(from);
1091                         *newsock = accept(listen_socks[i],
1092                             (struct sockaddr *)&from, &fromlen);
1093                         if (*newsock < 0) {
1094                                 if (errno != EINTR && errno != EWOULDBLOCK)
1095                                         error("accept: %.100s", strerror(errno));
1096                                 continue;
1097                         }
1098                         if (unset_nonblock(*newsock) == -1) {
1099                                 close(*newsock);
1100                                 continue;
1101                         }
1102                         if (drop_connection(startups) == 1) {
1103                                 debug("drop connection #%d", startups);
1104                                 close(*newsock);
1105                                 continue;
1106                         }
1107                         if (pipe(startup_p) == -1) {
1108                                 close(*newsock);
1109                                 continue;
1110                         }
1111
1112                         if (rexec_flag && socketpair(AF_UNIX,
1113                             SOCK_STREAM, 0, config_s) == -1) {
1114                                 error("reexec socketpair: %s",
1115                                     strerror(errno));
1116                                 close(*newsock);
1117                                 close(startup_p[0]);
1118                                 close(startup_p[1]);
1119                                 continue;
1120                         }
1121
1122                         for (j = 0; j < options.max_startups; j++)
1123                                 if (startup_pipes[j] == -1) {
1124                                         startup_pipes[j] = startup_p[0];
1125                                         if (maxfd < startup_p[0])
1126                                                 maxfd = startup_p[0];
1127                                         startups++;
1128                                         break;
1129                                 }
1130
1131                         /*
1132                          * Got connection.  Fork a child to handle it, unless
1133                          * we are in debugging mode.
1134                          */
1135                         if (debug_flag) {
1136                                 /*
1137                                  * In debugging mode.  Close the listening
1138                                  * socket, and start processing the
1139                                  * connection without forking.
1140                                  */
1141                                 debug("Server will not fork when running in debugging mode.");
1142                                 close_listen_socks();
1143                                 *sock_in = *newsock;
1144                                 *sock_out = *newsock;
1145                                 close(startup_p[0]);
1146                                 close(startup_p[1]);
1147                                 startup_pipe = -1;
1148                                 pid = getpid();
1149                                 if (rexec_flag) {
1150                                         send_rexec_state(config_s[0],
1151                                             &cfg);
1152                                         close(config_s[0]);
1153                                 }
1154                                 break;
1155                         }
1156
1157                         /*
1158                          * Normal production daemon.  Fork, and have
1159                          * the child process the connection. The
1160                          * parent continues listening.
1161                          */
1162                         platform_pre_fork();
1163                         if ((pid = fork()) == 0) {
1164                                 /*
1165                                  * Child.  Close the listening and
1166                                  * max_startup sockets.  Start using
1167                                  * the accepted socket. Reinitialize
1168                                  * logging (since our pid has changed).
1169                                  * We break out of the loop to handle
1170                                  * the connection.
1171                                  */
1172                                 platform_post_fork_child();
1173                                 startup_pipe = startup_p[1];
1174                                 close_startup_pipes();
1175                                 close_listen_socks();
1176                                 *sock_in = *newsock;
1177                                 *sock_out = *newsock;
1178                                 log_init(__progname,
1179                                     options.log_level,
1180                                     options.log_facility,
1181                                     log_stderr);
1182                                 if (rexec_flag)
1183                                         close(config_s[0]);
1184                                 break;
1185                         }
1186
1187                         /* Parent.  Stay in the loop. */
1188                         platform_post_fork_parent(pid);
1189                         if (pid < 0)
1190                                 error("fork: %.100s", strerror(errno));
1191                         else
1192                                 debug("Forked child %ld.", (long)pid);
1193
1194                         close(startup_p[1]);
1195
1196                         if (rexec_flag) {
1197                                 send_rexec_state(config_s[0], &cfg);
1198                                 close(config_s[0]);
1199                                 close(config_s[1]);
1200                         }
1201
1202                         /*
1203                          * Mark that the key has been used (it
1204                          * was "given" to the child).
1205                          */
1206                         if ((options.protocol & SSH_PROTO_1) &&
1207                             key_used == 0) {
1208                                 /* Schedule server key regeneration alarm. */
1209                                 signal(SIGALRM, key_regeneration_alarm);
1210                                 alarm(options.key_regeneration_time);
1211                                 key_used = 1;
1212                         }
1213
1214                         close(*newsock);
1215
1216                         /*
1217                          * Ensure that our random state differs
1218                          * from that of the child
1219                          */
1220                         arc4random_stir();
1221                 }
1222
1223                 /* child process check (or debug mode) */
1224                 if (num_listen_socks < 0)
1225                         break;
1226         }
1227 }
1228
1229
1230 /*
1231  * Main program for the daemon.
1232  */
1233 int
1234 main(int ac, char **av)
1235 {
1236         extern char *optarg;
1237         extern int optind;
1238         int opt, i, on = 1;
1239         int sock_in = -1, sock_out = -1, newsock = -1;
1240         const char *remote_ip;
1241         int remote_port;
1242         char *line;
1243         int config_s[2] = { -1 , -1 };
1244         Key *key;
1245         Authctxt *authctxt;
1246
1247 #ifdef HAVE_SECUREWARE
1248         (void)set_auth_parameters(ac, av);
1249 #endif
1250         __progname = ssh_get_progname(av[0]);
1251         init_rng();
1252
1253         /* Save argv. Duplicate so setproctitle emulation doesn't clobber it */
1254         saved_argc = ac;
1255         rexec_argc = ac;
1256         saved_argv = xcalloc(ac + 1, sizeof(*saved_argv));
1257         for (i = 0; i < ac; i++)
1258                 saved_argv[i] = xstrdup(av[i]);
1259         saved_argv[i] = NULL;
1260
1261 #ifndef HAVE_SETPROCTITLE
1262         /* Prepare for later setproctitle emulation */
1263         compat_init_setproctitle(ac, av);
1264         av = saved_argv;
1265 #endif
1266
1267         if (geteuid() == 0 && setgroups(0, NULL) == -1)
1268                 debug("setgroups(): %.200s", strerror(errno));
1269
1270         /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1271         sanitise_stdfd();
1272
1273         /* Initialize configuration options to their default values. */
1274         initialize_server_options(&options);
1275
1276         /* Parse command-line arguments. */
1277         while ((opt = getopt(ac, av, "f:p:b:k:h:g:u:o:dDeiqrtQR46")) != -1) {
1278                 switch (opt) {
1279                 case '4':
1280                         options.address_family = AF_INET;
1281                         break;
1282                 case '6':
1283                         options.address_family = AF_INET6;
1284                         break;
1285                 case 'f':
1286                         config_file_name = optarg;
1287                         break;
1288                 case 'd':
1289                         if (debug_flag == 0) {
1290                                 debug_flag = 1;
1291                                 options.log_level = SYSLOG_LEVEL_DEBUG1;
1292                         } else if (options.log_level < SYSLOG_LEVEL_DEBUG3)
1293                                 options.log_level++;
1294                         break;
1295                 case 'D':
1296                         no_daemon_flag = 1;
1297                         break;
1298                 case 'e':
1299                         log_stderr = 1;
1300                         break;
1301                 case 'i':
1302                         inetd_flag = 1;
1303                         break;
1304                 case 'r':
1305                         rexec_flag = 0;
1306                         break;
1307                 case 'R':
1308                         rexeced_flag = 1;
1309                         inetd_flag = 1;
1310                         break;
1311                 case 'Q':
1312                         /* ignored */
1313                         break;
1314                 case 'q':
1315                         options.log_level = SYSLOG_LEVEL_QUIET;
1316                         break;
1317                 case 'b':
1318                         options.server_key_bits = (int)strtonum(optarg, 256,
1319                             32768, NULL);
1320                         break;
1321                 case 'p':
1322                         options.ports_from_cmdline = 1;
1323                         if (options.num_ports >= MAX_PORTS) {
1324                                 fprintf(stderr, "too many ports.\n");
1325                                 exit(1);
1326                         }
1327                         options.ports[options.num_ports++] = a2port(optarg);
1328                         if (options.ports[options.num_ports-1] == 0) {
1329                                 fprintf(stderr, "Bad port number.\n");
1330                                 exit(1);
1331                         }
1332                         break;
1333                 case 'g':
1334                         if ((options.login_grace_time = convtime(optarg)) == -1) {
1335                                 fprintf(stderr, "Invalid login grace time.\n");
1336                                 exit(1);
1337                         }
1338                         break;
1339                 case 'k':
1340                         if ((options.key_regeneration_time = convtime(optarg)) == -1) {
1341                                 fprintf(stderr, "Invalid key regeneration interval.\n");
1342                                 exit(1);
1343                         }
1344                         break;
1345                 case 'h':
1346                         if (options.num_host_key_files >= MAX_HOSTKEYS) {
1347                                 fprintf(stderr, "too many host keys.\n");
1348                                 exit(1);
1349                         }
1350                         options.host_key_files[options.num_host_key_files++] = optarg;
1351                         break;
1352                 case 't':
1353                         test_flag = 1;
1354                         break;
1355                 case 'u':
1356                         utmp_len = (u_int)strtonum(optarg, 0, MAXHOSTNAMELEN+1, NULL);
1357                         if (utmp_len > MAXHOSTNAMELEN) {
1358                                 fprintf(stderr, "Invalid utmp length.\n");
1359                                 exit(1);
1360                         }
1361                         break;
1362                 case 'o':
1363                         line = xstrdup(optarg);
1364                         if (process_server_config_line(&options, line,
1365                             "command-line", 0, NULL, NULL, NULL, NULL) != 0)
1366                                 exit(1);
1367                         xfree(line);
1368                         break;
1369                 case '?':
1370                 default:
1371                         usage();
1372                         break;
1373                 }
1374         }
1375         if (rexeced_flag || inetd_flag)
1376                 rexec_flag = 0;
1377         if (rexec_flag && (av[0] == NULL || *av[0] != '/'))
1378                 fatal("sshd re-exec requires execution with an absolute path");
1379         if (rexeced_flag)
1380                 closefrom(REEXEC_MIN_FREE_FD);
1381         else
1382                 closefrom(REEXEC_DEVCRYPTO_RESERVED_FD);
1383
1384         SSLeay_add_all_algorithms();
1385
1386         /*
1387          * Force logging to stderr until we have loaded the private host
1388          * key (unless started from inetd)
1389          */
1390         log_init(__progname,
1391             options.log_level == SYSLOG_LEVEL_NOT_SET ?
1392             SYSLOG_LEVEL_INFO : options.log_level,
1393             options.log_facility == SYSLOG_FACILITY_NOT_SET ?
1394             SYSLOG_FACILITY_AUTH : options.log_facility,
1395             log_stderr || !inetd_flag);
1396
1397         /*
1398          * Unset KRB5CCNAME, otherwise the user's session may inherit it from
1399          * root's environment
1400          */
1401         if (getenv("KRB5CCNAME") != NULL)
1402                 unsetenv("KRB5CCNAME");
1403
1404 #ifdef _UNICOS
1405         /* Cray can define user privs drop all privs now!
1406          * Not needed on PRIV_SU systems!
1407          */
1408         drop_cray_privs();
1409 #endif
1410
1411         sensitive_data.server_key = NULL;
1412         sensitive_data.ssh1_host_key = NULL;
1413         sensitive_data.have_ssh1_key = 0;
1414         sensitive_data.have_ssh2_key = 0;
1415
1416         /* Fetch our configuration */
1417         buffer_init(&cfg);
1418         if (rexeced_flag)
1419                 recv_rexec_state(REEXEC_CONFIG_PASS_FD, &cfg);
1420         else
1421                 load_server_config(config_file_name, &cfg);
1422
1423         parse_server_config(&options, rexeced_flag ? "rexec" : config_file_name,
1424             &cfg, NULL, NULL, NULL);
1425
1426         seed_rng();
1427
1428         /* Fill in default values for those options not explicitly set. */
1429         fill_default_server_options(&options);
1430
1431         /* set default channel AF */
1432         channel_set_af(options.address_family);
1433
1434         /* Check that there are no remaining arguments. */
1435         if (optind < ac) {
1436                 fprintf(stderr, "Extra argument %s.\n", av[optind]);
1437                 exit(1);
1438         }
1439
1440         debug("sshd version %.100s", SSH_RELEASE);
1441
1442         /* Store privilege separation user for later use */
1443         if ((privsep_pw = getpwnam(SSH_PRIVSEP_USER)) == NULL)
1444                 fatal("Privilege separation user %s does not exist",
1445                     SSH_PRIVSEP_USER);
1446         memset(privsep_pw->pw_passwd, 0, strlen(privsep_pw->pw_passwd));
1447         privsep_pw->pw_passwd = "*";
1448         privsep_pw = pwcopy(privsep_pw);
1449         endpwent();
1450
1451         /* load private host keys */
1452         sensitive_data.host_keys = xcalloc(options.num_host_key_files,
1453             sizeof(Key *));
1454         for (i = 0; i < options.num_host_key_files; i++)
1455                 sensitive_data.host_keys[i] = NULL;
1456
1457         for (i = 0; i < options.num_host_key_files; i++) {
1458                 key = key_load_private(options.host_key_files[i], "", NULL);
1459                 sensitive_data.host_keys[i] = key;
1460                 if (key == NULL) {
1461                         error("Could not load host key: %s",
1462                             options.host_key_files[i]);
1463                         sensitive_data.host_keys[i] = NULL;
1464                         continue;
1465                 }
1466                 switch (key->type) {
1467                 case KEY_RSA1:
1468                         sensitive_data.ssh1_host_key = key;
1469                         sensitive_data.have_ssh1_key = 1;
1470                         break;
1471                 case KEY_RSA:
1472                 case KEY_DSA:
1473                         sensitive_data.have_ssh2_key = 1;
1474                         break;
1475                 }
1476                 debug("private host key: #%d type %d %s", i, key->type,
1477                     key_type(key));
1478         }
1479         if ((options.protocol & SSH_PROTO_1) && !sensitive_data.have_ssh1_key) {
1480                 logit("Disabling protocol version 1. Could not load host key");
1481                 options.protocol &= ~SSH_PROTO_1;
1482         }
1483         if ((options.protocol & SSH_PROTO_2) && !sensitive_data.have_ssh2_key) {
1484                 logit("Disabling protocol version 2. Could not load host key");
1485                 options.protocol &= ~SSH_PROTO_2;
1486         }
1487         if (!(options.protocol & (SSH_PROTO_1|SSH_PROTO_2))) {
1488                 logit("sshd: no hostkeys available -- exiting.");
1489                 exit(1);
1490         }
1491
1492         /* Check certain values for sanity. */
1493         if (options.protocol & SSH_PROTO_1) {
1494                 if (options.server_key_bits < 512 ||
1495                     options.server_key_bits > 32768) {
1496                         fprintf(stderr, "Bad server key size.\n");
1497                         exit(1);
1498                 }
1499                 /*
1500                  * Check that server and host key lengths differ sufficiently. This
1501                  * is necessary to make double encryption work with rsaref. Oh, I
1502                  * hate software patents. I dont know if this can go? Niels
1503                  */
1504                 if (options.server_key_bits >
1505                     BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) -
1506                     SSH_KEY_BITS_RESERVED && options.server_key_bits <
1507                     BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) +
1508                     SSH_KEY_BITS_RESERVED) {
1509                         options.server_key_bits =
1510                             BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) +
1511                             SSH_KEY_BITS_RESERVED;
1512                         debug("Forcing server key to %d bits to make it differ from host key.",
1513                             options.server_key_bits);
1514                 }
1515         }
1516
1517         if (use_privsep) {
1518                 struct stat st;
1519
1520                 if ((stat(_PATH_PRIVSEP_CHROOT_DIR, &st) == -1) ||
1521                     (S_ISDIR(st.st_mode) == 0))
1522                         fatal("Missing privilege separation directory: %s",
1523                             _PATH_PRIVSEP_CHROOT_DIR);
1524
1525 #ifdef HAVE_CYGWIN
1526                 if (check_ntsec(_PATH_PRIVSEP_CHROOT_DIR) &&
1527                     (st.st_uid != getuid () ||
1528                     (st.st_mode & (S_IWGRP|S_IWOTH)) != 0))
1529 #else
1530                 if (st.st_uid != 0 || (st.st_mode & (S_IWGRP|S_IWOTH)) != 0)
1531 #endif
1532                         fatal("%s must be owned by root and not group or "
1533                             "world-writable.", _PATH_PRIVSEP_CHROOT_DIR);
1534         }
1535
1536         /* Configuration looks good, so exit if in test mode. */
1537         if (test_flag)
1538                 exit(0);
1539
1540         /*
1541          * Clear out any supplemental groups we may have inherited.  This
1542          * prevents inadvertent creation of files with bad modes (in the
1543          * portable version at least, it's certainly possible for PAM
1544          * to create a file, and we can't control the code in every
1545          * module which might be used).
1546          */
1547         if (setgroups(0, NULL) < 0)
1548                 debug("setgroups() failed: %.200s", strerror(errno));
1549
1550         if (rexec_flag) {
1551                 rexec_argv = xcalloc(rexec_argc + 2, sizeof(char *));
1552                 for (i = 0; i < rexec_argc; i++) {
1553                         debug("rexec_argv[%d]='%s'", i, saved_argv[i]);
1554                         rexec_argv[i] = saved_argv[i];
1555                 }
1556                 rexec_argv[rexec_argc] = "-R";
1557                 rexec_argv[rexec_argc + 1] = NULL;
1558         }
1559
1560         /* Initialize the log (it is reinitialized below in case we forked). */
1561         if (debug_flag && (!inetd_flag || rexeced_flag))
1562                 log_stderr = 1;
1563         log_init(__progname, options.log_level, options.log_facility, log_stderr);
1564
1565         /*
1566          * If not in debugging mode, and not started from inetd, disconnect
1567          * from the controlling terminal, and fork.  The original process
1568          * exits.
1569          */
1570         if (!(debug_flag || inetd_flag || no_daemon_flag)) {
1571 #ifdef TIOCNOTTY
1572                 int fd;
1573 #endif /* TIOCNOTTY */
1574                 if (daemon(0, 0) < 0)
1575                         fatal("daemon() failed: %.200s", strerror(errno));
1576
1577                 /* Disconnect from the controlling tty. */
1578 #ifdef TIOCNOTTY
1579                 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
1580                 if (fd >= 0) {
1581                         (void) ioctl(fd, TIOCNOTTY, NULL);
1582                         close(fd);
1583                 }
1584 #endif /* TIOCNOTTY */
1585         }
1586         /* Reinitialize the log (because of the fork above). */
1587         log_init(__progname, options.log_level, options.log_facility, log_stderr);
1588
1589         /* Initialize the random number generator. */
1590         arc4random_stir();
1591
1592         /* Chdir to the root directory so that the current disk can be
1593            unmounted if desired. */
1594         chdir("/");
1595
1596         /* ignore SIGPIPE */
1597         signal(SIGPIPE, SIG_IGN);
1598
1599         /* Get a connection, either from inetd or a listening TCP socket */
1600         if (inetd_flag) {
1601                 server_accept_inetd(&sock_in, &sock_out);
1602
1603                 if ((options.protocol & SSH_PROTO_1) &&
1604                     sensitive_data.server_key == NULL)
1605                         generate_ephemeral_server_key();
1606         } else {
1607                 server_listen();
1608
1609                 if (options.protocol & SSH_PROTO_1)
1610                         generate_ephemeral_server_key();
1611
1612                 signal(SIGHUP, sighup_handler);
1613                 signal(SIGCHLD, main_sigchld_handler);
1614                 signal(SIGTERM, sigterm_handler);
1615                 signal(SIGQUIT, sigterm_handler);
1616
1617                 /*
1618                  * Write out the pid file after the sigterm handler
1619                  * is setup and the listen sockets are bound
1620                  */
1621                 if (!debug_flag) {
1622                         FILE *f = fopen(options.pid_file, "w");
1623
1624                         if (f == NULL) {
1625                                 error("Couldn't create pid file \"%s\": %s",
1626                                     options.pid_file, strerror(errno));
1627                         } else {
1628                                 fprintf(f, "%ld\n", (long) getpid());
1629                                 fclose(f);
1630                         }
1631                 }
1632
1633                 /* Accept a connection and return in a forked child */
1634                 server_accept_loop(&sock_in, &sock_out,
1635                     &newsock, config_s);
1636         }
1637
1638         /* This is the child processing a new connection. */
1639         setproctitle("%s", "[accepted]");
1640
1641         /*
1642          * Create a new session and process group since the 4.4BSD
1643          * setlogin() affects the entire process group.  We don't
1644          * want the child to be able to affect the parent.
1645          */
1646 #if !defined(SSHD_ACQUIRES_CTTY)
1647         /*
1648          * If setsid is called, on some platforms sshd will later acquire a
1649          * controlling terminal which will result in "could not set
1650          * controlling tty" errors.
1651          */
1652         if (!debug_flag && !inetd_flag && setsid() < 0)
1653                 error("setsid: %.100s", strerror(errno));
1654 #endif
1655
1656         if (rexec_flag) {
1657                 int fd;
1658
1659                 debug("rexec start in %d out %d newsock %d pipe %d sock %d",
1660                     sock_in, sock_out, newsock, startup_pipe, config_s[0]);
1661                 dup2(newsock, STDIN_FILENO);
1662                 dup2(STDIN_FILENO, STDOUT_FILENO);
1663                 if (startup_pipe == -1)
1664                         close(REEXEC_STARTUP_PIPE_FD);
1665                 else
1666                         dup2(startup_pipe, REEXEC_STARTUP_PIPE_FD);
1667
1668                 dup2(config_s[1], REEXEC_CONFIG_PASS_FD);
1669                 close(config_s[1]);
1670                 if (startup_pipe != -1)
1671                         close(startup_pipe);
1672
1673                 execv(rexec_argv[0], rexec_argv);
1674
1675                 /* Reexec has failed, fall back and continue */
1676                 error("rexec of %s failed: %s", rexec_argv[0], strerror(errno));
1677                 recv_rexec_state(REEXEC_CONFIG_PASS_FD, NULL);
1678                 log_init(__progname, options.log_level,
1679                     options.log_facility, log_stderr);
1680
1681                 /* Clean up fds */
1682                 startup_pipe = REEXEC_STARTUP_PIPE_FD;
1683                 close(config_s[1]);
1684                 close(REEXEC_CONFIG_PASS_FD);
1685                 newsock = sock_out = sock_in = dup(STDIN_FILENO);
1686                 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
1687                         dup2(fd, STDIN_FILENO);
1688                         dup2(fd, STDOUT_FILENO);
1689                         if (fd > STDERR_FILENO)
1690                                 close(fd);
1691                 }
1692                 debug("rexec cleanup in %d out %d newsock %d pipe %d sock %d",
1693                     sock_in, sock_out, newsock, startup_pipe, config_s[0]);
1694         }
1695
1696         /*
1697          * Disable the key regeneration alarm.  We will not regenerate the
1698          * key since we are no longer in a position to give it to anyone. We
1699          * will not restart on SIGHUP since it no longer makes sense.
1700          */
1701         alarm(0);
1702         signal(SIGALRM, SIG_DFL);
1703         signal(SIGHUP, SIG_DFL);
1704         signal(SIGTERM, SIG_DFL);
1705         signal(SIGQUIT, SIG_DFL);
1706         signal(SIGCHLD, SIG_DFL);
1707         signal(SIGINT, SIG_DFL);
1708
1709 #ifdef __FreeBSD__
1710         /*
1711          * Initialize the resolver.  This may not happen automatically
1712          * before privsep chroot().                                   
1713          */
1714         if ((_res.options & RES_INIT) == 0) {
1715                 debug("res_init()");         
1716                 res_init();         
1717         }
1718 #ifdef GSSAPI
1719         /*
1720          * Force GSS-API to parse its configuration and load any
1721          * mechanism plugins.
1722          */
1723         {
1724                 gss_OID_set mechs;
1725                 OM_uint32 minor_status;
1726                 gss_indicate_mechs(&minor_status, &mechs);
1727                 gss_release_oid_set(&minor_status, &mechs);
1728         }
1729 #endif
1730 #endif
1731
1732         /*
1733          * Register our connection.  This turns encryption off because we do
1734          * not have a key.
1735          */
1736         packet_set_connection(sock_in, sock_out);
1737         packet_set_server();
1738
1739         /* Set SO_KEEPALIVE if requested. */
1740         if (options.tcp_keep_alive && packet_connection_is_on_socket() &&
1741             setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, &on, sizeof(on)) < 0)
1742                 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
1743
1744         if ((remote_port = get_remote_port()) < 0) {
1745                 debug("get_remote_port failed");
1746                 cleanup_exit(255);
1747         }
1748
1749         /*
1750          * We use get_canonical_hostname with usedns = 0 instead of
1751          * get_remote_ipaddr here so IP options will be checked.
1752          */
1753         (void) get_canonical_hostname(0);
1754         /*
1755          * The rest of the code depends on the fact that
1756          * get_remote_ipaddr() caches the remote ip, even if
1757          * the socket goes away.
1758          */
1759         remote_ip = get_remote_ipaddr();
1760
1761 #ifdef SSH_AUDIT_EVENTS
1762         audit_connection_from(remote_ip, remote_port);
1763 #endif
1764 #ifdef LIBWRAP
1765         /* Check whether logins are denied from this host. */
1766         if (packet_connection_is_on_socket()) {
1767                 struct request_info req;
1768
1769                 request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, 0);
1770                 fromhost(&req);
1771
1772                 if (!hosts_access(&req)) {
1773                         debug("Connection refused by tcp wrapper");
1774                         refuse(&req);
1775                         /* NOTREACHED */
1776                         fatal("libwrap refuse returns");
1777                 }
1778         }
1779 #endif /* LIBWRAP */
1780
1781         /* Log the connection. */
1782         verbose("Connection from %.500s port %d", remote_ip, remote_port);
1783
1784         /*
1785          * We don't want to listen forever unless the other side
1786          * successfully authenticates itself.  So we set up an alarm which is
1787          * cleared after successful authentication.  A limit of zero
1788          * indicates no limit. Note that we don't set the alarm in debugging
1789          * mode; it is just annoying to have the server exit just when you
1790          * are about to discover the bug.
1791          */
1792         signal(SIGALRM, grace_alarm_handler);
1793         if (!debug_flag)
1794                 alarm(options.login_grace_time);
1795
1796         sshd_exchange_identification(sock_in, sock_out);
1797
1798         packet_set_nonblocking();
1799
1800         /* allocate authentication context */
1801         authctxt = xcalloc(1, sizeof(*authctxt));
1802
1803         authctxt->loginmsg = &loginmsg;
1804
1805         /* XXX global for cleanup, access from other modules */
1806         the_authctxt = authctxt;
1807
1808         /* prepare buffer to collect messages to display to user after login */
1809         buffer_init(&loginmsg);
1810
1811         if (use_privsep)
1812                 if (privsep_preauth(authctxt) == 1)
1813                         goto authenticated;
1814
1815         /* perform the key exchange */
1816         /* authenticate user and start session */
1817         if (compat20) {
1818                 do_ssh2_kex();
1819                 do_authentication2(authctxt);
1820         } else {
1821                 do_ssh1_kex();
1822                 do_authentication(authctxt);
1823         }
1824         /*
1825          * If we use privilege separation, the unprivileged child transfers
1826          * the current keystate and exits
1827          */
1828         if (use_privsep) {
1829                 mm_send_keystate(pmonitor);
1830                 exit(0);
1831         }
1832
1833  authenticated:
1834         /*
1835          * Cancel the alarm we set to limit the time taken for
1836          * authentication.
1837          */
1838         alarm(0);
1839         signal(SIGALRM, SIG_DFL);
1840         authctxt->authenticated = 1;
1841         if (startup_pipe != -1) {
1842                 close(startup_pipe);
1843                 startup_pipe = -1;
1844         }
1845
1846 #ifdef SSH_AUDIT_EVENTS
1847         audit_event(SSH_AUTH_SUCCESS);
1848 #endif
1849
1850         /*
1851          * In privilege separation, we fork another child and prepare
1852          * file descriptor passing.
1853          */
1854         if (use_privsep) {
1855                 privsep_postauth(authctxt);
1856                 /* the monitor process [priv] will not return */
1857                 if (!compat20)
1858                         destroy_sensitive_data();
1859         }
1860
1861         /* Start session. */
1862         do_authenticated(authctxt);
1863
1864         /* The connection has been terminated. */
1865         verbose("Closing connection to %.100s", remote_ip);
1866
1867 #ifdef USE_PAM
1868         if (options.use_pam)
1869                 finish_pam();
1870 #endif /* USE_PAM */
1871
1872 #ifdef SSH_AUDIT_EVENTS
1873         PRIVSEP(audit_event(SSH_CONNECTION_CLOSE));
1874 #endif
1875
1876         packet_close();
1877
1878         if (use_privsep)
1879                 mm_terminate();
1880
1881         exit(0);
1882 }
1883
1884 /*
1885  * Decrypt session_key_int using our private server key and private host key
1886  * (key with larger modulus first).
1887  */
1888 int
1889 ssh1_session_key(BIGNUM *session_key_int)
1890 {
1891         int rsafail = 0;
1892
1893         if (BN_cmp(sensitive_data.server_key->rsa->n,
1894             sensitive_data.ssh1_host_key->rsa->n) > 0) {
1895                 /* Server key has bigger modulus. */
1896                 if (BN_num_bits(sensitive_data.server_key->rsa->n) <
1897                     BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) +
1898                     SSH_KEY_BITS_RESERVED) {
1899                         fatal("do_connection: %s: "
1900                             "server_key %d < host_key %d + SSH_KEY_BITS_RESERVED %d",
1901                             get_remote_ipaddr(),
1902                             BN_num_bits(sensitive_data.server_key->rsa->n),
1903                             BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1904                             SSH_KEY_BITS_RESERVED);
1905                 }
1906                 if (rsa_private_decrypt(session_key_int, session_key_int,
1907                     sensitive_data.server_key->rsa) <= 0)
1908                         rsafail++;
1909                 if (rsa_private_decrypt(session_key_int, session_key_int,
1910                     sensitive_data.ssh1_host_key->rsa) <= 0)
1911                         rsafail++;
1912         } else {
1913                 /* Host key has bigger modulus (or they are equal). */
1914                 if (BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) <
1915                     BN_num_bits(sensitive_data.server_key->rsa->n) +
1916                     SSH_KEY_BITS_RESERVED) {
1917                         fatal("do_connection: %s: "
1918                             "host_key %d < server_key %d + SSH_KEY_BITS_RESERVED %d",
1919                             get_remote_ipaddr(),
1920                             BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1921                             BN_num_bits(sensitive_data.server_key->rsa->n),
1922                             SSH_KEY_BITS_RESERVED);
1923                 }
1924                 if (rsa_private_decrypt(session_key_int, session_key_int,
1925                     sensitive_data.ssh1_host_key->rsa) < 0)
1926                         rsafail++;
1927                 if (rsa_private_decrypt(session_key_int, session_key_int,
1928                     sensitive_data.server_key->rsa) < 0)
1929                         rsafail++;
1930         }
1931         return (rsafail);
1932 }
1933 /*
1934  * SSH1 key exchange
1935  */
1936 static void
1937 do_ssh1_kex(void)
1938 {
1939         int i, len;
1940         int rsafail = 0;
1941         BIGNUM *session_key_int;
1942         u_char session_key[SSH_SESSION_KEY_LENGTH];
1943         u_char cookie[8];
1944         u_int cipher_type, auth_mask, protocol_flags;
1945         u_int32_t rnd = 0;
1946
1947         /*
1948          * Generate check bytes that the client must send back in the user
1949          * packet in order for it to be accepted; this is used to defy ip
1950          * spoofing attacks.  Note that this only works against somebody
1951          * doing IP spoofing from a remote machine; any machine on the local
1952          * network can still see outgoing packets and catch the random
1953          * cookie.  This only affects rhosts authentication, and this is one
1954          * of the reasons why it is inherently insecure.
1955          */
1956         for (i = 0; i < 8; i++) {
1957                 if (i % 4 == 0)
1958                         rnd = arc4random();
1959                 cookie[i] = rnd & 0xff;
1960                 rnd >>= 8;
1961         }
1962
1963         /*
1964          * Send our public key.  We include in the packet 64 bits of random
1965          * data that must be matched in the reply in order to prevent IP
1966          * spoofing.
1967          */
1968         packet_start(SSH_SMSG_PUBLIC_KEY);
1969         for (i = 0; i < 8; i++)
1970                 packet_put_char(cookie[i]);
1971
1972         /* Store our public server RSA key. */
1973         packet_put_int(BN_num_bits(sensitive_data.server_key->rsa->n));
1974         packet_put_bignum(sensitive_data.server_key->rsa->e);
1975         packet_put_bignum(sensitive_data.server_key->rsa->n);
1976
1977         /* Store our public host RSA key. */
1978         packet_put_int(BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
1979         packet_put_bignum(sensitive_data.ssh1_host_key->rsa->e);
1980         packet_put_bignum(sensitive_data.ssh1_host_key->rsa->n);
1981
1982         /* Put protocol flags. */
1983         packet_put_int(SSH_PROTOFLAG_HOST_IN_FWD_OPEN);
1984
1985         /* Declare which ciphers we support. */
1986         packet_put_int(cipher_mask_ssh1(0));
1987
1988         /* Declare supported authentication types. */
1989         auth_mask = 0;
1990         if (options.rhosts_rsa_authentication)
1991                 auth_mask |= 1 << SSH_AUTH_RHOSTS_RSA;
1992         if (options.rsa_authentication)
1993                 auth_mask |= 1 << SSH_AUTH_RSA;
1994         if (options.challenge_response_authentication == 1)
1995                 auth_mask |= 1 << SSH_AUTH_TIS;
1996         if (options.password_authentication)
1997                 auth_mask |= 1 << SSH_AUTH_PASSWORD;
1998         packet_put_int(auth_mask);
1999
2000         /* Send the packet and wait for it to be sent. */
2001         packet_send();
2002         packet_write_wait();
2003
2004         debug("Sent %d bit server key and %d bit host key.",
2005             BN_num_bits(sensitive_data.server_key->rsa->n),
2006             BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
2007
2008         /* Read clients reply (cipher type and session key). */
2009         packet_read_expect(SSH_CMSG_SESSION_KEY);
2010
2011         /* Get cipher type and check whether we accept this. */
2012         cipher_type = packet_get_char();
2013
2014         if (!(cipher_mask_ssh1(0) & (1 << cipher_type)))
2015                 packet_disconnect("Warning: client selects unsupported cipher.");
2016
2017         /* Get check bytes from the packet.  These must match those we
2018            sent earlier with the public key packet. */
2019         for (i = 0; i < 8; i++)
2020                 if (cookie[i] != packet_get_char())
2021                         packet_disconnect("IP Spoofing check bytes do not match.");
2022
2023         debug("Encryption type: %.200s", cipher_name(cipher_type));
2024
2025         /* Get the encrypted integer. */
2026         if ((session_key_int = BN_new()) == NULL)
2027                 fatal("do_ssh1_kex: BN_new failed");
2028         packet_get_bignum(session_key_int);
2029
2030         protocol_flags = packet_get_int();
2031         packet_set_protocol_flags(protocol_flags);
2032         packet_check_eom();
2033
2034         /* Decrypt session_key_int using host/server keys */
2035         rsafail = PRIVSEP(ssh1_session_key(session_key_int));
2036
2037         /*
2038          * Extract session key from the decrypted integer.  The key is in the
2039          * least significant 256 bits of the integer; the first byte of the
2040          * key is in the highest bits.
2041          */
2042         if (!rsafail) {
2043                 BN_mask_bits(session_key_int, sizeof(session_key) * 8);
2044                 len = BN_num_bytes(session_key_int);
2045                 if (len < 0 || (u_int)len > sizeof(session_key)) {
2046                         error("do_connection: bad session key len from %s: "
2047                             "session_key_int %d > sizeof(session_key) %lu",
2048                             get_remote_ipaddr(), len, (u_long)sizeof(session_key));
2049                         rsafail++;
2050                 } else {
2051                         memset(session_key, 0, sizeof(session_key));
2052                         BN_bn2bin(session_key_int,
2053                             session_key + sizeof(session_key) - len);
2054
2055                         derive_ssh1_session_id(
2056                             sensitive_data.ssh1_host_key->rsa->n,
2057                             sensitive_data.server_key->rsa->n,
2058                             cookie, session_id);
2059                         /*
2060                          * Xor the first 16 bytes of the session key with the
2061                          * session id.
2062                          */
2063                         for (i = 0; i < 16; i++)
2064                                 session_key[i] ^= session_id[i];
2065                 }
2066         }
2067         if (rsafail) {
2068                 int bytes = BN_num_bytes(session_key_int);
2069                 u_char *buf = xmalloc(bytes);
2070                 MD5_CTX md;
2071
2072                 logit("do_connection: generating a fake encryption key");
2073                 BN_bn2bin(session_key_int, buf);
2074                 MD5_Init(&md);
2075                 MD5_Update(&md, buf, bytes);
2076                 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
2077                 MD5_Final(session_key, &md);
2078                 MD5_Init(&md);
2079                 MD5_Update(&md, session_key, 16);
2080                 MD5_Update(&md, buf, bytes);
2081                 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
2082                 MD5_Final(session_key + 16, &md);
2083                 memset(buf, 0, bytes);
2084                 xfree(buf);
2085                 for (i = 0; i < 16; i++)
2086                         session_id[i] = session_key[i] ^ session_key[i + 16];
2087         }
2088         /* Destroy the private and public keys. No longer. */
2089         destroy_sensitive_data();
2090
2091         if (use_privsep)
2092                 mm_ssh1_session_id(session_id);
2093
2094         /* Destroy the decrypted integer.  It is no longer needed. */
2095         BN_clear_free(session_key_int);
2096
2097         /* Set the session key.  From this on all communications will be encrypted. */
2098         packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, cipher_type);
2099
2100         /* Destroy our copy of the session key.  It is no longer needed. */
2101         memset(session_key, 0, sizeof(session_key));
2102
2103         debug("Received session key; encryption turned on.");
2104
2105         /* Send an acknowledgment packet.  Note that this packet is sent encrypted. */
2106         packet_start(SSH_SMSG_SUCCESS);
2107         packet_send();
2108         packet_write_wait();
2109 }
2110
2111 /*
2112  * SSH2 key exchange: diffie-hellman-group1-sha1
2113  */
2114 static void
2115 do_ssh2_kex(void)
2116 {
2117         Kex *kex;
2118
2119         if (options.ciphers != NULL) {
2120                 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
2121                 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
2122         }
2123         myproposal[PROPOSAL_ENC_ALGS_CTOS] =
2124             compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
2125         myproposal[PROPOSAL_ENC_ALGS_STOC] =
2126             compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
2127
2128         if (options.macs != NULL) {
2129                 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
2130                 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
2131         }
2132         if (options.compression == COMP_NONE) {
2133                 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
2134                 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none";
2135         } else if (options.compression == COMP_DELAYED) {
2136                 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
2137                 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none,zlib@openssh.com";
2138         }
2139
2140         myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = list_hostkey_types();
2141
2142         /* start key exchange */
2143         kex = kex_setup(myproposal);
2144         kex->kex[KEX_DH_GRP1_SHA1] = kexdh_server;
2145         kex->kex[KEX_DH_GRP14_SHA1] = kexdh_server;
2146         kex->kex[KEX_DH_GEX_SHA1] = kexgex_server;
2147         kex->kex[KEX_DH_GEX_SHA256] = kexgex_server;
2148         kex->server = 1;
2149         kex->client_version_string=client_version_string;
2150         kex->server_version_string=server_version_string;
2151         kex->load_host_key=&get_hostkey_by_type;
2152         kex->host_key_index=&get_hostkey_index;
2153
2154         xxx_kex = kex;
2155
2156         dispatch_run(DISPATCH_BLOCK, &kex->done, kex);
2157
2158         session_id2 = kex->session_id;
2159         session_id2_len = kex->session_id_len;
2160
2161 #ifdef DEBUG_KEXDH
2162         /* send 1st encrypted/maced/compressed message */
2163         packet_start(SSH2_MSG_IGNORE);
2164         packet_put_cstring("markus");
2165         packet_send();
2166         packet_write_wait();
2167 #endif
2168         debug("KEX done");
2169 }
2170
2171 /* server specific fatal cleanup */
2172 void
2173 cleanup_exit(int i)
2174 {
2175         if (the_authctxt)
2176                 do_cleanup(the_authctxt);
2177 #ifdef SSH_AUDIT_EVENTS
2178         /* done after do_cleanup so it can cancel the PAM auth 'thread' */
2179         if (!use_privsep || mm_is_monitor())
2180                 audit_event(SSH_CONNECTION_ABANDON);
2181 #endif
2182         _exit(i);
2183 }