blob: 60b2aaf73e1fb8c977c1cb94a435407daa2c10b1 [file] [log] [blame]
djm@openbsd.orgd4f4cdd2020-01-31 23:13:04 +00001/* $OpenBSD: sshd.c,v 1.549 2020/01/31 23:13:04 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
djm@openbsd.orgc2bd7f72020-01-31 22:42:45 +0000254/* Included files from the configuration file */
255struct include_list includes = TAILQ_HEAD_INITIALIZER(includes);
256
Darren Tucker09991742004-07-17 17:05:14 +1000257/* message to be displayed after login */
markus@openbsd.org2808d182018-07-09 21:26:02 +0000258struct sshbuf *loginmsg;
Darren Tucker09991742004-07-17 17:05:14 +1000259
Damien Miller6433df02006-09-07 10:36:43 +1000260/* Unprivileged user */
261struct passwd *privsep_pw = NULL;
262
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000263/* Prototypes for various functions defined later in this file. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000264void destroy_sensitive_data(void);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000265void demote_sensitive_data(void);
djm@openbsd.org6350e032019-01-19 21:42:30 +0000266static void do_ssh2_kex(struct ssh *);
Damien Miller874d77b2000-10-14 16:23:11 +1100267
djm@openbsd.orga8c05c62020-01-24 23:56:01 +0000268static char *listener_proctitle;
269
Damien Miller98c7ad62000-03-09 21:27:49 +1100270/*
Damien Miller34132e52000-01-14 15:45:46 +1100271 * Close all listening sockets
272 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000273static void
Damien Miller34132e52000-01-14 15:45:46 +1100274close_listen_socks(void)
275{
276 int i;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000277
Damien Miller34132e52000-01-14 15:45:46 +1100278 for (i = 0; i < num_listen_socks; i++)
279 close(listen_socks[i]);
280 num_listen_socks = -1;
281}
282
Ben Lindstromd84df982001-12-06 16:35:40 +0000283static void
284close_startup_pipes(void)
285{
286 int i;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000287
Ben Lindstromd84df982001-12-06 16:35:40 +0000288 if (startup_pipes)
289 for (i = 0; i < options.max_startups; i++)
290 if (startup_pipes[i] != -1)
291 close(startup_pipes[i]);
292}
293
Damien Miller34132e52000-01-14 15:45:46 +1100294/*
Damien Miller95def091999-11-25 00:26:21 +1100295 * Signal handler for SIGHUP. Sshd execs itself when it receives SIGHUP;
296 * the effect is to reread the configuration file (and to regenerate
297 * the server key).
298 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100299
300/*ARGSUSED*/
Ben Lindstrombba81212001-06-25 05:01:22 +0000301static void
Damien Miller95def091999-11-25 00:26:21 +1100302sighup_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000303{
Damien Miller95def091999-11-25 00:26:21 +1100304 received_sighup = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000305}
306
Damien Miller95def091999-11-25 00:26:21 +1100307/*
308 * Called from the main program after receiving SIGHUP.
309 * Restarts the server.
310 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000311static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000312sighup_restart(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000313{
Damien Miller996acd22003-04-09 20:59:48 +1000314 logit("Received SIGHUP; restarting.");
dtucker@openbsd.orgf2398eb2016-12-04 22:27:25 +0000315 if (options.pid_file != NULL)
316 unlink(options.pid_file);
Darren Tuckerf2bf36c2013-09-22 19:02:40 +1000317 platform_pre_restart();
Damien Miller34132e52000-01-14 15:45:46 +1100318 close_listen_socks();
Ben Lindstromd84df982001-12-06 16:35:40 +0000319 close_startup_pipes();
Darren Tuckered623962007-02-25 20:37:21 +1100320 alarm(0); /* alarm timer persists across exec */
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +0000321 ssh_signal(SIGHUP, SIG_IGN); /* will be restored after exec */
Damien Miller95def091999-11-25 00:26:21 +1100322 execv(saved_argv[0], saved_argv);
Damien Miller996acd22003-04-09 20:59:48 +1000323 logit("RESTART FAILED: av[0]='%.100s', error: %.100s.", saved_argv[0],
Ben Lindstrom822b6342002-06-23 21:38:49 +0000324 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100325 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000326}
327
Damien Miller95def091999-11-25 00:26:21 +1100328/*
329 * Generic signal handler for terminating signals in the master daemon.
Damien Miller95def091999-11-25 00:26:21 +1100330 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100331/*ARGSUSED*/
Ben Lindstrombba81212001-06-25 05:01:22 +0000332static void
Damien Miller95def091999-11-25 00:26:21 +1100333sigterm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000334{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000335 received_sigterm = sig;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000336}
337
Damien Miller95def091999-11-25 00:26:21 +1100338/*
339 * SIGCHLD handler. This is called whenever a child dies. This will then
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000340 * reap any zombies left by exited children.
Damien Miller95def091999-11-25 00:26:21 +1100341 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100342/*ARGSUSED*/
Ben Lindstrombba81212001-06-25 05:01:22 +0000343static void
Damien Miller95def091999-11-25 00:26:21 +1100344main_sigchld_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000345{
Damien Miller95def091999-11-25 00:26:21 +1100346 int save_errno = errno;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000347 pid_t pid;
Damien Miller95def091999-11-25 00:26:21 +1100348 int status;
Damien Miller431f66b1999-11-21 18:31:57 +1100349
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +0000350 debug("main_sigchld_handler: %s", strsignal(sig));
351
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000352 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000353 (pid == -1 && errno == EINTR))
Damien Miller95def091999-11-25 00:26:21 +1100354 ;
Damien Miller95def091999-11-25 00:26:21 +1100355 errno = save_errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000356}
357
Damien Miller95def091999-11-25 00:26:21 +1100358/*
359 * Signal handler for the alarm after the login grace period has expired.
360 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100361/*ARGSUSED*/
Ben Lindstrombba81212001-06-25 05:01:22 +0000362static void
Damien Miller95def091999-11-25 00:26:21 +1100363grace_alarm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000364{
Darren Tuckera8be9e22004-02-06 16:40:27 +1100365 if (use_privsep && pmonitor != NULL && pmonitor->m_pid > 0)
366 kill(pmonitor->m_pid, SIGALRM);
367
Damien Miller09d3e122012-10-31 08:58:58 +1100368 /*
369 * Try to kill any processes that we have spawned, E.g. authorized
370 * keys command helpers.
371 */
372 if (getpgid(0) == getpid()) {
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +0000373 ssh_signal(SIGTERM, SIG_IGN);
Damien Millerab16ef42014-01-28 15:08:12 +1100374 kill(0, SIGTERM);
Damien Miller09d3e122012-10-31 08:58:58 +1100375 }
376
djm@openbsd.org04c091f2019-01-19 21:43:56 +0000377 /* XXX pre-format ipaddr/port so we don't need to access active_state */
Damien Miller95def091999-11-25 00:26:21 +1100378 /* Log error and exit. */
djm@openbsd.org95767262016-03-07 19:02:43 +0000379 sigdie("Timeout before authentication for %s port %d",
djm@openbsd.org04c091f2019-01-19 21:43:56 +0000380 ssh_remote_ipaddr(the_active_state),
381 ssh_remote_port(the_active_state));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000382}
383
Damien Miller0bc1bd82000-11-13 22:57:25 +1100384/* Destroy the host and server keys. They will no longer be needed. */
Damien Millereba71ba2000-04-29 23:57:08 +1000385void
386destroy_sensitive_data(void)
387{
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000388 u_int i;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100389
Damien Miller9f0f5c62001-12-21 14:45:46 +1100390 for (i = 0; i < options.num_host_key_files; i++) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100391 if (sensitive_data.host_keys[i]) {
markus@openbsd.org5467fbc2018-07-11 18:53:29 +0000392 sshkey_free(sensitive_data.host_keys[i]);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100393 sensitive_data.host_keys[i] = NULL;
394 }
Damien Miller0a80ca12010-02-27 07:55:05 +1100395 if (sensitive_data.host_certificates[i]) {
markus@openbsd.org5467fbc2018-07-11 18:53:29 +0000396 sshkey_free(sensitive_data.host_certificates[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +1100397 sensitive_data.host_certificates[i] = NULL;
398 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100399 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100400}
Damien Miller0bc1bd82000-11-13 22:57:25 +1100401
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000402/* Demote private to public keys for network child */
403void
404demote_sensitive_data(void)
405{
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000406 struct sshkey *tmp;
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000407 u_int i;
markus@openbsd.org5467fbc2018-07-11 18:53:29 +0000408 int r;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000409
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000410 for (i = 0; i < options.num_host_key_files; i++) {
411 if (sensitive_data.host_keys[i]) {
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000412 if ((r = sshkey_from_private(
413 sensitive_data.host_keys[i], &tmp)) != 0)
markus@openbsd.org5467fbc2018-07-11 18:53:29 +0000414 fatal("could not demote host %s key: %s",
415 sshkey_type(sensitive_data.host_keys[i]),
416 ssh_err(r));
417 sshkey_free(sensitive_data.host_keys[i]);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000418 sensitive_data.host_keys[i] = tmp;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000419 }
Damien Miller0a80ca12010-02-27 07:55:05 +1100420 /* Certs do not need demotion */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000421 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000422}
423
Ben Lindstrom08105192002-03-22 02:50:06 +0000424static void
Damien Millerc9f880c2016-11-30 13:51:49 +1100425reseed_prngs(void)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000426{
Darren Tucker64cee362009-06-21 20:26:17 +1000427 u_int32_t rnd[256];
Damien Millerc9f880c2016-11-30 13:51:49 +1100428
429#ifdef WITH_OPENSSL
430 RAND_poll();
431#endif
432 arc4random_stir(); /* noop on recent arc4random() implementations */
433 arc4random_buf(rnd, sizeof(rnd)); /* let arc4random notice PID change */
434
435#ifdef WITH_OPENSSL
436 RAND_seed(rnd, sizeof(rnd));
437 /* give libcrypto a chance to notice the PID change */
438 if ((RAND_bytes((u_char *)rnd, 1)) != 1)
439 fatal("%s: RAND_bytes failed", __func__);
440#endif
441
442 explicit_bzero(rnd, sizeof(rnd));
443}
444
445static void
446privsep_preauth_child(void)
447{
Ben Lindstrom810af962002-07-04 00:11:40 +0000448 gid_t gidset[1];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000449
450 /* Enable challenge-response authentication for privilege separation */
451 privsep_challenge_enable();
452
Damien Millerfb3423b2014-02-27 10:20:07 +1100453#ifdef GSSAPI
Damien Millere6a74ae2014-02-27 10:17:49 +1100454 /* Cache supported mechanism OIDs for later use */
djm@openbsd.orgcb24d9f2018-09-21 12:23:17 +0000455 ssh_gssapi_prepare_supported_oids();
Damien Millerfb3423b2014-02-27 10:20:07 +1100456#endif
Damien Millere6a74ae2014-02-27 10:17:49 +1100457
Damien Millerc9f880c2016-11-30 13:51:49 +1100458 reseed_prngs();
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000459
460 /* Demote the private keys to public keys. */
461 demote_sensitive_data();
462
djm@openbsd.org5b4010d2015-11-16 22:51:05 +0000463 /* Demote the child */
Darren Tuckerd13281f2017-03-29 12:39:39 +1100464 if (privsep_chroot) {
djm@openbsd.org5b4010d2015-11-16 22:51:05 +0000465 /* Change our root directory */
466 if (chroot(_PATH_PRIVSEP_CHROOT_DIR) == -1)
467 fatal("chroot(\"%s\"): %s", _PATH_PRIVSEP_CHROOT_DIR,
468 strerror(errno));
469 if (chdir("/") == -1)
470 fatal("chdir(\"/\"): %s", strerror(errno));
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000471
djm@openbsd.org5b4010d2015-11-16 22:51:05 +0000472 /* Drop our privileges */
473 debug3("privsep user:group %u:%u", (u_int)privsep_pw->pw_uid,
474 (u_int)privsep_pw->pw_gid);
475 gidset[0] = privsep_pw->pw_gid;
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000476 if (setgroups(1, gidset) == -1)
djm@openbsd.org5b4010d2015-11-16 22:51:05 +0000477 fatal("setgroups: %.100s", strerror(errno));
478 permanently_set_uid(privsep_pw);
479 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000480}
481
Darren Tucker3e33cec2003-10-02 16:12:36 +1000482static int
djm@openbsd.org6350e032019-01-19 21:42:30 +0000483privsep_preauth(struct ssh *ssh)
Ben Lindstrom943481c2002-03-22 03:43:46 +0000484{
djm@openbsd.org141efe42015-01-14 20:05:27 +0000485 int status, r;
Ben Lindstrom943481c2002-03-22 03:43:46 +0000486 pid_t pid;
Damien Miller69ff1df2011-06-23 08:30:03 +1000487 struct ssh_sandbox *box = NULL;
Ben Lindstrom943481c2002-03-22 03:43:46 +0000488
489 /* Set up unprivileged child process to deal with network data */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000490 pmonitor = monitor_init();
Ben Lindstrom943481c2002-03-22 03:43:46 +0000491 /* Store a pointer to the kex for later rekeying */
djm@openbsd.org6350e032019-01-19 21:42:30 +0000492 pmonitor->m_pkex = &ssh->kex;
Ben Lindstrom943481c2002-03-22 03:43:46 +0000493
Damien Miller5a5c2b92012-07-31 12:21:34 +1000494 if (use_privsep == PRIVSEP_ON)
Damien Miller868ea1e2014-01-17 16:47:04 +1100495 box = ssh_sandbox_init(pmonitor);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000496 pid = fork();
497 if (pid == -1) {
498 fatal("fork of unprivileged child failed");
499 } else if (pid != 0) {
Ben Lindstromce0f6342002-06-11 16:42:49 +0000500 debug2("Network child is on pid %ld", (long)pid);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000501
Darren Tucker3b4b2d32012-07-02 18:54:31 +1000502 pmonitor->m_pid = pid;
djm@openbsd.org141efe42015-01-14 20:05:27 +0000503 if (have_agent) {
504 r = ssh_get_authentication_socket(&auth_sock);
505 if (r != 0) {
506 error("Could not get agent socket: %s",
507 ssh_err(r));
508 have_agent = 0;
509 }
510 }
Damien Miller69ff1df2011-06-23 08:30:03 +1000511 if (box != NULL)
512 ssh_sandbox_parent_preauth(box, pid);
djm@openbsd.orgec00f912019-01-19 21:43:07 +0000513 monitor_child_preauth(ssh, pmonitor);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000514
Ben Lindstrom943481c2002-03-22 03:43:46 +0000515 /* Wait for the child's exit status */
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000516 while (waitpid(pid, &status, 0) == -1) {
Damien Miller9ee2c602011-09-22 21:38:30 +1000517 if (errno == EINTR)
518 continue;
519 pmonitor->m_pid = -1;
520 fatal("%s: waitpid: %s", __func__, strerror(errno));
Damien Miller69ff1df2011-06-23 08:30:03 +1000521 }
Damien Miller9ee2c602011-09-22 21:38:30 +1000522 privsep_is_preauth = 0;
523 pmonitor->m_pid = -1;
Damien Miller69ff1df2011-06-23 08:30:03 +1000524 if (WIFEXITED(status)) {
525 if (WEXITSTATUS(status) != 0)
526 fatal("%s: preauth child exited with status %d",
527 __func__, WEXITSTATUS(status));
528 } else if (WIFSIGNALED(status))
529 fatal("%s: preauth child terminated by signal %d",
530 __func__, WTERMSIG(status));
531 if (box != NULL)
532 ssh_sandbox_parent_finish(box);
533 return 1;
Ben Lindstrom943481c2002-03-22 03:43:46 +0000534 } else {
535 /* child */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000536 close(pmonitor->m_sendfd);
Damien Miller8f0bf232011-06-20 14:42:23 +1000537 close(pmonitor->m_log_recvfd);
538
539 /* Arrange for logging to be sent to the monitor */
540 set_log_handler(mm_log_handler, pmonitor);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000541
djm@openbsd.org5b4010d2015-11-16 22:51:05 +0000542 privsep_preauth_child();
Ben Lindstromf90f58d2002-03-26 01:53:03 +0000543 setproctitle("%s", "[net]");
Damien Miller69ff1df2011-06-23 08:30:03 +1000544 if (box != NULL)
545 ssh_sandbox_child(box);
546
547 return 0;
Ben Lindstrom943481c2002-03-22 03:43:46 +0000548 }
Ben Lindstrom943481c2002-03-22 03:43:46 +0000549}
550
Ben Lindstrom08105192002-03-22 02:50:06 +0000551static void
djm@openbsd.org6350e032019-01-19 21:42:30 +0000552privsep_postauth(struct ssh *ssh, Authctxt *authctxt)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000553{
Tim Rice9dd30812002-07-07 13:43:36 -0700554#ifdef DISABLE_FD_PASSING
Tim Rice8eff3192002-06-25 15:35:15 -0700555 if (1) {
556#else
djm@openbsd.org83b58182016-08-19 03:18:06 +0000557 if (authctxt->pw->pw_uid == 0) {
Tim Rice8eff3192002-06-25 15:35:15 -0700558#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000559 /* File descriptor passing is broken or root login */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000560 use_privsep = 0;
Darren Tucker45b01422005-10-03 18:20:00 +1000561 goto skip;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000562 }
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000563
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000564 /* New socket pair */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000565 monitor_reinit(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000566
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000567 pmonitor->m_pid = fork();
568 if (pmonitor->m_pid == -1)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000569 fatal("fork of unprivileged child failed");
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000570 else if (pmonitor->m_pid != 0) {
Damien Millerb61f3fc2008-07-11 17:36:48 +1000571 verbose("User child is on pid %ld", (long)pmonitor->m_pid);
markus@openbsd.org2808d182018-07-09 21:26:02 +0000572 sshbuf_reset(loginmsg);
djm@openbsd.orgec00f912019-01-19 21:43:07 +0000573 monitor_clear_keystate(ssh, pmonitor);
574 monitor_child_postauth(ssh, pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000575
576 /* NEVERREACHED */
577 exit(0);
578 }
579
Damien Miller8f0bf232011-06-20 14:42:23 +1000580 /* child */
581
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000582 close(pmonitor->m_sendfd);
Damien Miller8f0bf232011-06-20 14:42:23 +1000583 pmonitor->m_sendfd = -1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000584
585 /* Demote the private keys to public keys. */
586 demote_sensitive_data();
587
Damien Millerc9f880c2016-11-30 13:51:49 +1100588 reseed_prngs();
Damien Miller76e95da2008-03-07 18:31:24 +1100589
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000590 /* Drop privileges */
591 do_setusercontext(authctxt->pw);
592
Darren Tucker45b01422005-10-03 18:20:00 +1000593 skip:
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000594 /* It is safe now to apply the key state */
djm@openbsd.orgec00f912019-01-19 21:43:07 +0000595 monitor_apply_keystate(ssh, pmonitor);
Damien Miller9786e6e2005-07-26 21:54:56 +1000596
597 /*
598 * Tell the packet layer that authentication was successful, since
599 * this information is not part of the key state.
600 */
djm@openbsd.org6350e032019-01-19 21:42:30 +0000601 ssh_packet_set_authenticated(ssh);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000602}
603
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000604static void
605append_hostkey_type(struct sshbuf *b, const char *s)
606{
607 int r;
608
609 if (match_pattern_list(s, options.hostkeyalgorithms, 0) != 1) {
610 debug3("%s: %s key not permitted by HostkeyAlgorithms",
611 __func__, s);
612 return;
613 }
614 if ((r = sshbuf_putf(b, "%s%s", sshbuf_len(b) > 0 ? "," : "", s)) != 0)
615 fatal("%s: sshbuf_putf: %s", __func__, ssh_err(r));
616}
617
Ben Lindstrombba81212001-06-25 05:01:22 +0000618static char *
Damien Miller0bc1bd82000-11-13 22:57:25 +1100619list_hostkey_types(void)
620{
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000621 struct sshbuf *b;
622 struct sshkey *key;
Damien Millerf58b58c2003-11-17 21:18:23 +1100623 char *ret;
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000624 u_int i;
Damien Miller0e3b8722002-01-22 23:26:38 +1100625
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000626 if ((b = sshbuf_new()) == NULL)
627 fatal("%s: sshbuf_new failed", __func__);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100628 for (i = 0; i < options.num_host_key_files; i++) {
Damien Miller0a80ca12010-02-27 07:55:05 +1100629 key = sensitive_data.host_keys[i];
djm@openbsd.orgce63c4b2015-02-16 22:30:03 +0000630 if (key == NULL)
Damien Miller85b45e02013-07-20 13:21:52 +1000631 key = sensitive_data.host_pubkeys[i];
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000632 if (key == NULL)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100633 continue;
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000634 switch (key->type) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100635 case KEY_RSA:
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000636 /* for RSA we also support SHA2 signatures */
637 append_hostkey_type(b, "rsa-sha2-512");
638 append_hostkey_type(b, "rsa-sha2-256");
639 /* FALLTHROUGH */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100640 case KEY_DSA:
Damien Millereb8b60e2010-08-31 22:41:14 +1000641 case KEY_ECDSA:
Damien Miller5be9d9e2013-12-07 11:24:01 +1100642 case KEY_ED25519:
djm@openbsd.org56584cc2019-12-15 18:57:30 +0000643 case KEY_ECDSA_SK:
644 case KEY_ED25519_SK:
markus@openbsd.org1b11ea72018-02-23 15:58:37 +0000645 case KEY_XMSS:
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000646 append_hostkey_type(b, sshkey_ssh_name(key));
Damien Miller0bc1bd82000-11-13 22:57:25 +1100647 break;
648 }
Damien Miller0a80ca12010-02-27 07:55:05 +1100649 /* If the private key has a cert peer, then list that too */
650 key = sensitive_data.host_certificates[i];
651 if (key == NULL)
652 continue;
653 switch (key->type) {
654 case KEY_RSA_CERT:
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000655 /* for RSA we also support SHA2 signatures */
656 append_hostkey_type(b,
657 "rsa-sha2-512-cert-v01@openssh.com");
658 append_hostkey_type(b,
659 "rsa-sha2-256-cert-v01@openssh.com");
660 /* FALLTHROUGH */
Damien Miller0a80ca12010-02-27 07:55:05 +1100661 case KEY_DSA_CERT:
Damien Millereb8b60e2010-08-31 22:41:14 +1000662 case KEY_ECDSA_CERT:
Damien Miller5be9d9e2013-12-07 11:24:01 +1100663 case KEY_ED25519_CERT:
djm@openbsd.org56584cc2019-12-15 18:57:30 +0000664 case KEY_ECDSA_SK_CERT:
665 case KEY_ED25519_SK_CERT:
markus@openbsd.org1b11ea72018-02-23 15:58:37 +0000666 case KEY_XMSS_CERT:
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000667 append_hostkey_type(b, sshkey_ssh_name(key));
Damien Miller0a80ca12010-02-27 07:55:05 +1100668 break;
669 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100670 }
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000671 if ((ret = sshbuf_dup_string(b)) == NULL)
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000672 fatal("%s: sshbuf_dup_string failed", __func__);
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000673 sshbuf_free(b);
674 debug("%s: %s", __func__, ret);
Damien Millerf58b58c2003-11-17 21:18:23 +1100675 return ret;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100676}
677
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000678static struct sshkey *
djm@openbsd.org5104db72015-01-26 06:10:03 +0000679get_hostkey_by_type(int type, int nid, int need_private, struct ssh *ssh)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100680{
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000681 u_int i;
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000682 struct sshkey *key;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000683
Damien Miller9f0f5c62001-12-21 14:45:46 +1100684 for (i = 0; i < options.num_host_key_files; i++) {
Damien Miller4e270b02010-04-16 15:56:21 +1000685 switch (type) {
Damien Miller4e270b02010-04-16 15:56:21 +1000686 case KEY_RSA_CERT:
687 case KEY_DSA_CERT:
Damien Millereb8b60e2010-08-31 22:41:14 +1000688 case KEY_ECDSA_CERT:
Damien Miller5be9d9e2013-12-07 11:24:01 +1100689 case KEY_ED25519_CERT:
djm@openbsd.org56584cc2019-12-15 18:57:30 +0000690 case KEY_ECDSA_SK_CERT:
691 case KEY_ED25519_SK_CERT:
markus@openbsd.org1b11ea72018-02-23 15:58:37 +0000692 case KEY_XMSS_CERT:
Damien Miller0a80ca12010-02-27 07:55:05 +1100693 key = sensitive_data.host_certificates[i];
Damien Miller4e270b02010-04-16 15:56:21 +1000694 break;
695 default:
Damien Miller0a80ca12010-02-27 07:55:05 +1100696 key = sensitive_data.host_keys[i];
Damien Miller85b45e02013-07-20 13:21:52 +1000697 if (key == NULL && !need_private)
698 key = sensitive_data.host_pubkeys[i];
Damien Miller4e270b02010-04-16 15:56:21 +1000699 break;
700 }
djm@openbsd.org56584cc2019-12-15 18:57:30 +0000701 if (key == NULL || key->type != type)
702 continue;
703 switch (type) {
704 case KEY_ECDSA:
705 case KEY_ECDSA_SK:
706 case KEY_ECDSA_CERT:
707 case KEY_ECDSA_SK_CERT:
708 if (key->ecdsa_nid != nid)
709 continue;
710 /* FALLTHROUGH */
711 default:
Damien Miller0a80ca12010-02-27 07:55:05 +1100712 return need_private ?
713 sensitive_data.host_keys[i] : key;
djm@openbsd.org56584cc2019-12-15 18:57:30 +0000714 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100715 }
716 return NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000717}
718
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000719struct sshkey *
djm@openbsd.org5104db72015-01-26 06:10:03 +0000720get_hostkey_public_by_type(int type, int nid, struct ssh *ssh)
Damien Miller0a80ca12010-02-27 07:55:05 +1100721{
djm@openbsd.org5104db72015-01-26 06:10:03 +0000722 return get_hostkey_by_type(type, nid, 0, ssh);
Damien Miller0a80ca12010-02-27 07:55:05 +1100723}
724
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000725struct sshkey *
djm@openbsd.org5104db72015-01-26 06:10:03 +0000726get_hostkey_private_by_type(int type, int nid, struct ssh *ssh)
Damien Miller0a80ca12010-02-27 07:55:05 +1100727{
djm@openbsd.org5104db72015-01-26 06:10:03 +0000728 return get_hostkey_by_type(type, nid, 1, ssh);
Damien Miller0a80ca12010-02-27 07:55:05 +1100729}
730
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000731struct sshkey *
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000732get_hostkey_by_index(int ind)
733{
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000734 if (ind < 0 || (u_int)ind >= options.num_host_key_files)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000735 return (NULL);
736 return (sensitive_data.host_keys[ind]);
737}
738
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000739struct sshkey *
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000740get_hostkey_public_by_index(int ind, struct ssh *ssh)
Damien Miller85b45e02013-07-20 13:21:52 +1000741{
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000742 if (ind < 0 || (u_int)ind >= options.num_host_key_files)
Damien Miller85b45e02013-07-20 13:21:52 +1000743 return (NULL);
744 return (sensitive_data.host_pubkeys[ind]);
745}
746
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000747int
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000748get_hostkey_index(struct sshkey *key, int compare, struct ssh *ssh)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000749{
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000750 u_int i;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000751
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000752 for (i = 0; i < options.num_host_key_files; i++) {
markus@openbsd.org5467fbc2018-07-11 18:53:29 +0000753 if (sshkey_is_cert(key)) {
djm@openbsd.org523463a2015-02-16 22:13:32 +0000754 if (key == sensitive_data.host_certificates[i] ||
755 (compare && sensitive_data.host_certificates[i] &&
756 sshkey_equal(key,
757 sensitive_data.host_certificates[i])))
Damien Miller0a80ca12010-02-27 07:55:05 +1100758 return (i);
759 } else {
djm@openbsd.org523463a2015-02-16 22:13:32 +0000760 if (key == sensitive_data.host_keys[i] ||
761 (compare && sensitive_data.host_keys[i] &&
762 sshkey_equal(key, sensitive_data.host_keys[i])))
Damien Miller0a80ca12010-02-27 07:55:05 +1100763 return (i);
djm@openbsd.org523463a2015-02-16 22:13:32 +0000764 if (key == sensitive_data.host_pubkeys[i] ||
765 (compare && sensitive_data.host_pubkeys[i] &&
766 sshkey_equal(key, sensitive_data.host_pubkeys[i])))
Damien Miller85b45e02013-07-20 13:21:52 +1000767 return (i);
Damien Miller0a80ca12010-02-27 07:55:05 +1100768 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000769 }
770 return (-1);
771}
772
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000773/* Inform the client of all hostkeys */
774static void
775notify_hostkeys(struct ssh *ssh)
776{
777 struct sshbuf *buf;
778 struct sshkey *key;
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000779 u_int i, nkeys;
780 int r;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000781 char *fp;
782
dtucker@openbsd.orgd8f391c2015-04-10 05:16:50 +0000783 /* Some clients cannot cope with the hostkeys message, skip those. */
djm@openbsd.org04c091f2019-01-19 21:43:56 +0000784 if (ssh->compat & SSH_BUG_HOSTKEYS)
dtucker@openbsd.orgd8f391c2015-04-10 05:16:50 +0000785 return;
786
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000787 if ((buf = sshbuf_new()) == NULL)
788 fatal("%s: sshbuf_new", __func__);
789 for (i = nkeys = 0; i < options.num_host_key_files; i++) {
790 key = get_hostkey_public_by_index(i, ssh);
791 if (key == NULL || key->type == KEY_UNSPEC ||
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000792 sshkey_is_cert(key))
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000793 continue;
794 fp = sshkey_fingerprint(key, options.fingerprint_hash,
795 SSH_FP_DEFAULT);
796 debug3("%s: key %d: %s %s", __func__, i,
797 sshkey_ssh_name(key), fp);
798 free(fp);
djm@openbsd.org523463a2015-02-16 22:13:32 +0000799 if (nkeys == 0) {
djm@openbsd.org6350e032019-01-19 21:42:30 +0000800 /*
801 * Start building the request when we find the
802 * first usable key.
803 */
804 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
805 (r = sshpkt_put_cstring(ssh, "hostkeys-00@openssh.com")) != 0 ||
806 (r = sshpkt_put_u8(ssh, 0)) != 0) /* want reply */
807 sshpkt_fatal(ssh, r, "%s: start request", __func__);
djm@openbsd.org523463a2015-02-16 22:13:32 +0000808 }
djm@openbsd.org6350e032019-01-19 21:42:30 +0000809 /* Append the key to the request */
djm@openbsd.org523463a2015-02-16 22:13:32 +0000810 sshbuf_reset(buf);
811 if ((r = sshkey_putb(key, buf)) != 0)
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000812 fatal("%s: couldn't put hostkey %d: %s",
813 __func__, i, ssh_err(r));
djm@openbsd.org6350e032019-01-19 21:42:30 +0000814 if ((r = sshpkt_put_stringb(ssh, buf)) != 0)
815 sshpkt_fatal(ssh, r, "%s: append key", __func__);
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000816 nkeys++;
817 }
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000818 debug3("%s: sent %u hostkeys", __func__, nkeys);
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000819 if (nkeys == 0)
820 fatal("%s: no hostkeys", __func__);
djm@openbsd.org6350e032019-01-19 21:42:30 +0000821 if ((r = sshpkt_send(ssh)) != 0)
822 sshpkt_fatal(ssh, r, "%s: send", __func__);
djm@openbsd.org523463a2015-02-16 22:13:32 +0000823 sshbuf_free(buf);
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000824}
825
Damien Miller942da032000-08-18 13:59:06 +1000826/*
827 * returns 1 if connection should be dropped, 0 otherwise.
828 * dropping starts at connection #max_startups_begin with a probability
829 * of (max_startups_rate/100). the probability increases linearly until
830 * all connections are dropped for startups > max_startups
831 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000832static int
Damien Miller942da032000-08-18 13:59:06 +1000833drop_connection(int startups)
834{
Darren Tucker178fa662004-11-05 20:09:09 +1100835 int p, r;
Damien Miller942da032000-08-18 13:59:06 +1000836
837 if (startups < options.max_startups_begin)
838 return 0;
839 if (startups >= options.max_startups)
840 return 1;
841 if (options.max_startups_rate == 100)
842 return 1;
843
844 p = 100 - options.max_startups_rate;
845 p *= startups - options.max_startups_begin;
Darren Tucker178fa662004-11-05 20:09:09 +1100846 p /= options.max_startups - options.max_startups_begin;
Damien Miller942da032000-08-18 13:59:06 +1000847 p += options.max_startups_rate;
Damien Miller354c48c2008-05-19 14:50:00 +1000848 r = arc4random_uniform(100);
Damien Miller942da032000-08-18 13:59:06 +1000849
Darren Tucker3269b132004-11-05 20:20:59 +1100850 debug("drop_connection: p %d, r %d", p, r);
Damien Miller942da032000-08-18 13:59:06 +1000851 return (r < p) ? 1 : 0;
852}
853
Ben Lindstromade03f62001-12-06 18:22:17 +0000854static void
855usage(void)
856{
Damien Miller0c889cd2004-03-22 09:36:00 +1100857 fprintf(stderr, "%s, %s\n",
Damien Miller1f0311c2014-05-15 14:24:09 +1000858 SSH_RELEASE,
859#ifdef WITH_OPENSSL
djm@openbsd.orga65784c2018-10-23 05:56:35 +0000860 OpenSSL_version(OPENSSL_VERSION)
Damien Miller1f0311c2014-05-15 14:24:09 +1000861#else
862 "without OpenSSL"
863#endif
864 );
Damien Millerb4087862004-03-22 09:35:21 +1100865 fprintf(stderr,
naddy@openbsd.orgc38ea632016-08-15 12:27:56 +0000866"usage: sshd [-46DdeiqTt] [-C connection_spec] [-c host_cert_file]\n"
Damien Miller03d4d7e2013-04-23 15:21:06 +1000867" [-E log_file] [-f config_file] [-g login_grace_time]\n"
naddy@openbsd.orgc38ea632016-08-15 12:27:56 +0000868" [-h host_key_file] [-o option] [-p port] [-u len]\n"
Damien Millerb4087862004-03-22 09:35:21 +1100869 );
Ben Lindstromade03f62001-12-06 18:22:17 +0000870 exit(1);
871}
872
Darren Tucker645ab752004-06-25 13:33:20 +1000873static void
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000874send_rexec_state(int fd, struct sshbuf *conf)
Darren Tucker645ab752004-06-25 13:33:20 +1000875{
djm@openbsd.orgc2bd7f72020-01-31 22:42:45 +0000876 struct sshbuf *m = NULL, *inc = NULL;
877 struct include_item *item = NULL;
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000878 int r;
Darren Tucker645ab752004-06-25 13:33:20 +1000879
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000880 debug3("%s: entering fd = %d config len %zu", __func__, fd,
881 sshbuf_len(conf));
Darren Tucker645ab752004-06-25 13:33:20 +1000882
djm@openbsd.orgc2bd7f72020-01-31 22:42:45 +0000883 if ((m = sshbuf_new()) == NULL || (inc = sshbuf_new()) == NULL)
884 fatal("%s: sshbuf_new failed", __func__);
885
886 /* pack includes into a string */
887 TAILQ_FOREACH(item, &includes, entry) {
888 if ((r = sshbuf_put_cstring(inc, item->selector)) != 0 ||
889 (r = sshbuf_put_cstring(inc, item->filename)) != 0 ||
890 (r = sshbuf_put_stringb(inc, item->contents)) != 0)
891 fatal("%s: buffer error: %s", __func__, ssh_err(r));
892 }
893
Darren Tucker645ab752004-06-25 13:33:20 +1000894 /*
895 * Protocol from reexec master to child:
896 * string configuration
djm@openbsd.orgc2bd7f72020-01-31 22:42:45 +0000897 * string included_files[] {
898 * string selector
899 * string filename
900 * string contents
901 * }
902 * string rng_seed (if required)
Darren Tucker645ab752004-06-25 13:33:20 +1000903 */
djm@openbsd.orgc2bd7f72020-01-31 22:42:45 +0000904 if ((r = sshbuf_put_stringb(m, conf)) != 0 ||
905 (r = sshbuf_put_stringb(m, inc)) != 0)
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000906 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller72ef7c12015-01-15 02:21:31 +1100907#if defined(WITH_OPENSSL) && !defined(OPENSSL_PRNG_ONLY)
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000908 rexec_send_rng_seed(m);
Darren Tuckerc6f82192005-09-27 22:46:32 +1000909#endif
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000910 if (ssh_msg_send(fd, 0, m) == -1)
Darren Tucker645ab752004-06-25 13:33:20 +1000911 fatal("%s: ssh_msg_send failed", __func__);
912
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000913 sshbuf_free(m);
djm@openbsd.orgc2bd7f72020-01-31 22:42:45 +0000914 sshbuf_free(inc);
Darren Tucker645ab752004-06-25 13:33:20 +1000915
916 debug3("%s: done", __func__);
917}
918
919static void
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +0000920recv_rexec_state(int fd, struct sshbuf *conf)
Darren Tucker645ab752004-06-25 13:33:20 +1000921{
djm@openbsd.orgc2bd7f72020-01-31 22:42:45 +0000922 struct sshbuf *m, *inc;
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +0000923 u_char *cp, ver;
924 size_t len;
925 int r;
djm@openbsd.orgc2bd7f72020-01-31 22:42:45 +0000926 struct include_item *item;
Darren Tucker645ab752004-06-25 13:33:20 +1000927
928 debug3("%s: entering fd = %d", __func__, fd);
929
djm@openbsd.orgc2bd7f72020-01-31 22:42:45 +0000930 if ((m = sshbuf_new()) == NULL || (inc = sshbuf_new()) == NULL)
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +0000931 fatal("%s: sshbuf_new failed", __func__);
932 if (ssh_msg_recv(fd, m) == -1)
Darren Tucker645ab752004-06-25 13:33:20 +1000933 fatal("%s: ssh_msg_recv failed", __func__);
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +0000934 if ((r = sshbuf_get_u8(m, &ver)) != 0)
935 fatal("%s: buffer error: %s", __func__, ssh_err(r));
936 if (ver != 0)
Darren Tucker645ab752004-06-25 13:33:20 +1000937 fatal("%s: rexec version mismatch", __func__);
djm@openbsd.orgc2bd7f72020-01-31 22:42:45 +0000938 if ((r = sshbuf_get_string(m, &cp, &len)) != 0 ||
939 (r = sshbuf_get_stringb(m, inc)) != 0)
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +0000940 fatal("%s: buffer error: %s", __func__, ssh_err(r));
djm@openbsd.orgc2bd7f72020-01-31 22:42:45 +0000941
Damien Miller72ef7c12015-01-15 02:21:31 +1100942#if defined(WITH_OPENSSL) && !defined(OPENSSL_PRNG_ONLY)
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +0000943 rexec_recv_rng_seed(m);
Darren Tuckerc6f82192005-09-27 22:46:32 +1000944#endif
945
djm@openbsd.orgc2bd7f72020-01-31 22:42:45 +0000946 if (conf != NULL && (r = sshbuf_put(conf, cp, len)))
947 fatal("%s: buffer error: %s", __func__, ssh_err(r));
948
949 while (sshbuf_len(inc) != 0) {
950 item = xcalloc(1, sizeof(*item));
951 if ((item->contents = sshbuf_new()) == NULL)
952 fatal("%s: sshbuf_new failed", __func__);
953 if ((r = sshbuf_get_cstring(inc, &item->selector, NULL)) != 0 ||
954 (r = sshbuf_get_cstring(inc, &item->filename, NULL)) != 0 ||
955 (r = sshbuf_get_stringb(inc, item->contents)) != 0)
956 fatal("%s: buffer error: %s", __func__, ssh_err(r));
957 TAILQ_INSERT_TAIL(&includes, item, entry);
958 }
959
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +0000960 free(cp);
961 sshbuf_free(m);
Darren Tucker645ab752004-06-25 13:33:20 +1000962
963 debug3("%s: done", __func__);
964}
965
Damien Millera1f68402006-08-19 00:31:39 +1000966/* Accept a connection from inetd */
967static void
968server_accept_inetd(int *sock_in, int *sock_out)
969{
970 int fd;
971
Damien Millera1f68402006-08-19 00:31:39 +1000972 if (rexeced_flag) {
973 close(REEXEC_CONFIG_PASS_FD);
974 *sock_in = *sock_out = dup(STDIN_FILENO);
Damien Millera1f68402006-08-19 00:31:39 +1000975 } else {
976 *sock_in = dup(STDIN_FILENO);
977 *sock_out = dup(STDOUT_FILENO);
978 }
979 /*
980 * We intentionally do not close the descriptors 0, 1, and 2
981 * as our code for setting the descriptors won't work if
982 * ttyfd happens to be one of those.
983 */
984 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
985 dup2(fd, STDIN_FILENO);
986 dup2(fd, STDOUT_FILENO);
Darren Tucker0cca17f2013-06-06 08:21:14 +1000987 if (!log_stderr)
988 dup2(fd, STDERR_FILENO);
989 if (fd > (log_stderr ? STDERR_FILENO : STDOUT_FILENO))
Damien Millera1f68402006-08-19 00:31:39 +1000990 close(fd);
991 }
992 debug("inetd sockets after dupping: %d, %d", *sock_in, *sock_out);
993}
994
995/*
996 * Listen for TCP connections
997 */
998static void
djm@openbsd.orgacf559e2017-10-25 00:15:35 +0000999listen_on_addrs(struct listenaddr *la)
Damien Millera1f68402006-08-19 00:31:39 +10001000{
djm@openbsd.orgacf559e2017-10-25 00:15:35 +00001001 int ret, listen_sock;
Damien Millera1f68402006-08-19 00:31:39 +10001002 struct addrinfo *ai;
1003 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
1004
djm@openbsd.orgacf559e2017-10-25 00:15:35 +00001005 for (ai = la->addrs; ai; ai = ai->ai_next) {
Damien Millera1f68402006-08-19 00:31:39 +10001006 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1007 continue;
1008 if (num_listen_socks >= MAX_LISTEN_SOCKS)
1009 fatal("Too many listen sockets. "
1010 "Enlarge MAX_LISTEN_SOCKS");
1011 if ((ret = getnameinfo(ai->ai_addr, ai->ai_addrlen,
1012 ntop, sizeof(ntop), strport, sizeof(strport),
1013 NI_NUMERICHOST|NI_NUMERICSERV)) != 0) {
1014 error("getnameinfo failed: %.100s",
Darren Tucker4abde772007-12-29 02:43:51 +11001015 ssh_gai_strerror(ret));
Damien Millera1f68402006-08-19 00:31:39 +10001016 continue;
1017 }
1018 /* Create socket for listening. */
Darren Tucker7bd98e72010-01-10 10:31:12 +11001019 listen_sock = socket(ai->ai_family, ai->ai_socktype,
1020 ai->ai_protocol);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001021 if (listen_sock == -1) {
Damien Millera1f68402006-08-19 00:31:39 +10001022 /* kernel may not support ipv6 */
1023 verbose("socket: %.100s", strerror(errno));
1024 continue;
1025 }
1026 if (set_nonblock(listen_sock) == -1) {
1027 close(listen_sock);
1028 continue;
1029 }
djm@openbsd.org8071a692017-02-24 03:16:34 +00001030 if (fcntl(listen_sock, F_SETFD, FD_CLOEXEC) == -1) {
1031 verbose("socket: CLOEXEC: %s", strerror(errno));
1032 close(listen_sock);
1033 continue;
1034 }
djm@openbsd.orgacf559e2017-10-25 00:15:35 +00001035 /* Socket options */
1036 set_reuseaddr(listen_sock);
1037 if (la->rdomain != NULL &&
1038 set_rdomain(listen_sock, la->rdomain) == -1) {
1039 close(listen_sock);
1040 continue;
1041 }
Damien Millera1f68402006-08-19 00:31:39 +10001042
Damien Miller49d2a282008-01-20 08:56:00 +11001043 /* Only communicate in IPv6 over AF_INET6 sockets. */
Damien Miller04ee0f82009-11-18 17:48:30 +11001044 if (ai->ai_family == AF_INET6)
1045 sock_set_v6only(listen_sock);
Damien Miller49d2a282008-01-20 08:56:00 +11001046
Damien Millera1f68402006-08-19 00:31:39 +10001047 debug("Bind to port %s on %s.", strport, ntop);
1048
1049 /* Bind the socket to the desired port. */
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001050 if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) == -1) {
Damien Millera1f68402006-08-19 00:31:39 +10001051 error("Bind to port %s on %s failed: %.200s.",
1052 strport, ntop, strerror(errno));
1053 close(listen_sock);
1054 continue;
1055 }
1056 listen_socks[num_listen_socks] = listen_sock;
1057 num_listen_socks++;
1058
1059 /* Start listening on the port. */
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001060 if (listen(listen_sock, SSH_LISTEN_BACKLOG) == -1)
Damien Millera1f68402006-08-19 00:31:39 +10001061 fatal("listen on [%s]:%s: %.100s",
1062 ntop, strport, strerror(errno));
djm@openbsd.orgacf559e2017-10-25 00:15:35 +00001063 logit("Server listening on %s port %s%s%s.",
1064 ntop, strport,
1065 la->rdomain == NULL ? "" : " rdomain ",
1066 la->rdomain == NULL ? "" : la->rdomain);
Damien Millera1f68402006-08-19 00:31:39 +10001067 }
djm@openbsd.orgacf559e2017-10-25 00:15:35 +00001068}
1069
1070static void
1071server_listen(void)
1072{
1073 u_int i;
1074
1075 for (i = 0; i < options.num_listen_addrs; i++) {
1076 listen_on_addrs(&options.listen_addrs[i]);
1077 freeaddrinfo(options.listen_addrs[i].addrs);
1078 free(options.listen_addrs[i].rdomain);
1079 memset(&options.listen_addrs[i], 0,
1080 sizeof(options.listen_addrs[i]));
1081 }
1082 free(options.listen_addrs);
1083 options.listen_addrs = NULL;
1084 options.num_listen_addrs = 0;
Damien Millera1f68402006-08-19 00:31:39 +10001085
1086 if (!num_listen_socks)
1087 fatal("Cannot bind any address.");
1088}
1089
1090/*
1091 * The main TCP accept loop. Note that, for the non-debug case, returns
1092 * from this function are in a forked subprocess.
1093 */
1094static void
1095server_accept_loop(int *sock_in, int *sock_out, int *newsock, int *config_s)
1096{
1097 fd_set *fdset;
1098 int i, j, ret, maxfd;
djm@openbsd.org70d38c32020-01-21 22:39:57 +00001099 int ostartups = -1, startups = 0, listening = 0, lameduck = 0;
Damien Millera1f68402006-08-19 00:31:39 +10001100 int startup_p[2] = { -1 , -1 };
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001101 char c = 0;
Damien Millera1f68402006-08-19 00:31:39 +10001102 struct sockaddr_storage from;
1103 socklen_t fromlen;
1104 pid_t pid;
Damien Miller045bda52013-09-14 09:44:37 +10001105 u_char rnd[256];
Damien Millera1f68402006-08-19 00:31:39 +10001106
1107 /* setup fd set for accept */
1108 fdset = NULL;
1109 maxfd = 0;
1110 for (i = 0; i < num_listen_socks; i++)
1111 if (listen_socks[i] > maxfd)
1112 maxfd = listen_socks[i];
1113 /* pipes connected to unauthenticated childs */
1114 startup_pipes = xcalloc(options.max_startups, sizeof(int));
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001115 startup_flags = xcalloc(options.max_startups, sizeof(int));
Damien Millera1f68402006-08-19 00:31:39 +10001116 for (i = 0; i < options.max_startups; i++)
1117 startup_pipes[i] = -1;
1118
1119 /*
1120 * Stay listening for connections until the system crashes or
1121 * the daemon is killed with a signal.
1122 */
1123 for (;;) {
djm@openbsd.org70d38c32020-01-21 22:39:57 +00001124 if (ostartups != startups) {
djm@openbsd.orga8c05c62020-01-24 23:56:01 +00001125 setproctitle("%s [listener] %d of %d-%d startups",
1126 listener_proctitle, startups,
1127 options.max_startups_begin, options.max_startups);
djm@openbsd.org70d38c32020-01-21 22:39:57 +00001128 ostartups = startups;
1129 }
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001130 if (received_sighup) {
1131 if (!lameduck) {
1132 debug("Received SIGHUP; waiting for children");
1133 close_listen_socks();
1134 lameduck = 1;
1135 }
1136 if (listening <= 0)
1137 sighup_restart();
1138 }
mmcc@openbsd.orgd59ce082015-12-10 17:08:40 +00001139 free(fdset);
deraadt@openbsd.orgce445b02015-08-20 22:32:42 +00001140 fdset = xcalloc(howmany(maxfd + 1, NFDBITS),
Damien Millera1f68402006-08-19 00:31:39 +10001141 sizeof(fd_mask));
1142
1143 for (i = 0; i < num_listen_socks; i++)
1144 FD_SET(listen_socks[i], fdset);
1145 for (i = 0; i < options.max_startups; i++)
1146 if (startup_pipes[i] != -1)
1147 FD_SET(startup_pipes[i], fdset);
1148
1149 /* Wait in select until there is a connection. */
1150 ret = select(maxfd+1, fdset, NULL, NULL, NULL);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001151 if (ret == -1 && errno != EINTR)
Damien Millera1f68402006-08-19 00:31:39 +10001152 error("select: %.100s", strerror(errno));
1153 if (received_sigterm) {
1154 logit("Received signal %d; terminating.",
1155 (int) received_sigterm);
1156 close_listen_socks();
djm@openbsd.org161cf412014-12-22 07:55:51 +00001157 if (options.pid_file != NULL)
1158 unlink(options.pid_file);
Damien Miller26b57ce2011-05-05 14:15:09 +10001159 exit(received_sigterm == SIGTERM ? 0 : 255);
Damien Millera1f68402006-08-19 00:31:39 +10001160 }
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001161 if (ret == -1)
Damien Millera1f68402006-08-19 00:31:39 +10001162 continue;
1163
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001164 for (i = 0; i < options.max_startups; i++) {
1165 if (startup_pipes[i] == -1 ||
1166 !FD_ISSET(startup_pipes[i], fdset))
1167 continue;
1168 switch (read(startup_pipes[i], &c, sizeof(c))) {
1169 case -1:
1170 if (errno == EINTR || errno == EAGAIN)
1171 continue;
1172 if (errno != EPIPE) {
1173 error("%s: startup pipe %d (fd=%d): "
1174 "read %s", __func__, i,
1175 startup_pipes[i], strerror(errno));
1176 }
1177 /* FALLTHROUGH */
1178 case 0:
1179 /* child exited or completed auth */
Damien Millera1f68402006-08-19 00:31:39 +10001180 close(startup_pipes[i]);
1181 startup_pipes[i] = -1;
1182 startups--;
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001183 if (startup_flags[i])
1184 listening--;
1185 break;
1186 case 1:
1187 /* child has finished preliminaries */
1188 if (startup_flags[i]) {
1189 listening--;
1190 startup_flags[i] = 0;
1191 }
1192 break;
Damien Millera1f68402006-08-19 00:31:39 +10001193 }
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001194 }
Damien Millera1f68402006-08-19 00:31:39 +10001195 for (i = 0; i < num_listen_socks; i++) {
1196 if (!FD_ISSET(listen_socks[i], fdset))
1197 continue;
1198 fromlen = sizeof(from);
1199 *newsock = accept(listen_socks[i],
1200 (struct sockaddr *)&from, &fromlen);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001201 if (*newsock == -1) {
Damien Miller37f1c082013-04-23 15:20:43 +10001202 if (errno != EINTR && errno != EWOULDBLOCK &&
1203 errno != ECONNABORTED && errno != EAGAIN)
Damien Millera116d132012-04-22 11:23:46 +10001204 error("accept: %.100s",
1205 strerror(errno));
1206 if (errno == EMFILE || errno == ENFILE)
1207 usleep(100 * 1000);
Damien Millera1f68402006-08-19 00:31:39 +10001208 continue;
1209 }
1210 if (unset_nonblock(*newsock) == -1) {
1211 close(*newsock);
1212 continue;
1213 }
1214 if (drop_connection(startups) == 1) {
djm@openbsd.org08a1e702016-12-09 03:04:29 +00001215 char *laddr = get_local_ipaddr(*newsock);
1216 char *raddr = get_peer_ipaddr(*newsock);
dtucker@openbsd.orgfc173ae2019-11-13 11:25:11 +00001217 char msg[] = "Exceeded MaxStartups\r\n";
djm@openbsd.org08a1e702016-12-09 03:04:29 +00001218
1219 verbose("drop connection #%d from [%s]:%d "
1220 "on [%s]:%d past MaxStartups", startups,
1221 raddr, get_peer_port(*newsock),
1222 laddr, get_local_port(*newsock));
1223 free(laddr);
1224 free(raddr);
dtucker@openbsd.orgfc173ae2019-11-13 11:25:11 +00001225 /* best-effort notification to client */
1226 (void)write(*newsock, msg, strlen(msg));
Damien Millera1f68402006-08-19 00:31:39 +10001227 close(*newsock);
1228 continue;
1229 }
1230 if (pipe(startup_p) == -1) {
1231 close(*newsock);
1232 continue;
1233 }
1234
1235 if (rexec_flag && socketpair(AF_UNIX,
1236 SOCK_STREAM, 0, config_s) == -1) {
1237 error("reexec socketpair: %s",
1238 strerror(errno));
1239 close(*newsock);
1240 close(startup_p[0]);
1241 close(startup_p[1]);
1242 continue;
1243 }
1244
1245 for (j = 0; j < options.max_startups; j++)
1246 if (startup_pipes[j] == -1) {
1247 startup_pipes[j] = startup_p[0];
1248 if (maxfd < startup_p[0])
1249 maxfd = startup_p[0];
1250 startups++;
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001251 startup_flags[j] = 1;
Damien Millera1f68402006-08-19 00:31:39 +10001252 break;
1253 }
1254
1255 /*
1256 * Got connection. Fork a child to handle it, unless
1257 * we are in debugging mode.
1258 */
1259 if (debug_flag) {
1260 /*
1261 * In debugging mode. Close the listening
1262 * socket, and start processing the
1263 * connection without forking.
1264 */
1265 debug("Server will not fork when running in debugging mode.");
1266 close_listen_socks();
1267 *sock_in = *newsock;
1268 *sock_out = *newsock;
1269 close(startup_p[0]);
1270 close(startup_p[1]);
1271 startup_pipe = -1;
1272 pid = getpid();
1273 if (rexec_flag) {
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +00001274 send_rexec_state(config_s[0], cfg);
Damien Millera1f68402006-08-19 00:31:39 +10001275 close(config_s[0]);
1276 }
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001277 return;
Damien Millera1f68402006-08-19 00:31:39 +10001278 }
1279
1280 /*
1281 * Normal production daemon. Fork, and have
1282 * the child process the connection. The
1283 * parent continues listening.
1284 */
Damien Miller1b06dc32006-08-31 03:24:41 +10001285 platform_pre_fork();
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001286 listening++;
Damien Millera1f68402006-08-19 00:31:39 +10001287 if ((pid = fork()) == 0) {
1288 /*
1289 * Child. Close the listening and
1290 * max_startup sockets. Start using
1291 * the accepted socket. Reinitialize
1292 * logging (since our pid has changed).
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001293 * We return from this function to handle
Damien Millera1f68402006-08-19 00:31:39 +10001294 * the connection.
1295 */
Damien Miller1b06dc32006-08-31 03:24:41 +10001296 platform_post_fork_child();
Damien Millera1f68402006-08-19 00:31:39 +10001297 startup_pipe = startup_p[1];
1298 close_startup_pipes();
1299 close_listen_socks();
1300 *sock_in = *newsock;
1301 *sock_out = *newsock;
1302 log_init(__progname,
1303 options.log_level,
1304 options.log_facility,
1305 log_stderr);
1306 if (rexec_flag)
1307 close(config_s[0]);
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001308 else {
1309 /*
1310 * Signal parent that the preliminaries
1311 * for this child are complete. For the
1312 * re-exec case, this happens after the
1313 * child has received the rexec state
1314 * from the server.
1315 */
1316 (void)atomicio(vwrite, startup_pipe,
1317 "\0", 1);
1318 }
1319 return;
Damien Millera1f68402006-08-19 00:31:39 +10001320 }
1321
1322 /* Parent. Stay in the loop. */
Damien Miller1b06dc32006-08-31 03:24:41 +10001323 platform_post_fork_parent(pid);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001324 if (pid == -1)
Damien Millera1f68402006-08-19 00:31:39 +10001325 error("fork: %.100s", strerror(errno));
1326 else
1327 debug("Forked child %ld.", (long)pid);
1328
1329 close(startup_p[1]);
1330
1331 if (rexec_flag) {
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +00001332 send_rexec_state(config_s[0], cfg);
Damien Millera1f68402006-08-19 00:31:39 +10001333 close(config_s[0]);
1334 close(config_s[1]);
1335 }
Damien Millera1f68402006-08-19 00:31:39 +10001336 close(*newsock);
1337
1338 /*
1339 * Ensure that our random state differs
1340 * from that of the child
1341 */
1342 arc4random_stir();
Damien Miller045bda52013-09-14 09:44:37 +10001343 arc4random_buf(rnd, sizeof(rnd));
Damien Miller72ef7c12015-01-15 02:21:31 +11001344#ifdef WITH_OPENSSL
Damien Miller045bda52013-09-14 09:44:37 +10001345 RAND_seed(rnd, sizeof(rnd));
Damien Miller07889c72015-11-14 18:44:49 +11001346 if ((RAND_bytes((u_char *)rnd, 1)) != 1)
1347 fatal("%s: RAND_bytes failed", __func__);
Damien Miller72ef7c12015-01-15 02:21:31 +11001348#endif
Damien Miller1d2c4562014-02-04 11:18:20 +11001349 explicit_bzero(rnd, sizeof(rnd));
Damien Millera1f68402006-08-19 00:31:39 +10001350 }
Damien Millera1f68402006-08-19 00:31:39 +10001351 }
1352}
1353
djm@openbsd.org95767262016-03-07 19:02:43 +00001354/*
1355 * If IP options are supported, make sure there are none (log and
1356 * return an error if any are found). Basically we are worried about
1357 * source routing; it can be used to pretend you are somebody
1358 * (ip-address) you are not. That itself may be "almost acceptable"
djm@openbsd.org001aa552018-04-10 00:10:49 +00001359 * under certain circumstances, but rhosts authentication is useless
djm@openbsd.org95767262016-03-07 19:02:43 +00001360 * if source routing is accepted. Notice also that if we just dropped
1361 * source routing here, the other side could use IP spoofing to do
1362 * rest of the interaction and could still bypass security. So we
1363 * exit here if we detect any IP options.
1364 */
1365static void
1366check_ip_options(struct ssh *ssh)
1367{
1368#ifdef IP_OPTIONS
1369 int sock_in = ssh_packet_get_connection_in(ssh);
1370 struct sockaddr_storage from;
djm@openbsd.org95767262016-03-07 19:02:43 +00001371 u_char opts[200];
djm@openbsd.orgdc664d12016-08-28 22:28:12 +00001372 socklen_t i, option_size = sizeof(opts), fromlen = sizeof(from);
djm@openbsd.org95767262016-03-07 19:02:43 +00001373 char text[sizeof(opts) * 3 + 1];
1374
1375 memset(&from, 0, sizeof(from));
1376 if (getpeername(sock_in, (struct sockaddr *)&from,
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001377 &fromlen) == -1)
djm@openbsd.org95767262016-03-07 19:02:43 +00001378 return;
1379 if (from.ss_family != AF_INET)
1380 return;
1381 /* XXX IPv6 options? */
1382
1383 if (getsockopt(sock_in, IPPROTO_IP, IP_OPTIONS, opts,
1384 &option_size) >= 0 && option_size != 0) {
1385 text[0] = '\0';
1386 for (i = 0; i < option_size; i++)
1387 snprintf(text + i*3, sizeof(text) - i*3,
1388 " %2.2x", opts[i]);
1389 fatal("Connection from %.100s port %d with IP opts: %.800s",
1390 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh), text);
1391 }
1392 return;
1393#endif /* IP_OPTIONS */
1394}
Damien Millera1f68402006-08-19 00:31:39 +10001395
djm@openbsd.org35eb33f2017-10-25 00:17:08 +00001396/* Set the routing domain for this process */
1397static void
1398set_process_rdomain(struct ssh *ssh, const char *name)
1399{
Damien Miller43c29bb2017-10-25 13:10:59 +11001400#if defined(HAVE_SYS_SET_PROCESS_RDOMAIN)
1401 if (name == NULL)
1402 return; /* default */
1403
1404 if (strcmp(name, "%D") == 0) {
1405 /* "expands" to routing domain of connection */
1406 if ((name = ssh_packet_rdomain_in(ssh)) == NULL)
1407 return;
1408 }
1409 /* NB. We don't pass 'ssh' to sys_set_process_rdomain() */
1410 return sys_set_process_rdomain(name);
1411#elif defined(__OpenBSD__)
djm@openbsd.org35eb33f2017-10-25 00:17:08 +00001412 int rtable, ortable = getrtable();
1413 const char *errstr;
1414
1415 if (name == NULL)
1416 return; /* default */
1417
1418 if (strcmp(name, "%D") == 0) {
1419 /* "expands" to routing domain of connection */
1420 if ((name = ssh_packet_rdomain_in(ssh)) == NULL)
1421 return;
1422 }
1423
1424 rtable = (int)strtonum(name, 0, 255, &errstr);
1425 if (errstr != NULL) /* Shouldn't happen */
1426 fatal("Invalid routing domain \"%s\": %s", name, errstr);
1427 if (rtable != ortable && setrtable(rtable) != 0)
1428 fatal("Unable to set routing domain %d: %s",
1429 rtable, strerror(errno));
1430 debug("%s: set routing domain %d (was %d)", __func__, rtable, ortable);
Damien Miller43c29bb2017-10-25 13:10:59 +11001431#else /* defined(__OpenBSD__) */
1432 fatal("Unable to set routing domain: not supported in this platform");
1433#endif
djm@openbsd.org35eb33f2017-10-25 00:17:08 +00001434}
1435
dtucker@openbsd.orge9d910b2018-04-13 03:57:26 +00001436static void
1437accumulate_host_timing_secret(struct sshbuf *server_cfg,
djm@openbsd.org4f7a56d2019-06-21 04:21:04 +00001438 struct sshkey *key)
dtucker@openbsd.orge9d910b2018-04-13 03:57:26 +00001439{
1440 static struct ssh_digest_ctx *ctx;
1441 u_char *hash;
1442 size_t len;
1443 struct sshbuf *buf;
1444 int r;
1445
1446 if (ctx == NULL && (ctx = ssh_digest_start(SSH_DIGEST_SHA512)) == NULL)
1447 fatal("%s: ssh_digest_start", __func__);
1448 if (key == NULL) { /* finalize */
1449 /* add server config in case we are using agent for host keys */
1450 if (ssh_digest_update(ctx, sshbuf_ptr(server_cfg),
1451 sshbuf_len(server_cfg)) != 0)
1452 fatal("%s: ssh_digest_update", __func__);
1453 len = ssh_digest_bytes(SSH_DIGEST_SHA512);
1454 hash = xmalloc(len);
1455 if (ssh_digest_final(ctx, hash, len) != 0)
1456 fatal("%s: ssh_digest_final", __func__);
1457 options.timing_secret = PEEK_U64(hash);
1458 freezero(hash, len);
1459 ssh_digest_free(ctx);
1460 ctx = NULL;
1461 return;
1462 }
1463 if ((buf = sshbuf_new()) == NULL)
1464 fatal("%s could not allocate buffer", __func__);
1465 if ((r = sshkey_private_serialize(key, buf)) != 0)
1466 fatal("sshkey_private_serialize: %s", ssh_err(r));
1467 if (ssh_digest_update(ctx, sshbuf_ptr(buf), sshbuf_len(buf)) != 0)
1468 fatal("%s: ssh_digest_update", __func__);
1469 sshbuf_reset(buf);
1470 sshbuf_free(buf);
1471}
1472
djm@openbsd.orga8c05c62020-01-24 23:56:01 +00001473static char *
1474prepare_proctitle(int ac, char **av)
1475{
1476 char *ret = NULL;
1477 int i;
1478
1479 for (i = 0; i < ac; i++)
1480 xextendf(&ret, " ", "%s", av[i]);
1481 return ret;
1482}
1483
Damien Miller95def091999-11-25 00:26:21 +11001484/*
1485 * Main program for the daemon.
1486 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001487int
1488main(int ac, char **av)
1489{
djm@openbsd.org95767262016-03-07 19:02:43 +00001490 struct ssh *ssh = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001491 extern char *optarg;
1492 extern int optind;
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001493 int r, opt, on = 1, already_daemon, remote_port;
Damien Miller386c6a22004-06-30 22:40:20 +10001494 int sock_in = -1, sock_out = -1, newsock = -1;
djm@openbsd.org68af80e2017-10-25 00:19:47 +00001495 const char *remote_ip, *rdomain;
dtucker@openbsd.org15fdfc92015-04-15 23:23:25 +00001496 char *fp, *line, *laddr, *logfile = NULL;
Damien Millera1f68402006-08-19 00:31:39 +10001497 int config_s[2] = { -1 , -1 };
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001498 u_int i, j;
Damien Millerb61f3fc2008-07-11 17:36:48 +10001499 u_int64_t ibytes, obytes;
Damien Miller6ca16c62008-06-16 07:50:58 +10001500 mode_t new_umask;
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001501 struct sshkey *key;
1502 struct sshkey *pubkey;
Damien Miller85b45e02013-07-20 13:21:52 +10001503 int keytype;
Darren Tucker3e33cec2003-10-02 16:12:36 +10001504 Authctxt *authctxt;
dtucker@openbsd.org@openbsd.org0208a482017-11-03 03:18:53 +00001505 struct connection_info *connection_info = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001506
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00001507#ifdef HAVE_SECUREWARE
1508 (void)set_auth_parameters(ac, av);
1509#endif
Damien Miller59d3d5b2003-08-22 09:34:41 +10001510 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10001511
Damien Millera8ed44b2003-01-10 09:53:12 +11001512 /* Save argv. Duplicate so setproctitle emulation doesn't clobber it */
Damien Millerb8c656e2000-06-28 15:22:41 +10001513 saved_argc = ac;
Darren Tucker17c5d032004-06-25 14:22:23 +10001514 rexec_argc = ac;
Darren Tuckerd8093e42006-05-04 16:24:34 +10001515 saved_argv = xcalloc(ac + 1, sizeof(*saved_argv));
Damien Millere3fa20e2017-10-23 16:25:24 +11001516 for (i = 0; (int)i < ac; i++)
Damien Millera8ed44b2003-01-10 09:53:12 +11001517 saved_argv[i] = xstrdup(av[i]);
Damien Miller04cb5362003-05-15 21:29:10 +10001518 saved_argv[i] = NULL;
Damien Millera8ed44b2003-01-10 09:53:12 +11001519
1520#ifndef HAVE_SETPROCTITLE
1521 /* Prepare for later setproctitle emulation */
1522 compat_init_setproctitle(ac, av);
Damien Millerf2e3e9d2003-06-02 12:15:54 +10001523 av = saved_argv;
Damien Millera8ed44b2003-01-10 09:53:12 +11001524#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001525
Damien Millerbfba3542004-03-22 09:29:57 +11001526 if (geteuid() == 0 && setgroups(0, NULL) == -1)
1527 debug("setgroups(): %.200s", strerror(errno));
1528
Darren Tuckerce321d82005-10-03 18:11:24 +10001529 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1530 sanitise_stdfd();
1531
Damien Miller42c5ec42018-11-23 10:40:06 +11001532 seed_rng();
1533
Damien Miller95def091999-11-25 00:26:21 +11001534 /* Initialize configuration options to their default values. */
1535 initialize_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001536
Damien Miller95def091999-11-25 00:26:21 +11001537 /* Parse command-line arguments. */
djm@openbsd.org3e91b4e2015-05-24 23:39:16 +00001538 while ((opt = getopt(ac, av,
1539 "C:E:b:c:f:g:h:k:o:p:u:46DQRTdeiqrt")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +11001540 switch (opt) {
Damien Miller34132e52000-01-14 15:45:46 +11001541 case '4':
Darren Tucker0f383232005-01-20 10:57:56 +11001542 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +11001543 break;
1544 case '6':
Darren Tucker0f383232005-01-20 10:57:56 +11001545 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +11001546 break;
Damien Miller95def091999-11-25 00:26:21 +11001547 case 'f':
1548 config_file_name = optarg;
1549 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11001550 case 'c':
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001551 servconf_add_hostcert("[command-line]", 0,
1552 &options, optarg);
Damien Miller0a80ca12010-02-27 07:55:05 +11001553 break;
Damien Miller95def091999-11-25 00:26:21 +11001554 case 'd':
Darren Tuckere98dfa32003-07-19 19:54:31 +10001555 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +11001556 debug_flag = 1;
1557 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +10001558 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3)
Damien Millere4340be2000-09-16 13:29:08 +11001559 options.log_level++;
Damien Miller95def091999-11-25 00:26:21 +11001560 break;
Ben Lindstromc72745a2000-12-02 19:03:54 +00001561 case 'D':
1562 no_daemon_flag = 1;
1563 break;
Damien Miller03d4d7e2013-04-23 15:21:06 +10001564 case 'E':
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +00001565 logfile = optarg;
Damien Miller03d4d7e2013-04-23 15:21:06 +10001566 /* FALLTHROUGH */
Ben Lindstrom9fce9f02001-04-11 23:10:09 +00001567 case 'e':
1568 log_stderr = 1;
1569 break;
Damien Miller95def091999-11-25 00:26:21 +11001570 case 'i':
1571 inetd_flag = 1;
1572 break;
Darren Tucker645ab752004-06-25 13:33:20 +10001573 case 'r':
1574 rexec_flag = 0;
1575 break;
1576 case 'R':
1577 rexeced_flag = 1;
1578 inetd_flag = 1;
1579 break;
Damien Miller95def091999-11-25 00:26:21 +11001580 case 'Q':
Ben Lindstromd5390202001-01-29 08:07:43 +00001581 /* ignored */
Damien Miller95def091999-11-25 00:26:21 +11001582 break;
1583 case 'q':
1584 options.log_level = SYSLOG_LEVEL_QUIET;
1585 break;
1586 case 'b':
naddy@openbsd.orgc38ea632016-08-15 12:27:56 +00001587 /* protocol 1, ignored */
Damien Miller95def091999-11-25 00:26:21 +11001588 break;
1589 case 'p':
Damien Miller34132e52000-01-14 15:45:46 +11001590 options.ports_from_cmdline = 1;
Damien Millere4340be2000-09-16 13:29:08 +11001591 if (options.num_ports >= MAX_PORTS) {
1592 fprintf(stderr, "too many ports.\n");
1593 exit(1);
1594 }
Ben Lindstrom19066a12001-04-12 23:39:26 +00001595 options.ports[options.num_ports++] = a2port(optarg);
Damien Miller3dc71ad2009-01-28 16:31:22 +11001596 if (options.ports[options.num_ports-1] <= 0) {
Ben Lindstrom19066a12001-04-12 23:39:26 +00001597 fprintf(stderr, "Bad port number.\n");
1598 exit(1);
1599 }
Damien Miller95def091999-11-25 00:26:21 +11001600 break;
1601 case 'g':
Ben Lindstrom1bda4c82001-06-05 19:59:08 +00001602 if ((options.login_grace_time = convtime(optarg)) == -1) {
1603 fprintf(stderr, "Invalid login grace time.\n");
1604 exit(1);
1605 }
Damien Miller95def091999-11-25 00:26:21 +11001606 break;
1607 case 'k':
naddy@openbsd.orgc38ea632016-08-15 12:27:56 +00001608 /* protocol 1, ignored */
Damien Miller95def091999-11-25 00:26:21 +11001609 break;
1610 case 'h':
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001611 servconf_add_hostkey("[command-line]", 0,
djm@openbsd.org928f1232018-11-19 04:12:32 +00001612 &options, optarg, 1);
Damien Miller95def091999-11-25 00:26:21 +11001613 break;
Ben Lindstrom794325a2001-08-06 21:09:07 +00001614 case 't':
1615 test_flag = 1;
1616 break;
Darren Tuckere7140f22008-06-10 23:01:51 +10001617 case 'T':
1618 test_flag = 2;
1619 break;
1620 case 'C':
djm@openbsd.org172a5922019-01-19 21:37:48 +00001621 connection_info = get_connection_info(ssh, 0, 0);
Darren Tuckerfbcf8272012-05-19 19:37:01 +10001622 if (parse_server_match_testspec(connection_info,
1623 optarg) == -1)
1624 exit(1);
Darren Tuckere7140f22008-06-10 23:01:51 +10001625 break;
Damien Miller942da032000-08-18 13:59:06 +10001626 case 'u':
deraadt@openbsd.org087266e2015-01-20 23:14:00 +00001627 utmp_len = (u_int)strtonum(optarg, 0, HOST_NAME_MAX+1+1, NULL);
1628 if (utmp_len > HOST_NAME_MAX+1) {
Ben Lindstrom41daec72002-07-23 21:15:13 +00001629 fprintf(stderr, "Invalid utmp length.\n");
1630 exit(1);
1631 }
Damien Miller942da032000-08-18 13:59:06 +10001632 break;
Ben Lindstromade03f62001-12-06 18:22:17 +00001633 case 'o':
Damien Millerb9997192003-12-17 16:29:22 +11001634 line = xstrdup(optarg);
1635 if (process_server_config_line(&options, line,
djm@openbsd.orgc2bd7f72020-01-31 22:42:45 +00001636 "command-line", 0, NULL, NULL, &includes) != 0)
Damien Miller9f0f5c62001-12-21 14:45:46 +11001637 exit(1);
Darren Tuckera627d422013-06-02 07:31:17 +10001638 free(line);
Ben Lindstromade03f62001-12-06 18:22:17 +00001639 break;
Damien Miller95def091999-11-25 00:26:21 +11001640 case '?':
1641 default:
Ben Lindstromade03f62001-12-06 18:22:17 +00001642 usage();
1643 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001644 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001645 }
Darren Tucker645ab752004-06-25 13:33:20 +10001646 if (rexeced_flag || inetd_flag)
1647 rexec_flag = 0;
djm@openbsd.org2a358622018-11-16 03:26:01 +00001648 if (!test_flag && rexec_flag && !path_absolute(av[0]))
Darren Tucker645ab752004-06-25 13:33:20 +10001649 fatal("sshd re-exec requires execution with an absolute path");
1650 if (rexeced_flag)
Damien Miller035a5b42004-06-26 08:16:31 +10001651 closefrom(REEXEC_MIN_FREE_FD);
1652 else
1653 closefrom(REEXEC_DEVCRYPTO_RESERVED_FD);
Darren Tucker645ab752004-06-25 13:33:20 +10001654
Damien Miller03d4d7e2013-04-23 15:21:06 +10001655 /* If requested, redirect the logs to the specified logfile. */
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +00001656 if (logfile != NULL)
Damien Miller03d4d7e2013-04-23 15:21:06 +10001657 log_redirect_stderr_to(logfile);
Damien Miller34132e52000-01-14 15:45:46 +11001658 /*
1659 * Force logging to stderr until we have loaded the private host
1660 * key (unless started from inetd)
1661 */
Kevin Stevesec84dc12000-12-13 17:45:15 +00001662 log_init(__progname,
Damien Miller5aa5d782002-02-08 22:01:54 +11001663 options.log_level == SYSLOG_LEVEL_NOT_SET ?
1664 SYSLOG_LEVEL_INFO : options.log_level,
1665 options.log_facility == SYSLOG_FACILITY_NOT_SET ?
1666 SYSLOG_FACILITY_AUTH : options.log_facility,
djm@openbsd.org245399d2020-01-31 23:11:25 +00001667 log_stderr || !inetd_flag || debug_flag);
Damien Miller34132e52000-01-14 15:45:46 +11001668
Darren Tucker86c093d2004-03-08 22:59:03 +11001669 /*
1670 * Unset KRB5CCNAME, otherwise the user's session may inherit it from
1671 * root's environment
Damien Miller94cf4c82005-07-17 17:04:47 +10001672 */
Darren Tucker9dc6c7d2005-02-02 18:30:33 +11001673 if (getenv("KRB5CCNAME") != NULL)
Tim Ricee3609c92012-02-14 10:03:30 -08001674 (void) unsetenv("KRB5CCNAME");
Darren Tucker9dc6c7d2005-02-02 18:30:33 +11001675
Darren Tucker645ab752004-06-25 13:33:20 +10001676 sensitive_data.have_ssh2_key = 0;
1677
Darren Tuckere7140f22008-06-10 23:01:51 +10001678 /*
dtucker@openbsd.org@openbsd.org0208a482017-11-03 03:18:53 +00001679 * If we're not doing an extended test do not silently ignore connection
1680 * test params.
Darren Tuckere7140f22008-06-10 23:01:51 +10001681 */
dtucker@openbsd.org@openbsd.org0208a482017-11-03 03:18:53 +00001682 if (test_flag < 2 && connection_info != NULL)
Darren Tuckere7140f22008-06-10 23:01:51 +10001683 fatal("Config test connection parameter (-C) provided without "
1684 "test mode (-T)");
1685
Darren Tucker645ab752004-06-25 13:33:20 +10001686 /* Fetch our configuration */
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +00001687 if ((cfg = sshbuf_new()) == NULL)
1688 fatal("%s: sshbuf_new failed", __func__);
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001689 if (rexeced_flag) {
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +00001690 recv_rexec_state(REEXEC_CONFIG_PASS_FD, cfg);
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001691 if (!debug_flag) {
1692 startup_pipe = dup(REEXEC_STARTUP_PIPE_FD);
1693 close(REEXEC_STARTUP_PIPE_FD);
1694 /*
1695 * Signal parent that this child is at a point where
1696 * they can go away if they have a SIGHUP pending.
1697 */
1698 (void)atomicio(vwrite, startup_pipe, "\0", 1);
1699 }
djm@openbsd.orgd4f4cdd2020-01-31 23:13:04 +00001700 } else if (strcasecmp(config_file_name, "none") != 0)
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +00001701 load_server_config(config_file_name, cfg);
Darren Tucker645ab752004-06-25 13:33:20 +10001702
Darren Tucker45150472006-07-12 22:34:17 +10001703 parse_server_config(&options, rexeced_flag ? "rexec" : config_file_name,
djm@openbsd.orgc2bd7f72020-01-31 22:42:45 +00001704 cfg, &includes, NULL);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001705
Damien Miller95def091999-11-25 00:26:21 +11001706 /* Fill in default values for those options not explicitly set. */
1707 fill_default_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001708
Darren Tucker97b1bb52007-03-21 20:38:53 +11001709 /* challenge-response is implemented via keyboard interactive */
1710 if (options.challenge_response_authentication)
1711 options.kbd_interactive_authentication = 1;
1712
Damien Millerd0d10992012-11-04 22:23:14 +11001713 /* Check that options are sensible */
1714 if (options.authorized_keys_command_user == NULL &&
1715 (options.authorized_keys_command != NULL &&
1716 strcasecmp(options.authorized_keys_command, "none") != 0))
1717 fatal("AuthorizedKeysCommand set without "
1718 "AuthorizedKeysCommandUser");
djm@openbsd.orgbcc50d82015-05-21 06:43:30 +00001719 if (options.authorized_principals_command_user == NULL &&
1720 (options.authorized_principals_command != NULL &&
1721 strcasecmp(options.authorized_principals_command, "none") != 0))
1722 fatal("AuthorizedPrincipalsCommand set without "
1723 "AuthorizedPrincipalsCommandUser");
Damien Millerd0d10992012-11-04 22:23:14 +11001724
Damien Millera6e3f012012-11-04 23:21:40 +11001725 /*
1726 * Check whether there is any path through configured auth methods.
1727 * Unfortunately it is not possible to verify this generally before
1728 * daemonisation in the presence of Match block, but this catches
1729 * and warns for trivial misconfigurations that could break login.
1730 */
1731 if (options.num_auth_methods != 0) {
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001732 for (i = 0; i < options.num_auth_methods; i++) {
1733 if (auth2_methods_valid(options.auth_methods[i],
Damien Millera6e3f012012-11-04 23:21:40 +11001734 1) == 0)
1735 break;
1736 }
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001737 if (i >= options.num_auth_methods)
Damien Millera6e3f012012-11-04 23:21:40 +11001738 fatal("AuthenticationMethods cannot be satisfied by "
1739 "enabled authentication methods");
1740 }
1741
Damien Miller95def091999-11-25 00:26:21 +11001742 /* Check that there are no remaining arguments. */
1743 if (optind < ac) {
1744 fprintf(stderr, "Extra argument %s.\n", av[optind]);
1745 exit(1);
1746 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001747
Damien Miller22e8a1e2013-02-12 11:04:48 +11001748 debug("sshd version %s, %s", SSH_VERSION,
Damien Miller1f0311c2014-05-15 14:24:09 +10001749#ifdef WITH_OPENSSL
djm@openbsd.orga65784c2018-10-23 05:56:35 +00001750 OpenSSL_version(OPENSSL_VERSION)
Damien Miller1f0311c2014-05-15 14:24:09 +10001751#else
1752 "without OpenSSL"
1753#endif
1754 );
Damien Miller2ccf6611999-11-15 15:25:10 +11001755
Darren Tuckerdf0e4382006-11-07 11:28:40 +11001756 /* Store privilege separation user for later use if required. */
Darren Tuckerd13281f2017-03-29 12:39:39 +11001757 privsep_chroot = use_privsep && (getuid() == 0 || geteuid() == 0);
Darren Tuckerdf0e4382006-11-07 11:28:40 +11001758 if ((privsep_pw = getpwnam(SSH_PRIVSEP_USER)) == NULL) {
Darren Tuckerd13281f2017-03-29 12:39:39 +11001759 if (privsep_chroot || options.kerberos_authentication)
Darren Tuckerdf0e4382006-11-07 11:28:40 +11001760 fatal("Privilege separation user %s does not exist",
1761 SSH_PRIVSEP_USER);
1762 } else {
Darren Tuckerdf0e4382006-11-07 11:28:40 +11001763 privsep_pw = pwcopy(privsep_pw);
djm@openbsd.orgd6364f62018-01-23 05:01:15 +00001764 freezero(privsep_pw->pw_passwd, strlen(privsep_pw->pw_passwd));
Darren Tuckerdf0e4382006-11-07 11:28:40 +11001765 privsep_pw->pw_passwd = xstrdup("*");
1766 }
Damien Miller6433df02006-09-07 10:36:43 +10001767 endpwent();
1768
Damien Miller85b45e02013-07-20 13:21:52 +10001769 /* load host keys */
Damien Miller07d86be2006-03-26 14:19:21 +11001770 sensitive_data.host_keys = xcalloc(options.num_host_key_files,
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001771 sizeof(struct sshkey *));
Damien Miller85b45e02013-07-20 13:21:52 +10001772 sensitive_data.host_pubkeys = xcalloc(options.num_host_key_files,
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001773 sizeof(struct sshkey *));
Damien Miller85b45e02013-07-20 13:21:52 +10001774
1775 if (options.host_key_agent) {
1776 if (strcmp(options.host_key_agent, SSH_AUTHSOCKET_ENV_NAME))
1777 setenv(SSH_AUTHSOCKET_ENV_NAME,
1778 options.host_key_agent, 1);
djm@openbsd.org83f8ffa2015-01-17 18:53:34 +00001779 if ((r = ssh_get_authentication_socket(NULL)) == 0)
1780 have_agent = 1;
1781 else
1782 error("Could not connect to agent \"%s\": %s",
1783 options.host_key_agent, ssh_err(r));
Damien Miller85b45e02013-07-20 13:21:52 +10001784 }
Damien Millereba71ba2000-04-29 23:57:08 +10001785
Damien Miller9f0f5c62001-12-21 14:45:46 +11001786 for (i = 0; i < options.num_host_key_files; i++) {
djm@openbsd.org928f1232018-11-19 04:12:32 +00001787 int ll = options.host_key_file_userprovided[i] ?
1788 SYSLOG_LEVEL_ERROR : SYSLOG_LEVEL_DEBUG1;
1789
djm@openbsd.org161cf412014-12-22 07:55:51 +00001790 if (options.host_key_files[i] == NULL)
1791 continue;
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001792 if ((r = sshkey_load_private(options.host_key_files[i], "",
1793 &key, NULL)) != 0 && r != SSH_ERR_SYSTEM_ERROR)
djm@openbsd.org928f1232018-11-19 04:12:32 +00001794 do_log2(ll, "Unable to load host key \"%s\": %s",
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001795 options.host_key_files[i], ssh_err(r));
djm@openbsd.org56584cc2019-12-15 18:57:30 +00001796 if (sshkey_is_sk(key) &&
1797 key->sk_flags & SSH_SK_USER_PRESENCE_REQD) {
1798 debug("host key %s requires user presence, ignoring",
1799 options.host_key_files[i]);
1800 key->sk_flags &= ~SSH_SK_USER_PRESENCE_REQD;
1801 }
1802 if (r == 0 && key != NULL &&
1803 (r = sshkey_shield_private(key)) != 0) {
djm@openbsd.org4f7a56d2019-06-21 04:21:04 +00001804 do_log2(ll, "Unable to shield host key \"%s\": %s",
1805 options.host_key_files[i], ssh_err(r));
1806 sshkey_free(key);
1807 key = NULL;
1808 }
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001809 if ((r = sshkey_load_public(options.host_key_files[i],
1810 &pubkey, NULL)) != 0 && r != SSH_ERR_SYSTEM_ERROR)
djm@openbsd.org928f1232018-11-19 04:12:32 +00001811 do_log2(ll, "Unable to load host key \"%s\": %s",
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001812 options.host_key_files[i], ssh_err(r));
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00001813 if (pubkey == NULL && key != NULL)
djm@openbsd.org482d23b2018-09-13 02:08:33 +00001814 if ((r = sshkey_from_private(key, &pubkey)) != 0)
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001815 fatal("Could not demote key: \"%s\": %s",
1816 options.host_key_files[i], ssh_err(r));
Ben Lindstromd0fca422001-03-26 13:44:06 +00001817 sensitive_data.host_keys[i] = key;
Damien Miller85b45e02013-07-20 13:21:52 +10001818 sensitive_data.host_pubkeys[i] = pubkey;
1819
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +00001820 if (key == NULL && pubkey != NULL && have_agent) {
djm@openbsd.orgce63c4b2015-02-16 22:30:03 +00001821 debug("will rely on agent for hostkey %s",
1822 options.host_key_files[i]);
Damien Miller85b45e02013-07-20 13:21:52 +10001823 keytype = pubkey->type;
1824 } else if (key != NULL) {
1825 keytype = key->type;
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +00001826 accumulate_host_timing_secret(cfg, key);
Damien Miller85b45e02013-07-20 13:21:52 +10001827 } else {
djm@openbsd.org928f1232018-11-19 04:12:32 +00001828 do_log2(ll, "Unable to load host key: %s",
Ben Lindstrom15f33862001-04-16 02:00:02 +00001829 options.host_key_files[i]);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001830 sensitive_data.host_keys[i] = NULL;
Damien Miller85b45e02013-07-20 13:21:52 +10001831 sensitive_data.host_pubkeys[i] = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001832 continue;
1833 }
Damien Miller85b45e02013-07-20 13:21:52 +10001834
1835 switch (keytype) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001836 case KEY_RSA:
1837 case KEY_DSA:
Damien Millereb8b60e2010-08-31 22:41:14 +10001838 case KEY_ECDSA:
Damien Miller5be9d9e2013-12-07 11:24:01 +11001839 case KEY_ED25519:
djm@openbsd.org56584cc2019-12-15 18:57:30 +00001840 case KEY_ECDSA_SK:
1841 case KEY_ED25519_SK:
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00001842 case KEY_XMSS:
djm@openbsd.org6049a542015-01-31 20:30:05 +00001843 if (have_agent || key != NULL)
1844 sensitive_data.have_ssh2_key = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001845 break;
1846 }
djm@openbsd.org6049a542015-01-31 20:30:05 +00001847 if ((fp = sshkey_fingerprint(pubkey, options.fingerprint_hash,
1848 SSH_FP_DEFAULT)) == NULL)
1849 fatal("sshkey_fingerprint failed");
1850 debug("%s host key #%d: %s %s",
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +00001851 key ? "private" : "agent", i, sshkey_ssh_name(pubkey), fp);
djm@openbsd.org6049a542015-01-31 20:30:05 +00001852 free(fp);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001853 }
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +00001854 accumulate_host_timing_secret(cfg, NULL);
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +00001855 if (!sensitive_data.have_ssh2_key) {
Damien Miller996acd22003-04-09 20:59:48 +10001856 logit("sshd: no hostkeys available -- exiting.");
Damien Miller95def091999-11-25 00:26:21 +11001857 exit(1);
1858 }
Damien Miller95def091999-11-25 00:26:21 +11001859
Damien Miller0a80ca12010-02-27 07:55:05 +11001860 /*
1861 * Load certificates. They are stored in an array at identical
1862 * indices to the public keys that they relate to.
1863 */
1864 sensitive_data.host_certificates = xcalloc(options.num_host_key_files,
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001865 sizeof(struct sshkey *));
Damien Miller0a80ca12010-02-27 07:55:05 +11001866 for (i = 0; i < options.num_host_key_files; i++)
1867 sensitive_data.host_certificates[i] = NULL;
1868
1869 for (i = 0; i < options.num_host_cert_files; i++) {
djm@openbsd.org161cf412014-12-22 07:55:51 +00001870 if (options.host_cert_files[i] == NULL)
1871 continue;
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001872 if ((r = sshkey_load_public(options.host_cert_files[i],
1873 &key, NULL)) != 0) {
1874 error("Could not load host certificate \"%s\": %s",
1875 options.host_cert_files[i], ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001876 continue;
1877 }
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001878 if (!sshkey_is_cert(key)) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001879 error("Certificate file is not a certificate: %s",
1880 options.host_cert_files[i]);
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001881 sshkey_free(key);
Damien Miller0a80ca12010-02-27 07:55:05 +11001882 continue;
1883 }
1884 /* Find matching private key */
1885 for (j = 0; j < options.num_host_key_files; j++) {
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001886 if (sshkey_equal_public(key,
Damien Miller0a80ca12010-02-27 07:55:05 +11001887 sensitive_data.host_keys[j])) {
1888 sensitive_data.host_certificates[j] = key;
1889 break;
1890 }
1891 }
1892 if (j >= options.num_host_key_files) {
1893 error("No matching private key for certificate: %s",
1894 options.host_cert_files[i]);
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001895 sshkey_free(key);
Damien Miller0a80ca12010-02-27 07:55:05 +11001896 continue;
1897 }
1898 sensitive_data.host_certificates[j] = key;
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001899 debug("host certificate: #%u type %d %s", j, key->type,
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001900 sshkey_type(key));
Damien Miller0a80ca12010-02-27 07:55:05 +11001901 }
Damien Miller1f0311c2014-05-15 14:24:09 +10001902
Darren Tuckerd13281f2017-03-29 12:39:39 +11001903 if (privsep_chroot) {
Ben Lindstroma26ea632002-06-06 20:46:25 +00001904 struct stat st;
1905
Ben Lindstroma26ea632002-06-06 20:46:25 +00001906 if ((stat(_PATH_PRIVSEP_CHROOT_DIR, &st) == -1) ||
1907 (S_ISDIR(st.st_mode) == 0))
1908 fatal("Missing privilege separation directory: %s",
1909 _PATH_PRIVSEP_CHROOT_DIR);
Ben Lindstrom59627352002-06-27 18:02:21 +00001910
1911#ifdef HAVE_CYGWIN
1912 if (check_ntsec(_PATH_PRIVSEP_CHROOT_DIR) &&
1913 (st.st_uid != getuid () ||
1914 (st.st_mode & (S_IWGRP|S_IWOTH)) != 0))
1915#else
Ben Lindstrom2dfacb32002-06-23 00:33:47 +00001916 if (st.st_uid != 0 || (st.st_mode & (S_IWGRP|S_IWOTH)) != 0)
Ben Lindstrom59627352002-06-27 18:02:21 +00001917#endif
Damien Miller180fc5b2003-02-24 11:50:18 +11001918 fatal("%s must be owned by root and not group or "
1919 "world-writable.", _PATH_PRIVSEP_CHROOT_DIR);
Ben Lindstroma26ea632002-06-06 20:46:25 +00001920 }
1921
Darren Tuckere7140f22008-06-10 23:01:51 +10001922 if (test_flag > 1) {
djm@openbsd.org@openbsd.org548d3a62017-11-14 00:45:29 +00001923 /*
1924 * If no connection info was provided by -C then use
1925 * use a blank one that will cause no predicate to match.
1926 */
1927 if (connection_info == NULL)
djm@openbsd.org172a5922019-01-19 21:37:48 +00001928 connection_info = get_connection_info(ssh, 0, 0);
dtucker@openbsd.orge826bbc2019-04-18 18:56:16 +00001929 connection_info->test = 1;
djm@openbsd.orgc2bd7f72020-01-31 22:42:45 +00001930 parse_server_match_config(&options, &includes, connection_info);
Darren Tuckere7140f22008-06-10 23:01:51 +10001931 dump_config(&options);
1932 }
1933
Ben Lindstrom794325a2001-08-06 21:09:07 +00001934 /* Configuration looks good, so exit if in test mode. */
1935 if (test_flag)
1936 exit(0);
1937
Damien Miller87aea252002-05-10 12:20:24 +10001938 /*
1939 * Clear out any supplemental groups we may have inherited. This
1940 * prevents inadvertent creation of files with bad modes (in the
Damien Millera8e06ce2003-11-21 23:48:55 +11001941 * portable version at least, it's certainly possible for PAM
1942 * to create a file, and we can't control the code in every
Damien Miller87aea252002-05-10 12:20:24 +10001943 * module which might be used).
1944 */
1945 if (setgroups(0, NULL) < 0)
1946 debug("setgroups() failed: %.200s", strerror(errno));
1947
Darren Tucker645ab752004-06-25 13:33:20 +10001948 if (rexec_flag) {
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001949 if (rexec_argc < 0)
1950 fatal("rexec_argc %d < 0", rexec_argc);
Damien Miller07d86be2006-03-26 14:19:21 +11001951 rexec_argv = xcalloc(rexec_argc + 2, sizeof(char *));
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001952 for (i = 0; i < (u_int)rexec_argc; i++) {
Darren Tucker645ab752004-06-25 13:33:20 +10001953 debug("rexec_argv[%d]='%s'", i, saved_argv[i]);
1954 rexec_argv[i] = saved_argv[i];
1955 }
1956 rexec_argv[rexec_argc] = "-R";
1957 rexec_argv[rexec_argc + 1] = NULL;
1958 }
djm@openbsd.orga8c05c62020-01-24 23:56:01 +00001959 listener_proctitle = prepare_proctitle(ac, av);
Darren Tucker645ab752004-06-25 13:33:20 +10001960
Damien Miller6ca16c62008-06-16 07:50:58 +10001961 /* Ensure that umask disallows at least group and world write */
1962 new_umask = umask(0077) | 0022;
1963 (void) umask(new_umask);
1964
Damien Millereba71ba2000-04-29 23:57:08 +10001965 /* Initialize the log (it is reinitialized below in case we forked). */
Darren Tuckerea7c8122005-01-20 11:03:08 +11001966 if (debug_flag && (!inetd_flag || rexeced_flag))
Damien Miller95def091999-11-25 00:26:21 +11001967 log_stderr = 1;
Kevin Stevesec84dc12000-12-13 17:45:15 +00001968 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +11001969
Damien Millereba71ba2000-04-29 23:57:08 +10001970 /*
dtucker@openbsd.org7fc47662016-11-30 00:28:31 +00001971 * If not in debugging mode, not started from inetd and not already
1972 * daemonized (eg re-exec via SIGHUP), disconnect from the controlling
1973 * terminal, and fork. The original process exits.
Damien Millereba71ba2000-04-29 23:57:08 +10001974 */
dtucker@openbsd.org7fc47662016-11-30 00:28:31 +00001975 already_daemon = daemonized();
1976 if (!(debug_flag || inetd_flag || no_daemon_flag || already_daemon)) {
dtucker@openbsd.orgb0899ee2016-11-29 03:54:50 +00001977
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001978 if (daemon(0, 0) == -1)
Damien Miller95def091999-11-25 00:26:21 +11001979 fatal("daemon() failed: %.200s", strerror(errno));
1980
dtucker@openbsd.orgb0899ee2016-11-29 03:54:50 +00001981 disconnect_controlling_tty();
Damien Miller95def091999-11-25 00:26:21 +11001982 }
1983 /* Reinitialize the log (because of the fork above). */
Kevin Stevesec84dc12000-12-13 17:45:15 +00001984 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +11001985
Damien Miller95def091999-11-25 00:26:21 +11001986 /* Chdir to the root directory so that the current disk can be
1987 unmounted if desired. */
Darren Tuckerdbee3082013-05-16 20:32:29 +10001988 if (chdir("/") == -1)
1989 error("chdir(\"/\"): %s", strerror(errno));
Damien Miller9f0f5c62001-12-21 14:45:46 +11001990
Ben Lindstromde71cda2001-03-24 00:43:26 +00001991 /* ignore SIGPIPE */
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +00001992 ssh_signal(SIGPIPE, SIG_IGN);
Damien Miller95def091999-11-25 00:26:21 +11001993
Damien Millera1f68402006-08-19 00:31:39 +10001994 /* Get a connection, either from inetd or a listening TCP socket */
Damien Miller95def091999-11-25 00:26:21 +11001995 if (inetd_flag) {
Damien Millera1f68402006-08-19 00:31:39 +10001996 server_accept_inetd(&sock_in, &sock_out);
Damien Miller95def091999-11-25 00:26:21 +11001997 } else {
Darren Tuckerc8802aa2009-12-08 13:39:48 +11001998 platform_pre_listen();
Damien Millera1f68402006-08-19 00:31:39 +10001999 server_listen();
Damien Miller34132e52000-01-14 15:45:46 +11002000
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +00002001 ssh_signal(SIGHUP, sighup_handler);
2002 ssh_signal(SIGCHLD, main_sigchld_handler);
2003 ssh_signal(SIGTERM, sigterm_handler);
2004 ssh_signal(SIGQUIT, sigterm_handler);
Ben Lindstrom98097862001-06-25 05:10:20 +00002005
Damien Millera1f68402006-08-19 00:31:39 +10002006 /*
2007 * Write out the pid file after the sigterm handler
2008 * is setup and the listen sockets are bound
2009 */
dtucker@openbsd.orgf2398eb2016-12-04 22:27:25 +00002010 if (options.pid_file != NULL && !debug_flag) {
Damien Millera1f68402006-08-19 00:31:39 +10002011 FILE *f = fopen(options.pid_file, "w");
2012
Darren Tuckere5327042003-07-03 13:40:44 +10002013 if (f == NULL) {
2014 error("Couldn't create pid file \"%s\": %s",
2015 options.pid_file, strerror(errno));
2016 } else {
Ben Lindstromce0f6342002-06-11 16:42:49 +00002017 fprintf(f, "%ld\n", (long) getpid());
Damien Miller95def091999-11-25 00:26:21 +11002018 fclose(f);
2019 }
2020 }
Damien Miller95def091999-11-25 00:26:21 +11002021
Damien Millera1f68402006-08-19 00:31:39 +10002022 /* Accept a connection and return in a forked child */
2023 server_accept_loop(&sock_in, &sock_out,
2024 &newsock, config_s);
Damien Miller95def091999-11-25 00:26:21 +11002025 }
2026
2027 /* This is the child processing a new connection. */
Damien Miller57aae982004-03-08 23:11:25 +11002028 setproctitle("%s", "[accepted]");
Damien Miller95def091999-11-25 00:26:21 +11002029
Darren Tucker6832b832004-08-12 22:36:51 +10002030 /*
2031 * Create a new session and process group since the 4.4BSD
2032 * setlogin() affects the entire process group. We don't
2033 * want the child to be able to affect the parent.
2034 */
2035#if !defined(SSHD_ACQUIRES_CTTY)
2036 /*
2037 * If setsid is called, on some platforms sshd will later acquire a
2038 * controlling terminal which will result in "could not set
2039 * controlling tty" errors.
2040 */
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00002041 if (!debug_flag && !inetd_flag && setsid() == -1)
Darren Tucker6832b832004-08-12 22:36:51 +10002042 error("setsid: %.100s", strerror(errno));
2043#endif
2044
Darren Tucker645ab752004-06-25 13:33:20 +10002045 if (rexec_flag) {
2046 int fd;
2047
Damien Miller035a5b42004-06-26 08:16:31 +10002048 debug("rexec start 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 dup2(newsock, STDIN_FILENO);
2051 dup2(STDIN_FILENO, STDOUT_FILENO);
2052 if (startup_pipe == -1)
Damien Miller035a5b42004-06-26 08:16:31 +10002053 close(REEXEC_STARTUP_PIPE_FD);
Damien Miller61ee4d62013-10-15 11:56:47 +11002054 else if (startup_pipe != REEXEC_STARTUP_PIPE_FD) {
Damien Miller035a5b42004-06-26 08:16:31 +10002055 dup2(startup_pipe, REEXEC_STARTUP_PIPE_FD);
Damien Miller61ee4d62013-10-15 11:56:47 +11002056 close(startup_pipe);
2057 startup_pipe = REEXEC_STARTUP_PIPE_FD;
2058 }
Darren Tucker645ab752004-06-25 13:33:20 +10002059
Damien Miller035a5b42004-06-26 08:16:31 +10002060 dup2(config_s[1], REEXEC_CONFIG_PASS_FD);
Darren Tucker645ab752004-06-25 13:33:20 +10002061 close(config_s[1]);
Damien Miller035a5b42004-06-26 08:16:31 +10002062
Darren Tucker645ab752004-06-25 13:33:20 +10002063 execv(rexec_argv[0], rexec_argv);
2064
2065 /* Reexec has failed, fall back and continue */
2066 error("rexec of %s failed: %s", rexec_argv[0], strerror(errno));
Damien Miller035a5b42004-06-26 08:16:31 +10002067 recv_rexec_state(REEXEC_CONFIG_PASS_FD, NULL);
Darren Tucker645ab752004-06-25 13:33:20 +10002068 log_init(__progname, options.log_level,
2069 options.log_facility, log_stderr);
2070
2071 /* Clean up fds */
Damien Miller035a5b42004-06-26 08:16:31 +10002072 close(REEXEC_CONFIG_PASS_FD);
2073 newsock = sock_out = sock_in = dup(STDIN_FILENO);
Darren Tucker645ab752004-06-25 13:33:20 +10002074 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
2075 dup2(fd, STDIN_FILENO);
2076 dup2(fd, STDOUT_FILENO);
2077 if (fd > STDERR_FILENO)
2078 close(fd);
2079 }
Damien Miller035a5b42004-06-26 08:16:31 +10002080 debug("rexec cleanup in %d out %d newsock %d pipe %d sock %d",
2081 sock_in, sock_out, newsock, startup_pipe, config_s[0]);
Darren Tucker645ab752004-06-25 13:33:20 +10002082 }
2083
Damien Miller133d9d32010-01-30 17:30:04 +11002084 /* Executed child processes don't need these. */
2085 fcntl(sock_out, F_SETFD, FD_CLOEXEC);
2086 fcntl(sock_in, F_SETFD, FD_CLOEXEC);
2087
Damien Miller5428f641999-11-25 11:54:57 +11002088 /*
2089 * Disable the key regeneration alarm. We will not regenerate the
2090 * key since we are no longer in a position to give it to anyone. We
2091 * will not restart on SIGHUP since it no longer makes sense.
2092 */
Damien Miller95def091999-11-25 00:26:21 +11002093 alarm(0);
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +00002094 ssh_signal(SIGALRM, SIG_DFL);
2095 ssh_signal(SIGHUP, SIG_DFL);
2096 ssh_signal(SIGTERM, SIG_DFL);
2097 ssh_signal(SIGQUIT, SIG_DFL);
2098 ssh_signal(SIGCHLD, SIG_DFL);
2099 ssh_signal(SIGINT, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11002100
Damien Miller5428f641999-11-25 11:54:57 +11002101 /*
2102 * Register our connection. This turns encryption off because we do
2103 * not have a key.
2104 */
djm@openbsd.org6350e032019-01-19 21:42:30 +00002105 if ((ssh = ssh_packet_set_connection(NULL, sock_in, sock_out)) == NULL)
2106 fatal("Unable to create connection");
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002107 the_active_state = ssh;
djm@openbsd.org6350e032019-01-19 21:42:30 +00002108 ssh_packet_set_server(ssh);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002109
djm@openbsd.org95767262016-03-07 19:02:43 +00002110 check_ip_options(ssh);
Damien Miller95def091999-11-25 00:26:21 +11002111
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002112 /* Prepare the channels layer */
2113 channel_init_channels(ssh);
2114 channel_set_af(ssh, options.address_family);
2115 process_permitopen(ssh, &options);
2116
Damien Miller4f1d6b22005-05-26 11:59:32 +10002117 /* Set SO_KEEPALIVE if requested. */
djm@openbsd.org6350e032019-01-19 21:42:30 +00002118 if (options.tcp_keep_alive && ssh_packet_connection_is_on_socket(ssh) &&
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00002119 setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, &on, sizeof(on)) == -1)
Damien Miller4f1d6b22005-05-26 11:59:32 +10002120 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
2121
djm@openbsd.org95767262016-03-07 19:02:43 +00002122 if ((remote_port = ssh_remote_port(ssh)) < 0) {
2123 debug("ssh_remote_port failed");
Damien Miller677257f2005-06-17 12:55:03 +10002124 cleanup_exit(255);
2125 }
Damien Miller4d3fd542005-11-05 15:13:24 +11002126
djm@openbsd.org35eb33f2017-10-25 00:17:08 +00002127 if (options.routing_domain != NULL)
2128 set_process_rdomain(ssh, options.routing_domain);
2129
Damien Miller4d3fd542005-11-05 15:13:24 +11002130 /*
Damien Millereb13e552006-06-13 13:03:53 +10002131 * The rest of the code depends on the fact that
djm@openbsd.org95767262016-03-07 19:02:43 +00002132 * ssh_remote_ipaddr() caches the remote ip, even if
Damien Millereb13e552006-06-13 13:03:53 +10002133 * the socket goes away.
2134 */
djm@openbsd.org95767262016-03-07 19:02:43 +00002135 remote_ip = ssh_remote_ipaddr(ssh);
Damien Miller95def091999-11-25 00:26:21 +11002136
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11002137#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +11002138 audit_connection_from(remote_ip, remote_port);
2139#endif
Damien Miller6a4a4b92001-11-12 11:07:11 +11002140
djm@openbsd.org68af80e2017-10-25 00:19:47 +00002141 rdomain = ssh_packet_rdomain_in(ssh);
2142
Damien Miller95def091999-11-25 00:26:21 +11002143 /* Log the connection. */
dtucker@openbsd.org15fdfc92015-04-15 23:23:25 +00002144 laddr = get_local_ipaddr(sock_in);
djm@openbsd.org@openbsd.orgb77c29a2017-10-27 00:18:41 +00002145 verbose("Connection from %s port %d on %s port %d%s%s%s",
djm@openbsd.org68af80e2017-10-25 00:19:47 +00002146 remote_ip, remote_port, laddr, ssh_local_port(ssh),
djm@openbsd.org@openbsd.orgb77c29a2017-10-27 00:18:41 +00002147 rdomain == NULL ? "" : " rdomain \"",
2148 rdomain == NULL ? "" : rdomain,
2149 rdomain == NULL ? "" : "\"");
dtucker@openbsd.org15fdfc92015-04-15 23:23:25 +00002150 free(laddr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002151
Damien Miller5428f641999-11-25 11:54:57 +11002152 /*
Damien Miller788f2122005-11-05 15:14:59 +11002153 * We don't want to listen forever unless the other side
Damien Miller5428f641999-11-25 11:54:57 +11002154 * successfully authenticates itself. So we set up an alarm which is
2155 * cleared after successful authentication. A limit of zero
Damien Miller788f2122005-11-05 15:14:59 +11002156 * indicates no limit. Note that we don't set the alarm in debugging
Damien Miller5428f641999-11-25 11:54:57 +11002157 * mode; it is just annoying to have the server exit just when you
2158 * are about to discover the bug.
2159 */
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +00002160 ssh_signal(SIGALRM, grace_alarm_handler);
Damien Miller95def091999-11-25 00:26:21 +11002161 if (!debug_flag)
2162 alarm(options.login_grace_time);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002163
djm@openbsd.org0a843d92018-12-27 03:25:24 +00002164 if (kex_exchange_identification(ssh, -1, options.version_addendum) != 0)
2165 cleanup_exit(255); /* error already logged */
2166
djm@openbsd.org6350e032019-01-19 21:42:30 +00002167 ssh_packet_set_nonblocking(ssh);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002168
Darren Tucker3e33cec2003-10-02 16:12:36 +10002169 /* allocate authentication context */
Damien Miller07d86be2006-03-26 14:19:21 +11002170 authctxt = xcalloc(1, sizeof(*authctxt));
djm@openbsd.org6350e032019-01-19 21:42:30 +00002171 ssh->authctxt = authctxt;
Darren Tucker3e33cec2003-10-02 16:12:36 +10002172
Damien Miller120a1ec2018-07-10 19:39:52 +10002173 authctxt->loginmsg = loginmsg;
Darren Tuckerf3bb4342005-03-31 21:39:25 +10002174
Darren Tucker3e33cec2003-10-02 16:12:36 +10002175 /* XXX global for cleanup, access from other modules */
2176 the_authctxt = authctxt;
2177
djm@openbsd.org7c856852018-03-03 03:15:51 +00002178 /* Set default key authentication options */
2179 if ((auth_opts = sshauthopt_new_with_keys_defaults()) == NULL)
2180 fatal("allocation failed");
2181
Darren Tucker5c14c732005-01-24 21:55:49 +11002182 /* prepare buffer to collect messages to display to user after login */
markus@openbsd.org2808d182018-07-09 21:26:02 +00002183 if ((loginmsg = sshbuf_new()) == NULL)
2184 fatal("%s: sshbuf_new failed", __func__);
Darren Tuckercd70e1b2010-03-07 23:05:17 +11002185 auth_debug_reset();
Darren Tucker5c14c732005-01-24 21:55:49 +11002186
Damien Miller85b45e02013-07-20 13:21:52 +10002187 if (use_privsep) {
djm@openbsd.org6350e032019-01-19 21:42:30 +00002188 if (privsep_preauth(ssh) == 1)
Ben Lindstrom943481c2002-03-22 03:43:46 +00002189 goto authenticated;
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +00002190 } else if (have_agent) {
djm@openbsd.org141efe42015-01-14 20:05:27 +00002191 if ((r = ssh_get_authentication_socket(&auth_sock)) != 0) {
2192 error("Unable to get agent socket: %s", ssh_err(r));
djm@openbsd.org83f8ffa2015-01-17 18:53:34 +00002193 have_agent = 0;
djm@openbsd.org141efe42015-01-14 20:05:27 +00002194 }
2195 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002196
Damien Miller396691a2000-01-20 22:44:08 +11002197 /* perform the key exchange */
Damien Miller396691a2000-01-20 22:44:08 +11002198 /* authenticate user and start session */
djm@openbsd.org6350e032019-01-19 21:42:30 +00002199 do_ssh2_kex(ssh);
Damien Miller5ebce132019-01-20 09:44:53 +11002200 do_authentication2(ssh);
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +00002201
Ben Lindstrom943481c2002-03-22 03:43:46 +00002202 /*
2203 * If we use privilege separation, the unprivileged child transfers
2204 * the current keystate and exits
2205 */
2206 if (use_privsep) {
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002207 mm_send_keystate(ssh, pmonitor);
djm@openbsd.org6350e032019-01-19 21:42:30 +00002208 ssh_packet_clear_keys(ssh);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002209 exit(0);
Ben Lindstrom943481c2002-03-22 03:43:46 +00002210 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002211
2212 authenticated:
Damien Miller7bff1a92005-12-24 14:59:12 +11002213 /*
2214 * Cancel the alarm we set to limit the time taken for
2215 * authentication.
2216 */
2217 alarm(0);
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +00002218 ssh_signal(SIGALRM, SIG_DFL);
Damien Miller3f8123c2006-08-19 00:32:46 +10002219 authctxt->authenticated = 1;
Damien Miller7bff1a92005-12-24 14:59:12 +11002220 if (startup_pipe != -1) {
2221 close(startup_pipe);
2222 startup_pipe = -1;
2223 }
2224
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11002225#ifdef SSH_AUDIT_EVENTS
Damien Miller9b655dc2019-01-20 14:55:27 +11002226 audit_event(ssh, SSH_AUTH_SUCCESS);
Darren Tucker269a1ea2005-02-03 00:20:53 +11002227#endif
2228
Darren Tucker52358d62008-03-11 22:58:25 +11002229#ifdef GSSAPI
2230 if (options.gss_authentication) {
2231 temporarily_use_uid(authctxt->pw);
2232 ssh_gssapi_storecreds();
2233 restore_uid();
2234 }
2235#endif
2236#ifdef USE_PAM
2237 if (options.use_pam) {
2238 do_pam_setcred(1);
djm@openbsd.org7c856852018-03-03 03:15:51 +00002239 do_pam_session(ssh);
Darren Tucker52358d62008-03-11 22:58:25 +11002240 }
2241#endif
2242
Ben Lindstrom6328ab32002-03-22 02:54:23 +00002243 /*
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002244 * In privilege separation, we fork another child and prepare
2245 * file descriptor passing.
2246 */
2247 if (use_privsep) {
djm@openbsd.org6350e032019-01-19 21:42:30 +00002248 privsep_postauth(ssh, authctxt);
Ben Lindstrom943481c2002-03-22 03:43:46 +00002249 /* the monitor process [priv] will not return */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002250 }
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +00002251
djm@openbsd.org6350e032019-01-19 21:42:30 +00002252 ssh_packet_set_timeout(ssh, options.client_alive_interval,
Darren Tucker3fc464e2008-06-13 06:42:45 +10002253 options.client_alive_count_max);
2254
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002255 /* Try to send all our hostkeys to the client */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002256 notify_hostkeys(ssh);
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002257
Darren Tucker3e33cec2003-10-02 16:12:36 +10002258 /* Start session. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002259 do_authenticated(ssh, authctxt);
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +00002260
Damien Miller3a5b0232002-03-13 13:19:42 +11002261 /* The connection has been terminated. */
djm@openbsd.org6350e032019-01-19 21:42:30 +00002262 ssh_packet_get_bytes(ssh, &ibytes, &obytes);
Damien Miller821de0a2011-01-11 17:20:29 +11002263 verbose("Transferred: sent %llu, received %llu bytes",
2264 (unsigned long long)obytes, (unsigned long long)ibytes);
Damien Millerb61f3fc2008-07-11 17:36:48 +10002265
2266 verbose("Closing connection to %.500s port %d", remote_ip, remote_port);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002267
Damien Millerbeb4ba51999-12-28 15:09:35 +11002268#ifdef USE_PAM
Damien Miller4e448a32003-05-14 15:11:48 +10002269 if (options.use_pam)
2270 finish_pam();
Damien Millerbeb4ba51999-12-28 15:09:35 +11002271#endif /* USE_PAM */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002272
Darren Tucker2b59a6d2005-03-06 22:38:51 +11002273#ifdef SSH_AUDIT_EVENTS
Damien Miller9b655dc2019-01-20 14:55:27 +11002274 PRIVSEP(audit_event(ssh, SSH_CONNECTION_CLOSE));
Darren Tucker2b59a6d2005-03-06 22:38:51 +11002275#endif
2276
djm@openbsd.org6350e032019-01-19 21:42:30 +00002277 ssh_packet_close(ssh);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002278
2279 if (use_privsep)
2280 mm_terminate();
2281
Damien Miller95def091999-11-25 00:26:21 +11002282 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002283}
2284
markus@openbsd.org57d10cb2015-01-19 20:16:15 +00002285int
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002286sshd_hostkey_sign(struct ssh *ssh, struct sshkey *privkey,
2287 struct sshkey *pubkey, u_char **signature, size_t *slenp,
2288 const u_char *data, size_t dlen, const char *alg)
Damien Miller85b45e02013-07-20 13:21:52 +10002289{
djm@openbsd.org141efe42015-01-14 20:05:27 +00002290 int r;
2291
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002292 if (use_privsep) {
2293 if (privkey) {
2294 if (mm_sshkey_sign(ssh, privkey, signature, slenp,
djm@openbsd.org56584cc2019-12-15 18:57:30 +00002295 data, dlen, alg, options.sk_provider,
2296 ssh->compat) < 0)
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002297 fatal("%s: privkey sign failed", __func__);
2298 } else {
2299 if (mm_sshkey_sign(ssh, pubkey, signature, slenp,
djm@openbsd.org56584cc2019-12-15 18:57:30 +00002300 data, dlen, alg, options.sk_provider,
2301 ssh->compat) < 0)
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002302 fatal("%s: pubkey sign failed", __func__);
2303 }
Damien Miller85b45e02013-07-20 13:21:52 +10002304 } else {
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002305 if (privkey) {
2306 if (sshkey_sign(privkey, signature, slenp, data, dlen,
djm@openbsd.org56584cc2019-12-15 18:57:30 +00002307 alg, options.sk_provider, ssh->compat) < 0)
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002308 fatal("%s: privkey sign failed", __func__);
2309 } else {
2310 if ((r = ssh_agent_sign(auth_sock, pubkey,
2311 signature, slenp, data, dlen, alg,
2312 ssh->compat)) != 0) {
2313 fatal("%s: agent sign failed: %s",
2314 __func__, ssh_err(r));
2315 }
2316 }
Damien Miller85b45e02013-07-20 13:21:52 +10002317 }
markus@openbsd.org57d10cb2015-01-19 20:16:15 +00002318 return 0;
Damien Miller85b45e02013-07-20 13:21:52 +10002319}
2320
djm@openbsd.orgbdfd29f2015-07-03 03:47:00 +00002321/* SSH2 key exchange */
Ben Lindstrombba81212001-06-25 05:01:22 +00002322static void
djm@openbsd.org6350e032019-01-19 21:42:30 +00002323do_ssh2_kex(struct ssh *ssh)
Damien Millerefb4afe2000-04-12 18:45:05 +10002324{
Damien Miller9235a032014-04-20 13:17:20 +10002325 char *myproposal[PROPOSAL_MAX] = { KEX_SERVER };
markus@openbsd.org57d10cb2015-01-19 20:16:15 +00002326 struct kex *kex;
markus@openbsd.org57e783c2015-01-20 20:16:21 +00002327 int r;
Damien Millerefb4afe2000-04-12 18:45:05 +10002328
djm@openbsd.orgf9eca242015-07-30 00:01:34 +00002329 myproposal[PROPOSAL_KEX_ALGS] = compat_kex_proposal(
djm@openbsd.orgc3903c32018-08-13 02:41:05 +00002330 options.kex_algorithms);
djm@openbsd.orgf9eca242015-07-30 00:01:34 +00002331 myproposal[PROPOSAL_ENC_ALGS_CTOS] = compat_cipher_proposal(
djm@openbsd.orgc3903c32018-08-13 02:41:05 +00002332 options.ciphers);
djm@openbsd.orgf9eca242015-07-30 00:01:34 +00002333 myproposal[PROPOSAL_ENC_ALGS_STOC] = compat_cipher_proposal(
djm@openbsd.orgc3903c32018-08-13 02:41:05 +00002334 options.ciphers);
djm@openbsd.orgf9eca242015-07-30 00:01:34 +00002335 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
2336 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
Damien Millera0ff4662001-03-30 10:49:35 +10002337
Damien Miller9786e6e2005-07-26 21:54:56 +10002338 if (options.compression == COMP_NONE) {
Ben Lindstrom23e0f662002-06-21 01:09:47 +00002339 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
dtucker@openbsd.org8c02e362016-05-24 04:43:45 +00002340 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none";
Ben Lindstrom23e0f662002-06-21 01:09:47 +00002341 }
Damien Miller9395b282014-04-20 13:25:30 +10002342
Darren Tucker5f96f3b2013-05-16 20:29:28 +10002343 if (options.rekey_limit || options.rekey_interval)
djm@openbsd.org6350e032019-01-19 21:42:30 +00002344 ssh_packet_set_rekey_limits(ssh, options.rekey_limit,
dtucker@openbsd.orgc998bf02017-02-03 02:56:00 +00002345 options.rekey_interval);
Darren Tucker5f96f3b2013-05-16 20:29:28 +10002346
Damien Miller324541e2013-12-31 12:25:40 +11002347 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = compat_pkalg_proposal(
djm@openbsd.orgc3903c32018-08-13 02:41:05 +00002348 list_hostkey_types());
Damien Miller0bc1bd82000-11-13 22:57:25 +11002349
Ben Lindstrom8ac91062001-04-04 17:57:54 +00002350 /* start key exchange */
djm@openbsd.org6350e032019-01-19 21:42:30 +00002351 if ((r = kex_setup(ssh, myproposal)) != 0)
markus@openbsd.org57e783c2015-01-20 20:16:21 +00002352 fatal("kex_setup: %s", ssh_err(r));
djm@openbsd.org6350e032019-01-19 21:42:30 +00002353 kex = ssh->kex;
Damien Miller1f0311c2014-05-15 14:24:09 +10002354#ifdef WITH_OPENSSL
djm@openbsd.orgaaca72d2019-01-21 10:40:11 +00002355 kex->kex[KEX_DH_GRP1_SHA1] = kex_gen_server;
2356 kex->kex[KEX_DH_GRP14_SHA1] = kex_gen_server;
2357 kex->kex[KEX_DH_GRP14_SHA256] = kex_gen_server;
2358 kex->kex[KEX_DH_GRP16_SHA512] = kex_gen_server;
2359 kex->kex[KEX_DH_GRP18_SHA512] = kex_gen_server;
Damien Miller8e7fb332003-02-24 12:03:03 +11002360 kex->kex[KEX_DH_GEX_SHA1] = kexgex_server;
Damien Millera63128d2006-03-15 12:08:28 +11002361 kex->kex[KEX_DH_GEX_SHA256] = kexgex_server;
Darren Tuckerf2004cd2015-02-23 05:04:21 +11002362# ifdef OPENSSL_HAS_ECC
djm@openbsd.orgaaca72d2019-01-21 10:40:11 +00002363 kex->kex[KEX_ECDH_SHA2] = kex_gen_server;
Darren Tuckerf2004cd2015-02-23 05:04:21 +11002364# endif
Damien Miller1f0311c2014-05-15 14:24:09 +10002365#endif
djm@openbsd.orgaaca72d2019-01-21 10:40:11 +00002366 kex->kex[KEX_C25519_SHA256] = kex_gen_server;
2367 kex->kex[KEX_KEM_SNTRUP4591761X25519_SHA512] = kex_gen_server;
Damien Miller0a80ca12010-02-27 07:55:05 +11002368 kex->load_host_public_key=&get_hostkey_public_by_type;
2369 kex->load_host_private_key=&get_hostkey_private_by_type;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002370 kex->host_key_index=&get_hostkey_index;
Damien Miller85b45e02013-07-20 13:21:52 +10002371 kex->sign = sshd_hostkey_sign;
Damien Millerefb4afe2000-04-12 18:45:05 +10002372
djm@openbsd.org6350e032019-01-19 21:42:30 +00002373 ssh_dispatch_run_fatal(ssh, DISPATCH_BLOCK, &kex->done);
Damien Miller874d77b2000-10-14 16:23:11 +11002374
Ben Lindstrom2d90e002001-04-04 02:00:54 +00002375 session_id2 = kex->session_id;
2376 session_id2_len = kex->session_id_len;
2377
Damien Miller874d77b2000-10-14 16:23:11 +11002378#ifdef DEBUG_KEXDH
2379 /* send 1st encrypted/maced/compressed message */
2380 packet_start(SSH2_MSG_IGNORE);
2381 packet_put_cstring("markus");
2382 packet_send();
2383 packet_write_wait();
2384#endif
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +00002385 debug("KEX done");
Damien Millerefb4afe2000-04-12 18:45:05 +10002386}
Darren Tucker3e33cec2003-10-02 16:12:36 +10002387
2388/* server specific fatal cleanup */
2389void
2390cleanup_exit(int i)
2391{
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002392 if (the_active_state != NULL && the_authctxt != NULL) {
2393 do_cleanup(the_active_state, the_authctxt);
Damien Miller75c62722014-04-20 13:24:31 +10002394 if (use_privsep && privsep_is_preauth &&
2395 pmonitor != NULL && pmonitor->m_pid > 1) {
Damien Miller9ee2c602011-09-22 21:38:30 +10002396 debug("Killing privsep child %d", pmonitor->m_pid);
2397 if (kill(pmonitor->m_pid, SIGKILL) != 0 &&
Darren Tucker2e135602011-10-02 19:10:13 +11002398 errno != ESRCH)
Damien Miller9ee2c602011-09-22 21:38:30 +10002399 error("%s: kill(%d): %s", __func__,
2400 pmonitor->m_pid, strerror(errno));
2401 }
2402 }
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11002403#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +11002404 /* done after do_cleanup so it can cancel the PAM auth 'thread' */
Damien Miller9b655dc2019-01-20 14:55:27 +11002405 if (the_active_state != NULL && (!use_privsep || mm_is_monitor()))
2406 audit_event(the_active_state, SSH_CONNECTION_ABANDON);
Darren Tucker269a1ea2005-02-03 00:20:53 +11002407#endif
Darren Tucker3e33cec2003-10-02 16:12:36 +10002408 _exit(i);
2409}