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