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