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