blob: 46fdf7ee384a17907363fcbd43a5b40daf63fde4 [file] [log] [blame]
djm@openbsd.orga8c05c62020-01-24 23:56:01 +00001/* $OpenBSD: sshd.c,v 1.545 2020/01/24 23:56:01 djm Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Millere4340be2000-09-16 13:29:08 +11006 * This program is the ssh daemon. It listens for connections from clients,
7 * and performs authentication, executes use commands or shell, and forwards
Damien Miller95def091999-11-25 00:26:21 +11008 * information to/from the application to the user client over an encrypted
Damien Millere4340be2000-09-16 13:29:08 +11009 * connection. This can also handle forwarding of X11, TCP/IP, and
10 * authentication agent connections.
Damien Millerefb4afe2000-04-12 18:45:05 +100011 *
Damien Millere4340be2000-09-16 13:29:08 +110012 * 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:
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000019 * Privilege Separation:
Damien Millere4340be2000-09-16 13:29:08 +110020 *
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000021 * Copyright (c) 2000, 2001, 2002 Markus Friedl. All rights reserved.
22 * Copyright (c) 2002 Niels Provos. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110023 *
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.
Damien Miller95def091999-11-25 00:26:21 +110043 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100044
45#include "includes.h"
Damien Miller17e91c02006-03-15 11:28:34 +110046
Damien Miller9cf6d072006-03-15 11:29:24 +110047#include <sys/types.h>
Damien Millerd7834352006-08-05 12:39:39 +100048#include <sys/ioctl.h>
49#include <sys/socket.h>
Damien Millerf17883e2006-03-15 11:45:54 +110050#ifdef HAVE_SYS_STAT_H
51# include <sys/stat.h>
52#endif
Damien Miller9aec9192006-08-05 10:57:45 +100053#ifdef HAVE_SYS_TIME_H
54# include <sys/time.h>
55#endif
Damien Millerd7834352006-08-05 12:39:39 +100056#include "openbsd-compat/sys-tree.h"
Damien Millerb84886b2008-05-19 15:05:07 +100057#include "openbsd-compat/sys-queue.h"
Damien Miller9cf6d072006-03-15 11:29:24 +110058#include <sys/wait.h>
Damien Miller03e20032006-03-15 11:16:59 +110059
Darren Tucker39972492006-07-12 22:22:46 +100060#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100061#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100062#include <netdb.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110063#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110064#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110065#endif
Damien Millera1738e42006-07-10 21:33:04 +100066#include <grp.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100067#include <pwd.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110068#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100069#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100070#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100071#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100072#include <string.h>
Damien Miller75bb6642006-08-05 14:07:20 +100073#include <unistd.h>
deraadt@openbsd.org087266e2015-01-20 23:14:00 +000074#include <limits.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100075
Damien Miller1f0311c2014-05-15 14:24:09 +100076#ifdef WITH_OPENSSL
Ben Lindstrom226cfa02001-01-22 05:34:40 +000077#include <openssl/dh.h>
78#include <openssl/bn.h>
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000079#include <openssl/rand.h>
Darren Tuckerbfaaf962008-02-28 19:13:52 +110080#include "openbsd-compat/openssl-compat.h"
Damien Miller1f0311c2014-05-15 14:24:09 +100081#endif
Darren Tuckerbfaaf962008-02-28 19:13:52 +110082
Kevin Steves0ea1d9d2002-04-25 18:17:04 +000083#ifdef HAVE_SECUREWARE
84#include <sys/security.h>
85#include <prot.h>
86#endif
Ben Lindstrom226cfa02001-01-22 05:34:40 +000087
Damien Millerd7834352006-08-05 12:39:39 +100088#include "xmalloc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000089#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000090#include "ssh2.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000091#include "sshpty.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092#include "packet.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000093#include "log.h"
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +000094#include "sshbuf.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100095#include "misc.h"
markus@openbsd.org3a1638d2015-07-10 06:21:53 +000096#include "match.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100097#include "servconf.h"
98#include "uidswap.h"
99#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000100#include "cipher.h"
Damien Miller4a1c7aa2014-02-04 11:03:36 +1100101#include "digest.h"
markus@openbsd.org5467fbc2018-07-11 18:53:29 +0000102#include "sshkey.h"
Damien Millerd7834352006-08-05 12:39:39 +1000103#include "kex.h"
Damien Millerefb4afe2000-04-12 18:45:05 +1000104#include "myproposal.h"
Damien Millereba71ba2000-04-29 23:57:08 +1000105#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000106#include "pathnames.h"
107#include "atomicio.h"
108#include "canohost.h"
Damien Millerd7834352006-08-05 12:39:39 +1000109#include "hostfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000110#include "auth.h"
Damien Miller85b45e02013-07-20 13:21:52 +1000111#include "authfd.h"
Darren Tucker645ab752004-06-25 13:33:20 +1000112#include "msg.h"
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +0000113#include "dispatch.h"
Ben Lindstrom1bae4042001-10-03 17:46:39 +0000114#include "channels.h"
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +0000115#include "session.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000116#include "monitor.h"
Damien Millerd7834352006-08-05 12:39:39 +1000117#ifdef GSSAPI
118#include "ssh-gss.h"
119#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000120#include "monitor_wrap.h"
Damien Millerdcbd41e2011-06-23 19:45:51 +1000121#include "ssh-sandbox.h"
djm@openbsd.org7c856852018-03-03 03:15:51 +0000122#include "auth-options.h"
Damien Millerb7576772006-07-10 20:23:39 +1000123#include "version.h"
djm@openbsd.org141efe42015-01-14 20:05:27 +0000124#include "ssherr.h"
djm@openbsd.org56584cc2019-12-15 18:57:30 +0000125#include "sk-api.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000126
Damien Miller035a5b42004-06-26 08:16:31 +1000127/* Re-exec fds */
128#define REEXEC_DEVCRYPTO_RESERVED_FD (STDERR_FILENO + 1)
129#define REEXEC_STARTUP_PIPE_FD (STDERR_FILENO + 2)
130#define REEXEC_CONFIG_PASS_FD (STDERR_FILENO + 3)
131#define REEXEC_MIN_FREE_FD (STDERR_FILENO + 4)
132
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000133extern char *__progname;
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000134
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000135/* Server configuration options. */
136ServerOptions options;
137
138/* Name of the server configuration file. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000139char *config_file_name = _PATH_SERVER_CONFIG_FILE;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000140
Damien Miller4af51302000-04-16 11:18:38 +1000141/*
Damien Miller95def091999-11-25 00:26:21 +1100142 * Debug mode flag. This can be set on the command line. If debug
143 * mode is enabled, extra debugging output will be sent to the system
144 * log, the daemon will not go to background, and will exit after processing
145 * the first connection.
146 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000147int debug_flag = 0;
148
djm@openbsd.org@openbsd.org548d3a62017-11-14 00:45:29 +0000149/*
150 * Indicating that the daemon should only test the configuration and keys.
151 * If test_flag > 1 ("-T" flag), then sshd will also dump the effective
152 * configuration, optionally using connection information provided by the
153 * "-C" flag.
154 */
djm@openbsd.orgdbb4dec2019-01-17 01:50:24 +0000155static int test_flag = 0;
Ben Lindstrom794325a2001-08-06 21:09:07 +0000156
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000157/* Flag indicating that the daemon is being started from inetd. */
djm@openbsd.orgdbb4dec2019-01-17 01:50:24 +0000158static int inetd_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000159
Ben Lindstromc72745a2000-12-02 19:03:54 +0000160/* Flag indicating that sshd should not detach and become a daemon. */
djm@openbsd.orgdbb4dec2019-01-17 01:50:24 +0000161static int no_daemon_flag = 0;
Ben Lindstromc72745a2000-12-02 19:03:54 +0000162
Damien Miller5ce662a1999-11-11 17:57:39 +1100163/* debug goes to stderr unless inetd_flag is set */
djm@openbsd.orgdbb4dec2019-01-17 01:50:24 +0000164static int log_stderr = 0;
Damien Miller5ce662a1999-11-11 17:57:39 +1100165
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000166/* Saved arguments to main(). */
djm@openbsd.orgdbb4dec2019-01-17 01:50:24 +0000167static char **saved_argv;
168static int saved_argc;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000169
Darren Tucker645ab752004-06-25 13:33:20 +1000170/* re-exec */
djm@openbsd.orgdbb4dec2019-01-17 01:50:24 +0000171static int rexeced_flag = 0;
172static int rexec_flag = 1;
173static int rexec_argc = 0;
174static char **rexec_argv;
Darren Tucker645ab752004-06-25 13:33:20 +1000175
Damien Miller5428f641999-11-25 11:54:57 +1100176/*
Damien Miller34132e52000-01-14 15:45:46 +1100177 * The sockets that the server is listening; this is used in the SIGHUP
178 * signal handler.
Damien Miller5428f641999-11-25 11:54:57 +1100179 */
Damien Miller34132e52000-01-14 15:45:46 +1100180#define MAX_LISTEN_SOCKS 16
djm@openbsd.orgdbb4dec2019-01-17 01:50:24 +0000181static int listen_socks[MAX_LISTEN_SOCKS];
182static int num_listen_socks = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000183
Damien Miller85b45e02013-07-20 13:21:52 +1000184/* Daemon's agent connection */
djm@openbsd.org141efe42015-01-14 20:05:27 +0000185int auth_sock = -1;
djm@openbsd.orgdbb4dec2019-01-17 01:50:24 +0000186static int have_agent = 0;
Damien Miller85b45e02013-07-20 13:21:52 +1000187
Damien Miller5428f641999-11-25 11:54:57 +1100188/*
189 * Any really sensitive data in the application is contained in this
190 * structure. The idea is that this structure could be locked into memory so
191 * that the pages do not get written into swap. However, there are some
192 * problems. The private key contains BIGNUMs, and we do not (in principle)
193 * have access to the internals of them, and locking just the structure is
194 * not very useful. Currently, memory locking is not implemented.
195 */
Damien Miller95def091999-11-25 00:26:21 +1100196struct {
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000197 struct sshkey **host_keys; /* all private host keys */
198 struct sshkey **host_pubkeys; /* all public host keys */
199 struct sshkey **host_certificates; /* all public host certificates */
200 int have_ssh2_key;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000201} sensitive_data;
202
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000203/* This is set to true when a signal is received. */
Ben Lindstrom5e71c542001-12-06 16:48:14 +0000204static volatile sig_atomic_t received_sighup = 0;
205static volatile sig_atomic_t received_sigterm = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000206
Damien Millerb38eff82000-04-01 11:09:21 +1000207/* session identifier, used by RSA-auth */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000208u_char session_id[16];
Damien Millerb38eff82000-04-01 11:09:21 +1000209
Damien Millereba71ba2000-04-29 23:57:08 +1000210/* same for ssh2 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000211u_char *session_id2 = NULL;
Darren Tucker502d3842003-06-28 12:38:01 +1000212u_int session_id2_len = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000213
Damien Miller942da032000-08-18 13:59:06 +1000214/* record remote hostname or ip */
deraadt@openbsd.org087266e2015-01-20 23:14:00 +0000215u_int utmp_len = HOST_NAME_MAX+1;
Damien Miller942da032000-08-18 13:59:06 +1000216
djm@openbsd.org76a24b32019-03-01 02:32:39 +0000217/*
218 * startup_pipes/flags are used for tracking children of the listening sshd
219 * process early in their lifespans. This tracking is needed for three things:
220 *
221 * 1) Implementing the MaxStartups limit of concurrent unauthenticated
222 * connections.
223 * 2) Avoiding a race condition for SIGHUP processing, where child processes
224 * may have listen_socks open that could collide with main listener process
225 * after it restarts.
226 * 3) Ensuring that rexec'd sshd processes have received their initial state
227 * from the parent listen process before handling SIGHUP.
228 *
229 * Child processes signal that they have completed closure of the listen_socks
230 * and (if applicable) received their rexec state by sending a char over their
231 * sock. Child processes signal that authentication has completed by closing
232 * the sock (or by exiting).
233 */
djm@openbsd.orgdbb4dec2019-01-17 01:50:24 +0000234static int *startup_pipes = NULL;
djm@openbsd.org76a24b32019-03-01 02:32:39 +0000235static int *startup_flags = NULL; /* Indicates child closed listener */
236static int startup_pipe = -1; /* in child */
Ben Lindstromd84df982001-12-06 16:35:40 +0000237
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000238/* variables used for privilege separation */
Darren Tucker45150472006-07-12 22:34:17 +1000239int use_privsep = -1;
Darren Tuckera8be9e22004-02-06 16:40:27 +1100240struct monitor *pmonitor = NULL;
Damien Miller9ee2c602011-09-22 21:38:30 +1000241int privsep_is_preauth = 1;
Darren Tuckerd13281f2017-03-29 12:39:39 +1100242static int privsep_chroot = 1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000243
djm@openbsd.org04c091f2019-01-19 21:43:56 +0000244/* global connection state and authentication contexts */
Darren Tucker3e33cec2003-10-02 16:12:36 +1000245Authctxt *the_authctxt = NULL;
djm@openbsd.org04c091f2019-01-19 21:43:56 +0000246struct ssh *the_active_state;
Darren Tucker3e33cec2003-10-02 16:12:36 +1000247
djm@openbsd.org7c856852018-03-03 03:15:51 +0000248/* global key/cert auth options. XXX move to permanent ssh->authctxt? */
249struct sshauthopt *auth_opts = NULL;
250
Darren Tucker45150472006-07-12 22:34:17 +1000251/* sshd_config buffer */
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +0000252struct sshbuf *cfg;
Darren Tucker45150472006-07-12 22:34:17 +1000253
Darren Tucker09991742004-07-17 17:05:14 +1000254/* message to be displayed after login */
markus@openbsd.org2808d182018-07-09 21:26:02 +0000255struct sshbuf *loginmsg;
Darren Tucker09991742004-07-17 17:05:14 +1000256
Damien Miller6433df02006-09-07 10:36:43 +1000257/* Unprivileged user */
258struct passwd *privsep_pw = NULL;
259
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000260/* Prototypes for various functions defined later in this file. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000261void destroy_sensitive_data(void);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000262void demote_sensitive_data(void);
djm@openbsd.org6350e032019-01-19 21:42:30 +0000263static void do_ssh2_kex(struct ssh *);
Damien Miller874d77b2000-10-14 16:23:11 +1100264
djm@openbsd.orga8c05c62020-01-24 23:56:01 +0000265static char *listener_proctitle;
266
Damien Miller98c7ad62000-03-09 21:27:49 +1100267/*
Damien Miller34132e52000-01-14 15:45:46 +1100268 * Close all listening sockets
269 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000270static void
Damien Miller34132e52000-01-14 15:45:46 +1100271close_listen_socks(void)
272{
273 int i;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000274
Damien Miller34132e52000-01-14 15:45:46 +1100275 for (i = 0; i < num_listen_socks; i++)
276 close(listen_socks[i]);
277 num_listen_socks = -1;
278}
279
Ben Lindstromd84df982001-12-06 16:35:40 +0000280static void
281close_startup_pipes(void)
282{
283 int i;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000284
Ben Lindstromd84df982001-12-06 16:35:40 +0000285 if (startup_pipes)
286 for (i = 0; i < options.max_startups; i++)
287 if (startup_pipes[i] != -1)
288 close(startup_pipes[i]);
289}
290
Damien Miller34132e52000-01-14 15:45:46 +1100291/*
Damien Miller95def091999-11-25 00:26:21 +1100292 * Signal handler for SIGHUP. Sshd execs itself when it receives SIGHUP;
293 * the effect is to reread the configuration file (and to regenerate
294 * the server key).
295 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100296
297/*ARGSUSED*/
Ben Lindstrombba81212001-06-25 05:01:22 +0000298static void
Damien Miller95def091999-11-25 00:26:21 +1100299sighup_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000300{
Damien Miller95def091999-11-25 00:26:21 +1100301 received_sighup = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000302}
303
Damien Miller95def091999-11-25 00:26:21 +1100304/*
305 * Called from the main program after receiving SIGHUP.
306 * Restarts the server.
307 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000308static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000309sighup_restart(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000310{
Damien Miller996acd22003-04-09 20:59:48 +1000311 logit("Received SIGHUP; restarting.");
dtucker@openbsd.orgf2398eb2016-12-04 22:27:25 +0000312 if (options.pid_file != NULL)
313 unlink(options.pid_file);
Darren Tuckerf2bf36c2013-09-22 19:02:40 +1000314 platform_pre_restart();
Damien Miller34132e52000-01-14 15:45:46 +1100315 close_listen_socks();
Ben Lindstromd84df982001-12-06 16:35:40 +0000316 close_startup_pipes();
Darren Tuckered623962007-02-25 20:37:21 +1100317 alarm(0); /* alarm timer persists across exec */
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +0000318 ssh_signal(SIGHUP, SIG_IGN); /* will be restored after exec */
Damien Miller95def091999-11-25 00:26:21 +1100319 execv(saved_argv[0], saved_argv);
Damien Miller996acd22003-04-09 20:59:48 +1000320 logit("RESTART FAILED: av[0]='%.100s', error: %.100s.", saved_argv[0],
Ben Lindstrom822b6342002-06-23 21:38:49 +0000321 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100322 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000323}
324
Damien Miller95def091999-11-25 00:26:21 +1100325/*
326 * Generic signal handler for terminating signals in the master daemon.
Damien Miller95def091999-11-25 00:26:21 +1100327 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100328/*ARGSUSED*/
Ben Lindstrombba81212001-06-25 05:01:22 +0000329static void
Damien Miller95def091999-11-25 00:26:21 +1100330sigterm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000331{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000332 received_sigterm = sig;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000333}
334
Damien Miller95def091999-11-25 00:26:21 +1100335/*
336 * SIGCHLD handler. This is called whenever a child dies. This will then
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000337 * reap any zombies left by exited children.
Damien Miller95def091999-11-25 00:26:21 +1100338 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100339/*ARGSUSED*/
Ben Lindstrombba81212001-06-25 05:01:22 +0000340static void
Damien Miller95def091999-11-25 00:26:21 +1100341main_sigchld_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000342{
Damien Miller95def091999-11-25 00:26:21 +1100343 int save_errno = errno;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000344 pid_t pid;
Damien Miller95def091999-11-25 00:26:21 +1100345 int status;
Damien Miller431f66b1999-11-21 18:31:57 +1100346
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +0000347 debug("main_sigchld_handler: %s", strsignal(sig));
348
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000349 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000350 (pid == -1 && errno == EINTR))
Damien Miller95def091999-11-25 00:26:21 +1100351 ;
Damien Miller95def091999-11-25 00:26:21 +1100352 errno = save_errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000353}
354
Damien Miller95def091999-11-25 00:26:21 +1100355/*
356 * Signal handler for the alarm after the login grace period has expired.
357 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100358/*ARGSUSED*/
Ben Lindstrombba81212001-06-25 05:01:22 +0000359static void
Damien Miller95def091999-11-25 00:26:21 +1100360grace_alarm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000361{
Darren Tuckera8be9e22004-02-06 16:40:27 +1100362 if (use_privsep && pmonitor != NULL && pmonitor->m_pid > 0)
363 kill(pmonitor->m_pid, SIGALRM);
364
Damien Miller09d3e122012-10-31 08:58:58 +1100365 /*
366 * Try to kill any processes that we have spawned, E.g. authorized
367 * keys command helpers.
368 */
369 if (getpgid(0) == getpid()) {
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +0000370 ssh_signal(SIGTERM, SIG_IGN);
Damien Millerab16ef42014-01-28 15:08:12 +1100371 kill(0, SIGTERM);
Damien Miller09d3e122012-10-31 08:58:58 +1100372 }
373
djm@openbsd.org04c091f2019-01-19 21:43:56 +0000374 /* XXX pre-format ipaddr/port so we don't need to access active_state */
Damien Miller95def091999-11-25 00:26:21 +1100375 /* Log error and exit. */
djm@openbsd.org95767262016-03-07 19:02:43 +0000376 sigdie("Timeout before authentication for %s port %d",
djm@openbsd.org04c091f2019-01-19 21:43:56 +0000377 ssh_remote_ipaddr(the_active_state),
378 ssh_remote_port(the_active_state));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000379}
380
Damien Miller0bc1bd82000-11-13 22:57:25 +1100381/* Destroy the host and server keys. They will no longer be needed. */
Damien Millereba71ba2000-04-29 23:57:08 +1000382void
383destroy_sensitive_data(void)
384{
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000385 u_int i;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100386
Damien Miller9f0f5c62001-12-21 14:45:46 +1100387 for (i = 0; i < options.num_host_key_files; i++) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100388 if (sensitive_data.host_keys[i]) {
markus@openbsd.org5467fbc2018-07-11 18:53:29 +0000389 sshkey_free(sensitive_data.host_keys[i]);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100390 sensitive_data.host_keys[i] = NULL;
391 }
Damien Miller0a80ca12010-02-27 07:55:05 +1100392 if (sensitive_data.host_certificates[i]) {
markus@openbsd.org5467fbc2018-07-11 18:53:29 +0000393 sshkey_free(sensitive_data.host_certificates[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +1100394 sensitive_data.host_certificates[i] = NULL;
395 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100396 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100397}
Damien Miller0bc1bd82000-11-13 22:57:25 +1100398
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000399/* Demote private to public keys for network child */
400void
401demote_sensitive_data(void)
402{
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000403 struct sshkey *tmp;
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000404 u_int i;
markus@openbsd.org5467fbc2018-07-11 18:53:29 +0000405 int r;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000406
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000407 for (i = 0; i < options.num_host_key_files; i++) {
408 if (sensitive_data.host_keys[i]) {
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000409 if ((r = sshkey_from_private(
410 sensitive_data.host_keys[i], &tmp)) != 0)
markus@openbsd.org5467fbc2018-07-11 18:53:29 +0000411 fatal("could not demote host %s key: %s",
412 sshkey_type(sensitive_data.host_keys[i]),
413 ssh_err(r));
414 sshkey_free(sensitive_data.host_keys[i]);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000415 sensitive_data.host_keys[i] = tmp;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000416 }
Damien Miller0a80ca12010-02-27 07:55:05 +1100417 /* Certs do not need demotion */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000418 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000419}
420
Ben Lindstrom08105192002-03-22 02:50:06 +0000421static void
Damien Millerc9f880c2016-11-30 13:51:49 +1100422reseed_prngs(void)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000423{
Darren Tucker64cee362009-06-21 20:26:17 +1000424 u_int32_t rnd[256];
Damien Millerc9f880c2016-11-30 13:51:49 +1100425
426#ifdef WITH_OPENSSL
427 RAND_poll();
428#endif
429 arc4random_stir(); /* noop on recent arc4random() implementations */
430 arc4random_buf(rnd, sizeof(rnd)); /* let arc4random notice PID change */
431
432#ifdef WITH_OPENSSL
433 RAND_seed(rnd, sizeof(rnd));
434 /* give libcrypto a chance to notice the PID change */
435 if ((RAND_bytes((u_char *)rnd, 1)) != 1)
436 fatal("%s: RAND_bytes failed", __func__);
437#endif
438
439 explicit_bzero(rnd, sizeof(rnd));
440}
441
442static void
443privsep_preauth_child(void)
444{
Ben Lindstrom810af962002-07-04 00:11:40 +0000445 gid_t gidset[1];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000446
447 /* Enable challenge-response authentication for privilege separation */
448 privsep_challenge_enable();
449
Damien Millerfb3423b2014-02-27 10:20:07 +1100450#ifdef GSSAPI
Damien Millere6a74ae2014-02-27 10:17:49 +1100451 /* Cache supported mechanism OIDs for later use */
djm@openbsd.orgcb24d9f2018-09-21 12:23:17 +0000452 ssh_gssapi_prepare_supported_oids();
Damien Millerfb3423b2014-02-27 10:20:07 +1100453#endif
Damien Millere6a74ae2014-02-27 10:17:49 +1100454
Damien Millerc9f880c2016-11-30 13:51:49 +1100455 reseed_prngs();
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000456
457 /* Demote the private keys to public keys. */
458 demote_sensitive_data();
459
djm@openbsd.org5b4010d2015-11-16 22:51:05 +0000460 /* Demote the child */
Darren Tuckerd13281f2017-03-29 12:39:39 +1100461 if (privsep_chroot) {
djm@openbsd.org5b4010d2015-11-16 22:51:05 +0000462 /* Change our root directory */
463 if (chroot(_PATH_PRIVSEP_CHROOT_DIR) == -1)
464 fatal("chroot(\"%s\"): %s", _PATH_PRIVSEP_CHROOT_DIR,
465 strerror(errno));
466 if (chdir("/") == -1)
467 fatal("chdir(\"/\"): %s", strerror(errno));
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000468
djm@openbsd.org5b4010d2015-11-16 22:51:05 +0000469 /* Drop our privileges */
470 debug3("privsep user:group %u:%u", (u_int)privsep_pw->pw_uid,
471 (u_int)privsep_pw->pw_gid);
472 gidset[0] = privsep_pw->pw_gid;
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000473 if (setgroups(1, gidset) == -1)
djm@openbsd.org5b4010d2015-11-16 22:51:05 +0000474 fatal("setgroups: %.100s", strerror(errno));
475 permanently_set_uid(privsep_pw);
476 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000477}
478
Darren Tucker3e33cec2003-10-02 16:12:36 +1000479static int
djm@openbsd.org6350e032019-01-19 21:42:30 +0000480privsep_preauth(struct ssh *ssh)
Ben Lindstrom943481c2002-03-22 03:43:46 +0000481{
djm@openbsd.org141efe42015-01-14 20:05:27 +0000482 int status, r;
Ben Lindstrom943481c2002-03-22 03:43:46 +0000483 pid_t pid;
Damien Miller69ff1df2011-06-23 08:30:03 +1000484 struct ssh_sandbox *box = NULL;
Ben Lindstrom943481c2002-03-22 03:43:46 +0000485
486 /* Set up unprivileged child process to deal with network data */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000487 pmonitor = monitor_init();
Ben Lindstrom943481c2002-03-22 03:43:46 +0000488 /* Store a pointer to the kex for later rekeying */
djm@openbsd.org6350e032019-01-19 21:42:30 +0000489 pmonitor->m_pkex = &ssh->kex;
Ben Lindstrom943481c2002-03-22 03:43:46 +0000490
Damien Miller5a5c2b92012-07-31 12:21:34 +1000491 if (use_privsep == PRIVSEP_ON)
Damien Miller868ea1e2014-01-17 16:47:04 +1100492 box = ssh_sandbox_init(pmonitor);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000493 pid = fork();
494 if (pid == -1) {
495 fatal("fork of unprivileged child failed");
496 } else if (pid != 0) {
Ben Lindstromce0f6342002-06-11 16:42:49 +0000497 debug2("Network child is on pid %ld", (long)pid);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000498
Darren Tucker3b4b2d32012-07-02 18:54:31 +1000499 pmonitor->m_pid = pid;
djm@openbsd.org141efe42015-01-14 20:05:27 +0000500 if (have_agent) {
501 r = ssh_get_authentication_socket(&auth_sock);
502 if (r != 0) {
503 error("Could not get agent socket: %s",
504 ssh_err(r));
505 have_agent = 0;
506 }
507 }
Damien Miller69ff1df2011-06-23 08:30:03 +1000508 if (box != NULL)
509 ssh_sandbox_parent_preauth(box, pid);
djm@openbsd.orgec00f912019-01-19 21:43:07 +0000510 monitor_child_preauth(ssh, pmonitor);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000511
Ben Lindstrom943481c2002-03-22 03:43:46 +0000512 /* Wait for the child's exit status */
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000513 while (waitpid(pid, &status, 0) == -1) {
Damien Miller9ee2c602011-09-22 21:38:30 +1000514 if (errno == EINTR)
515 continue;
516 pmonitor->m_pid = -1;
517 fatal("%s: waitpid: %s", __func__, strerror(errno));
Damien Miller69ff1df2011-06-23 08:30:03 +1000518 }
Damien Miller9ee2c602011-09-22 21:38:30 +1000519 privsep_is_preauth = 0;
520 pmonitor->m_pid = -1;
Damien Miller69ff1df2011-06-23 08:30:03 +1000521 if (WIFEXITED(status)) {
522 if (WEXITSTATUS(status) != 0)
523 fatal("%s: preauth child exited with status %d",
524 __func__, WEXITSTATUS(status));
525 } else if (WIFSIGNALED(status))
526 fatal("%s: preauth child terminated by signal %d",
527 __func__, WTERMSIG(status));
528 if (box != NULL)
529 ssh_sandbox_parent_finish(box);
530 return 1;
Ben Lindstrom943481c2002-03-22 03:43:46 +0000531 } else {
532 /* child */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000533 close(pmonitor->m_sendfd);
Damien Miller8f0bf232011-06-20 14:42:23 +1000534 close(pmonitor->m_log_recvfd);
535
536 /* Arrange for logging to be sent to the monitor */
537 set_log_handler(mm_log_handler, pmonitor);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000538
djm@openbsd.org5b4010d2015-11-16 22:51:05 +0000539 privsep_preauth_child();
Ben Lindstromf90f58d2002-03-26 01:53:03 +0000540 setproctitle("%s", "[net]");
Damien Miller69ff1df2011-06-23 08:30:03 +1000541 if (box != NULL)
542 ssh_sandbox_child(box);
543
544 return 0;
Ben Lindstrom943481c2002-03-22 03:43:46 +0000545 }
Ben Lindstrom943481c2002-03-22 03:43:46 +0000546}
547
Ben Lindstrom08105192002-03-22 02:50:06 +0000548static void
djm@openbsd.org6350e032019-01-19 21:42:30 +0000549privsep_postauth(struct ssh *ssh, Authctxt *authctxt)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000550{
Tim Rice9dd30812002-07-07 13:43:36 -0700551#ifdef DISABLE_FD_PASSING
Tim Rice8eff3192002-06-25 15:35:15 -0700552 if (1) {
553#else
djm@openbsd.org83b58182016-08-19 03:18:06 +0000554 if (authctxt->pw->pw_uid == 0) {
Tim Rice8eff3192002-06-25 15:35:15 -0700555#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000556 /* File descriptor passing is broken or root login */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000557 use_privsep = 0;
Darren Tucker45b01422005-10-03 18:20:00 +1000558 goto skip;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000559 }
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000560
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000561 /* New socket pair */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000562 monitor_reinit(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000563
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000564 pmonitor->m_pid = fork();
565 if (pmonitor->m_pid == -1)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000566 fatal("fork of unprivileged child failed");
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000567 else if (pmonitor->m_pid != 0) {
Damien Millerb61f3fc2008-07-11 17:36:48 +1000568 verbose("User child is on pid %ld", (long)pmonitor->m_pid);
markus@openbsd.org2808d182018-07-09 21:26:02 +0000569 sshbuf_reset(loginmsg);
djm@openbsd.orgec00f912019-01-19 21:43:07 +0000570 monitor_clear_keystate(ssh, pmonitor);
571 monitor_child_postauth(ssh, pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000572
573 /* NEVERREACHED */
574 exit(0);
575 }
576
Damien Miller8f0bf232011-06-20 14:42:23 +1000577 /* child */
578
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000579 close(pmonitor->m_sendfd);
Damien Miller8f0bf232011-06-20 14:42:23 +1000580 pmonitor->m_sendfd = -1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000581
582 /* Demote the private keys to public keys. */
583 demote_sensitive_data();
584
Damien Millerc9f880c2016-11-30 13:51:49 +1100585 reseed_prngs();
Damien Miller76e95da2008-03-07 18:31:24 +1100586
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000587 /* Drop privileges */
588 do_setusercontext(authctxt->pw);
589
Darren Tucker45b01422005-10-03 18:20:00 +1000590 skip:
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000591 /* It is safe now to apply the key state */
djm@openbsd.orgec00f912019-01-19 21:43:07 +0000592 monitor_apply_keystate(ssh, pmonitor);
Damien Miller9786e6e2005-07-26 21:54:56 +1000593
594 /*
595 * Tell the packet layer that authentication was successful, since
596 * this information is not part of the key state.
597 */
djm@openbsd.org6350e032019-01-19 21:42:30 +0000598 ssh_packet_set_authenticated(ssh);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000599}
600
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000601static void
602append_hostkey_type(struct sshbuf *b, const char *s)
603{
604 int r;
605
606 if (match_pattern_list(s, options.hostkeyalgorithms, 0) != 1) {
607 debug3("%s: %s key not permitted by HostkeyAlgorithms",
608 __func__, s);
609 return;
610 }
611 if ((r = sshbuf_putf(b, "%s%s", sshbuf_len(b) > 0 ? "," : "", s)) != 0)
612 fatal("%s: sshbuf_putf: %s", __func__, ssh_err(r));
613}
614
Ben Lindstrombba81212001-06-25 05:01:22 +0000615static char *
Damien Miller0bc1bd82000-11-13 22:57:25 +1100616list_hostkey_types(void)
617{
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000618 struct sshbuf *b;
619 struct sshkey *key;
Damien Millerf58b58c2003-11-17 21:18:23 +1100620 char *ret;
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000621 u_int i;
Damien Miller0e3b8722002-01-22 23:26:38 +1100622
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000623 if ((b = sshbuf_new()) == NULL)
624 fatal("%s: sshbuf_new failed", __func__);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100625 for (i = 0; i < options.num_host_key_files; i++) {
Damien Miller0a80ca12010-02-27 07:55:05 +1100626 key = sensitive_data.host_keys[i];
djm@openbsd.orgce63c4b2015-02-16 22:30:03 +0000627 if (key == NULL)
Damien Miller85b45e02013-07-20 13:21:52 +1000628 key = sensitive_data.host_pubkeys[i];
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000629 if (key == NULL)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100630 continue;
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000631 switch (key->type) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100632 case KEY_RSA:
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000633 /* for RSA we also support SHA2 signatures */
634 append_hostkey_type(b, "rsa-sha2-512");
635 append_hostkey_type(b, "rsa-sha2-256");
636 /* FALLTHROUGH */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100637 case KEY_DSA:
Damien Millereb8b60e2010-08-31 22:41:14 +1000638 case KEY_ECDSA:
Damien Miller5be9d9e2013-12-07 11:24:01 +1100639 case KEY_ED25519:
djm@openbsd.org56584cc2019-12-15 18:57:30 +0000640 case KEY_ECDSA_SK:
641 case KEY_ED25519_SK:
markus@openbsd.org1b11ea72018-02-23 15:58:37 +0000642 case KEY_XMSS:
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000643 append_hostkey_type(b, sshkey_ssh_name(key));
Damien Miller0bc1bd82000-11-13 22:57:25 +1100644 break;
645 }
Damien Miller0a80ca12010-02-27 07:55:05 +1100646 /* If the private key has a cert peer, then list that too */
647 key = sensitive_data.host_certificates[i];
648 if (key == NULL)
649 continue;
650 switch (key->type) {
651 case KEY_RSA_CERT:
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000652 /* for RSA we also support SHA2 signatures */
653 append_hostkey_type(b,
654 "rsa-sha2-512-cert-v01@openssh.com");
655 append_hostkey_type(b,
656 "rsa-sha2-256-cert-v01@openssh.com");
657 /* FALLTHROUGH */
Damien Miller0a80ca12010-02-27 07:55:05 +1100658 case KEY_DSA_CERT:
Damien Millereb8b60e2010-08-31 22:41:14 +1000659 case KEY_ECDSA_CERT:
Damien Miller5be9d9e2013-12-07 11:24:01 +1100660 case KEY_ED25519_CERT:
djm@openbsd.org56584cc2019-12-15 18:57:30 +0000661 case KEY_ECDSA_SK_CERT:
662 case KEY_ED25519_SK_CERT:
markus@openbsd.org1b11ea72018-02-23 15:58:37 +0000663 case KEY_XMSS_CERT:
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000664 append_hostkey_type(b, sshkey_ssh_name(key));
Damien Miller0a80ca12010-02-27 07:55:05 +1100665 break;
666 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100667 }
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000668 if ((ret = sshbuf_dup_string(b)) == NULL)
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000669 fatal("%s: sshbuf_dup_string failed", __func__);
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000670 sshbuf_free(b);
671 debug("%s: %s", __func__, ret);
Damien Millerf58b58c2003-11-17 21:18:23 +1100672 return ret;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100673}
674
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000675static struct sshkey *
djm@openbsd.org5104db72015-01-26 06:10:03 +0000676get_hostkey_by_type(int type, int nid, int need_private, struct ssh *ssh)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100677{
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000678 u_int i;
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000679 struct sshkey *key;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000680
Damien Miller9f0f5c62001-12-21 14:45:46 +1100681 for (i = 0; i < options.num_host_key_files; i++) {
Damien Miller4e270b02010-04-16 15:56:21 +1000682 switch (type) {
Damien Miller4e270b02010-04-16 15:56:21 +1000683 case KEY_RSA_CERT:
684 case KEY_DSA_CERT:
Damien Millereb8b60e2010-08-31 22:41:14 +1000685 case KEY_ECDSA_CERT:
Damien Miller5be9d9e2013-12-07 11:24:01 +1100686 case KEY_ED25519_CERT:
djm@openbsd.org56584cc2019-12-15 18:57:30 +0000687 case KEY_ECDSA_SK_CERT:
688 case KEY_ED25519_SK_CERT:
markus@openbsd.org1b11ea72018-02-23 15:58:37 +0000689 case KEY_XMSS_CERT:
Damien Miller0a80ca12010-02-27 07:55:05 +1100690 key = sensitive_data.host_certificates[i];
Damien Miller4e270b02010-04-16 15:56:21 +1000691 break;
692 default:
Damien Miller0a80ca12010-02-27 07:55:05 +1100693 key = sensitive_data.host_keys[i];
Damien Miller85b45e02013-07-20 13:21:52 +1000694 if (key == NULL && !need_private)
695 key = sensitive_data.host_pubkeys[i];
Damien Miller4e270b02010-04-16 15:56:21 +1000696 break;
697 }
djm@openbsd.org56584cc2019-12-15 18:57:30 +0000698 if (key == NULL || key->type != type)
699 continue;
700 switch (type) {
701 case KEY_ECDSA:
702 case KEY_ECDSA_SK:
703 case KEY_ECDSA_CERT:
704 case KEY_ECDSA_SK_CERT:
705 if (key->ecdsa_nid != nid)
706 continue;
707 /* FALLTHROUGH */
708 default:
Damien Miller0a80ca12010-02-27 07:55:05 +1100709 return need_private ?
710 sensitive_data.host_keys[i] : key;
djm@openbsd.org56584cc2019-12-15 18:57:30 +0000711 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100712 }
713 return NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000714}
715
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000716struct sshkey *
djm@openbsd.org5104db72015-01-26 06:10:03 +0000717get_hostkey_public_by_type(int type, int nid, struct ssh *ssh)
Damien Miller0a80ca12010-02-27 07:55:05 +1100718{
djm@openbsd.org5104db72015-01-26 06:10:03 +0000719 return get_hostkey_by_type(type, nid, 0, ssh);
Damien Miller0a80ca12010-02-27 07:55:05 +1100720}
721
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000722struct sshkey *
djm@openbsd.org5104db72015-01-26 06:10:03 +0000723get_hostkey_private_by_type(int type, int nid, struct ssh *ssh)
Damien Miller0a80ca12010-02-27 07:55:05 +1100724{
djm@openbsd.org5104db72015-01-26 06:10:03 +0000725 return get_hostkey_by_type(type, nid, 1, ssh);
Damien Miller0a80ca12010-02-27 07:55:05 +1100726}
727
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000728struct sshkey *
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000729get_hostkey_by_index(int ind)
730{
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000731 if (ind < 0 || (u_int)ind >= options.num_host_key_files)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000732 return (NULL);
733 return (sensitive_data.host_keys[ind]);
734}
735
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000736struct sshkey *
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000737get_hostkey_public_by_index(int ind, struct ssh *ssh)
Damien Miller85b45e02013-07-20 13:21:52 +1000738{
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000739 if (ind < 0 || (u_int)ind >= options.num_host_key_files)
Damien Miller85b45e02013-07-20 13:21:52 +1000740 return (NULL);
741 return (sensitive_data.host_pubkeys[ind]);
742}
743
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000744int
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000745get_hostkey_index(struct sshkey *key, int compare, struct ssh *ssh)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000746{
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000747 u_int i;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000748
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000749 for (i = 0; i < options.num_host_key_files; i++) {
markus@openbsd.org5467fbc2018-07-11 18:53:29 +0000750 if (sshkey_is_cert(key)) {
djm@openbsd.org523463a2015-02-16 22:13:32 +0000751 if (key == sensitive_data.host_certificates[i] ||
752 (compare && sensitive_data.host_certificates[i] &&
753 sshkey_equal(key,
754 sensitive_data.host_certificates[i])))
Damien Miller0a80ca12010-02-27 07:55:05 +1100755 return (i);
756 } else {
djm@openbsd.org523463a2015-02-16 22:13:32 +0000757 if (key == sensitive_data.host_keys[i] ||
758 (compare && sensitive_data.host_keys[i] &&
759 sshkey_equal(key, sensitive_data.host_keys[i])))
Damien Miller0a80ca12010-02-27 07:55:05 +1100760 return (i);
djm@openbsd.org523463a2015-02-16 22:13:32 +0000761 if (key == sensitive_data.host_pubkeys[i] ||
762 (compare && sensitive_data.host_pubkeys[i] &&
763 sshkey_equal(key, sensitive_data.host_pubkeys[i])))
Damien Miller85b45e02013-07-20 13:21:52 +1000764 return (i);
Damien Miller0a80ca12010-02-27 07:55:05 +1100765 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000766 }
767 return (-1);
768}
769
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000770/* Inform the client of all hostkeys */
771static void
772notify_hostkeys(struct ssh *ssh)
773{
774 struct sshbuf *buf;
775 struct sshkey *key;
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000776 u_int i, nkeys;
777 int r;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000778 char *fp;
779
dtucker@openbsd.orgd8f391c2015-04-10 05:16:50 +0000780 /* Some clients cannot cope with the hostkeys message, skip those. */
djm@openbsd.org04c091f2019-01-19 21:43:56 +0000781 if (ssh->compat & SSH_BUG_HOSTKEYS)
dtucker@openbsd.orgd8f391c2015-04-10 05:16:50 +0000782 return;
783
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000784 if ((buf = sshbuf_new()) == NULL)
785 fatal("%s: sshbuf_new", __func__);
786 for (i = nkeys = 0; i < options.num_host_key_files; i++) {
787 key = get_hostkey_public_by_index(i, ssh);
788 if (key == NULL || key->type == KEY_UNSPEC ||
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000789 sshkey_is_cert(key))
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000790 continue;
791 fp = sshkey_fingerprint(key, options.fingerprint_hash,
792 SSH_FP_DEFAULT);
793 debug3("%s: key %d: %s %s", __func__, i,
794 sshkey_ssh_name(key), fp);
795 free(fp);
djm@openbsd.org523463a2015-02-16 22:13:32 +0000796 if (nkeys == 0) {
djm@openbsd.org6350e032019-01-19 21:42:30 +0000797 /*
798 * Start building the request when we find the
799 * first usable key.
800 */
801 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
802 (r = sshpkt_put_cstring(ssh, "hostkeys-00@openssh.com")) != 0 ||
803 (r = sshpkt_put_u8(ssh, 0)) != 0) /* want reply */
804 sshpkt_fatal(ssh, r, "%s: start request", __func__);
djm@openbsd.org523463a2015-02-16 22:13:32 +0000805 }
djm@openbsd.org6350e032019-01-19 21:42:30 +0000806 /* Append the key to the request */
djm@openbsd.org523463a2015-02-16 22:13:32 +0000807 sshbuf_reset(buf);
808 if ((r = sshkey_putb(key, buf)) != 0)
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000809 fatal("%s: couldn't put hostkey %d: %s",
810 __func__, i, ssh_err(r));
djm@openbsd.org6350e032019-01-19 21:42:30 +0000811 if ((r = sshpkt_put_stringb(ssh, buf)) != 0)
812 sshpkt_fatal(ssh, r, "%s: append key", __func__);
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000813 nkeys++;
814 }
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000815 debug3("%s: sent %u hostkeys", __func__, nkeys);
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000816 if (nkeys == 0)
817 fatal("%s: no hostkeys", __func__);
djm@openbsd.org6350e032019-01-19 21:42:30 +0000818 if ((r = sshpkt_send(ssh)) != 0)
819 sshpkt_fatal(ssh, r, "%s: send", __func__);
djm@openbsd.org523463a2015-02-16 22:13:32 +0000820 sshbuf_free(buf);
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000821}
822
Damien Miller942da032000-08-18 13:59:06 +1000823/*
824 * returns 1 if connection should be dropped, 0 otherwise.
825 * dropping starts at connection #max_startups_begin with a probability
826 * of (max_startups_rate/100). the probability increases linearly until
827 * all connections are dropped for startups > max_startups
828 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000829static int
Damien Miller942da032000-08-18 13:59:06 +1000830drop_connection(int startups)
831{
Darren Tucker178fa662004-11-05 20:09:09 +1100832 int p, r;
Damien Miller942da032000-08-18 13:59:06 +1000833
834 if (startups < options.max_startups_begin)
835 return 0;
836 if (startups >= options.max_startups)
837 return 1;
838 if (options.max_startups_rate == 100)
839 return 1;
840
841 p = 100 - options.max_startups_rate;
842 p *= startups - options.max_startups_begin;
Darren Tucker178fa662004-11-05 20:09:09 +1100843 p /= options.max_startups - options.max_startups_begin;
Damien Miller942da032000-08-18 13:59:06 +1000844 p += options.max_startups_rate;
Damien Miller354c48c2008-05-19 14:50:00 +1000845 r = arc4random_uniform(100);
Damien Miller942da032000-08-18 13:59:06 +1000846
Darren Tucker3269b132004-11-05 20:20:59 +1100847 debug("drop_connection: p %d, r %d", p, r);
Damien Miller942da032000-08-18 13:59:06 +1000848 return (r < p) ? 1 : 0;
849}
850
Ben Lindstromade03f62001-12-06 18:22:17 +0000851static void
852usage(void)
853{
Damien Miller0c889cd2004-03-22 09:36:00 +1100854 fprintf(stderr, "%s, %s\n",
Damien Miller1f0311c2014-05-15 14:24:09 +1000855 SSH_RELEASE,
856#ifdef WITH_OPENSSL
djm@openbsd.orga65784c2018-10-23 05:56:35 +0000857 OpenSSL_version(OPENSSL_VERSION)
Damien Miller1f0311c2014-05-15 14:24:09 +1000858#else
859 "without OpenSSL"
860#endif
861 );
Damien Millerb4087862004-03-22 09:35:21 +1100862 fprintf(stderr,
naddy@openbsd.orgc38ea632016-08-15 12:27:56 +0000863"usage: sshd [-46DdeiqTt] [-C connection_spec] [-c host_cert_file]\n"
Damien Miller03d4d7e2013-04-23 15:21:06 +1000864" [-E log_file] [-f config_file] [-g login_grace_time]\n"
naddy@openbsd.orgc38ea632016-08-15 12:27:56 +0000865" [-h host_key_file] [-o option] [-p port] [-u len]\n"
Damien Millerb4087862004-03-22 09:35:21 +1100866 );
Ben Lindstromade03f62001-12-06 18:22:17 +0000867 exit(1);
868}
869
Darren Tucker645ab752004-06-25 13:33:20 +1000870static void
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000871send_rexec_state(int fd, struct sshbuf *conf)
Darren Tucker645ab752004-06-25 13:33:20 +1000872{
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000873 struct sshbuf *m;
874 int r;
Darren Tucker645ab752004-06-25 13:33:20 +1000875
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000876 debug3("%s: entering fd = %d config len %zu", __func__, fd,
877 sshbuf_len(conf));
Darren Tucker645ab752004-06-25 13:33:20 +1000878
879 /*
880 * Protocol from reexec master to child:
881 * string configuration
Darren Tuckerc6f82192005-09-27 22:46:32 +1000882 * string rngseed (only if OpenSSL is not self-seeded)
Darren Tucker645ab752004-06-25 13:33:20 +1000883 */
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000884 if ((m = sshbuf_new()) == NULL)
885 fatal("%s: sshbuf_new failed", __func__);
886 if ((r = sshbuf_put_stringb(m, conf)) != 0)
887 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Darren Tucker645ab752004-06-25 13:33:20 +1000888
Damien Miller72ef7c12015-01-15 02:21:31 +1100889#if defined(WITH_OPENSSL) && !defined(OPENSSL_PRNG_ONLY)
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000890 rexec_send_rng_seed(m);
Darren Tuckerc6f82192005-09-27 22:46:32 +1000891#endif
892
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000893 if (ssh_msg_send(fd, 0, m) == -1)
Darren Tucker645ab752004-06-25 13:33:20 +1000894 fatal("%s: ssh_msg_send failed", __func__);
895
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000896 sshbuf_free(m);
Darren Tucker645ab752004-06-25 13:33:20 +1000897
898 debug3("%s: done", __func__);
899}
900
901static void
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +0000902recv_rexec_state(int fd, struct sshbuf *conf)
Darren Tucker645ab752004-06-25 13:33:20 +1000903{
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +0000904 struct sshbuf *m;
905 u_char *cp, ver;
906 size_t len;
907 int r;
Darren Tucker645ab752004-06-25 13:33:20 +1000908
909 debug3("%s: entering fd = %d", __func__, fd);
910
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +0000911 if ((m = sshbuf_new()) == NULL)
912 fatal("%s: sshbuf_new failed", __func__);
913 if (ssh_msg_recv(fd, m) == -1)
Darren Tucker645ab752004-06-25 13:33:20 +1000914 fatal("%s: ssh_msg_recv failed", __func__);
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +0000915 if ((r = sshbuf_get_u8(m, &ver)) != 0)
916 fatal("%s: buffer error: %s", __func__, ssh_err(r));
917 if (ver != 0)
Darren Tucker645ab752004-06-25 13:33:20 +1000918 fatal("%s: rexec version mismatch", __func__);
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +0000919 if ((r = sshbuf_get_string(m, &cp, &len)) != 0)
920 fatal("%s: buffer error: %s", __func__, ssh_err(r));
921 if (conf != NULL && (r = sshbuf_put(conf, cp, len)))
922 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller72ef7c12015-01-15 02:21:31 +1100923#if defined(WITH_OPENSSL) && !defined(OPENSSL_PRNG_ONLY)
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +0000924 rexec_recv_rng_seed(m);
Darren Tuckerc6f82192005-09-27 22:46:32 +1000925#endif
926
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +0000927 free(cp);
928 sshbuf_free(m);
Darren Tucker645ab752004-06-25 13:33:20 +1000929
930 debug3("%s: done", __func__);
931}
932
Damien Millera1f68402006-08-19 00:31:39 +1000933/* Accept a connection from inetd */
934static void
935server_accept_inetd(int *sock_in, int *sock_out)
936{
937 int fd;
938
Damien Millera1f68402006-08-19 00:31:39 +1000939 if (rexeced_flag) {
940 close(REEXEC_CONFIG_PASS_FD);
941 *sock_in = *sock_out = dup(STDIN_FILENO);
Damien Millera1f68402006-08-19 00:31:39 +1000942 } else {
943 *sock_in = dup(STDIN_FILENO);
944 *sock_out = dup(STDOUT_FILENO);
945 }
946 /*
947 * We intentionally do not close the descriptors 0, 1, and 2
948 * as our code for setting the descriptors won't work if
949 * ttyfd happens to be one of those.
950 */
951 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
952 dup2(fd, STDIN_FILENO);
953 dup2(fd, STDOUT_FILENO);
Darren Tucker0cca17f2013-06-06 08:21:14 +1000954 if (!log_stderr)
955 dup2(fd, STDERR_FILENO);
956 if (fd > (log_stderr ? STDERR_FILENO : STDOUT_FILENO))
Damien Millera1f68402006-08-19 00:31:39 +1000957 close(fd);
958 }
959 debug("inetd sockets after dupping: %d, %d", *sock_in, *sock_out);
960}
961
962/*
963 * Listen for TCP connections
964 */
965static void
djm@openbsd.orgacf559e2017-10-25 00:15:35 +0000966listen_on_addrs(struct listenaddr *la)
Damien Millera1f68402006-08-19 00:31:39 +1000967{
djm@openbsd.orgacf559e2017-10-25 00:15:35 +0000968 int ret, listen_sock;
Damien Millera1f68402006-08-19 00:31:39 +1000969 struct addrinfo *ai;
970 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
971
djm@openbsd.orgacf559e2017-10-25 00:15:35 +0000972 for (ai = la->addrs; ai; ai = ai->ai_next) {
Damien Millera1f68402006-08-19 00:31:39 +1000973 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
974 continue;
975 if (num_listen_socks >= MAX_LISTEN_SOCKS)
976 fatal("Too many listen sockets. "
977 "Enlarge MAX_LISTEN_SOCKS");
978 if ((ret = getnameinfo(ai->ai_addr, ai->ai_addrlen,
979 ntop, sizeof(ntop), strport, sizeof(strport),
980 NI_NUMERICHOST|NI_NUMERICSERV)) != 0) {
981 error("getnameinfo failed: %.100s",
Darren Tucker4abde772007-12-29 02:43:51 +1100982 ssh_gai_strerror(ret));
Damien Millera1f68402006-08-19 00:31:39 +1000983 continue;
984 }
985 /* Create socket for listening. */
Darren Tucker7bd98e72010-01-10 10:31:12 +1100986 listen_sock = socket(ai->ai_family, ai->ai_socktype,
987 ai->ai_protocol);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000988 if (listen_sock == -1) {
Damien Millera1f68402006-08-19 00:31:39 +1000989 /* kernel may not support ipv6 */
990 verbose("socket: %.100s", strerror(errno));
991 continue;
992 }
993 if (set_nonblock(listen_sock) == -1) {
994 close(listen_sock);
995 continue;
996 }
djm@openbsd.org8071a692017-02-24 03:16:34 +0000997 if (fcntl(listen_sock, F_SETFD, FD_CLOEXEC) == -1) {
998 verbose("socket: CLOEXEC: %s", strerror(errno));
999 close(listen_sock);
1000 continue;
1001 }
djm@openbsd.orgacf559e2017-10-25 00:15:35 +00001002 /* Socket options */
1003 set_reuseaddr(listen_sock);
1004 if (la->rdomain != NULL &&
1005 set_rdomain(listen_sock, la->rdomain) == -1) {
1006 close(listen_sock);
1007 continue;
1008 }
Damien Millera1f68402006-08-19 00:31:39 +10001009
Damien Miller49d2a282008-01-20 08:56:00 +11001010 /* Only communicate in IPv6 over AF_INET6 sockets. */
Damien Miller04ee0f82009-11-18 17:48:30 +11001011 if (ai->ai_family == AF_INET6)
1012 sock_set_v6only(listen_sock);
Damien Miller49d2a282008-01-20 08:56:00 +11001013
Damien Millera1f68402006-08-19 00:31:39 +10001014 debug("Bind to port %s on %s.", strport, ntop);
1015
1016 /* Bind the socket to the desired port. */
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001017 if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) == -1) {
Damien Millera1f68402006-08-19 00:31:39 +10001018 error("Bind to port %s on %s failed: %.200s.",
1019 strport, ntop, strerror(errno));
1020 close(listen_sock);
1021 continue;
1022 }
1023 listen_socks[num_listen_socks] = listen_sock;
1024 num_listen_socks++;
1025
1026 /* Start listening on the port. */
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001027 if (listen(listen_sock, SSH_LISTEN_BACKLOG) == -1)
Damien Millera1f68402006-08-19 00:31:39 +10001028 fatal("listen on [%s]:%s: %.100s",
1029 ntop, strport, strerror(errno));
djm@openbsd.orgacf559e2017-10-25 00:15:35 +00001030 logit("Server listening on %s port %s%s%s.",
1031 ntop, strport,
1032 la->rdomain == NULL ? "" : " rdomain ",
1033 la->rdomain == NULL ? "" : la->rdomain);
Damien Millera1f68402006-08-19 00:31:39 +10001034 }
djm@openbsd.orgacf559e2017-10-25 00:15:35 +00001035}
1036
1037static void
1038server_listen(void)
1039{
1040 u_int i;
1041
1042 for (i = 0; i < options.num_listen_addrs; i++) {
1043 listen_on_addrs(&options.listen_addrs[i]);
1044 freeaddrinfo(options.listen_addrs[i].addrs);
1045 free(options.listen_addrs[i].rdomain);
1046 memset(&options.listen_addrs[i], 0,
1047 sizeof(options.listen_addrs[i]));
1048 }
1049 free(options.listen_addrs);
1050 options.listen_addrs = NULL;
1051 options.num_listen_addrs = 0;
Damien Millera1f68402006-08-19 00:31:39 +10001052
1053 if (!num_listen_socks)
1054 fatal("Cannot bind any address.");
1055}
1056
1057/*
1058 * The main TCP accept loop. Note that, for the non-debug case, returns
1059 * from this function are in a forked subprocess.
1060 */
1061static void
1062server_accept_loop(int *sock_in, int *sock_out, int *newsock, int *config_s)
1063{
1064 fd_set *fdset;
1065 int i, j, ret, maxfd;
djm@openbsd.org70d38c32020-01-21 22:39:57 +00001066 int ostartups = -1, startups = 0, listening = 0, lameduck = 0;
Damien Millera1f68402006-08-19 00:31:39 +10001067 int startup_p[2] = { -1 , -1 };
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001068 char c = 0;
Damien Millera1f68402006-08-19 00:31:39 +10001069 struct sockaddr_storage from;
1070 socklen_t fromlen;
1071 pid_t pid;
Damien Miller045bda52013-09-14 09:44:37 +10001072 u_char rnd[256];
Damien Millera1f68402006-08-19 00:31:39 +10001073
1074 /* setup fd set for accept */
1075 fdset = NULL;
1076 maxfd = 0;
1077 for (i = 0; i < num_listen_socks; i++)
1078 if (listen_socks[i] > maxfd)
1079 maxfd = listen_socks[i];
1080 /* pipes connected to unauthenticated childs */
1081 startup_pipes = xcalloc(options.max_startups, sizeof(int));
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001082 startup_flags = xcalloc(options.max_startups, sizeof(int));
Damien Millera1f68402006-08-19 00:31:39 +10001083 for (i = 0; i < options.max_startups; i++)
1084 startup_pipes[i] = -1;
1085
1086 /*
1087 * Stay listening for connections until the system crashes or
1088 * the daemon is killed with a signal.
1089 */
1090 for (;;) {
djm@openbsd.org70d38c32020-01-21 22:39:57 +00001091 if (ostartups != startups) {
djm@openbsd.orga8c05c62020-01-24 23:56:01 +00001092 setproctitle("%s [listener] %d of %d-%d startups",
1093 listener_proctitle, startups,
1094 options.max_startups_begin, options.max_startups);
djm@openbsd.org70d38c32020-01-21 22:39:57 +00001095 ostartups = startups;
1096 }
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001097 if (received_sighup) {
1098 if (!lameduck) {
1099 debug("Received SIGHUP; waiting for children");
1100 close_listen_socks();
1101 lameduck = 1;
1102 }
1103 if (listening <= 0)
1104 sighup_restart();
1105 }
mmcc@openbsd.orgd59ce082015-12-10 17:08:40 +00001106 free(fdset);
deraadt@openbsd.orgce445b02015-08-20 22:32:42 +00001107 fdset = xcalloc(howmany(maxfd + 1, NFDBITS),
Damien Millera1f68402006-08-19 00:31:39 +10001108 sizeof(fd_mask));
1109
1110 for (i = 0; i < num_listen_socks; i++)
1111 FD_SET(listen_socks[i], fdset);
1112 for (i = 0; i < options.max_startups; i++)
1113 if (startup_pipes[i] != -1)
1114 FD_SET(startup_pipes[i], fdset);
1115
1116 /* Wait in select until there is a connection. */
1117 ret = select(maxfd+1, fdset, NULL, NULL, NULL);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001118 if (ret == -1 && errno != EINTR)
Damien Millera1f68402006-08-19 00:31:39 +10001119 error("select: %.100s", strerror(errno));
1120 if (received_sigterm) {
1121 logit("Received signal %d; terminating.",
1122 (int) received_sigterm);
1123 close_listen_socks();
djm@openbsd.org161cf412014-12-22 07:55:51 +00001124 if (options.pid_file != NULL)
1125 unlink(options.pid_file);
Damien Miller26b57ce2011-05-05 14:15:09 +10001126 exit(received_sigterm == SIGTERM ? 0 : 255);
Damien Millera1f68402006-08-19 00:31:39 +10001127 }
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001128 if (ret == -1)
Damien Millera1f68402006-08-19 00:31:39 +10001129 continue;
1130
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001131 for (i = 0; i < options.max_startups; i++) {
1132 if (startup_pipes[i] == -1 ||
1133 !FD_ISSET(startup_pipes[i], fdset))
1134 continue;
1135 switch (read(startup_pipes[i], &c, sizeof(c))) {
1136 case -1:
1137 if (errno == EINTR || errno == EAGAIN)
1138 continue;
1139 if (errno != EPIPE) {
1140 error("%s: startup pipe %d (fd=%d): "
1141 "read %s", __func__, i,
1142 startup_pipes[i], strerror(errno));
1143 }
1144 /* FALLTHROUGH */
1145 case 0:
1146 /* child exited or completed auth */
Damien Millera1f68402006-08-19 00:31:39 +10001147 close(startup_pipes[i]);
1148 startup_pipes[i] = -1;
1149 startups--;
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001150 if (startup_flags[i])
1151 listening--;
1152 break;
1153 case 1:
1154 /* child has finished preliminaries */
1155 if (startup_flags[i]) {
1156 listening--;
1157 startup_flags[i] = 0;
1158 }
1159 break;
Damien Millera1f68402006-08-19 00:31:39 +10001160 }
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001161 }
Damien Millera1f68402006-08-19 00:31:39 +10001162 for (i = 0; i < num_listen_socks; i++) {
1163 if (!FD_ISSET(listen_socks[i], fdset))
1164 continue;
1165 fromlen = sizeof(from);
1166 *newsock = accept(listen_socks[i],
1167 (struct sockaddr *)&from, &fromlen);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001168 if (*newsock == -1) {
Damien Miller37f1c082013-04-23 15:20:43 +10001169 if (errno != EINTR && errno != EWOULDBLOCK &&
1170 errno != ECONNABORTED && errno != EAGAIN)
Damien Millera116d132012-04-22 11:23:46 +10001171 error("accept: %.100s",
1172 strerror(errno));
1173 if (errno == EMFILE || errno == ENFILE)
1174 usleep(100 * 1000);
Damien Millera1f68402006-08-19 00:31:39 +10001175 continue;
1176 }
1177 if (unset_nonblock(*newsock) == -1) {
1178 close(*newsock);
1179 continue;
1180 }
1181 if (drop_connection(startups) == 1) {
djm@openbsd.org08a1e702016-12-09 03:04:29 +00001182 char *laddr = get_local_ipaddr(*newsock);
1183 char *raddr = get_peer_ipaddr(*newsock);
dtucker@openbsd.orgfc173ae2019-11-13 11:25:11 +00001184 char msg[] = "Exceeded MaxStartups\r\n";
djm@openbsd.org08a1e702016-12-09 03:04:29 +00001185
1186 verbose("drop connection #%d from [%s]:%d "
1187 "on [%s]:%d past MaxStartups", startups,
1188 raddr, get_peer_port(*newsock),
1189 laddr, get_local_port(*newsock));
1190 free(laddr);
1191 free(raddr);
dtucker@openbsd.orgfc173ae2019-11-13 11:25:11 +00001192 /* best-effort notification to client */
1193 (void)write(*newsock, msg, strlen(msg));
Damien Millera1f68402006-08-19 00:31:39 +10001194 close(*newsock);
1195 continue;
1196 }
1197 if (pipe(startup_p) == -1) {
1198 close(*newsock);
1199 continue;
1200 }
1201
1202 if (rexec_flag && socketpair(AF_UNIX,
1203 SOCK_STREAM, 0, config_s) == -1) {
1204 error("reexec socketpair: %s",
1205 strerror(errno));
1206 close(*newsock);
1207 close(startup_p[0]);
1208 close(startup_p[1]);
1209 continue;
1210 }
1211
1212 for (j = 0; j < options.max_startups; j++)
1213 if (startup_pipes[j] == -1) {
1214 startup_pipes[j] = startup_p[0];
1215 if (maxfd < startup_p[0])
1216 maxfd = startup_p[0];
1217 startups++;
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001218 startup_flags[j] = 1;
Damien Millera1f68402006-08-19 00:31:39 +10001219 break;
1220 }
1221
1222 /*
1223 * Got connection. Fork a child to handle it, unless
1224 * we are in debugging mode.
1225 */
1226 if (debug_flag) {
1227 /*
1228 * In debugging mode. Close the listening
1229 * socket, and start processing the
1230 * connection without forking.
1231 */
1232 debug("Server will not fork when running in debugging mode.");
1233 close_listen_socks();
1234 *sock_in = *newsock;
1235 *sock_out = *newsock;
1236 close(startup_p[0]);
1237 close(startup_p[1]);
1238 startup_pipe = -1;
1239 pid = getpid();
1240 if (rexec_flag) {
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +00001241 send_rexec_state(config_s[0], cfg);
Damien Millera1f68402006-08-19 00:31:39 +10001242 close(config_s[0]);
1243 }
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001244 return;
Damien Millera1f68402006-08-19 00:31:39 +10001245 }
1246
1247 /*
1248 * Normal production daemon. Fork, and have
1249 * the child process the connection. The
1250 * parent continues listening.
1251 */
Damien Miller1b06dc32006-08-31 03:24:41 +10001252 platform_pre_fork();
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001253 listening++;
Damien Millera1f68402006-08-19 00:31:39 +10001254 if ((pid = fork()) == 0) {
1255 /*
1256 * Child. Close the listening and
1257 * max_startup sockets. Start using
1258 * the accepted socket. Reinitialize
1259 * logging (since our pid has changed).
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001260 * We return from this function to handle
Damien Millera1f68402006-08-19 00:31:39 +10001261 * the connection.
1262 */
Damien Miller1b06dc32006-08-31 03:24:41 +10001263 platform_post_fork_child();
Damien Millera1f68402006-08-19 00:31:39 +10001264 startup_pipe = startup_p[1];
1265 close_startup_pipes();
1266 close_listen_socks();
1267 *sock_in = *newsock;
1268 *sock_out = *newsock;
1269 log_init(__progname,
1270 options.log_level,
1271 options.log_facility,
1272 log_stderr);
1273 if (rexec_flag)
1274 close(config_s[0]);
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001275 else {
1276 /*
1277 * Signal parent that the preliminaries
1278 * for this child are complete. For the
1279 * re-exec case, this happens after the
1280 * child has received the rexec state
1281 * from the server.
1282 */
1283 (void)atomicio(vwrite, startup_pipe,
1284 "\0", 1);
1285 }
1286 return;
Damien Millera1f68402006-08-19 00:31:39 +10001287 }
1288
1289 /* Parent. Stay in the loop. */
Damien Miller1b06dc32006-08-31 03:24:41 +10001290 platform_post_fork_parent(pid);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001291 if (pid == -1)
Damien Millera1f68402006-08-19 00:31:39 +10001292 error("fork: %.100s", strerror(errno));
1293 else
1294 debug("Forked child %ld.", (long)pid);
1295
1296 close(startup_p[1]);
1297
1298 if (rexec_flag) {
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +00001299 send_rexec_state(config_s[0], cfg);
Damien Millera1f68402006-08-19 00:31:39 +10001300 close(config_s[0]);
1301 close(config_s[1]);
1302 }
Damien Millera1f68402006-08-19 00:31:39 +10001303 close(*newsock);
1304
1305 /*
1306 * Ensure that our random state differs
1307 * from that of the child
1308 */
1309 arc4random_stir();
Damien Miller045bda52013-09-14 09:44:37 +10001310 arc4random_buf(rnd, sizeof(rnd));
Damien Miller72ef7c12015-01-15 02:21:31 +11001311#ifdef WITH_OPENSSL
Damien Miller045bda52013-09-14 09:44:37 +10001312 RAND_seed(rnd, sizeof(rnd));
Damien Miller07889c72015-11-14 18:44:49 +11001313 if ((RAND_bytes((u_char *)rnd, 1)) != 1)
1314 fatal("%s: RAND_bytes failed", __func__);
Damien Miller72ef7c12015-01-15 02:21:31 +11001315#endif
Damien Miller1d2c4562014-02-04 11:18:20 +11001316 explicit_bzero(rnd, sizeof(rnd));
Damien Millera1f68402006-08-19 00:31:39 +10001317 }
Damien Millera1f68402006-08-19 00:31:39 +10001318 }
1319}
1320
djm@openbsd.org95767262016-03-07 19:02:43 +00001321/*
1322 * If IP options are supported, make sure there are none (log and
1323 * return an error if any are found). Basically we are worried about
1324 * source routing; it can be used to pretend you are somebody
1325 * (ip-address) you are not. That itself may be "almost acceptable"
djm@openbsd.org001aa552018-04-10 00:10:49 +00001326 * under certain circumstances, but rhosts authentication is useless
djm@openbsd.org95767262016-03-07 19:02:43 +00001327 * if source routing is accepted. Notice also that if we just dropped
1328 * source routing here, the other side could use IP spoofing to do
1329 * rest of the interaction and could still bypass security. So we
1330 * exit here if we detect any IP options.
1331 */
1332static void
1333check_ip_options(struct ssh *ssh)
1334{
1335#ifdef IP_OPTIONS
1336 int sock_in = ssh_packet_get_connection_in(ssh);
1337 struct sockaddr_storage from;
djm@openbsd.org95767262016-03-07 19:02:43 +00001338 u_char opts[200];
djm@openbsd.orgdc664d12016-08-28 22:28:12 +00001339 socklen_t i, option_size = sizeof(opts), fromlen = sizeof(from);
djm@openbsd.org95767262016-03-07 19:02:43 +00001340 char text[sizeof(opts) * 3 + 1];
1341
1342 memset(&from, 0, sizeof(from));
1343 if (getpeername(sock_in, (struct sockaddr *)&from,
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001344 &fromlen) == -1)
djm@openbsd.org95767262016-03-07 19:02:43 +00001345 return;
1346 if (from.ss_family != AF_INET)
1347 return;
1348 /* XXX IPv6 options? */
1349
1350 if (getsockopt(sock_in, IPPROTO_IP, IP_OPTIONS, opts,
1351 &option_size) >= 0 && option_size != 0) {
1352 text[0] = '\0';
1353 for (i = 0; i < option_size; i++)
1354 snprintf(text + i*3, sizeof(text) - i*3,
1355 " %2.2x", opts[i]);
1356 fatal("Connection from %.100s port %d with IP opts: %.800s",
1357 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh), text);
1358 }
1359 return;
1360#endif /* IP_OPTIONS */
1361}
Damien Millera1f68402006-08-19 00:31:39 +10001362
djm@openbsd.org35eb33f2017-10-25 00:17:08 +00001363/* Set the routing domain for this process */
1364static void
1365set_process_rdomain(struct ssh *ssh, const char *name)
1366{
Damien Miller43c29bb2017-10-25 13:10:59 +11001367#if defined(HAVE_SYS_SET_PROCESS_RDOMAIN)
1368 if (name == NULL)
1369 return; /* default */
1370
1371 if (strcmp(name, "%D") == 0) {
1372 /* "expands" to routing domain of connection */
1373 if ((name = ssh_packet_rdomain_in(ssh)) == NULL)
1374 return;
1375 }
1376 /* NB. We don't pass 'ssh' to sys_set_process_rdomain() */
1377 return sys_set_process_rdomain(name);
1378#elif defined(__OpenBSD__)
djm@openbsd.org35eb33f2017-10-25 00:17:08 +00001379 int rtable, ortable = getrtable();
1380 const char *errstr;
1381
1382 if (name == NULL)
1383 return; /* default */
1384
1385 if (strcmp(name, "%D") == 0) {
1386 /* "expands" to routing domain of connection */
1387 if ((name = ssh_packet_rdomain_in(ssh)) == NULL)
1388 return;
1389 }
1390
1391 rtable = (int)strtonum(name, 0, 255, &errstr);
1392 if (errstr != NULL) /* Shouldn't happen */
1393 fatal("Invalid routing domain \"%s\": %s", name, errstr);
1394 if (rtable != ortable && setrtable(rtable) != 0)
1395 fatal("Unable to set routing domain %d: %s",
1396 rtable, strerror(errno));
1397 debug("%s: set routing domain %d (was %d)", __func__, rtable, ortable);
Damien Miller43c29bb2017-10-25 13:10:59 +11001398#else /* defined(__OpenBSD__) */
1399 fatal("Unable to set routing domain: not supported in this platform");
1400#endif
djm@openbsd.org35eb33f2017-10-25 00:17:08 +00001401}
1402
dtucker@openbsd.orge9d910b2018-04-13 03:57:26 +00001403static void
1404accumulate_host_timing_secret(struct sshbuf *server_cfg,
djm@openbsd.org4f7a56d2019-06-21 04:21:04 +00001405 struct sshkey *key)
dtucker@openbsd.orge9d910b2018-04-13 03:57:26 +00001406{
1407 static struct ssh_digest_ctx *ctx;
1408 u_char *hash;
1409 size_t len;
1410 struct sshbuf *buf;
1411 int r;
1412
1413 if (ctx == NULL && (ctx = ssh_digest_start(SSH_DIGEST_SHA512)) == NULL)
1414 fatal("%s: ssh_digest_start", __func__);
1415 if (key == NULL) { /* finalize */
1416 /* add server config in case we are using agent for host keys */
1417 if (ssh_digest_update(ctx, sshbuf_ptr(server_cfg),
1418 sshbuf_len(server_cfg)) != 0)
1419 fatal("%s: ssh_digest_update", __func__);
1420 len = ssh_digest_bytes(SSH_DIGEST_SHA512);
1421 hash = xmalloc(len);
1422 if (ssh_digest_final(ctx, hash, len) != 0)
1423 fatal("%s: ssh_digest_final", __func__);
1424 options.timing_secret = PEEK_U64(hash);
1425 freezero(hash, len);
1426 ssh_digest_free(ctx);
1427 ctx = NULL;
1428 return;
1429 }
1430 if ((buf = sshbuf_new()) == NULL)
1431 fatal("%s could not allocate buffer", __func__);
1432 if ((r = sshkey_private_serialize(key, buf)) != 0)
1433 fatal("sshkey_private_serialize: %s", ssh_err(r));
1434 if (ssh_digest_update(ctx, sshbuf_ptr(buf), sshbuf_len(buf)) != 0)
1435 fatal("%s: ssh_digest_update", __func__);
1436 sshbuf_reset(buf);
1437 sshbuf_free(buf);
1438}
1439
djm@openbsd.orga8c05c62020-01-24 23:56:01 +00001440static char *
1441prepare_proctitle(int ac, char **av)
1442{
1443 char *ret = NULL;
1444 int i;
1445
1446 for (i = 0; i < ac; i++)
1447 xextendf(&ret, " ", "%s", av[i]);
1448 return ret;
1449}
1450
Damien Miller95def091999-11-25 00:26:21 +11001451/*
1452 * Main program for the daemon.
1453 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001454int
1455main(int ac, char **av)
1456{
djm@openbsd.org95767262016-03-07 19:02:43 +00001457 struct ssh *ssh = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001458 extern char *optarg;
1459 extern int optind;
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001460 int r, opt, on = 1, already_daemon, remote_port;
Damien Miller386c6a22004-06-30 22:40:20 +10001461 int sock_in = -1, sock_out = -1, newsock = -1;
djm@openbsd.org68af80e2017-10-25 00:19:47 +00001462 const char *remote_ip, *rdomain;
dtucker@openbsd.org15fdfc92015-04-15 23:23:25 +00001463 char *fp, *line, *laddr, *logfile = NULL;
Damien Millera1f68402006-08-19 00:31:39 +10001464 int config_s[2] = { -1 , -1 };
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001465 u_int i, j;
Damien Millerb61f3fc2008-07-11 17:36:48 +10001466 u_int64_t ibytes, obytes;
Damien Miller6ca16c62008-06-16 07:50:58 +10001467 mode_t new_umask;
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001468 struct sshkey *key;
1469 struct sshkey *pubkey;
Damien Miller85b45e02013-07-20 13:21:52 +10001470 int keytype;
Darren Tucker3e33cec2003-10-02 16:12:36 +10001471 Authctxt *authctxt;
dtucker@openbsd.org@openbsd.org0208a482017-11-03 03:18:53 +00001472 struct connection_info *connection_info = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001473
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00001474#ifdef HAVE_SECUREWARE
1475 (void)set_auth_parameters(ac, av);
1476#endif
Damien Miller59d3d5b2003-08-22 09:34:41 +10001477 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10001478
Damien Millera8ed44b2003-01-10 09:53:12 +11001479 /* Save argv. Duplicate so setproctitle emulation doesn't clobber it */
Damien Millerb8c656e2000-06-28 15:22:41 +10001480 saved_argc = ac;
Darren Tucker17c5d032004-06-25 14:22:23 +10001481 rexec_argc = ac;
Darren Tuckerd8093e42006-05-04 16:24:34 +10001482 saved_argv = xcalloc(ac + 1, sizeof(*saved_argv));
Damien Millere3fa20e2017-10-23 16:25:24 +11001483 for (i = 0; (int)i < ac; i++)
Damien Millera8ed44b2003-01-10 09:53:12 +11001484 saved_argv[i] = xstrdup(av[i]);
Damien Miller04cb5362003-05-15 21:29:10 +10001485 saved_argv[i] = NULL;
Damien Millera8ed44b2003-01-10 09:53:12 +11001486
1487#ifndef HAVE_SETPROCTITLE
1488 /* Prepare for later setproctitle emulation */
1489 compat_init_setproctitle(ac, av);
Damien Millerf2e3e9d2003-06-02 12:15:54 +10001490 av = saved_argv;
Damien Millera8ed44b2003-01-10 09:53:12 +11001491#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001492
Damien Millerbfba3542004-03-22 09:29:57 +11001493 if (geteuid() == 0 && setgroups(0, NULL) == -1)
1494 debug("setgroups(): %.200s", strerror(errno));
1495
Darren Tuckerce321d82005-10-03 18:11:24 +10001496 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1497 sanitise_stdfd();
1498
Damien Miller42c5ec42018-11-23 10:40:06 +11001499 seed_rng();
1500
Damien Miller95def091999-11-25 00:26:21 +11001501 /* Initialize configuration options to their default values. */
1502 initialize_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001503
Damien Miller95def091999-11-25 00:26:21 +11001504 /* Parse command-line arguments. */
djm@openbsd.org3e91b4e2015-05-24 23:39:16 +00001505 while ((opt = getopt(ac, av,
1506 "C:E:b:c:f:g:h:k:o:p:u:46DQRTdeiqrt")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +11001507 switch (opt) {
Damien Miller34132e52000-01-14 15:45:46 +11001508 case '4':
Darren Tucker0f383232005-01-20 10:57:56 +11001509 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +11001510 break;
1511 case '6':
Darren Tucker0f383232005-01-20 10:57:56 +11001512 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +11001513 break;
Damien Miller95def091999-11-25 00:26:21 +11001514 case 'f':
1515 config_file_name = optarg;
1516 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11001517 case 'c':
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001518 servconf_add_hostcert("[command-line]", 0,
1519 &options, optarg);
Damien Miller0a80ca12010-02-27 07:55:05 +11001520 break;
Damien Miller95def091999-11-25 00:26:21 +11001521 case 'd':
Darren Tuckere98dfa32003-07-19 19:54:31 +10001522 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +11001523 debug_flag = 1;
1524 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +10001525 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3)
Damien Millere4340be2000-09-16 13:29:08 +11001526 options.log_level++;
Damien Miller95def091999-11-25 00:26:21 +11001527 break;
Ben Lindstromc72745a2000-12-02 19:03:54 +00001528 case 'D':
1529 no_daemon_flag = 1;
1530 break;
Damien Miller03d4d7e2013-04-23 15:21:06 +10001531 case 'E':
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +00001532 logfile = optarg;
Damien Miller03d4d7e2013-04-23 15:21:06 +10001533 /* FALLTHROUGH */
Ben Lindstrom9fce9f02001-04-11 23:10:09 +00001534 case 'e':
1535 log_stderr = 1;
1536 break;
Damien Miller95def091999-11-25 00:26:21 +11001537 case 'i':
1538 inetd_flag = 1;
1539 break;
Darren Tucker645ab752004-06-25 13:33:20 +10001540 case 'r':
1541 rexec_flag = 0;
1542 break;
1543 case 'R':
1544 rexeced_flag = 1;
1545 inetd_flag = 1;
1546 break;
Damien Miller95def091999-11-25 00:26:21 +11001547 case 'Q':
Ben Lindstromd5390202001-01-29 08:07:43 +00001548 /* ignored */
Damien Miller95def091999-11-25 00:26:21 +11001549 break;
1550 case 'q':
1551 options.log_level = SYSLOG_LEVEL_QUIET;
1552 break;
1553 case 'b':
naddy@openbsd.orgc38ea632016-08-15 12:27:56 +00001554 /* protocol 1, ignored */
Damien Miller95def091999-11-25 00:26:21 +11001555 break;
1556 case 'p':
Damien Miller34132e52000-01-14 15:45:46 +11001557 options.ports_from_cmdline = 1;
Damien Millere4340be2000-09-16 13:29:08 +11001558 if (options.num_ports >= MAX_PORTS) {
1559 fprintf(stderr, "too many ports.\n");
1560 exit(1);
1561 }
Ben Lindstrom19066a12001-04-12 23:39:26 +00001562 options.ports[options.num_ports++] = a2port(optarg);
Damien Miller3dc71ad2009-01-28 16:31:22 +11001563 if (options.ports[options.num_ports-1] <= 0) {
Ben Lindstrom19066a12001-04-12 23:39:26 +00001564 fprintf(stderr, "Bad port number.\n");
1565 exit(1);
1566 }
Damien Miller95def091999-11-25 00:26:21 +11001567 break;
1568 case 'g':
Ben Lindstrom1bda4c82001-06-05 19:59:08 +00001569 if ((options.login_grace_time = convtime(optarg)) == -1) {
1570 fprintf(stderr, "Invalid login grace time.\n");
1571 exit(1);
1572 }
Damien Miller95def091999-11-25 00:26:21 +11001573 break;
1574 case 'k':
naddy@openbsd.orgc38ea632016-08-15 12:27:56 +00001575 /* protocol 1, ignored */
Damien Miller95def091999-11-25 00:26:21 +11001576 break;
1577 case 'h':
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001578 servconf_add_hostkey("[command-line]", 0,
djm@openbsd.org928f1232018-11-19 04:12:32 +00001579 &options, optarg, 1);
Damien Miller95def091999-11-25 00:26:21 +11001580 break;
Ben Lindstrom794325a2001-08-06 21:09:07 +00001581 case 't':
1582 test_flag = 1;
1583 break;
Darren Tuckere7140f22008-06-10 23:01:51 +10001584 case 'T':
1585 test_flag = 2;
1586 break;
1587 case 'C':
djm@openbsd.org172a5922019-01-19 21:37:48 +00001588 connection_info = get_connection_info(ssh, 0, 0);
Darren Tuckerfbcf8272012-05-19 19:37:01 +10001589 if (parse_server_match_testspec(connection_info,
1590 optarg) == -1)
1591 exit(1);
Darren Tuckere7140f22008-06-10 23:01:51 +10001592 break;
Damien Miller942da032000-08-18 13:59:06 +10001593 case 'u':
deraadt@openbsd.org087266e2015-01-20 23:14:00 +00001594 utmp_len = (u_int)strtonum(optarg, 0, HOST_NAME_MAX+1+1, NULL);
1595 if (utmp_len > HOST_NAME_MAX+1) {
Ben Lindstrom41daec72002-07-23 21:15:13 +00001596 fprintf(stderr, "Invalid utmp length.\n");
1597 exit(1);
1598 }
Damien Miller942da032000-08-18 13:59:06 +10001599 break;
Ben Lindstromade03f62001-12-06 18:22:17 +00001600 case 'o':
Damien Millerb9997192003-12-17 16:29:22 +11001601 line = xstrdup(optarg);
1602 if (process_server_config_line(&options, line,
Darren Tuckerfbcf8272012-05-19 19:37:01 +10001603 "command-line", 0, NULL, NULL) != 0)
Damien Miller9f0f5c62001-12-21 14:45:46 +11001604 exit(1);
Darren Tuckera627d422013-06-02 07:31:17 +10001605 free(line);
Ben Lindstromade03f62001-12-06 18:22:17 +00001606 break;
Damien Miller95def091999-11-25 00:26:21 +11001607 case '?':
1608 default:
Ben Lindstromade03f62001-12-06 18:22:17 +00001609 usage();
1610 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001611 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001612 }
Darren Tucker645ab752004-06-25 13:33:20 +10001613 if (rexeced_flag || inetd_flag)
1614 rexec_flag = 0;
djm@openbsd.org2a358622018-11-16 03:26:01 +00001615 if (!test_flag && rexec_flag && !path_absolute(av[0]))
Darren Tucker645ab752004-06-25 13:33:20 +10001616 fatal("sshd re-exec requires execution with an absolute path");
1617 if (rexeced_flag)
Damien Miller035a5b42004-06-26 08:16:31 +10001618 closefrom(REEXEC_MIN_FREE_FD);
1619 else
1620 closefrom(REEXEC_DEVCRYPTO_RESERVED_FD);
Darren Tucker645ab752004-06-25 13:33:20 +10001621
Damien Miller03d4d7e2013-04-23 15:21:06 +10001622 /* If requested, redirect the logs to the specified logfile. */
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +00001623 if (logfile != NULL)
Damien Miller03d4d7e2013-04-23 15:21:06 +10001624 log_redirect_stderr_to(logfile);
Damien Miller34132e52000-01-14 15:45:46 +11001625 /*
1626 * Force logging to stderr until we have loaded the private host
1627 * key (unless started from inetd)
1628 */
Kevin Stevesec84dc12000-12-13 17:45:15 +00001629 log_init(__progname,
Damien Miller5aa5d782002-02-08 22:01:54 +11001630 options.log_level == SYSLOG_LEVEL_NOT_SET ?
1631 SYSLOG_LEVEL_INFO : options.log_level,
1632 options.log_facility == SYSLOG_FACILITY_NOT_SET ?
1633 SYSLOG_FACILITY_AUTH : options.log_facility,
Ben Lindstromc2faa4a2002-11-09 15:50:03 +00001634 log_stderr || !inetd_flag);
Damien Miller34132e52000-01-14 15:45:46 +11001635
Darren Tucker86c093d2004-03-08 22:59:03 +11001636 /*
1637 * Unset KRB5CCNAME, otherwise the user's session may inherit it from
1638 * root's environment
Damien Miller94cf4c82005-07-17 17:04:47 +10001639 */
Darren Tucker9dc6c7d2005-02-02 18:30:33 +11001640 if (getenv("KRB5CCNAME") != NULL)
Tim Ricee3609c92012-02-14 10:03:30 -08001641 (void) unsetenv("KRB5CCNAME");
Darren Tucker9dc6c7d2005-02-02 18:30:33 +11001642
Darren Tucker645ab752004-06-25 13:33:20 +10001643 sensitive_data.have_ssh2_key = 0;
1644
Darren Tuckere7140f22008-06-10 23:01:51 +10001645 /*
dtucker@openbsd.org@openbsd.org0208a482017-11-03 03:18:53 +00001646 * If we're not doing an extended test do not silently ignore connection
1647 * test params.
Darren Tuckere7140f22008-06-10 23:01:51 +10001648 */
dtucker@openbsd.org@openbsd.org0208a482017-11-03 03:18:53 +00001649 if (test_flag < 2 && connection_info != NULL)
Darren Tuckere7140f22008-06-10 23:01:51 +10001650 fatal("Config test connection parameter (-C) provided without "
1651 "test mode (-T)");
1652
Darren Tucker645ab752004-06-25 13:33:20 +10001653 /* Fetch our configuration */
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +00001654 if ((cfg = sshbuf_new()) == NULL)
1655 fatal("%s: sshbuf_new failed", __func__);
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001656 if (rexeced_flag) {
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +00001657 recv_rexec_state(REEXEC_CONFIG_PASS_FD, cfg);
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001658 if (!debug_flag) {
1659 startup_pipe = dup(REEXEC_STARTUP_PIPE_FD);
1660 close(REEXEC_STARTUP_PIPE_FD);
1661 /*
1662 * Signal parent that this child is at a point where
1663 * they can go away if they have a SIGHUP pending.
1664 */
1665 (void)atomicio(vwrite, startup_pipe, "\0", 1);
1666 }
1667 }
djm@openbsd.orgdbcc6522015-04-27 00:21:21 +00001668 else if (strcasecmp(config_file_name, "none") != 0)
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +00001669 load_server_config(config_file_name, cfg);
Darren Tucker645ab752004-06-25 13:33:20 +10001670
Darren Tucker45150472006-07-12 22:34:17 +10001671 parse_server_config(&options, rexeced_flag ? "rexec" : config_file_name,
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +00001672 cfg, NULL);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001673
Damien Miller95def091999-11-25 00:26:21 +11001674 /* Fill in default values for those options not explicitly set. */
1675 fill_default_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001676
Darren Tucker97b1bb52007-03-21 20:38:53 +11001677 /* challenge-response is implemented via keyboard interactive */
1678 if (options.challenge_response_authentication)
1679 options.kbd_interactive_authentication = 1;
1680
Damien Millerd0d10992012-11-04 22:23:14 +11001681 /* Check that options are sensible */
1682 if (options.authorized_keys_command_user == NULL &&
1683 (options.authorized_keys_command != NULL &&
1684 strcasecmp(options.authorized_keys_command, "none") != 0))
1685 fatal("AuthorizedKeysCommand set without "
1686 "AuthorizedKeysCommandUser");
djm@openbsd.orgbcc50d82015-05-21 06:43:30 +00001687 if (options.authorized_principals_command_user == NULL &&
1688 (options.authorized_principals_command != NULL &&
1689 strcasecmp(options.authorized_principals_command, "none") != 0))
1690 fatal("AuthorizedPrincipalsCommand set without "
1691 "AuthorizedPrincipalsCommandUser");
Damien Millerd0d10992012-11-04 22:23:14 +11001692
Damien Millera6e3f012012-11-04 23:21:40 +11001693 /*
1694 * Check whether there is any path through configured auth methods.
1695 * Unfortunately it is not possible to verify this generally before
1696 * daemonisation in the presence of Match block, but this catches
1697 * and warns for trivial misconfigurations that could break login.
1698 */
1699 if (options.num_auth_methods != 0) {
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001700 for (i = 0; i < options.num_auth_methods; i++) {
1701 if (auth2_methods_valid(options.auth_methods[i],
Damien Millera6e3f012012-11-04 23:21:40 +11001702 1) == 0)
1703 break;
1704 }
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001705 if (i >= options.num_auth_methods)
Damien Millera6e3f012012-11-04 23:21:40 +11001706 fatal("AuthenticationMethods cannot be satisfied by "
1707 "enabled authentication methods");
1708 }
1709
Damien Miller95def091999-11-25 00:26:21 +11001710 /* Check that there are no remaining arguments. */
1711 if (optind < ac) {
1712 fprintf(stderr, "Extra argument %s.\n", av[optind]);
1713 exit(1);
1714 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001715
Damien Miller22e8a1e2013-02-12 11:04:48 +11001716 debug("sshd version %s, %s", SSH_VERSION,
Damien Miller1f0311c2014-05-15 14:24:09 +10001717#ifdef WITH_OPENSSL
djm@openbsd.orga65784c2018-10-23 05:56:35 +00001718 OpenSSL_version(OPENSSL_VERSION)
Damien Miller1f0311c2014-05-15 14:24:09 +10001719#else
1720 "without OpenSSL"
1721#endif
1722 );
Damien Miller2ccf6611999-11-15 15:25:10 +11001723
Darren Tuckerdf0e4382006-11-07 11:28:40 +11001724 /* Store privilege separation user for later use if required. */
Darren Tuckerd13281f2017-03-29 12:39:39 +11001725 privsep_chroot = use_privsep && (getuid() == 0 || geteuid() == 0);
Darren Tuckerdf0e4382006-11-07 11:28:40 +11001726 if ((privsep_pw = getpwnam(SSH_PRIVSEP_USER)) == NULL) {
Darren Tuckerd13281f2017-03-29 12:39:39 +11001727 if (privsep_chroot || options.kerberos_authentication)
Darren Tuckerdf0e4382006-11-07 11:28:40 +11001728 fatal("Privilege separation user %s does not exist",
1729 SSH_PRIVSEP_USER);
1730 } else {
Darren Tuckerdf0e4382006-11-07 11:28:40 +11001731 privsep_pw = pwcopy(privsep_pw);
djm@openbsd.orgd6364f62018-01-23 05:01:15 +00001732 freezero(privsep_pw->pw_passwd, strlen(privsep_pw->pw_passwd));
Darren Tuckerdf0e4382006-11-07 11:28:40 +11001733 privsep_pw->pw_passwd = xstrdup("*");
1734 }
Damien Miller6433df02006-09-07 10:36:43 +10001735 endpwent();
1736
Damien Miller85b45e02013-07-20 13:21:52 +10001737 /* load host keys */
Damien Miller07d86be2006-03-26 14:19:21 +11001738 sensitive_data.host_keys = xcalloc(options.num_host_key_files,
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001739 sizeof(struct sshkey *));
Damien Miller85b45e02013-07-20 13:21:52 +10001740 sensitive_data.host_pubkeys = xcalloc(options.num_host_key_files,
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001741 sizeof(struct sshkey *));
Damien Miller85b45e02013-07-20 13:21:52 +10001742
1743 if (options.host_key_agent) {
1744 if (strcmp(options.host_key_agent, SSH_AUTHSOCKET_ENV_NAME))
1745 setenv(SSH_AUTHSOCKET_ENV_NAME,
1746 options.host_key_agent, 1);
djm@openbsd.org83f8ffa2015-01-17 18:53:34 +00001747 if ((r = ssh_get_authentication_socket(NULL)) == 0)
1748 have_agent = 1;
1749 else
1750 error("Could not connect to agent \"%s\": %s",
1751 options.host_key_agent, ssh_err(r));
Damien Miller85b45e02013-07-20 13:21:52 +10001752 }
Damien Millereba71ba2000-04-29 23:57:08 +10001753
Damien Miller9f0f5c62001-12-21 14:45:46 +11001754 for (i = 0; i < options.num_host_key_files; i++) {
djm@openbsd.org928f1232018-11-19 04:12:32 +00001755 int ll = options.host_key_file_userprovided[i] ?
1756 SYSLOG_LEVEL_ERROR : SYSLOG_LEVEL_DEBUG1;
1757
djm@openbsd.org161cf412014-12-22 07:55:51 +00001758 if (options.host_key_files[i] == NULL)
1759 continue;
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001760 if ((r = sshkey_load_private(options.host_key_files[i], "",
1761 &key, NULL)) != 0 && r != SSH_ERR_SYSTEM_ERROR)
djm@openbsd.org928f1232018-11-19 04:12:32 +00001762 do_log2(ll, "Unable to load host key \"%s\": %s",
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001763 options.host_key_files[i], ssh_err(r));
djm@openbsd.org56584cc2019-12-15 18:57:30 +00001764 if (sshkey_is_sk(key) &&
1765 key->sk_flags & SSH_SK_USER_PRESENCE_REQD) {
1766 debug("host key %s requires user presence, ignoring",
1767 options.host_key_files[i]);
1768 key->sk_flags &= ~SSH_SK_USER_PRESENCE_REQD;
1769 }
1770 if (r == 0 && key != NULL &&
1771 (r = sshkey_shield_private(key)) != 0) {
djm@openbsd.org4f7a56d2019-06-21 04:21:04 +00001772 do_log2(ll, "Unable to shield host key \"%s\": %s",
1773 options.host_key_files[i], ssh_err(r));
1774 sshkey_free(key);
1775 key = NULL;
1776 }
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001777 if ((r = sshkey_load_public(options.host_key_files[i],
1778 &pubkey, NULL)) != 0 && r != SSH_ERR_SYSTEM_ERROR)
djm@openbsd.org928f1232018-11-19 04:12:32 +00001779 do_log2(ll, "Unable to load host key \"%s\": %s",
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001780 options.host_key_files[i], ssh_err(r));
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00001781 if (pubkey == NULL && key != NULL)
djm@openbsd.org482d23b2018-09-13 02:08:33 +00001782 if ((r = sshkey_from_private(key, &pubkey)) != 0)
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001783 fatal("Could not demote key: \"%s\": %s",
1784 options.host_key_files[i], ssh_err(r));
Ben Lindstromd0fca422001-03-26 13:44:06 +00001785 sensitive_data.host_keys[i] = key;
Damien Miller85b45e02013-07-20 13:21:52 +10001786 sensitive_data.host_pubkeys[i] = pubkey;
1787
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +00001788 if (key == NULL && pubkey != NULL && have_agent) {
djm@openbsd.orgce63c4b2015-02-16 22:30:03 +00001789 debug("will rely on agent for hostkey %s",
1790 options.host_key_files[i]);
Damien Miller85b45e02013-07-20 13:21:52 +10001791 keytype = pubkey->type;
1792 } else if (key != NULL) {
1793 keytype = key->type;
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +00001794 accumulate_host_timing_secret(cfg, key);
Damien Miller85b45e02013-07-20 13:21:52 +10001795 } else {
djm@openbsd.org928f1232018-11-19 04:12:32 +00001796 do_log2(ll, "Unable to load host key: %s",
Ben Lindstrom15f33862001-04-16 02:00:02 +00001797 options.host_key_files[i]);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001798 sensitive_data.host_keys[i] = NULL;
Damien Miller85b45e02013-07-20 13:21:52 +10001799 sensitive_data.host_pubkeys[i] = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001800 continue;
1801 }
Damien Miller85b45e02013-07-20 13:21:52 +10001802
1803 switch (keytype) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001804 case KEY_RSA:
1805 case KEY_DSA:
Damien Millereb8b60e2010-08-31 22:41:14 +10001806 case KEY_ECDSA:
Damien Miller5be9d9e2013-12-07 11:24:01 +11001807 case KEY_ED25519:
djm@openbsd.org56584cc2019-12-15 18:57:30 +00001808 case KEY_ECDSA_SK:
1809 case KEY_ED25519_SK:
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00001810 case KEY_XMSS:
djm@openbsd.org6049a542015-01-31 20:30:05 +00001811 if (have_agent || key != NULL)
1812 sensitive_data.have_ssh2_key = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001813 break;
1814 }
djm@openbsd.org6049a542015-01-31 20:30:05 +00001815 if ((fp = sshkey_fingerprint(pubkey, options.fingerprint_hash,
1816 SSH_FP_DEFAULT)) == NULL)
1817 fatal("sshkey_fingerprint failed");
1818 debug("%s host key #%d: %s %s",
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +00001819 key ? "private" : "agent", i, sshkey_ssh_name(pubkey), fp);
djm@openbsd.org6049a542015-01-31 20:30:05 +00001820 free(fp);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001821 }
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +00001822 accumulate_host_timing_secret(cfg, NULL);
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +00001823 if (!sensitive_data.have_ssh2_key) {
Damien Miller996acd22003-04-09 20:59:48 +10001824 logit("sshd: no hostkeys available -- exiting.");
Damien Miller95def091999-11-25 00:26:21 +11001825 exit(1);
1826 }
Damien Miller95def091999-11-25 00:26:21 +11001827
Damien Miller0a80ca12010-02-27 07:55:05 +11001828 /*
1829 * Load certificates. They are stored in an array at identical
1830 * indices to the public keys that they relate to.
1831 */
1832 sensitive_data.host_certificates = xcalloc(options.num_host_key_files,
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001833 sizeof(struct sshkey *));
Damien Miller0a80ca12010-02-27 07:55:05 +11001834 for (i = 0; i < options.num_host_key_files; i++)
1835 sensitive_data.host_certificates[i] = NULL;
1836
1837 for (i = 0; i < options.num_host_cert_files; i++) {
djm@openbsd.org161cf412014-12-22 07:55:51 +00001838 if (options.host_cert_files[i] == NULL)
1839 continue;
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001840 if ((r = sshkey_load_public(options.host_cert_files[i],
1841 &key, NULL)) != 0) {
1842 error("Could not load host certificate \"%s\": %s",
1843 options.host_cert_files[i], ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001844 continue;
1845 }
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001846 if (!sshkey_is_cert(key)) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001847 error("Certificate file is not a certificate: %s",
1848 options.host_cert_files[i]);
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001849 sshkey_free(key);
Damien Miller0a80ca12010-02-27 07:55:05 +11001850 continue;
1851 }
1852 /* Find matching private key */
1853 for (j = 0; j < options.num_host_key_files; j++) {
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001854 if (sshkey_equal_public(key,
Damien Miller0a80ca12010-02-27 07:55:05 +11001855 sensitive_data.host_keys[j])) {
1856 sensitive_data.host_certificates[j] = key;
1857 break;
1858 }
1859 }
1860 if (j >= options.num_host_key_files) {
1861 error("No matching private key for certificate: %s",
1862 options.host_cert_files[i]);
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001863 sshkey_free(key);
Damien Miller0a80ca12010-02-27 07:55:05 +11001864 continue;
1865 }
1866 sensitive_data.host_certificates[j] = key;
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001867 debug("host certificate: #%u type %d %s", j, key->type,
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001868 sshkey_type(key));
Damien Miller0a80ca12010-02-27 07:55:05 +11001869 }
Damien Miller1f0311c2014-05-15 14:24:09 +10001870
Darren Tuckerd13281f2017-03-29 12:39:39 +11001871 if (privsep_chroot) {
Ben Lindstroma26ea632002-06-06 20:46:25 +00001872 struct stat st;
1873
Ben Lindstroma26ea632002-06-06 20:46:25 +00001874 if ((stat(_PATH_PRIVSEP_CHROOT_DIR, &st) == -1) ||
1875 (S_ISDIR(st.st_mode) == 0))
1876 fatal("Missing privilege separation directory: %s",
1877 _PATH_PRIVSEP_CHROOT_DIR);
Ben Lindstrom59627352002-06-27 18:02:21 +00001878
1879#ifdef HAVE_CYGWIN
1880 if (check_ntsec(_PATH_PRIVSEP_CHROOT_DIR) &&
1881 (st.st_uid != getuid () ||
1882 (st.st_mode & (S_IWGRP|S_IWOTH)) != 0))
1883#else
Ben Lindstrom2dfacb32002-06-23 00:33:47 +00001884 if (st.st_uid != 0 || (st.st_mode & (S_IWGRP|S_IWOTH)) != 0)
Ben Lindstrom59627352002-06-27 18:02:21 +00001885#endif
Damien Miller180fc5b2003-02-24 11:50:18 +11001886 fatal("%s must be owned by root and not group or "
1887 "world-writable.", _PATH_PRIVSEP_CHROOT_DIR);
Ben Lindstroma26ea632002-06-06 20:46:25 +00001888 }
1889
Darren Tuckere7140f22008-06-10 23:01:51 +10001890 if (test_flag > 1) {
djm@openbsd.org@openbsd.org548d3a62017-11-14 00:45:29 +00001891 /*
1892 * If no connection info was provided by -C then use
1893 * use a blank one that will cause no predicate to match.
1894 */
1895 if (connection_info == NULL)
djm@openbsd.org172a5922019-01-19 21:37:48 +00001896 connection_info = get_connection_info(ssh, 0, 0);
dtucker@openbsd.orge826bbc2019-04-18 18:56:16 +00001897 connection_info->test = 1;
dtucker@openbsd.org@openbsd.org0208a482017-11-03 03:18:53 +00001898 parse_server_match_config(&options, connection_info);
Darren Tuckere7140f22008-06-10 23:01:51 +10001899 dump_config(&options);
1900 }
1901
Ben Lindstrom794325a2001-08-06 21:09:07 +00001902 /* Configuration looks good, so exit if in test mode. */
1903 if (test_flag)
1904 exit(0);
1905
Damien Miller87aea252002-05-10 12:20:24 +10001906 /*
1907 * Clear out any supplemental groups we may have inherited. This
1908 * prevents inadvertent creation of files with bad modes (in the
Damien Millera8e06ce2003-11-21 23:48:55 +11001909 * portable version at least, it's certainly possible for PAM
1910 * to create a file, and we can't control the code in every
Damien Miller87aea252002-05-10 12:20:24 +10001911 * module which might be used).
1912 */
1913 if (setgroups(0, NULL) < 0)
1914 debug("setgroups() failed: %.200s", strerror(errno));
1915
Darren Tucker645ab752004-06-25 13:33:20 +10001916 if (rexec_flag) {
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001917 if (rexec_argc < 0)
1918 fatal("rexec_argc %d < 0", rexec_argc);
Damien Miller07d86be2006-03-26 14:19:21 +11001919 rexec_argv = xcalloc(rexec_argc + 2, sizeof(char *));
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001920 for (i = 0; i < (u_int)rexec_argc; i++) {
Darren Tucker645ab752004-06-25 13:33:20 +10001921 debug("rexec_argv[%d]='%s'", i, saved_argv[i]);
1922 rexec_argv[i] = saved_argv[i];
1923 }
1924 rexec_argv[rexec_argc] = "-R";
1925 rexec_argv[rexec_argc + 1] = NULL;
1926 }
djm@openbsd.orga8c05c62020-01-24 23:56:01 +00001927 listener_proctitle = prepare_proctitle(ac, av);
Darren Tucker645ab752004-06-25 13:33:20 +10001928
Damien Miller6ca16c62008-06-16 07:50:58 +10001929 /* Ensure that umask disallows at least group and world write */
1930 new_umask = umask(0077) | 0022;
1931 (void) umask(new_umask);
1932
Damien Millereba71ba2000-04-29 23:57:08 +10001933 /* Initialize the log (it is reinitialized below in case we forked). */
Darren Tuckerea7c8122005-01-20 11:03:08 +11001934 if (debug_flag && (!inetd_flag || rexeced_flag))
Damien Miller95def091999-11-25 00:26:21 +11001935 log_stderr = 1;
Kevin Stevesec84dc12000-12-13 17:45:15 +00001936 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +11001937
Damien Millereba71ba2000-04-29 23:57:08 +10001938 /*
dtucker@openbsd.org7fc47662016-11-30 00:28:31 +00001939 * If not in debugging mode, not started from inetd and not already
1940 * daemonized (eg re-exec via SIGHUP), disconnect from the controlling
1941 * terminal, and fork. The original process exits.
Damien Millereba71ba2000-04-29 23:57:08 +10001942 */
dtucker@openbsd.org7fc47662016-11-30 00:28:31 +00001943 already_daemon = daemonized();
1944 if (!(debug_flag || inetd_flag || no_daemon_flag || already_daemon)) {
dtucker@openbsd.orgb0899ee2016-11-29 03:54:50 +00001945
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001946 if (daemon(0, 0) == -1)
Damien Miller95def091999-11-25 00:26:21 +11001947 fatal("daemon() failed: %.200s", strerror(errno));
1948
dtucker@openbsd.orgb0899ee2016-11-29 03:54:50 +00001949 disconnect_controlling_tty();
Damien Miller95def091999-11-25 00:26:21 +11001950 }
1951 /* Reinitialize the log (because of the fork above). */
Kevin Stevesec84dc12000-12-13 17:45:15 +00001952 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +11001953
Damien Miller95def091999-11-25 00:26:21 +11001954 /* Chdir to the root directory so that the current disk can be
1955 unmounted if desired. */
Darren Tuckerdbee3082013-05-16 20:32:29 +10001956 if (chdir("/") == -1)
1957 error("chdir(\"/\"): %s", strerror(errno));
Damien Miller9f0f5c62001-12-21 14:45:46 +11001958
Ben Lindstromde71cda2001-03-24 00:43:26 +00001959 /* ignore SIGPIPE */
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +00001960 ssh_signal(SIGPIPE, SIG_IGN);
Damien Miller95def091999-11-25 00:26:21 +11001961
Damien Millera1f68402006-08-19 00:31:39 +10001962 /* Get a connection, either from inetd or a listening TCP socket */
Damien Miller95def091999-11-25 00:26:21 +11001963 if (inetd_flag) {
Damien Millera1f68402006-08-19 00:31:39 +10001964 server_accept_inetd(&sock_in, &sock_out);
Damien Miller95def091999-11-25 00:26:21 +11001965 } else {
Darren Tuckerc8802aa2009-12-08 13:39:48 +11001966 platform_pre_listen();
Damien Millera1f68402006-08-19 00:31:39 +10001967 server_listen();
Damien Miller34132e52000-01-14 15:45:46 +11001968
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +00001969 ssh_signal(SIGHUP, sighup_handler);
1970 ssh_signal(SIGCHLD, main_sigchld_handler);
1971 ssh_signal(SIGTERM, sigterm_handler);
1972 ssh_signal(SIGQUIT, sigterm_handler);
Ben Lindstrom98097862001-06-25 05:10:20 +00001973
Damien Millera1f68402006-08-19 00:31:39 +10001974 /*
1975 * Write out the pid file after the sigterm handler
1976 * is setup and the listen sockets are bound
1977 */
dtucker@openbsd.orgf2398eb2016-12-04 22:27:25 +00001978 if (options.pid_file != NULL && !debug_flag) {
Damien Millera1f68402006-08-19 00:31:39 +10001979 FILE *f = fopen(options.pid_file, "w");
1980
Darren Tuckere5327042003-07-03 13:40:44 +10001981 if (f == NULL) {
1982 error("Couldn't create pid file \"%s\": %s",
1983 options.pid_file, strerror(errno));
1984 } else {
Ben Lindstromce0f6342002-06-11 16:42:49 +00001985 fprintf(f, "%ld\n", (long) getpid());
Damien Miller95def091999-11-25 00:26:21 +11001986 fclose(f);
1987 }
1988 }
Damien Miller95def091999-11-25 00:26:21 +11001989
Damien Millera1f68402006-08-19 00:31:39 +10001990 /* Accept a connection and return in a forked child */
1991 server_accept_loop(&sock_in, &sock_out,
1992 &newsock, config_s);
Damien Miller95def091999-11-25 00:26:21 +11001993 }
1994
1995 /* This is the child processing a new connection. */
Damien Miller57aae982004-03-08 23:11:25 +11001996 setproctitle("%s", "[accepted]");
Damien Miller95def091999-11-25 00:26:21 +11001997
Darren Tucker6832b832004-08-12 22:36:51 +10001998 /*
1999 * Create a new session and process group since the 4.4BSD
2000 * setlogin() affects the entire process group. We don't
2001 * want the child to be able to affect the parent.
2002 */
2003#if !defined(SSHD_ACQUIRES_CTTY)
2004 /*
2005 * If setsid is called, on some platforms sshd will later acquire a
2006 * controlling terminal which will result in "could not set
2007 * controlling tty" errors.
2008 */
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00002009 if (!debug_flag && !inetd_flag && setsid() == -1)
Darren Tucker6832b832004-08-12 22:36:51 +10002010 error("setsid: %.100s", strerror(errno));
2011#endif
2012
Darren Tucker645ab752004-06-25 13:33:20 +10002013 if (rexec_flag) {
2014 int fd;
2015
Damien Miller035a5b42004-06-26 08:16:31 +10002016 debug("rexec start in %d out %d newsock %d pipe %d sock %d",
2017 sock_in, sock_out, newsock, startup_pipe, config_s[0]);
Darren Tucker645ab752004-06-25 13:33:20 +10002018 dup2(newsock, STDIN_FILENO);
2019 dup2(STDIN_FILENO, STDOUT_FILENO);
2020 if (startup_pipe == -1)
Damien Miller035a5b42004-06-26 08:16:31 +10002021 close(REEXEC_STARTUP_PIPE_FD);
Damien Miller61ee4d62013-10-15 11:56:47 +11002022 else if (startup_pipe != REEXEC_STARTUP_PIPE_FD) {
Damien Miller035a5b42004-06-26 08:16:31 +10002023 dup2(startup_pipe, REEXEC_STARTUP_PIPE_FD);
Damien Miller61ee4d62013-10-15 11:56:47 +11002024 close(startup_pipe);
2025 startup_pipe = REEXEC_STARTUP_PIPE_FD;
2026 }
Darren Tucker645ab752004-06-25 13:33:20 +10002027
Damien Miller035a5b42004-06-26 08:16:31 +10002028 dup2(config_s[1], REEXEC_CONFIG_PASS_FD);
Darren Tucker645ab752004-06-25 13:33:20 +10002029 close(config_s[1]);
Damien Miller035a5b42004-06-26 08:16:31 +10002030
Darren Tucker645ab752004-06-25 13:33:20 +10002031 execv(rexec_argv[0], rexec_argv);
2032
2033 /* Reexec has failed, fall back and continue */
2034 error("rexec of %s failed: %s", rexec_argv[0], strerror(errno));
Damien Miller035a5b42004-06-26 08:16:31 +10002035 recv_rexec_state(REEXEC_CONFIG_PASS_FD, NULL);
Darren Tucker645ab752004-06-25 13:33:20 +10002036 log_init(__progname, options.log_level,
2037 options.log_facility, log_stderr);
2038
2039 /* Clean up fds */
Damien Miller035a5b42004-06-26 08:16:31 +10002040 close(REEXEC_CONFIG_PASS_FD);
2041 newsock = sock_out = sock_in = dup(STDIN_FILENO);
Darren Tucker645ab752004-06-25 13:33:20 +10002042 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
2043 dup2(fd, STDIN_FILENO);
2044 dup2(fd, STDOUT_FILENO);
2045 if (fd > STDERR_FILENO)
2046 close(fd);
2047 }
Damien Miller035a5b42004-06-26 08:16:31 +10002048 debug("rexec cleanup in %d out %d newsock %d pipe %d sock %d",
2049 sock_in, sock_out, newsock, startup_pipe, config_s[0]);
Darren Tucker645ab752004-06-25 13:33:20 +10002050 }
2051
Damien Miller133d9d32010-01-30 17:30:04 +11002052 /* Executed child processes don't need these. */
2053 fcntl(sock_out, F_SETFD, FD_CLOEXEC);
2054 fcntl(sock_in, F_SETFD, FD_CLOEXEC);
2055
Damien Miller5428f641999-11-25 11:54:57 +11002056 /*
2057 * Disable the key regeneration alarm. We will not regenerate the
2058 * key since we are no longer in a position to give it to anyone. We
2059 * will not restart on SIGHUP since it no longer makes sense.
2060 */
Damien Miller95def091999-11-25 00:26:21 +11002061 alarm(0);
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +00002062 ssh_signal(SIGALRM, SIG_DFL);
2063 ssh_signal(SIGHUP, SIG_DFL);
2064 ssh_signal(SIGTERM, SIG_DFL);
2065 ssh_signal(SIGQUIT, SIG_DFL);
2066 ssh_signal(SIGCHLD, SIG_DFL);
2067 ssh_signal(SIGINT, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11002068
Damien Miller5428f641999-11-25 11:54:57 +11002069 /*
2070 * Register our connection. This turns encryption off because we do
2071 * not have a key.
2072 */
djm@openbsd.org6350e032019-01-19 21:42:30 +00002073 if ((ssh = ssh_packet_set_connection(NULL, sock_in, sock_out)) == NULL)
2074 fatal("Unable to create connection");
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002075 the_active_state = ssh;
djm@openbsd.org6350e032019-01-19 21:42:30 +00002076 ssh_packet_set_server(ssh);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002077
djm@openbsd.org95767262016-03-07 19:02:43 +00002078 check_ip_options(ssh);
Damien Miller95def091999-11-25 00:26:21 +11002079
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002080 /* Prepare the channels layer */
2081 channel_init_channels(ssh);
2082 channel_set_af(ssh, options.address_family);
2083 process_permitopen(ssh, &options);
2084
Damien Miller4f1d6b22005-05-26 11:59:32 +10002085 /* Set SO_KEEPALIVE if requested. */
djm@openbsd.org6350e032019-01-19 21:42:30 +00002086 if (options.tcp_keep_alive && ssh_packet_connection_is_on_socket(ssh) &&
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00002087 setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, &on, sizeof(on)) == -1)
Damien Miller4f1d6b22005-05-26 11:59:32 +10002088 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
2089
djm@openbsd.org95767262016-03-07 19:02:43 +00002090 if ((remote_port = ssh_remote_port(ssh)) < 0) {
2091 debug("ssh_remote_port failed");
Damien Miller677257f2005-06-17 12:55:03 +10002092 cleanup_exit(255);
2093 }
Damien Miller4d3fd542005-11-05 15:13:24 +11002094
djm@openbsd.org35eb33f2017-10-25 00:17:08 +00002095 if (options.routing_domain != NULL)
2096 set_process_rdomain(ssh, options.routing_domain);
2097
Damien Miller4d3fd542005-11-05 15:13:24 +11002098 /*
Damien Millereb13e552006-06-13 13:03:53 +10002099 * The rest of the code depends on the fact that
djm@openbsd.org95767262016-03-07 19:02:43 +00002100 * ssh_remote_ipaddr() caches the remote ip, even if
Damien Millereb13e552006-06-13 13:03:53 +10002101 * the socket goes away.
2102 */
djm@openbsd.org95767262016-03-07 19:02:43 +00002103 remote_ip = ssh_remote_ipaddr(ssh);
Damien Miller95def091999-11-25 00:26:21 +11002104
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11002105#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +11002106 audit_connection_from(remote_ip, remote_port);
2107#endif
Damien Miller6a4a4b92001-11-12 11:07:11 +11002108
djm@openbsd.org68af80e2017-10-25 00:19:47 +00002109 rdomain = ssh_packet_rdomain_in(ssh);
2110
Damien Miller95def091999-11-25 00:26:21 +11002111 /* Log the connection. */
dtucker@openbsd.org15fdfc92015-04-15 23:23:25 +00002112 laddr = get_local_ipaddr(sock_in);
djm@openbsd.org@openbsd.orgb77c29a2017-10-27 00:18:41 +00002113 verbose("Connection from %s port %d on %s port %d%s%s%s",
djm@openbsd.org68af80e2017-10-25 00:19:47 +00002114 remote_ip, remote_port, laddr, ssh_local_port(ssh),
djm@openbsd.org@openbsd.orgb77c29a2017-10-27 00:18:41 +00002115 rdomain == NULL ? "" : " rdomain \"",
2116 rdomain == NULL ? "" : rdomain,
2117 rdomain == NULL ? "" : "\"");
dtucker@openbsd.org15fdfc92015-04-15 23:23:25 +00002118 free(laddr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002119
Damien Miller5428f641999-11-25 11:54:57 +11002120 /*
Damien Miller788f2122005-11-05 15:14:59 +11002121 * We don't want to listen forever unless the other side
Damien Miller5428f641999-11-25 11:54:57 +11002122 * successfully authenticates itself. So we set up an alarm which is
2123 * cleared after successful authentication. A limit of zero
Damien Miller788f2122005-11-05 15:14:59 +11002124 * indicates no limit. Note that we don't set the alarm in debugging
Damien Miller5428f641999-11-25 11:54:57 +11002125 * mode; it is just annoying to have the server exit just when you
2126 * are about to discover the bug.
2127 */
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +00002128 ssh_signal(SIGALRM, grace_alarm_handler);
Damien Miller95def091999-11-25 00:26:21 +11002129 if (!debug_flag)
2130 alarm(options.login_grace_time);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002131
djm@openbsd.org0a843d92018-12-27 03:25:24 +00002132 if (kex_exchange_identification(ssh, -1, options.version_addendum) != 0)
2133 cleanup_exit(255); /* error already logged */
2134
djm@openbsd.org6350e032019-01-19 21:42:30 +00002135 ssh_packet_set_nonblocking(ssh);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002136
Darren Tucker3e33cec2003-10-02 16:12:36 +10002137 /* allocate authentication context */
Damien Miller07d86be2006-03-26 14:19:21 +11002138 authctxt = xcalloc(1, sizeof(*authctxt));
djm@openbsd.org6350e032019-01-19 21:42:30 +00002139 ssh->authctxt = authctxt;
Darren Tucker3e33cec2003-10-02 16:12:36 +10002140
Damien Miller120a1ec2018-07-10 19:39:52 +10002141 authctxt->loginmsg = loginmsg;
Darren Tuckerf3bb4342005-03-31 21:39:25 +10002142
Darren Tucker3e33cec2003-10-02 16:12:36 +10002143 /* XXX global for cleanup, access from other modules */
2144 the_authctxt = authctxt;
2145
djm@openbsd.org7c856852018-03-03 03:15:51 +00002146 /* Set default key authentication options */
2147 if ((auth_opts = sshauthopt_new_with_keys_defaults()) == NULL)
2148 fatal("allocation failed");
2149
Darren Tucker5c14c732005-01-24 21:55:49 +11002150 /* prepare buffer to collect messages to display to user after login */
markus@openbsd.org2808d182018-07-09 21:26:02 +00002151 if ((loginmsg = sshbuf_new()) == NULL)
2152 fatal("%s: sshbuf_new failed", __func__);
Darren Tuckercd70e1b2010-03-07 23:05:17 +11002153 auth_debug_reset();
Darren Tucker5c14c732005-01-24 21:55:49 +11002154
Damien Miller85b45e02013-07-20 13:21:52 +10002155 if (use_privsep) {
djm@openbsd.org6350e032019-01-19 21:42:30 +00002156 if (privsep_preauth(ssh) == 1)
Ben Lindstrom943481c2002-03-22 03:43:46 +00002157 goto authenticated;
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +00002158 } else if (have_agent) {
djm@openbsd.org141efe42015-01-14 20:05:27 +00002159 if ((r = ssh_get_authentication_socket(&auth_sock)) != 0) {
2160 error("Unable to get agent socket: %s", ssh_err(r));
djm@openbsd.org83f8ffa2015-01-17 18:53:34 +00002161 have_agent = 0;
djm@openbsd.org141efe42015-01-14 20:05:27 +00002162 }
2163 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002164
Damien Miller396691a2000-01-20 22:44:08 +11002165 /* perform the key exchange */
Damien Miller396691a2000-01-20 22:44:08 +11002166 /* authenticate user and start session */
djm@openbsd.org6350e032019-01-19 21:42:30 +00002167 do_ssh2_kex(ssh);
Damien Miller5ebce132019-01-20 09:44:53 +11002168 do_authentication2(ssh);
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +00002169
Ben Lindstrom943481c2002-03-22 03:43:46 +00002170 /*
2171 * If we use privilege separation, the unprivileged child transfers
2172 * the current keystate and exits
2173 */
2174 if (use_privsep) {
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002175 mm_send_keystate(ssh, pmonitor);
djm@openbsd.org6350e032019-01-19 21:42:30 +00002176 ssh_packet_clear_keys(ssh);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002177 exit(0);
Ben Lindstrom943481c2002-03-22 03:43:46 +00002178 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002179
2180 authenticated:
Damien Miller7bff1a92005-12-24 14:59:12 +11002181 /*
2182 * Cancel the alarm we set to limit the time taken for
2183 * authentication.
2184 */
2185 alarm(0);
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +00002186 ssh_signal(SIGALRM, SIG_DFL);
Damien Miller3f8123c2006-08-19 00:32:46 +10002187 authctxt->authenticated = 1;
Damien Miller7bff1a92005-12-24 14:59:12 +11002188 if (startup_pipe != -1) {
2189 close(startup_pipe);
2190 startup_pipe = -1;
2191 }
2192
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11002193#ifdef SSH_AUDIT_EVENTS
Damien Miller9b655dc2019-01-20 14:55:27 +11002194 audit_event(ssh, SSH_AUTH_SUCCESS);
Darren Tucker269a1ea2005-02-03 00:20:53 +11002195#endif
2196
Darren Tucker52358d62008-03-11 22:58:25 +11002197#ifdef GSSAPI
2198 if (options.gss_authentication) {
2199 temporarily_use_uid(authctxt->pw);
2200 ssh_gssapi_storecreds();
2201 restore_uid();
2202 }
2203#endif
2204#ifdef USE_PAM
2205 if (options.use_pam) {
2206 do_pam_setcred(1);
djm@openbsd.org7c856852018-03-03 03:15:51 +00002207 do_pam_session(ssh);
Darren Tucker52358d62008-03-11 22:58:25 +11002208 }
2209#endif
2210
Ben Lindstrom6328ab32002-03-22 02:54:23 +00002211 /*
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002212 * In privilege separation, we fork another child and prepare
2213 * file descriptor passing.
2214 */
2215 if (use_privsep) {
djm@openbsd.org6350e032019-01-19 21:42:30 +00002216 privsep_postauth(ssh, authctxt);
Ben Lindstrom943481c2002-03-22 03:43:46 +00002217 /* the monitor process [priv] will not return */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002218 }
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +00002219
djm@openbsd.org6350e032019-01-19 21:42:30 +00002220 ssh_packet_set_timeout(ssh, options.client_alive_interval,
Darren Tucker3fc464e2008-06-13 06:42:45 +10002221 options.client_alive_count_max);
2222
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002223 /* Try to send all our hostkeys to the client */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002224 notify_hostkeys(ssh);
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002225
Darren Tucker3e33cec2003-10-02 16:12:36 +10002226 /* Start session. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002227 do_authenticated(ssh, authctxt);
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +00002228
Damien Miller3a5b0232002-03-13 13:19:42 +11002229 /* The connection has been terminated. */
djm@openbsd.org6350e032019-01-19 21:42:30 +00002230 ssh_packet_get_bytes(ssh, &ibytes, &obytes);
Damien Miller821de0a2011-01-11 17:20:29 +11002231 verbose("Transferred: sent %llu, received %llu bytes",
2232 (unsigned long long)obytes, (unsigned long long)ibytes);
Damien Millerb61f3fc2008-07-11 17:36:48 +10002233
2234 verbose("Closing connection to %.500s port %d", remote_ip, remote_port);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002235
Damien Millerbeb4ba51999-12-28 15:09:35 +11002236#ifdef USE_PAM
Damien Miller4e448a32003-05-14 15:11:48 +10002237 if (options.use_pam)
2238 finish_pam();
Damien Millerbeb4ba51999-12-28 15:09:35 +11002239#endif /* USE_PAM */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002240
Darren Tucker2b59a6d2005-03-06 22:38:51 +11002241#ifdef SSH_AUDIT_EVENTS
Damien Miller9b655dc2019-01-20 14:55:27 +11002242 PRIVSEP(audit_event(ssh, SSH_CONNECTION_CLOSE));
Darren Tucker2b59a6d2005-03-06 22:38:51 +11002243#endif
2244
djm@openbsd.org6350e032019-01-19 21:42:30 +00002245 ssh_packet_close(ssh);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002246
2247 if (use_privsep)
2248 mm_terminate();
2249
Damien Miller95def091999-11-25 00:26:21 +11002250 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002251}
2252
markus@openbsd.org57d10cb2015-01-19 20:16:15 +00002253int
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002254sshd_hostkey_sign(struct ssh *ssh, struct sshkey *privkey,
2255 struct sshkey *pubkey, u_char **signature, size_t *slenp,
2256 const u_char *data, size_t dlen, const char *alg)
Damien Miller85b45e02013-07-20 13:21:52 +10002257{
djm@openbsd.org141efe42015-01-14 20:05:27 +00002258 int r;
2259
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002260 if (use_privsep) {
2261 if (privkey) {
2262 if (mm_sshkey_sign(ssh, privkey, signature, slenp,
djm@openbsd.org56584cc2019-12-15 18:57:30 +00002263 data, dlen, alg, options.sk_provider,
2264 ssh->compat) < 0)
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002265 fatal("%s: privkey sign failed", __func__);
2266 } else {
2267 if (mm_sshkey_sign(ssh, pubkey, signature, slenp,
djm@openbsd.org56584cc2019-12-15 18:57:30 +00002268 data, dlen, alg, options.sk_provider,
2269 ssh->compat) < 0)
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002270 fatal("%s: pubkey sign failed", __func__);
2271 }
Damien Miller85b45e02013-07-20 13:21:52 +10002272 } else {
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002273 if (privkey) {
2274 if (sshkey_sign(privkey, signature, slenp, data, dlen,
djm@openbsd.org56584cc2019-12-15 18:57:30 +00002275 alg, options.sk_provider, ssh->compat) < 0)
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002276 fatal("%s: privkey sign failed", __func__);
2277 } else {
2278 if ((r = ssh_agent_sign(auth_sock, pubkey,
2279 signature, slenp, data, dlen, alg,
2280 ssh->compat)) != 0) {
2281 fatal("%s: agent sign failed: %s",
2282 __func__, ssh_err(r));
2283 }
2284 }
Damien Miller85b45e02013-07-20 13:21:52 +10002285 }
markus@openbsd.org57d10cb2015-01-19 20:16:15 +00002286 return 0;
Damien Miller85b45e02013-07-20 13:21:52 +10002287}
2288
djm@openbsd.orgbdfd29f2015-07-03 03:47:00 +00002289/* SSH2 key exchange */
Ben Lindstrombba81212001-06-25 05:01:22 +00002290static void
djm@openbsd.org6350e032019-01-19 21:42:30 +00002291do_ssh2_kex(struct ssh *ssh)
Damien Millerefb4afe2000-04-12 18:45:05 +10002292{
Damien Miller9235a032014-04-20 13:17:20 +10002293 char *myproposal[PROPOSAL_MAX] = { KEX_SERVER };
markus@openbsd.org57d10cb2015-01-19 20:16:15 +00002294 struct kex *kex;
markus@openbsd.org57e783c2015-01-20 20:16:21 +00002295 int r;
Damien Millerefb4afe2000-04-12 18:45:05 +10002296
djm@openbsd.orgf9eca242015-07-30 00:01:34 +00002297 myproposal[PROPOSAL_KEX_ALGS] = compat_kex_proposal(
djm@openbsd.orgc3903c32018-08-13 02:41:05 +00002298 options.kex_algorithms);
djm@openbsd.orgf9eca242015-07-30 00:01:34 +00002299 myproposal[PROPOSAL_ENC_ALGS_CTOS] = compat_cipher_proposal(
djm@openbsd.orgc3903c32018-08-13 02:41:05 +00002300 options.ciphers);
djm@openbsd.orgf9eca242015-07-30 00:01:34 +00002301 myproposal[PROPOSAL_ENC_ALGS_STOC] = compat_cipher_proposal(
djm@openbsd.orgc3903c32018-08-13 02:41:05 +00002302 options.ciphers);
djm@openbsd.orgf9eca242015-07-30 00:01:34 +00002303 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
2304 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
Damien Millera0ff4662001-03-30 10:49:35 +10002305
Damien Miller9786e6e2005-07-26 21:54:56 +10002306 if (options.compression == COMP_NONE) {
Ben Lindstrom23e0f662002-06-21 01:09:47 +00002307 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
dtucker@openbsd.org8c02e362016-05-24 04:43:45 +00002308 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none";
Ben Lindstrom23e0f662002-06-21 01:09:47 +00002309 }
Damien Miller9395b282014-04-20 13:25:30 +10002310
Darren Tucker5f96f3b2013-05-16 20:29:28 +10002311 if (options.rekey_limit || options.rekey_interval)
djm@openbsd.org6350e032019-01-19 21:42:30 +00002312 ssh_packet_set_rekey_limits(ssh, options.rekey_limit,
dtucker@openbsd.orgc998bf02017-02-03 02:56:00 +00002313 options.rekey_interval);
Darren Tucker5f96f3b2013-05-16 20:29:28 +10002314
Damien Miller324541e2013-12-31 12:25:40 +11002315 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = compat_pkalg_proposal(
djm@openbsd.orgc3903c32018-08-13 02:41:05 +00002316 list_hostkey_types());
Damien Miller0bc1bd82000-11-13 22:57:25 +11002317
Ben Lindstrom8ac91062001-04-04 17:57:54 +00002318 /* start key exchange */
djm@openbsd.org6350e032019-01-19 21:42:30 +00002319 if ((r = kex_setup(ssh, myproposal)) != 0)
markus@openbsd.org57e783c2015-01-20 20:16:21 +00002320 fatal("kex_setup: %s", ssh_err(r));
djm@openbsd.org6350e032019-01-19 21:42:30 +00002321 kex = ssh->kex;
Damien Miller1f0311c2014-05-15 14:24:09 +10002322#ifdef WITH_OPENSSL
djm@openbsd.orgaaca72d2019-01-21 10:40:11 +00002323 kex->kex[KEX_DH_GRP1_SHA1] = kex_gen_server;
2324 kex->kex[KEX_DH_GRP14_SHA1] = kex_gen_server;
2325 kex->kex[KEX_DH_GRP14_SHA256] = kex_gen_server;
2326 kex->kex[KEX_DH_GRP16_SHA512] = kex_gen_server;
2327 kex->kex[KEX_DH_GRP18_SHA512] = kex_gen_server;
Damien Miller8e7fb332003-02-24 12:03:03 +11002328 kex->kex[KEX_DH_GEX_SHA1] = kexgex_server;
Damien Millera63128d2006-03-15 12:08:28 +11002329 kex->kex[KEX_DH_GEX_SHA256] = kexgex_server;
Darren Tuckerf2004cd2015-02-23 05:04:21 +11002330# ifdef OPENSSL_HAS_ECC
djm@openbsd.orgaaca72d2019-01-21 10:40:11 +00002331 kex->kex[KEX_ECDH_SHA2] = kex_gen_server;
Darren Tuckerf2004cd2015-02-23 05:04:21 +11002332# endif
Damien Miller1f0311c2014-05-15 14:24:09 +10002333#endif
djm@openbsd.orgaaca72d2019-01-21 10:40:11 +00002334 kex->kex[KEX_C25519_SHA256] = kex_gen_server;
2335 kex->kex[KEX_KEM_SNTRUP4591761X25519_SHA512] = kex_gen_server;
Damien Miller0a80ca12010-02-27 07:55:05 +11002336 kex->load_host_public_key=&get_hostkey_public_by_type;
2337 kex->load_host_private_key=&get_hostkey_private_by_type;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002338 kex->host_key_index=&get_hostkey_index;
Damien Miller85b45e02013-07-20 13:21:52 +10002339 kex->sign = sshd_hostkey_sign;
Damien Millerefb4afe2000-04-12 18:45:05 +10002340
djm@openbsd.org6350e032019-01-19 21:42:30 +00002341 ssh_dispatch_run_fatal(ssh, DISPATCH_BLOCK, &kex->done);
Damien Miller874d77b2000-10-14 16:23:11 +11002342
Ben Lindstrom2d90e002001-04-04 02:00:54 +00002343 session_id2 = kex->session_id;
2344 session_id2_len = kex->session_id_len;
2345
Damien Miller874d77b2000-10-14 16:23:11 +11002346#ifdef DEBUG_KEXDH
2347 /* send 1st encrypted/maced/compressed message */
2348 packet_start(SSH2_MSG_IGNORE);
2349 packet_put_cstring("markus");
2350 packet_send();
2351 packet_write_wait();
2352#endif
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +00002353 debug("KEX done");
Damien Millerefb4afe2000-04-12 18:45:05 +10002354}
Darren Tucker3e33cec2003-10-02 16:12:36 +10002355
2356/* server specific fatal cleanup */
2357void
2358cleanup_exit(int i)
2359{
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002360 if (the_active_state != NULL && the_authctxt != NULL) {
2361 do_cleanup(the_active_state, the_authctxt);
Damien Miller75c62722014-04-20 13:24:31 +10002362 if (use_privsep && privsep_is_preauth &&
2363 pmonitor != NULL && pmonitor->m_pid > 1) {
Damien Miller9ee2c602011-09-22 21:38:30 +10002364 debug("Killing privsep child %d", pmonitor->m_pid);
2365 if (kill(pmonitor->m_pid, SIGKILL) != 0 &&
Darren Tucker2e135602011-10-02 19:10:13 +11002366 errno != ESRCH)
Damien Miller9ee2c602011-09-22 21:38:30 +10002367 error("%s: kill(%d): %s", __func__,
2368 pmonitor->m_pid, strerror(errno));
2369 }
2370 }
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11002371#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +11002372 /* done after do_cleanup so it can cancel the PAM auth 'thread' */
Damien Miller9b655dc2019-01-20 14:55:27 +11002373 if (the_active_state != NULL && (!use_privsep || mm_is_monitor()))
2374 audit_event(the_active_state, SSH_CONNECTION_ABANDON);
Darren Tucker269a1ea2005-02-03 00:20:53 +11002375#endif
Darren Tucker3e33cec2003-10-02 16:12:36 +10002376 _exit(i);
2377}