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