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