]> andersk Git - openssh.git/blob - sshd.c
- djm@cvs.openbsd.org 2005/06/17 02:44:33
[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.311 2005/06/17 02:44:33 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                 monitor_apply_keystate(pmonitor);
637                 use_privsep = 0;
638                 return;
639         }
640
641         /* Authentication complete */
642         alarm(0);
643         if (startup_pipe != -1) {
644                 close(startup_pipe);
645                 startup_pipe = -1;
646         }
647
648         /* New socket pair */
649         monitor_reinit(pmonitor);
650
651         pmonitor->m_pid = fork();
652         if (pmonitor->m_pid == -1)
653                 fatal("fork of unprivileged child failed");
654         else if (pmonitor->m_pid != 0) {
655                 debug2("User child is on pid %ld", (long)pmonitor->m_pid);
656                 close(pmonitor->m_recvfd);
657                 buffer_clear(&loginmsg);
658                 monitor_child_postauth(pmonitor);
659
660                 /* NEVERREACHED */
661                 exit(0);
662         }
663
664         close(pmonitor->m_sendfd);
665
666         /* Demote the private keys to public keys. */
667         demote_sensitive_data();
668
669         /* Drop privileges */
670         do_setusercontext(authctxt->pw);
671
672         /* It is safe now to apply the key state */
673         monitor_apply_keystate(pmonitor);
674 }
675
676 static char *
677 list_hostkey_types(void)
678 {
679         Buffer b;
680         const char *p;
681         char *ret;
682         int i;
683
684         buffer_init(&b);
685         for (i = 0; i < options.num_host_key_files; i++) {
686                 Key *key = sensitive_data.host_keys[i];
687                 if (key == NULL)
688                         continue;
689                 switch (key->type) {
690                 case KEY_RSA:
691                 case KEY_DSA:
692                         if (buffer_len(&b) > 0)
693                                 buffer_append(&b, ",", 1);
694                         p = key_ssh_name(key);
695                         buffer_append(&b, p, strlen(p));
696                         break;
697                 }
698         }
699         buffer_append(&b, "\0", 1);
700         ret = xstrdup(buffer_ptr(&b));
701         buffer_free(&b);
702         debug("list_hostkey_types: %s", ret);
703         return ret;
704 }
705
706 Key *
707 get_hostkey_by_type(int type)
708 {
709         int i;
710
711         for (i = 0; i < options.num_host_key_files; i++) {
712                 Key *key = sensitive_data.host_keys[i];
713                 if (key != NULL && key->type == type)
714                         return key;
715         }
716         return NULL;
717 }
718
719 Key *
720 get_hostkey_by_index(int ind)
721 {
722         if (ind < 0 || ind >= options.num_host_key_files)
723                 return (NULL);
724         return (sensitive_data.host_keys[ind]);
725 }
726
727 int
728 get_hostkey_index(Key *key)
729 {
730         int i;
731
732         for (i = 0; i < options.num_host_key_files; i++) {
733                 if (key == sensitive_data.host_keys[i])
734                         return (i);
735         }
736         return (-1);
737 }
738
739 /*
740  * returns 1 if connection should be dropped, 0 otherwise.
741  * dropping starts at connection #max_startups_begin with a probability
742  * of (max_startups_rate/100). the probability increases linearly until
743  * all connections are dropped for startups > max_startups
744  */
745 static int
746 drop_connection(int startups)
747 {
748         int p, r;
749
750         if (startups < options.max_startups_begin)
751                 return 0;
752         if (startups >= options.max_startups)
753                 return 1;
754         if (options.max_startups_rate == 100)
755                 return 1;
756
757         p  = 100 - options.max_startups_rate;
758         p *= startups - options.max_startups_begin;
759         p /= options.max_startups - options.max_startups_begin;
760         p += options.max_startups_rate;
761         r = arc4random() % 100;
762
763         debug("drop_connection: p %d, r %d", p, r);
764         return (r < p) ? 1 : 0;
765 }
766
767 static void
768 usage(void)
769 {
770         fprintf(stderr, "%s, %s\n",
771             SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
772         fprintf(stderr,
773 "usage: sshd [-46Ddeiqt] [-b bits] [-f config_file] [-g login_grace_time]\n"
774 "            [-h host_key_file] [-k key_gen_time] [-o option] [-p port] [-u len]\n"
775         );
776         exit(1);
777 }
778
779 static void
780 send_rexec_state(int fd, Buffer *conf)
781 {
782         Buffer m;
783
784         debug3("%s: entering fd = %d config len %d", __func__, fd,
785             buffer_len(conf));
786
787         /*
788          * Protocol from reexec master to child:
789          *      string  configuration
790          *      u_int   ephemeral_key_follows
791          *      bignum  e               (only if ephemeral_key_follows == 1)
792          *      bignum  n                       "
793          *      bignum  d                       "
794          *      bignum  iqmp                    "
795          *      bignum  p                       "
796          *      bignum  q                       "
797          */
798         buffer_init(&m);
799         buffer_put_cstring(&m, buffer_ptr(conf));
800
801         if (sensitive_data.server_key != NULL &&
802             sensitive_data.server_key->type == KEY_RSA1) {
803                 buffer_put_int(&m, 1);
804                 buffer_put_bignum(&m, sensitive_data.server_key->rsa->e);
805                 buffer_put_bignum(&m, sensitive_data.server_key->rsa->n);
806                 buffer_put_bignum(&m, sensitive_data.server_key->rsa->d);
807                 buffer_put_bignum(&m, sensitive_data.server_key->rsa->iqmp);
808                 buffer_put_bignum(&m, sensitive_data.server_key->rsa->p);
809                 buffer_put_bignum(&m, sensitive_data.server_key->rsa->q);
810         } else
811                 buffer_put_int(&m, 0);
812
813         if (ssh_msg_send(fd, 0, &m) == -1)
814                 fatal("%s: ssh_msg_send failed", __func__);
815
816         buffer_free(&m);
817
818         debug3("%s: done", __func__);
819 }
820
821 static void
822 recv_rexec_state(int fd, Buffer *conf)
823 {
824         Buffer m;
825         char *cp;
826         u_int len;
827
828         debug3("%s: entering fd = %d", __func__, fd);
829
830         buffer_init(&m);
831
832         if (ssh_msg_recv(fd, &m) == -1)
833                 fatal("%s: ssh_msg_recv failed", __func__);
834         if (buffer_get_char(&m) != 0)
835                 fatal("%s: rexec version mismatch", __func__);
836
837         cp = buffer_get_string(&m, &len);
838         if (conf != NULL)
839                 buffer_append(conf, cp, len + 1);
840         xfree(cp);
841
842         if (buffer_get_int(&m)) {
843                 if (sensitive_data.server_key != NULL)
844                         key_free(sensitive_data.server_key);
845                 sensitive_data.server_key = key_new_private(KEY_RSA1);
846                 buffer_get_bignum(&m, sensitive_data.server_key->rsa->e);
847                 buffer_get_bignum(&m, sensitive_data.server_key->rsa->n);
848                 buffer_get_bignum(&m, sensitive_data.server_key->rsa->d);
849                 buffer_get_bignum(&m, sensitive_data.server_key->rsa->iqmp);
850                 buffer_get_bignum(&m, sensitive_data.server_key->rsa->p);
851                 buffer_get_bignum(&m, sensitive_data.server_key->rsa->q);
852                 rsa_generate_additional_parameters(
853                     sensitive_data.server_key->rsa);
854         }
855         buffer_free(&m);
856
857         debug3("%s: done", __func__);
858 }
859
860 /*
861  * Main program for the daemon.
862  */
863 int
864 main(int ac, char **av)
865 {
866         extern char *optarg;
867         extern int optind;
868         int opt, j, i, fdsetsz, on = 1;
869         int sock_in = -1, sock_out = -1, newsock = -1;
870         pid_t pid;
871         socklen_t fromlen;
872         fd_set *fdset;
873         struct sockaddr_storage from;
874         const char *remote_ip;
875         int remote_port;
876         FILE *f;
877         struct addrinfo *ai;
878         char ntop[NI_MAXHOST], strport[NI_MAXSERV];
879         char *line;
880         int listen_sock, maxfd;
881         int startup_p[2] = { -1 , -1 }, config_s[2] = { -1 , -1 };
882         int startups = 0;
883         Key *key;
884         Authctxt *authctxt;
885         int ret, key_used = 0;
886         Buffer cfg;
887
888 #ifdef HAVE_SECUREWARE
889         (void)set_auth_parameters(ac, av);
890 #endif
891         __progname = ssh_get_progname(av[0]);
892         init_rng();
893
894         /* Save argv. Duplicate so setproctitle emulation doesn't clobber it */
895         saved_argc = ac;
896         rexec_argc = ac;
897         saved_argv = xmalloc(sizeof(*saved_argv) * (ac + 1));
898         for (i = 0; i < ac; i++)
899                 saved_argv[i] = xstrdup(av[i]);
900         saved_argv[i] = NULL;
901
902 #ifndef HAVE_SETPROCTITLE
903         /* Prepare for later setproctitle emulation */
904         compat_init_setproctitle(ac, av);
905         av = saved_argv;
906 #endif
907
908         if (geteuid() == 0 && setgroups(0, NULL) == -1)
909                 debug("setgroups(): %.200s", strerror(errno));
910
911         /* Initialize configuration options to their default values. */
912         initialize_server_options(&options);
913
914         /* Parse command-line arguments. */
915         while ((opt = getopt(ac, av, "f:p:b:k:h:g:u:o:dDeiqrtQR46")) != -1) {
916                 switch (opt) {
917                 case '4':
918                         options.address_family = AF_INET;
919                         break;
920                 case '6':
921                         options.address_family = AF_INET6;
922                         break;
923                 case 'f':
924                         config_file_name = optarg;
925                         break;
926                 case 'd':
927                         if (debug_flag == 0) {
928                                 debug_flag = 1;
929                                 options.log_level = SYSLOG_LEVEL_DEBUG1;
930                         } else if (options.log_level < SYSLOG_LEVEL_DEBUG3)
931                                 options.log_level++;
932                         break;
933                 case 'D':
934                         no_daemon_flag = 1;
935                         break;
936                 case 'e':
937                         log_stderr = 1;
938                         break;
939                 case 'i':
940                         inetd_flag = 1;
941                         break;
942                 case 'r':
943                         rexec_flag = 0;
944                         break;
945                 case 'R':
946                         rexeced_flag = 1;
947                         inetd_flag = 1;
948                         break;
949                 case 'Q':
950                         /* ignored */
951                         break;
952                 case 'q':
953                         options.log_level = SYSLOG_LEVEL_QUIET;
954                         break;
955                 case 'b':
956                         options.server_key_bits = atoi(optarg);
957                         break;
958                 case 'p':
959                         options.ports_from_cmdline = 1;
960                         if (options.num_ports >= MAX_PORTS) {
961                                 fprintf(stderr, "too many ports.\n");
962                                 exit(1);
963                         }
964                         options.ports[options.num_ports++] = a2port(optarg);
965                         if (options.ports[options.num_ports-1] == 0) {
966                                 fprintf(stderr, "Bad port number.\n");
967                                 exit(1);
968                         }
969                         break;
970                 case 'g':
971                         if ((options.login_grace_time = convtime(optarg)) == -1) {
972                                 fprintf(stderr, "Invalid login grace time.\n");
973                                 exit(1);
974                         }
975                         break;
976                 case 'k':
977                         if ((options.key_regeneration_time = convtime(optarg)) == -1) {
978                                 fprintf(stderr, "Invalid key regeneration interval.\n");
979                                 exit(1);
980                         }
981                         break;
982                 case 'h':
983                         if (options.num_host_key_files >= MAX_HOSTKEYS) {
984                                 fprintf(stderr, "too many host keys.\n");
985                                 exit(1);
986                         }
987                         options.host_key_files[options.num_host_key_files++] = optarg;
988                         break;
989                 case 't':
990                         test_flag = 1;
991                         break;
992                 case 'u':
993                         utmp_len = atoi(optarg);
994                         if (utmp_len > MAXHOSTNAMELEN) {
995                                 fprintf(stderr, "Invalid utmp length.\n");
996                                 exit(1);
997                         }
998                         break;
999                 case 'o':
1000                         line = xstrdup(optarg);
1001                         if (process_server_config_line(&options, line,
1002                             "command-line", 0) != 0)
1003                                 exit(1);
1004                         xfree(line);
1005                         break;
1006                 case '?':
1007                 default:
1008                         usage();
1009                         break;
1010                 }
1011         }
1012         if (rexeced_flag || inetd_flag)
1013                 rexec_flag = 0;
1014         if (rexec_flag && (av[0] == NULL || *av[0] != '/'))
1015                 fatal("sshd re-exec requires execution with an absolute path");
1016         if (rexeced_flag)
1017                 closefrom(REEXEC_MIN_FREE_FD);
1018         else
1019                 closefrom(REEXEC_DEVCRYPTO_RESERVED_FD);
1020
1021         SSLeay_add_all_algorithms();
1022
1023         /*
1024          * Force logging to stderr until we have loaded the private host
1025          * key (unless started from inetd)
1026          */
1027         log_init(__progname,
1028             options.log_level == SYSLOG_LEVEL_NOT_SET ?
1029             SYSLOG_LEVEL_INFO : options.log_level,
1030             options.log_facility == SYSLOG_FACILITY_NOT_SET ?
1031             SYSLOG_FACILITY_AUTH : options.log_facility,
1032             log_stderr || !inetd_flag);
1033
1034         /*
1035          * Unset KRB5CCNAME, otherwise the user's session may inherit it from
1036          * root's environment
1037          */ 
1038         if (getenv("KRB5CCNAME") != NULL)
1039                 unsetenv("KRB5CCNAME");
1040
1041 #ifdef _UNICOS
1042         /* Cray can define user privs drop all privs now!
1043          * Not needed on PRIV_SU systems!
1044          */
1045         drop_cray_privs();
1046 #endif
1047
1048         seed_rng();
1049
1050         sensitive_data.server_key = NULL;
1051         sensitive_data.ssh1_host_key = NULL;
1052         sensitive_data.have_ssh1_key = 0;
1053         sensitive_data.have_ssh2_key = 0;
1054
1055         /* Fetch our configuration */
1056         buffer_init(&cfg);
1057         if (rexeced_flag)
1058                 recv_rexec_state(REEXEC_CONFIG_PASS_FD, &cfg);
1059         else
1060                 load_server_config(config_file_name, &cfg);
1061
1062         parse_server_config(&options,
1063             rexeced_flag ? "rexec" : config_file_name, &cfg);
1064
1065         if (!rexec_flag)
1066                 buffer_free(&cfg);
1067
1068         /* Fill in default values for those options not explicitly set. */
1069         fill_default_server_options(&options);
1070
1071         /* set default channel AF */
1072         channel_set_af(options.address_family);
1073
1074         /* Check that there are no remaining arguments. */
1075         if (optind < ac) {
1076                 fprintf(stderr, "Extra argument %s.\n", av[optind]);
1077                 exit(1);
1078         }
1079
1080         debug("sshd version %.100s", SSH_RELEASE);
1081
1082         /* load private host keys */
1083         sensitive_data.host_keys = xmalloc(options.num_host_key_files *
1084             sizeof(Key *));
1085         for (i = 0; i < options.num_host_key_files; i++)
1086                 sensitive_data.host_keys[i] = NULL;
1087
1088         for (i = 0; i < options.num_host_key_files; i++) {
1089                 key = key_load_private(options.host_key_files[i], "", NULL);
1090                 sensitive_data.host_keys[i] = key;
1091                 if (key == NULL) {
1092                         error("Could not load host key: %s",
1093                             options.host_key_files[i]);
1094                         sensitive_data.host_keys[i] = NULL;
1095                         continue;
1096                 }
1097                 switch (key->type) {
1098                 case KEY_RSA1:
1099                         sensitive_data.ssh1_host_key = key;
1100                         sensitive_data.have_ssh1_key = 1;
1101                         break;
1102                 case KEY_RSA:
1103                 case KEY_DSA:
1104                         sensitive_data.have_ssh2_key = 1;
1105                         break;
1106                 }
1107                 debug("private host key: #%d type %d %s", i, key->type,
1108                     key_type(key));
1109         }
1110         if ((options.protocol & SSH_PROTO_1) && !sensitive_data.have_ssh1_key) {
1111                 logit("Disabling protocol version 1. Could not load host key");
1112                 options.protocol &= ~SSH_PROTO_1;
1113         }
1114         if ((options.protocol & SSH_PROTO_2) && !sensitive_data.have_ssh2_key) {
1115                 logit("Disabling protocol version 2. Could not load host key");
1116                 options.protocol &= ~SSH_PROTO_2;
1117         }
1118         if (!(options.protocol & (SSH_PROTO_1|SSH_PROTO_2))) {
1119                 logit("sshd: no hostkeys available -- exiting.");
1120                 exit(1);
1121         }
1122
1123         /* Check certain values for sanity. */
1124         if (options.protocol & SSH_PROTO_1) {
1125                 if (options.server_key_bits < 512 ||
1126                     options.server_key_bits > 32768) {
1127                         fprintf(stderr, "Bad server key size.\n");
1128                         exit(1);
1129                 }
1130                 /*
1131                  * Check that server and host key lengths differ sufficiently. This
1132                  * is necessary to make double encryption work with rsaref. Oh, I
1133                  * hate software patents. I dont know if this can go? Niels
1134                  */
1135                 if (options.server_key_bits >
1136                     BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) -
1137                     SSH_KEY_BITS_RESERVED && options.server_key_bits <
1138                     BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) +
1139                     SSH_KEY_BITS_RESERVED) {
1140                         options.server_key_bits =
1141                             BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) +
1142                             SSH_KEY_BITS_RESERVED;
1143                         debug("Forcing server key to %d bits to make it differ from host key.",
1144                             options.server_key_bits);
1145                 }
1146         }
1147
1148         if (use_privsep) {
1149                 struct passwd *pw;
1150                 struct stat st;
1151
1152                 if ((pw = getpwnam(SSH_PRIVSEP_USER)) == NULL)
1153                         fatal("Privilege separation user %s does not exist",
1154                             SSH_PRIVSEP_USER);
1155                 if ((stat(_PATH_PRIVSEP_CHROOT_DIR, &st) == -1) ||
1156                     (S_ISDIR(st.st_mode) == 0))
1157                         fatal("Missing privilege separation directory: %s",
1158                             _PATH_PRIVSEP_CHROOT_DIR);
1159
1160 #ifdef HAVE_CYGWIN
1161                 if (check_ntsec(_PATH_PRIVSEP_CHROOT_DIR) &&
1162                     (st.st_uid != getuid () ||
1163                     (st.st_mode & (S_IWGRP|S_IWOTH)) != 0))
1164 #else
1165                 if (st.st_uid != 0 || (st.st_mode & (S_IWGRP|S_IWOTH)) != 0)
1166 #endif
1167                         fatal("%s must be owned by root and not group or "
1168                             "world-writable.", _PATH_PRIVSEP_CHROOT_DIR);
1169         }
1170
1171         /* Configuration looks good, so exit if in test mode. */
1172         if (test_flag)
1173                 exit(0);
1174
1175         /*
1176          * Clear out any supplemental groups we may have inherited.  This
1177          * prevents inadvertent creation of files with bad modes (in the
1178          * portable version at least, it's certainly possible for PAM
1179          * to create a file, and we can't control the code in every
1180          * module which might be used).
1181          */
1182         if (setgroups(0, NULL) < 0)
1183                 debug("setgroups() failed: %.200s", strerror(errno));
1184
1185         if (rexec_flag) {
1186                 rexec_argv = xmalloc(sizeof(char *) * (rexec_argc + 2));
1187                 for (i = 0; i < rexec_argc; i++) {
1188                         debug("rexec_argv[%d]='%s'", i, saved_argv[i]);
1189                         rexec_argv[i] = saved_argv[i];
1190                 }
1191                 rexec_argv[rexec_argc] = "-R";
1192                 rexec_argv[rexec_argc + 1] = NULL;
1193         }
1194
1195         /* Initialize the log (it is reinitialized below in case we forked). */
1196         if (debug_flag && (!inetd_flag || rexeced_flag))
1197                 log_stderr = 1;
1198         log_init(__progname, options.log_level, options.log_facility, log_stderr);
1199
1200         /*
1201          * If not in debugging mode, and not started from inetd, disconnect
1202          * from the controlling terminal, and fork.  The original process
1203          * exits.
1204          */
1205         if (!(debug_flag || inetd_flag || no_daemon_flag)) {
1206 #ifdef TIOCNOTTY
1207                 int fd;
1208 #endif /* TIOCNOTTY */
1209                 if (daemon(0, 0) < 0)
1210                         fatal("daemon() failed: %.200s", strerror(errno));
1211
1212                 /* Disconnect from the controlling tty. */
1213 #ifdef TIOCNOTTY
1214                 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
1215                 if (fd >= 0) {
1216                         (void) ioctl(fd, TIOCNOTTY, NULL);
1217                         close(fd);
1218                 }
1219 #endif /* TIOCNOTTY */
1220         }
1221         /* Reinitialize the log (because of the fork above). */
1222         log_init(__progname, options.log_level, options.log_facility, log_stderr);
1223
1224         /* Initialize the random number generator. */
1225         arc4random_stir();
1226
1227         /* Chdir to the root directory so that the current disk can be
1228            unmounted if desired. */
1229         chdir("/");
1230
1231         /* ignore SIGPIPE */
1232         signal(SIGPIPE, SIG_IGN);
1233
1234         /* Start listening for a socket, unless started from inetd. */
1235         if (inetd_flag) {
1236                 int fd;
1237
1238                 startup_pipe = -1;
1239                 if (rexeced_flag) {
1240                         close(REEXEC_CONFIG_PASS_FD);
1241                         sock_in = sock_out = dup(STDIN_FILENO);
1242                         if (!debug_flag) {
1243                                 startup_pipe = dup(REEXEC_STARTUP_PIPE_FD);
1244                                 close(REEXEC_STARTUP_PIPE_FD);
1245                         }
1246                 } else {
1247                         sock_in = dup(STDIN_FILENO);
1248                         sock_out = dup(STDOUT_FILENO);
1249                 }
1250                 /*
1251                  * We intentionally do not close the descriptors 0, 1, and 2
1252                  * as our code for setting the descriptors won't work if
1253                  * ttyfd happens to be one of those.
1254                  */
1255                 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
1256                         dup2(fd, STDIN_FILENO);
1257                         dup2(fd, STDOUT_FILENO);
1258                         if (fd > STDOUT_FILENO)
1259                                 close(fd);
1260                 }
1261                 debug("inetd sockets after dupping: %d, %d", sock_in, sock_out);
1262                 if ((options.protocol & SSH_PROTO_1) &&
1263                     sensitive_data.server_key == NULL)
1264                         generate_ephemeral_server_key();
1265         } else {
1266                 for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
1267                         if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1268                                 continue;
1269                         if (num_listen_socks >= MAX_LISTEN_SOCKS)
1270                                 fatal("Too many listen sockets. "
1271                                     "Enlarge MAX_LISTEN_SOCKS");
1272                         if ((ret = getnameinfo(ai->ai_addr, ai->ai_addrlen,
1273                             ntop, sizeof(ntop), strport, sizeof(strport),
1274                             NI_NUMERICHOST|NI_NUMERICSERV)) != 0) {
1275                                 error("getnameinfo failed: %.100s",
1276                                     (ret != EAI_SYSTEM) ? gai_strerror(ret) :
1277                                     strerror(errno));
1278                                 continue;
1279                         }
1280                         /* Create socket for listening. */
1281                         listen_sock = socket(ai->ai_family, ai->ai_socktype,
1282                             ai->ai_protocol);
1283                         if (listen_sock < 0) {
1284                                 /* kernel may not support ipv6 */
1285                                 verbose("socket: %.100s", strerror(errno));
1286                                 continue;
1287                         }
1288                         if (set_nonblock(listen_sock) == -1) {
1289                                 close(listen_sock);
1290                                 continue;
1291                         }
1292                         /*
1293                          * Set socket options.
1294                          * Allow local port reuse in TIME_WAIT.
1295                          */
1296                         if (setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
1297                             &on, sizeof(on)) == -1)
1298                                 error("setsockopt SO_REUSEADDR: %s", strerror(errno));
1299
1300                         debug("Bind to port %s on %s.", strport, ntop);
1301
1302                         /* Bind the socket to the desired port. */
1303                         if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1304                                 if (!ai->ai_next)
1305                                     error("Bind to port %s on %s failed: %.200s.",
1306                                             strport, ntop, strerror(errno));
1307                                 close(listen_sock);
1308                                 continue;
1309                         }
1310                         listen_socks[num_listen_socks] = listen_sock;
1311                         num_listen_socks++;
1312
1313                         /* Start listening on the port. */
1314                         logit("Server listening on %s port %s.", ntop, strport);
1315                         if (listen(listen_sock, SSH_LISTEN_BACKLOG) < 0)
1316                                 fatal("listen: %.100s", strerror(errno));
1317
1318                 }
1319                 freeaddrinfo(options.listen_addrs);
1320
1321                 if (!num_listen_socks)
1322                         fatal("Cannot bind any address.");
1323
1324                 if (options.protocol & SSH_PROTO_1)
1325                         generate_ephemeral_server_key();
1326
1327                 /*
1328                  * Arrange to restart on SIGHUP.  The handler needs
1329                  * listen_sock.
1330                  */
1331                 signal(SIGHUP, sighup_handler);
1332
1333                 signal(SIGTERM, sigterm_handler);
1334                 signal(SIGQUIT, sigterm_handler);
1335
1336                 /* Arrange SIGCHLD to be caught. */
1337                 signal(SIGCHLD, main_sigchld_handler);
1338
1339                 /* Write out the pid file after the sigterm handler is setup */
1340                 if (!debug_flag) {
1341                         /*
1342                          * Record our pid in /var/run/sshd.pid to make it
1343                          * easier to kill the correct sshd.  We don't want to
1344                          * do this before the bind above because the bind will
1345                          * fail if there already is a daemon, and this will
1346                          * overwrite any old pid in the file.
1347                          */
1348                         f = fopen(options.pid_file, "wb");
1349                         if (f == NULL) {
1350                                 error("Couldn't create pid file \"%s\": %s",
1351                                     options.pid_file, strerror(errno));
1352                         } else {
1353                                 fprintf(f, "%ld\n", (long) getpid());
1354                                 fclose(f);
1355                         }
1356                 }
1357
1358                 /* setup fd set for listen */
1359                 fdset = NULL;
1360                 maxfd = 0;
1361                 for (i = 0; i < num_listen_socks; i++)
1362                         if (listen_socks[i] > maxfd)
1363                                 maxfd = listen_socks[i];
1364                 /* pipes connected to unauthenticated childs */
1365                 startup_pipes = xmalloc(options.max_startups * sizeof(int));
1366                 for (i = 0; i < options.max_startups; i++)
1367                         startup_pipes[i] = -1;
1368
1369                 /*
1370                  * Stay listening for connections until the system crashes or
1371                  * the daemon is killed with a signal.
1372                  */
1373                 for (;;) {
1374                         if (received_sighup)
1375                                 sighup_restart();
1376                         if (fdset != NULL)
1377                                 xfree(fdset);
1378                         fdsetsz = howmany(maxfd+1, NFDBITS) * sizeof(fd_mask);
1379                         fdset = (fd_set *)xmalloc(fdsetsz);
1380                         memset(fdset, 0, fdsetsz);
1381
1382                         for (i = 0; i < num_listen_socks; i++)
1383                                 FD_SET(listen_socks[i], fdset);
1384                         for (i = 0; i < options.max_startups; i++)
1385                                 if (startup_pipes[i] != -1)
1386                                         FD_SET(startup_pipes[i], fdset);
1387
1388                         /* Wait in select until there is a connection. */
1389                         ret = select(maxfd+1, fdset, NULL, NULL, NULL);
1390                         if (ret < 0 && errno != EINTR)
1391                                 error("select: %.100s", strerror(errno));
1392                         if (received_sigterm) {
1393                                 logit("Received signal %d; terminating.",
1394                                     (int) received_sigterm);
1395                                 close_listen_socks();
1396                                 unlink(options.pid_file);
1397                                 exit(255);
1398                         }
1399                         if (key_used && key_do_regen) {
1400                                 generate_ephemeral_server_key();
1401                                 key_used = 0;
1402                                 key_do_regen = 0;
1403                         }
1404                         if (ret < 0)
1405                                 continue;
1406
1407                         for (i = 0; i < options.max_startups; i++)
1408                                 if (startup_pipes[i] != -1 &&
1409                                     FD_ISSET(startup_pipes[i], fdset)) {
1410                                         /*
1411                                          * the read end of the pipe is ready
1412                                          * if the child has closed the pipe
1413                                          * after successful authentication
1414                                          * or if the child has died
1415                                          */
1416                                         close(startup_pipes[i]);
1417                                         startup_pipes[i] = -1;
1418                                         startups--;
1419                                 }
1420                         for (i = 0; i < num_listen_socks; i++) {
1421                                 if (!FD_ISSET(listen_socks[i], fdset))
1422                                         continue;
1423                                 fromlen = sizeof(from);
1424                                 newsock = accept(listen_socks[i], (struct sockaddr *)&from,
1425                                     &fromlen);
1426                                 if (newsock < 0) {
1427                                         if (errno != EINTR && errno != EWOULDBLOCK)
1428                                                 error("accept: %.100s", strerror(errno));
1429                                         continue;
1430                                 }
1431                                 if (unset_nonblock(newsock) == -1) {
1432                                         close(newsock);
1433                                         continue;
1434                                 }
1435                                 if (drop_connection(startups) == 1) {
1436                                         debug("drop connection #%d", startups);
1437                                         close(newsock);
1438                                         continue;
1439                                 }
1440                                 if (pipe(startup_p) == -1) {
1441                                         close(newsock);
1442                                         continue;
1443                                 }
1444
1445                                 if (rexec_flag && socketpair(AF_UNIX,
1446                                     SOCK_STREAM, 0, config_s) == -1) {
1447                                         error("reexec socketpair: %s",
1448                                             strerror(errno));
1449                                         close(newsock);
1450                                         close(startup_p[0]);
1451                                         close(startup_p[1]);
1452                                         continue;
1453                                 }
1454
1455                                 for (j = 0; j < options.max_startups; j++)
1456                                         if (startup_pipes[j] == -1) {
1457                                                 startup_pipes[j] = startup_p[0];
1458                                                 if (maxfd < startup_p[0])
1459                                                         maxfd = startup_p[0];
1460                                                 startups++;
1461                                                 break;
1462                                         }
1463
1464                                 /*
1465                                  * Got connection.  Fork a child to handle it, unless
1466                                  * we are in debugging mode.
1467                                  */
1468                                 if (debug_flag) {
1469                                         /*
1470                                          * In debugging mode.  Close the listening
1471                                          * socket, and start processing the
1472                                          * connection without forking.
1473                                          */
1474                                         debug("Server will not fork when running in debugging mode.");
1475                                         close_listen_socks();
1476                                         sock_in = newsock;
1477                                         sock_out = newsock;
1478                                         close(startup_p[0]);
1479                                         close(startup_p[1]);
1480                                         startup_pipe = -1;
1481                                         pid = getpid();
1482                                         if (rexec_flag) {
1483                                                 send_rexec_state(config_s[0],
1484                                                     &cfg);
1485                                                 close(config_s[0]);
1486                                         }
1487                                         break;
1488                                 } else {
1489                                         /*
1490                                          * Normal production daemon.  Fork, and have
1491                                          * the child process the connection. The
1492                                          * parent continues listening.
1493                                          */
1494                                         if ((pid = fork()) == 0) {
1495                                                 /*
1496                                                  * Child.  Close the listening and max_startup
1497                                                  * sockets.  Start using the accepted socket.
1498                                                  * Reinitialize logging (since our pid has
1499                                                  * changed).  We break out of the loop to handle
1500                                                  * the connection.
1501                                                  */
1502                                                 startup_pipe = startup_p[1];
1503                                                 close_startup_pipes();
1504                                                 close_listen_socks();
1505                                                 sock_in = newsock;
1506                                                 sock_out = newsock;
1507                                                 log_init(__progname, options.log_level, options.log_facility, log_stderr);
1508                                                 if (rexec_flag)
1509                                                         close(config_s[0]);
1510                                                 break;
1511                                         }
1512                                 }
1513
1514                                 /* Parent.  Stay in the loop. */
1515                                 if (pid < 0)
1516                                         error("fork: %.100s", strerror(errno));
1517                                 else
1518                                         debug("Forked child %ld.", (long)pid);
1519
1520                                 close(startup_p[1]);
1521
1522                                 if (rexec_flag) {
1523                                         send_rexec_state(config_s[0], &cfg);
1524                                         close(config_s[0]);
1525                                         close(config_s[1]);
1526                                 }
1527
1528                                 /* Mark that the key has been used (it was "given" to the child). */
1529                                 if ((options.protocol & SSH_PROTO_1) &&
1530                                     key_used == 0) {
1531                                         /* Schedule server key regeneration alarm. */
1532                                         signal(SIGALRM, key_regeneration_alarm);
1533                                         alarm(options.key_regeneration_time);
1534                                         key_used = 1;
1535                                 }
1536
1537                                 arc4random_stir();
1538
1539                                 /* Close the new socket (the child is now taking care of it). */
1540                                 close(newsock);
1541                         }
1542                         /* child process check (or debug mode) */
1543                         if (num_listen_socks < 0)
1544                                 break;
1545                 }
1546         }
1547
1548         /* This is the child processing a new connection. */
1549         setproctitle("%s", "[accepted]");
1550
1551         /*
1552          * Create a new session and process group since the 4.4BSD
1553          * setlogin() affects the entire process group.  We don't
1554          * want the child to be able to affect the parent.
1555          */
1556 #if !defined(SSHD_ACQUIRES_CTTY)
1557         /*
1558          * If setsid is called, on some platforms sshd will later acquire a
1559          * controlling terminal which will result in "could not set
1560          * controlling tty" errors.
1561          */
1562         if (!debug_flag && !inetd_flag && setsid() < 0)
1563                 error("setsid: %.100s", strerror(errno));
1564 #endif
1565
1566         if (rexec_flag) {
1567                 int fd;
1568
1569                 debug("rexec start in %d out %d newsock %d pipe %d sock %d",
1570                     sock_in, sock_out, newsock, startup_pipe, config_s[0]);
1571                 dup2(newsock, STDIN_FILENO);
1572                 dup2(STDIN_FILENO, STDOUT_FILENO);
1573                 if (startup_pipe == -1)
1574                         close(REEXEC_STARTUP_PIPE_FD);
1575                 else
1576                         dup2(startup_pipe, REEXEC_STARTUP_PIPE_FD);
1577
1578                 dup2(config_s[1], REEXEC_CONFIG_PASS_FD);
1579                 close(config_s[1]);
1580                 if (startup_pipe != -1)
1581                         close(startup_pipe);
1582
1583                 execv(rexec_argv[0], rexec_argv);
1584
1585                 /* Reexec has failed, fall back and continue */
1586                 error("rexec of %s failed: %s", rexec_argv[0], strerror(errno));
1587                 recv_rexec_state(REEXEC_CONFIG_PASS_FD, NULL);
1588                 log_init(__progname, options.log_level,
1589                     options.log_facility, log_stderr);
1590
1591                 /* Clean up fds */
1592                 startup_pipe = REEXEC_STARTUP_PIPE_FD;
1593                 close(config_s[1]);
1594                 close(REEXEC_CONFIG_PASS_FD);
1595                 newsock = sock_out = sock_in = dup(STDIN_FILENO);
1596                 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
1597                         dup2(fd, STDIN_FILENO);
1598                         dup2(fd, STDOUT_FILENO);
1599                         if (fd > STDERR_FILENO)
1600                                 close(fd);
1601                 }
1602                 debug("rexec cleanup in %d out %d newsock %d pipe %d sock %d",
1603                     sock_in, sock_out, newsock, startup_pipe, config_s[0]);
1604         }
1605
1606         /*
1607          * Disable the key regeneration alarm.  We will not regenerate the
1608          * key since we are no longer in a position to give it to anyone. We
1609          * will not restart on SIGHUP since it no longer makes sense.
1610          */
1611         alarm(0);
1612         signal(SIGALRM, SIG_DFL);
1613         signal(SIGHUP, SIG_DFL);
1614         signal(SIGTERM, SIG_DFL);
1615         signal(SIGQUIT, SIG_DFL);
1616         signal(SIGCHLD, SIG_DFL);
1617         signal(SIGINT, SIG_DFL);
1618
1619         /*
1620          * Register our connection.  This turns encryption off because we do
1621          * not have a key.
1622          */
1623         packet_set_connection(sock_in, sock_out);
1624
1625         /* Set SO_KEEPALIVE if requested. */
1626         if (options.tcp_keep_alive && packet_connection_is_on_socket() &&
1627             setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, &on, sizeof(on)) < 0)
1628                 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
1629
1630         if ((remote_port = get_remote_port()) < 0) {
1631                 debug("get_remote_port failed");
1632                 cleanup_exit(255);
1633         }
1634         remote_ip = get_remote_ipaddr();
1635
1636 #ifdef SSH_AUDIT_EVENTS
1637         audit_connection_from(remote_ip, remote_port);
1638 #endif
1639 #ifdef LIBWRAP
1640         /* Check whether logins are denied from this host. */
1641         if (packet_connection_is_on_socket()) {
1642                 struct request_info req;
1643
1644                 request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, 0);
1645                 fromhost(&req);
1646
1647                 if (!hosts_access(&req)) {
1648                         debug("Connection refused by tcp wrapper");
1649                         refuse(&req);
1650                         /* NOTREACHED */
1651                         fatal("libwrap refuse returns");
1652                 }
1653         }
1654 #endif /* LIBWRAP */
1655
1656         /* Log the connection. */
1657         verbose("Connection from %.500s port %d", remote_ip, remote_port);
1658
1659         /*
1660          * We don\'t want to listen forever unless the other side
1661          * successfully authenticates itself.  So we set up an alarm which is
1662          * cleared after successful authentication.  A limit of zero
1663          * indicates no limit. Note that we don\'t set the alarm in debugging
1664          * mode; it is just annoying to have the server exit just when you
1665          * are about to discover the bug.
1666          */
1667         signal(SIGALRM, grace_alarm_handler);
1668         if (!debug_flag)
1669                 alarm(options.login_grace_time);
1670
1671         sshd_exchange_identification(sock_in, sock_out);
1672
1673         packet_set_nonblocking();
1674
1675         /* allocate authentication context */
1676         authctxt = xmalloc(sizeof(*authctxt));
1677         memset(authctxt, 0, sizeof(*authctxt));
1678
1679         authctxt->loginmsg = &loginmsg;
1680
1681         /* XXX global for cleanup, access from other modules */
1682         the_authctxt = authctxt;
1683
1684         /* prepare buffer to collect messages to display to user after login */
1685         buffer_init(&loginmsg);
1686
1687         if (use_privsep)
1688                 if (privsep_preauth(authctxt) == 1)
1689                         goto authenticated;
1690
1691         /* perform the key exchange */
1692         /* authenticate user and start session */
1693         if (compat20) {
1694                 do_ssh2_kex();
1695                 do_authentication2(authctxt);
1696         } else {
1697                 do_ssh1_kex();
1698                 do_authentication(authctxt);
1699         }
1700         /*
1701          * If we use privilege separation, the unprivileged child transfers
1702          * the current keystate and exits
1703          */
1704         if (use_privsep) {
1705                 mm_send_keystate(pmonitor);
1706                 exit(0);
1707         }
1708
1709  authenticated:
1710 #ifdef SSH_AUDIT_EVENTS
1711         audit_event(SSH_AUTH_SUCCESS);
1712 #endif
1713
1714         /*
1715          * In privilege separation, we fork another child and prepare
1716          * file descriptor passing.
1717          */
1718         if (use_privsep) {
1719                 privsep_postauth(authctxt);
1720                 /* the monitor process [priv] will not return */
1721                 if (!compat20)
1722                         destroy_sensitive_data();
1723         }
1724
1725         /* Start session. */
1726         do_authenticated(authctxt);
1727
1728         /* The connection has been terminated. */
1729         verbose("Closing connection to %.100s", remote_ip);
1730
1731 #ifdef USE_PAM
1732         if (options.use_pam)
1733                 finish_pam();
1734 #endif /* USE_PAM */
1735
1736 #ifdef SSH_AUDIT_EVENTS
1737         PRIVSEP(audit_event(SSH_CONNECTION_CLOSE));
1738 #endif
1739
1740         packet_close();
1741
1742         if (use_privsep)
1743                 mm_terminate();
1744
1745         exit(0);
1746 }
1747
1748 /*
1749  * Decrypt session_key_int using our private server key and private host key
1750  * (key with larger modulus first).
1751  */
1752 int
1753 ssh1_session_key(BIGNUM *session_key_int)
1754 {
1755         int rsafail = 0;
1756
1757         if (BN_cmp(sensitive_data.server_key->rsa->n, sensitive_data.ssh1_host_key->rsa->n) > 0) {
1758                 /* Server key has bigger modulus. */
1759                 if (BN_num_bits(sensitive_data.server_key->rsa->n) <
1760                     BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1761                         fatal("do_connection: %s: server_key %d < host_key %d + SSH_KEY_BITS_RESERVED %d",
1762                             get_remote_ipaddr(),
1763                             BN_num_bits(sensitive_data.server_key->rsa->n),
1764                             BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1765                             SSH_KEY_BITS_RESERVED);
1766                 }
1767                 if (rsa_private_decrypt(session_key_int, session_key_int,
1768                     sensitive_data.server_key->rsa) <= 0)
1769                         rsafail++;
1770                 if (rsa_private_decrypt(session_key_int, session_key_int,
1771                     sensitive_data.ssh1_host_key->rsa) <= 0)
1772                         rsafail++;
1773         } else {
1774                 /* Host key has bigger modulus (or they are equal). */
1775                 if (BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) <
1776                     BN_num_bits(sensitive_data.server_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1777                         fatal("do_connection: %s: host_key %d < server_key %d + SSH_KEY_BITS_RESERVED %d",
1778                             get_remote_ipaddr(),
1779                             BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1780                             BN_num_bits(sensitive_data.server_key->rsa->n),
1781                             SSH_KEY_BITS_RESERVED);
1782                 }
1783                 if (rsa_private_decrypt(session_key_int, session_key_int,
1784                     sensitive_data.ssh1_host_key->rsa) < 0)
1785                         rsafail++;
1786                 if (rsa_private_decrypt(session_key_int, session_key_int,
1787                     sensitive_data.server_key->rsa) < 0)
1788                         rsafail++;
1789         }
1790         return (rsafail);
1791 }
1792 /*
1793  * SSH1 key exchange
1794  */
1795 static void
1796 do_ssh1_kex(void)
1797 {
1798         int i, len;
1799         int rsafail = 0;
1800         BIGNUM *session_key_int;
1801         u_char session_key[SSH_SESSION_KEY_LENGTH];
1802         u_char cookie[8];
1803         u_int cipher_type, auth_mask, protocol_flags;
1804         u_int32_t rnd = 0;
1805
1806         /*
1807          * Generate check bytes that the client must send back in the user
1808          * packet in order for it to be accepted; this is used to defy ip
1809          * spoofing attacks.  Note that this only works against somebody
1810          * doing IP spoofing from a remote machine; any machine on the local
1811          * network can still see outgoing packets and catch the random
1812          * cookie.  This only affects rhosts authentication, and this is one
1813          * of the reasons why it is inherently insecure.
1814          */
1815         for (i = 0; i < 8; i++) {
1816                 if (i % 4 == 0)
1817                         rnd = arc4random();
1818                 cookie[i] = rnd & 0xff;
1819                 rnd >>= 8;
1820         }
1821
1822         /*
1823          * Send our public key.  We include in the packet 64 bits of random
1824          * data that must be matched in the reply in order to prevent IP
1825          * spoofing.
1826          */
1827         packet_start(SSH_SMSG_PUBLIC_KEY);
1828         for (i = 0; i < 8; i++)
1829                 packet_put_char(cookie[i]);
1830
1831         /* Store our public server RSA key. */
1832         packet_put_int(BN_num_bits(sensitive_data.server_key->rsa->n));
1833         packet_put_bignum(sensitive_data.server_key->rsa->e);
1834         packet_put_bignum(sensitive_data.server_key->rsa->n);
1835
1836         /* Store our public host RSA key. */
1837         packet_put_int(BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
1838         packet_put_bignum(sensitive_data.ssh1_host_key->rsa->e);
1839         packet_put_bignum(sensitive_data.ssh1_host_key->rsa->n);
1840
1841         /* Put protocol flags. */
1842         packet_put_int(SSH_PROTOFLAG_HOST_IN_FWD_OPEN);
1843
1844         /* Declare which ciphers we support. */
1845         packet_put_int(cipher_mask_ssh1(0));
1846
1847         /* Declare supported authentication types. */
1848         auth_mask = 0;
1849         if (options.rhosts_rsa_authentication)
1850                 auth_mask |= 1 << SSH_AUTH_RHOSTS_RSA;
1851         if (options.rsa_authentication)
1852                 auth_mask |= 1 << SSH_AUTH_RSA;
1853         if (options.challenge_response_authentication == 1)
1854                 auth_mask |= 1 << SSH_AUTH_TIS;
1855         if (options.password_authentication)
1856                 auth_mask |= 1 << SSH_AUTH_PASSWORD;
1857         packet_put_int(auth_mask);
1858
1859         /* Send the packet and wait for it to be sent. */
1860         packet_send();
1861         packet_write_wait();
1862
1863         debug("Sent %d bit server key and %d bit host key.",
1864             BN_num_bits(sensitive_data.server_key->rsa->n),
1865             BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
1866
1867         /* Read clients reply (cipher type and session key). */
1868         packet_read_expect(SSH_CMSG_SESSION_KEY);
1869
1870         /* Get cipher type and check whether we accept this. */
1871         cipher_type = packet_get_char();
1872
1873         if (!(cipher_mask_ssh1(0) & (1 << cipher_type)))
1874                 packet_disconnect("Warning: client selects unsupported cipher.");
1875
1876         /* Get check bytes from the packet.  These must match those we
1877            sent earlier with the public key packet. */
1878         for (i = 0; i < 8; i++)
1879                 if (cookie[i] != packet_get_char())
1880                         packet_disconnect("IP Spoofing check bytes do not match.");
1881
1882         debug("Encryption type: %.200s", cipher_name(cipher_type));
1883
1884         /* Get the encrypted integer. */
1885         if ((session_key_int = BN_new()) == NULL)
1886                 fatal("do_ssh1_kex: BN_new failed");
1887         packet_get_bignum(session_key_int);
1888
1889         protocol_flags = packet_get_int();
1890         packet_set_protocol_flags(protocol_flags);
1891         packet_check_eom();
1892
1893         /* Decrypt session_key_int using host/server keys */
1894         rsafail = PRIVSEP(ssh1_session_key(session_key_int));
1895
1896         /*
1897          * Extract session key from the decrypted integer.  The key is in the
1898          * least significant 256 bits of the integer; the first byte of the
1899          * key is in the highest bits.
1900          */
1901         if (!rsafail) {
1902                 BN_mask_bits(session_key_int, sizeof(session_key) * 8);
1903                 len = BN_num_bytes(session_key_int);
1904                 if (len < 0 || (u_int)len > sizeof(session_key)) {
1905                         error("do_connection: bad session key len from %s: "
1906                             "session_key_int %d > sizeof(session_key) %lu",
1907                             get_remote_ipaddr(), len, (u_long)sizeof(session_key));
1908                         rsafail++;
1909                 } else {
1910                         memset(session_key, 0, sizeof(session_key));
1911                         BN_bn2bin(session_key_int,
1912                             session_key + sizeof(session_key) - len);
1913
1914                         derive_ssh1_session_id(
1915                             sensitive_data.ssh1_host_key->rsa->n,
1916                             sensitive_data.server_key->rsa->n,
1917                             cookie, session_id);
1918                         /*
1919                          * Xor the first 16 bytes of the session key with the
1920                          * session id.
1921                          */
1922                         for (i = 0; i < 16; i++)
1923                                 session_key[i] ^= session_id[i];
1924                 }
1925         }
1926         if (rsafail) {
1927                 int bytes = BN_num_bytes(session_key_int);
1928                 u_char *buf = xmalloc(bytes);
1929                 MD5_CTX md;
1930
1931                 logit("do_connection: generating a fake encryption key");
1932                 BN_bn2bin(session_key_int, buf);
1933                 MD5_Init(&md);
1934                 MD5_Update(&md, buf, bytes);
1935                 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1936                 MD5_Final(session_key, &md);
1937                 MD5_Init(&md);
1938                 MD5_Update(&md, session_key, 16);
1939                 MD5_Update(&md, buf, bytes);
1940                 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1941                 MD5_Final(session_key + 16, &md);
1942                 memset(buf, 0, bytes);
1943                 xfree(buf);
1944                 for (i = 0; i < 16; i++)
1945                         session_id[i] = session_key[i] ^ session_key[i + 16];
1946         }
1947         /* Destroy the private and public keys. No longer. */
1948         destroy_sensitive_data();
1949
1950         if (use_privsep)
1951                 mm_ssh1_session_id(session_id);
1952
1953         /* Destroy the decrypted integer.  It is no longer needed. */
1954         BN_clear_free(session_key_int);
1955
1956         /* Set the session key.  From this on all communications will be encrypted. */
1957         packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, cipher_type);
1958
1959         /* Destroy our copy of the session key.  It is no longer needed. */
1960         memset(session_key, 0, sizeof(session_key));
1961
1962         debug("Received session key; encryption turned on.");
1963
1964         /* Send an acknowledgment packet.  Note that this packet is sent encrypted. */
1965         packet_start(SSH_SMSG_SUCCESS);
1966         packet_send();
1967         packet_write_wait();
1968 }
1969
1970 /*
1971  * SSH2 key exchange: diffie-hellman-group1-sha1
1972  */
1973 static void
1974 do_ssh2_kex(void)
1975 {
1976         Kex *kex;
1977
1978         if (options.ciphers != NULL) {
1979                 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
1980                 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
1981         }
1982         myproposal[PROPOSAL_ENC_ALGS_CTOS] =
1983             compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
1984         myproposal[PROPOSAL_ENC_ALGS_STOC] =
1985             compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
1986
1987         if (options.macs != NULL) {
1988                 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
1989                 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
1990         }
1991         if (!options.compression) {
1992                 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
1993                 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none";
1994         }
1995         myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = list_hostkey_types();
1996
1997         /* start key exchange */
1998         kex = kex_setup(myproposal);
1999         kex->kex[KEX_DH_GRP1_SHA1] = kexdh_server;
2000         kex->kex[KEX_DH_GRP14_SHA1] = kexdh_server;
2001         kex->kex[KEX_DH_GEX_SHA1] = kexgex_server;
2002         kex->server = 1;
2003         kex->client_version_string=client_version_string;
2004         kex->server_version_string=server_version_string;
2005         kex->load_host_key=&get_hostkey_by_type;
2006         kex->host_key_index=&get_hostkey_index;
2007
2008         xxx_kex = kex;
2009
2010         dispatch_run(DISPATCH_BLOCK, &kex->done, kex);
2011
2012         session_id2 = kex->session_id;
2013         session_id2_len = kex->session_id_len;
2014
2015 #ifdef DEBUG_KEXDH
2016         /* send 1st encrypted/maced/compressed message */
2017         packet_start(SSH2_MSG_IGNORE);
2018         packet_put_cstring("markus");
2019         packet_send();
2020         packet_write_wait();
2021 #endif
2022         debug("KEX done");
2023 }
2024
2025 /* server specific fatal cleanup */
2026 void
2027 cleanup_exit(int i)
2028 {
2029         if (the_authctxt)
2030                 do_cleanup(the_authctxt);
2031 #ifdef SSH_AUDIT_EVENTS
2032         /* done after do_cleanup so it can cancel the PAM auth 'thread' */
2033         if (!use_privsep || mm_is_monitor())
2034                 audit_event(SSH_CONNECTION_ABANDON);
2035 #endif
2036         _exit(i);
2037 }
This page took 0.227879 seconds and 5 git commands to generate.