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