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