LCOV - code coverage report
Current view: top level - openssh-6.6p1 - sshd.c (source / functions) Hit Total Coverage
Test: lcov_coverage_final.info Lines: 747 1081 69.1 %
Date: 2014-08-01 Functions: 29 35 82.9 %
Branches: 382 704 54.3 %

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

Generated by: LCOV version 1.9