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