blob: f6927672e9348f3991feb4b38afe6b167d35c71e [file] [log] [blame]
djm@openbsd.org04c091f2019-01-19 21:43:56 +00001/* $OpenBSD: sshd.c,v 1.527 2019/01/19 21:43:56 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"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000125
Damien Miller035a5b42004-06-26 08:16:31 +1000126/* Re-exec fds */
127#define REEXEC_DEVCRYPTO_RESERVED_FD (STDERR_FILENO + 1)
128#define REEXEC_STARTUP_PIPE_FD (STDERR_FILENO + 2)
129#define REEXEC_CONFIG_PASS_FD (STDERR_FILENO + 3)
130#define REEXEC_MIN_FREE_FD (STDERR_FILENO + 4)
131
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000132extern char *__progname;
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000133
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000134/* Server configuration options. */
135ServerOptions options;
136
137/* Name of the server configuration file. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000138char *config_file_name = _PATH_SERVER_CONFIG_FILE;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000139
Damien Miller4af51302000-04-16 11:18:38 +1000140/*
Damien Miller95def091999-11-25 00:26:21 +1100141 * Debug mode flag. This can be set on the command line. If debug
142 * mode is enabled, extra debugging output will be sent to the system
143 * log, the daemon will not go to background, and will exit after processing
144 * the first connection.
145 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000146int debug_flag = 0;
147
djm@openbsd.org@openbsd.org548d3a62017-11-14 00:45:29 +0000148/*
149 * Indicating that the daemon should only test the configuration and keys.
150 * If test_flag > 1 ("-T" flag), then sshd will also dump the effective
151 * configuration, optionally using connection information provided by the
152 * "-C" flag.
153 */
djm@openbsd.orgdbb4dec2019-01-17 01:50:24 +0000154static int test_flag = 0;
Ben Lindstrom794325a2001-08-06 21:09:07 +0000155
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000156/* Flag indicating that the daemon is being started from inetd. */
djm@openbsd.orgdbb4dec2019-01-17 01:50:24 +0000157static int inetd_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000158
Ben Lindstromc72745a2000-12-02 19:03:54 +0000159/* Flag indicating that sshd should not detach and become a daemon. */
djm@openbsd.orgdbb4dec2019-01-17 01:50:24 +0000160static int no_daemon_flag = 0;
Ben Lindstromc72745a2000-12-02 19:03:54 +0000161
Damien Miller5ce662a1999-11-11 17:57:39 +1100162/* debug goes to stderr unless inetd_flag is set */
djm@openbsd.orgdbb4dec2019-01-17 01:50:24 +0000163static int log_stderr = 0;
Damien Miller5ce662a1999-11-11 17:57:39 +1100164
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000165/* Saved arguments to main(). */
djm@openbsd.orgdbb4dec2019-01-17 01:50:24 +0000166static char **saved_argv;
167static int saved_argc;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000168
Darren Tucker645ab752004-06-25 13:33:20 +1000169/* re-exec */
djm@openbsd.orgdbb4dec2019-01-17 01:50:24 +0000170static int rexeced_flag = 0;
171static int rexec_flag = 1;
172static int rexec_argc = 0;
173static char **rexec_argv;
Darren Tucker645ab752004-06-25 13:33:20 +1000174
Damien Miller5428f641999-11-25 11:54:57 +1100175/*
Damien Miller34132e52000-01-14 15:45:46 +1100176 * The sockets that the server is listening; this is used in the SIGHUP
177 * signal handler.
Damien Miller5428f641999-11-25 11:54:57 +1100178 */
Damien Miller34132e52000-01-14 15:45:46 +1100179#define MAX_LISTEN_SOCKS 16
djm@openbsd.orgdbb4dec2019-01-17 01:50:24 +0000180static int listen_socks[MAX_LISTEN_SOCKS];
181static int num_listen_socks = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000182
Damien Miller85b45e02013-07-20 13:21:52 +1000183/* Daemon's agent connection */
djm@openbsd.org141efe42015-01-14 20:05:27 +0000184int auth_sock = -1;
djm@openbsd.orgdbb4dec2019-01-17 01:50:24 +0000185static int have_agent = 0;
Damien Miller85b45e02013-07-20 13:21:52 +1000186
Damien Miller5428f641999-11-25 11:54:57 +1100187/*
188 * Any really sensitive data in the application is contained in this
189 * structure. The idea is that this structure could be locked into memory so
190 * that the pages do not get written into swap. However, there are some
191 * problems. The private key contains BIGNUMs, and we do not (in principle)
192 * have access to the internals of them, and locking just the structure is
193 * not very useful. Currently, memory locking is not implemented.
194 */
Damien Miller95def091999-11-25 00:26:21 +1100195struct {
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000196 struct sshkey **host_keys; /* all private host keys */
197 struct sshkey **host_pubkeys; /* all public host keys */
198 struct sshkey **host_certificates; /* all public host certificates */
199 int have_ssh2_key;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000200} sensitive_data;
201
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000202/* This is set to true when a signal is received. */
Ben Lindstrom5e71c542001-12-06 16:48:14 +0000203static volatile sig_atomic_t received_sighup = 0;
204static volatile sig_atomic_t received_sigterm = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000205
Damien Millerb38eff82000-04-01 11:09:21 +1000206/* session identifier, used by RSA-auth */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000207u_char session_id[16];
Damien Millerb38eff82000-04-01 11:09:21 +1000208
Damien Millereba71ba2000-04-29 23:57:08 +1000209/* same for ssh2 */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000210u_char *session_id2 = NULL;
Darren Tucker502d3842003-06-28 12:38:01 +1000211u_int session_id2_len = 0;
Damien Millereba71ba2000-04-29 23:57:08 +1000212
Damien Miller942da032000-08-18 13:59:06 +1000213/* record remote hostname or ip */
deraadt@openbsd.org087266e2015-01-20 23:14:00 +0000214u_int utmp_len = HOST_NAME_MAX+1;
Damien Miller942da032000-08-18 13:59:06 +1000215
Ben Lindstromd84df982001-12-06 16:35:40 +0000216/* options.max_startup sized array of fd ints */
djm@openbsd.orgdbb4dec2019-01-17 01:50:24 +0000217static int *startup_pipes = NULL;
218static int startup_pipe; /* in child */
Ben Lindstromd84df982001-12-06 16:35:40 +0000219
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000220/* variables used for privilege separation */
Darren Tucker45150472006-07-12 22:34:17 +1000221int use_privsep = -1;
Darren Tuckera8be9e22004-02-06 16:40:27 +1100222struct monitor *pmonitor = NULL;
Damien Miller9ee2c602011-09-22 21:38:30 +1000223int privsep_is_preauth = 1;
Darren Tuckerd13281f2017-03-29 12:39:39 +1100224static int privsep_chroot = 1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000225
djm@openbsd.org04c091f2019-01-19 21:43:56 +0000226/* global connection state and authentication contexts */
Darren Tucker3e33cec2003-10-02 16:12:36 +1000227Authctxt *the_authctxt = NULL;
djm@openbsd.org04c091f2019-01-19 21:43:56 +0000228struct ssh *the_active_state;
Darren Tucker3e33cec2003-10-02 16:12:36 +1000229
djm@openbsd.org7c856852018-03-03 03:15:51 +0000230/* global key/cert auth options. XXX move to permanent ssh->authctxt? */
231struct sshauthopt *auth_opts = NULL;
232
Darren Tucker45150472006-07-12 22:34:17 +1000233/* sshd_config buffer */
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +0000234struct sshbuf *cfg;
Darren Tucker45150472006-07-12 22:34:17 +1000235
Darren Tucker09991742004-07-17 17:05:14 +1000236/* message to be displayed after login */
markus@openbsd.org2808d182018-07-09 21:26:02 +0000237struct sshbuf *loginmsg;
Darren Tucker09991742004-07-17 17:05:14 +1000238
Damien Miller6433df02006-09-07 10:36:43 +1000239/* Unprivileged user */
240struct passwd *privsep_pw = NULL;
241
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000242/* Prototypes for various functions defined later in this file. */
Ben Lindstrombba81212001-06-25 05:01:22 +0000243void destroy_sensitive_data(void);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000244void demote_sensitive_data(void);
djm@openbsd.org6350e032019-01-19 21:42:30 +0000245static void do_ssh2_kex(struct ssh *);
Damien Miller874d77b2000-10-14 16:23:11 +1100246
Damien Miller98c7ad62000-03-09 21:27:49 +1100247/*
Damien Miller34132e52000-01-14 15:45:46 +1100248 * Close all listening sockets
249 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000250static void
Damien Miller34132e52000-01-14 15:45:46 +1100251close_listen_socks(void)
252{
253 int i;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000254
Damien Miller34132e52000-01-14 15:45:46 +1100255 for (i = 0; i < num_listen_socks; i++)
256 close(listen_socks[i]);
257 num_listen_socks = -1;
258}
259
Ben Lindstromd84df982001-12-06 16:35:40 +0000260static void
261close_startup_pipes(void)
262{
263 int i;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000264
Ben Lindstromd84df982001-12-06 16:35:40 +0000265 if (startup_pipes)
266 for (i = 0; i < options.max_startups; i++)
267 if (startup_pipes[i] != -1)
268 close(startup_pipes[i]);
269}
270
Damien Miller34132e52000-01-14 15:45:46 +1100271/*
Damien Miller95def091999-11-25 00:26:21 +1100272 * Signal handler for SIGHUP. Sshd execs itself when it receives SIGHUP;
273 * the effect is to reread the configuration file (and to regenerate
274 * the server key).
275 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100276
277/*ARGSUSED*/
Ben Lindstrombba81212001-06-25 05:01:22 +0000278static void
Damien Miller95def091999-11-25 00:26:21 +1100279sighup_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000280{
Ben Lindstrom07958482001-12-06 16:19:01 +0000281 int save_errno = errno;
282
Damien Miller95def091999-11-25 00:26:21 +1100283 received_sighup = 1;
Ben Lindstrom07958482001-12-06 16:19:01 +0000284 errno = save_errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000285}
286
Damien Miller95def091999-11-25 00:26:21 +1100287/*
288 * Called from the main program after receiving SIGHUP.
289 * Restarts the server.
290 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000291static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000292sighup_restart(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000293{
Damien Miller996acd22003-04-09 20:59:48 +1000294 logit("Received SIGHUP; restarting.");
dtucker@openbsd.orgf2398eb2016-12-04 22:27:25 +0000295 if (options.pid_file != NULL)
296 unlink(options.pid_file);
Darren Tuckerf2bf36c2013-09-22 19:02:40 +1000297 platform_pre_restart();
Damien Miller34132e52000-01-14 15:45:46 +1100298 close_listen_socks();
Ben Lindstromd84df982001-12-06 16:35:40 +0000299 close_startup_pipes();
Darren Tuckered623962007-02-25 20:37:21 +1100300 alarm(0); /* alarm timer persists across exec */
Darren Tucker2c671bf2010-01-09 22:28:43 +1100301 signal(SIGHUP, SIG_IGN); /* will be restored after exec */
Damien Miller95def091999-11-25 00:26:21 +1100302 execv(saved_argv[0], saved_argv);
Damien Miller996acd22003-04-09 20:59:48 +1000303 logit("RESTART FAILED: av[0]='%.100s', error: %.100s.", saved_argv[0],
Ben Lindstrom822b6342002-06-23 21:38:49 +0000304 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100305 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000306}
307
Damien Miller95def091999-11-25 00:26:21 +1100308/*
309 * Generic signal handler for terminating signals in the master daemon.
Damien Miller95def091999-11-25 00:26:21 +1100310 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100311/*ARGSUSED*/
Ben Lindstrombba81212001-06-25 05:01:22 +0000312static void
Damien Miller95def091999-11-25 00:26:21 +1100313sigterm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000314{
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000315 received_sigterm = sig;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000316}
317
Damien Miller95def091999-11-25 00:26:21 +1100318/*
319 * SIGCHLD handler. This is called whenever a child dies. This will then
Ben Lindstromec46e0b2001-06-09 01:27:31 +0000320 * reap any zombies left by exited children.
Damien Miller95def091999-11-25 00:26:21 +1100321 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100322/*ARGSUSED*/
Ben Lindstrombba81212001-06-25 05:01:22 +0000323static void
Damien Miller95def091999-11-25 00:26:21 +1100324main_sigchld_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000325{
Damien Miller95def091999-11-25 00:26:21 +1100326 int save_errno = errno;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000327 pid_t pid;
Damien Miller95def091999-11-25 00:26:21 +1100328 int status;
Damien Miller431f66b1999-11-21 18:31:57 +1100329
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000330 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
331 (pid < 0 && errno == EINTR))
Damien Miller95def091999-11-25 00:26:21 +1100332 ;
Damien Miller95def091999-11-25 00:26:21 +1100333 errno = save_errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000334}
335
Damien Miller95def091999-11-25 00:26:21 +1100336/*
337 * Signal handler for the alarm after the login grace period has expired.
338 */
Damien Millerf0b15df2006-03-26 13:59:20 +1100339/*ARGSUSED*/
Ben Lindstrombba81212001-06-25 05:01:22 +0000340static void
Damien Miller95def091999-11-25 00:26:21 +1100341grace_alarm_handler(int sig)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000342{
Darren Tuckera8be9e22004-02-06 16:40:27 +1100343 if (use_privsep && pmonitor != NULL && pmonitor->m_pid > 0)
344 kill(pmonitor->m_pid, SIGALRM);
345
Damien Miller09d3e122012-10-31 08:58:58 +1100346 /*
347 * Try to kill any processes that we have spawned, E.g. authorized
348 * keys command helpers.
349 */
350 if (getpgid(0) == getpid()) {
351 signal(SIGTERM, SIG_IGN);
Damien Millerab16ef42014-01-28 15:08:12 +1100352 kill(0, SIGTERM);
Damien Miller09d3e122012-10-31 08:58:58 +1100353 }
354
djm@openbsd.org04c091f2019-01-19 21:43:56 +0000355 /* XXX pre-format ipaddr/port so we don't need to access active_state */
Damien Miller95def091999-11-25 00:26:21 +1100356 /* Log error and exit. */
djm@openbsd.org95767262016-03-07 19:02:43 +0000357 sigdie("Timeout before authentication for %s port %d",
djm@openbsd.org04c091f2019-01-19 21:43:56 +0000358 ssh_remote_ipaddr(the_active_state),
359 ssh_remote_port(the_active_state));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000360}
361
Damien Miller0bc1bd82000-11-13 22:57:25 +1100362/* Destroy the host and server keys. They will no longer be needed. */
Damien Millereba71ba2000-04-29 23:57:08 +1000363void
364destroy_sensitive_data(void)
365{
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000366 u_int i;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100367
Damien Miller9f0f5c62001-12-21 14:45:46 +1100368 for (i = 0; i < options.num_host_key_files; i++) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100369 if (sensitive_data.host_keys[i]) {
markus@openbsd.org5467fbc2018-07-11 18:53:29 +0000370 sshkey_free(sensitive_data.host_keys[i]);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100371 sensitive_data.host_keys[i] = NULL;
372 }
Damien Miller0a80ca12010-02-27 07:55:05 +1100373 if (sensitive_data.host_certificates[i]) {
markus@openbsd.org5467fbc2018-07-11 18:53:29 +0000374 sshkey_free(sensitive_data.host_certificates[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +1100375 sensitive_data.host_certificates[i] = NULL;
376 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100377 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100378}
Damien Miller0bc1bd82000-11-13 22:57:25 +1100379
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000380/* Demote private to public keys for network child */
381void
382demote_sensitive_data(void)
383{
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000384 struct sshkey *tmp;
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000385 u_int i;
markus@openbsd.org5467fbc2018-07-11 18:53:29 +0000386 int r;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000387
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000388 for (i = 0; i < options.num_host_key_files; i++) {
389 if (sensitive_data.host_keys[i]) {
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000390 if ((r = sshkey_from_private(
391 sensitive_data.host_keys[i], &tmp)) != 0)
markus@openbsd.org5467fbc2018-07-11 18:53:29 +0000392 fatal("could not demote host %s key: %s",
393 sshkey_type(sensitive_data.host_keys[i]),
394 ssh_err(r));
395 sshkey_free(sensitive_data.host_keys[i]);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000396 sensitive_data.host_keys[i] = tmp;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000397 }
Damien Miller0a80ca12010-02-27 07:55:05 +1100398 /* Certs do not need demotion */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000399 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000400}
401
Ben Lindstrom08105192002-03-22 02:50:06 +0000402static void
Damien Millerc9f880c2016-11-30 13:51:49 +1100403reseed_prngs(void)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000404{
Darren Tucker64cee362009-06-21 20:26:17 +1000405 u_int32_t rnd[256];
Damien Millerc9f880c2016-11-30 13:51:49 +1100406
407#ifdef WITH_OPENSSL
408 RAND_poll();
409#endif
410 arc4random_stir(); /* noop on recent arc4random() implementations */
411 arc4random_buf(rnd, sizeof(rnd)); /* let arc4random notice PID change */
412
413#ifdef WITH_OPENSSL
414 RAND_seed(rnd, sizeof(rnd));
415 /* give libcrypto a chance to notice the PID change */
416 if ((RAND_bytes((u_char *)rnd, 1)) != 1)
417 fatal("%s: RAND_bytes failed", __func__);
418#endif
419
420 explicit_bzero(rnd, sizeof(rnd));
421}
422
423static void
424privsep_preauth_child(void)
425{
Ben Lindstrom810af962002-07-04 00:11:40 +0000426 gid_t gidset[1];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000427
428 /* Enable challenge-response authentication for privilege separation */
429 privsep_challenge_enable();
430
Damien Millerfb3423b2014-02-27 10:20:07 +1100431#ifdef GSSAPI
Damien Millere6a74ae2014-02-27 10:17:49 +1100432 /* Cache supported mechanism OIDs for later use */
djm@openbsd.orgcb24d9f2018-09-21 12:23:17 +0000433 ssh_gssapi_prepare_supported_oids();
Damien Millerfb3423b2014-02-27 10:20:07 +1100434#endif
Damien Millere6a74ae2014-02-27 10:17:49 +1100435
Damien Millerc9f880c2016-11-30 13:51:49 +1100436 reseed_prngs();
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000437
438 /* Demote the private keys to public keys. */
439 demote_sensitive_data();
440
djm@openbsd.org5b4010d2015-11-16 22:51:05 +0000441 /* Demote the child */
Darren Tuckerd13281f2017-03-29 12:39:39 +1100442 if (privsep_chroot) {
djm@openbsd.org5b4010d2015-11-16 22:51:05 +0000443 /* Change our root directory */
444 if (chroot(_PATH_PRIVSEP_CHROOT_DIR) == -1)
445 fatal("chroot(\"%s\"): %s", _PATH_PRIVSEP_CHROOT_DIR,
446 strerror(errno));
447 if (chdir("/") == -1)
448 fatal("chdir(\"/\"): %s", strerror(errno));
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000449
djm@openbsd.org5b4010d2015-11-16 22:51:05 +0000450 /* Drop our privileges */
451 debug3("privsep user:group %u:%u", (u_int)privsep_pw->pw_uid,
452 (u_int)privsep_pw->pw_gid);
453 gidset[0] = privsep_pw->pw_gid;
454 if (setgroups(1, gidset) < 0)
455 fatal("setgroups: %.100s", strerror(errno));
456 permanently_set_uid(privsep_pw);
457 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000458}
459
Darren Tucker3e33cec2003-10-02 16:12:36 +1000460static int
djm@openbsd.org6350e032019-01-19 21:42:30 +0000461privsep_preauth(struct ssh *ssh)
Ben Lindstrom943481c2002-03-22 03:43:46 +0000462{
djm@openbsd.org141efe42015-01-14 20:05:27 +0000463 int status, r;
Ben Lindstrom943481c2002-03-22 03:43:46 +0000464 pid_t pid;
Damien Miller69ff1df2011-06-23 08:30:03 +1000465 struct ssh_sandbox *box = NULL;
Ben Lindstrom943481c2002-03-22 03:43:46 +0000466
467 /* Set up unprivileged child process to deal with network data */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000468 pmonitor = monitor_init();
Ben Lindstrom943481c2002-03-22 03:43:46 +0000469 /* Store a pointer to the kex for later rekeying */
djm@openbsd.org6350e032019-01-19 21:42:30 +0000470 pmonitor->m_pkex = &ssh->kex;
Ben Lindstrom943481c2002-03-22 03:43:46 +0000471
Damien Miller5a5c2b92012-07-31 12:21:34 +1000472 if (use_privsep == PRIVSEP_ON)
Damien Miller868ea1e2014-01-17 16:47:04 +1100473 box = ssh_sandbox_init(pmonitor);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000474 pid = fork();
475 if (pid == -1) {
476 fatal("fork of unprivileged child failed");
477 } else if (pid != 0) {
Ben Lindstromce0f6342002-06-11 16:42:49 +0000478 debug2("Network child is on pid %ld", (long)pid);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000479
Darren Tucker3b4b2d32012-07-02 18:54:31 +1000480 pmonitor->m_pid = pid;
djm@openbsd.org141efe42015-01-14 20:05:27 +0000481 if (have_agent) {
482 r = ssh_get_authentication_socket(&auth_sock);
483 if (r != 0) {
484 error("Could not get agent socket: %s",
485 ssh_err(r));
486 have_agent = 0;
487 }
488 }
Damien Miller69ff1df2011-06-23 08:30:03 +1000489 if (box != NULL)
490 ssh_sandbox_parent_preauth(box, pid);
djm@openbsd.orgec00f912019-01-19 21:43:07 +0000491 monitor_child_preauth(ssh, pmonitor);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000492
Ben Lindstrom943481c2002-03-22 03:43:46 +0000493 /* Wait for the child's exit status */
Damien Miller69ff1df2011-06-23 08:30:03 +1000494 while (waitpid(pid, &status, 0) < 0) {
Damien Miller9ee2c602011-09-22 21:38:30 +1000495 if (errno == EINTR)
496 continue;
497 pmonitor->m_pid = -1;
498 fatal("%s: waitpid: %s", __func__, strerror(errno));
Damien Miller69ff1df2011-06-23 08:30:03 +1000499 }
Damien Miller9ee2c602011-09-22 21:38:30 +1000500 privsep_is_preauth = 0;
501 pmonitor->m_pid = -1;
Damien Miller69ff1df2011-06-23 08:30:03 +1000502 if (WIFEXITED(status)) {
503 if (WEXITSTATUS(status) != 0)
504 fatal("%s: preauth child exited with status %d",
505 __func__, WEXITSTATUS(status));
506 } else if (WIFSIGNALED(status))
507 fatal("%s: preauth child terminated by signal %d",
508 __func__, WTERMSIG(status));
509 if (box != NULL)
510 ssh_sandbox_parent_finish(box);
511 return 1;
Ben Lindstrom943481c2002-03-22 03:43:46 +0000512 } else {
513 /* child */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000514 close(pmonitor->m_sendfd);
Damien Miller8f0bf232011-06-20 14:42:23 +1000515 close(pmonitor->m_log_recvfd);
516
517 /* Arrange for logging to be sent to the monitor */
518 set_log_handler(mm_log_handler, pmonitor);
Ben Lindstrom943481c2002-03-22 03:43:46 +0000519
djm@openbsd.org5b4010d2015-11-16 22:51:05 +0000520 privsep_preauth_child();
Ben Lindstromf90f58d2002-03-26 01:53:03 +0000521 setproctitle("%s", "[net]");
Damien Miller69ff1df2011-06-23 08:30:03 +1000522 if (box != NULL)
523 ssh_sandbox_child(box);
524
525 return 0;
Ben Lindstrom943481c2002-03-22 03:43:46 +0000526 }
Ben Lindstrom943481c2002-03-22 03:43:46 +0000527}
528
Ben Lindstrom08105192002-03-22 02:50:06 +0000529static void
djm@openbsd.org6350e032019-01-19 21:42:30 +0000530privsep_postauth(struct ssh *ssh, Authctxt *authctxt)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000531{
Tim Rice9dd30812002-07-07 13:43:36 -0700532#ifdef DISABLE_FD_PASSING
Tim Rice8eff3192002-06-25 15:35:15 -0700533 if (1) {
534#else
djm@openbsd.org83b58182016-08-19 03:18:06 +0000535 if (authctxt->pw->pw_uid == 0) {
Tim Rice8eff3192002-06-25 15:35:15 -0700536#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000537 /* File descriptor passing is broken or root login */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000538 use_privsep = 0;
Darren Tucker45b01422005-10-03 18:20:00 +1000539 goto skip;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000540 }
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000541
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000542 /* New socket pair */
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000543 monitor_reinit(pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000544
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000545 pmonitor->m_pid = fork();
546 if (pmonitor->m_pid == -1)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000547 fatal("fork of unprivileged child failed");
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000548 else if (pmonitor->m_pid != 0) {
Damien Millerb61f3fc2008-07-11 17:36:48 +1000549 verbose("User child is on pid %ld", (long)pmonitor->m_pid);
markus@openbsd.org2808d182018-07-09 21:26:02 +0000550 sshbuf_reset(loginmsg);
djm@openbsd.orgec00f912019-01-19 21:43:07 +0000551 monitor_clear_keystate(ssh, pmonitor);
552 monitor_child_postauth(ssh, pmonitor);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000553
554 /* NEVERREACHED */
555 exit(0);
556 }
557
Damien Miller8f0bf232011-06-20 14:42:23 +1000558 /* child */
559
Ben Lindstrom7339b2a2002-05-15 16:25:01 +0000560 close(pmonitor->m_sendfd);
Damien Miller8f0bf232011-06-20 14:42:23 +1000561 pmonitor->m_sendfd = -1;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000562
563 /* Demote the private keys to public keys. */
564 demote_sensitive_data();
565
Damien Millerc9f880c2016-11-30 13:51:49 +1100566 reseed_prngs();
Damien Miller76e95da2008-03-07 18:31:24 +1100567
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000568 /* Drop privileges */
569 do_setusercontext(authctxt->pw);
570
Darren Tucker45b01422005-10-03 18:20:00 +1000571 skip:
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000572 /* It is safe now to apply the key state */
djm@openbsd.orgec00f912019-01-19 21:43:07 +0000573 monitor_apply_keystate(ssh, pmonitor);
Damien Miller9786e6e2005-07-26 21:54:56 +1000574
575 /*
576 * Tell the packet layer that authentication was successful, since
577 * this information is not part of the key state.
578 */
djm@openbsd.org6350e032019-01-19 21:42:30 +0000579 ssh_packet_set_authenticated(ssh);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000580}
581
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000582static void
583append_hostkey_type(struct sshbuf *b, const char *s)
584{
585 int r;
586
587 if (match_pattern_list(s, options.hostkeyalgorithms, 0) != 1) {
588 debug3("%s: %s key not permitted by HostkeyAlgorithms",
589 __func__, s);
590 return;
591 }
592 if ((r = sshbuf_putf(b, "%s%s", sshbuf_len(b) > 0 ? "," : "", s)) != 0)
593 fatal("%s: sshbuf_putf: %s", __func__, ssh_err(r));
594}
595
Ben Lindstrombba81212001-06-25 05:01:22 +0000596static char *
Damien Miller0bc1bd82000-11-13 22:57:25 +1100597list_hostkey_types(void)
598{
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000599 struct sshbuf *b;
600 struct sshkey *key;
Damien Millerf58b58c2003-11-17 21:18:23 +1100601 char *ret;
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000602 u_int i;
Damien Miller0e3b8722002-01-22 23:26:38 +1100603
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000604 if ((b = sshbuf_new()) == NULL)
605 fatal("%s: sshbuf_new failed", __func__);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100606 for (i = 0; i < options.num_host_key_files; i++) {
Damien Miller0a80ca12010-02-27 07:55:05 +1100607 key = sensitive_data.host_keys[i];
djm@openbsd.orgce63c4b2015-02-16 22:30:03 +0000608 if (key == NULL)
Damien Miller85b45e02013-07-20 13:21:52 +1000609 key = sensitive_data.host_pubkeys[i];
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000610 if (key == NULL)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100611 continue;
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +0000612 switch (key->type) {
Damien Miller0bc1bd82000-11-13 22:57:25 +1100613 case KEY_RSA:
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000614 /* for RSA we also support SHA2 signatures */
615 append_hostkey_type(b, "rsa-sha2-512");
616 append_hostkey_type(b, "rsa-sha2-256");
617 /* FALLTHROUGH */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100618 case KEY_DSA:
Damien Millereb8b60e2010-08-31 22:41:14 +1000619 case KEY_ECDSA:
Damien Miller5be9d9e2013-12-07 11:24:01 +1100620 case KEY_ED25519:
markus@openbsd.org1b11ea72018-02-23 15:58:37 +0000621 case KEY_XMSS:
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000622 append_hostkey_type(b, sshkey_ssh_name(key));
Damien Miller0bc1bd82000-11-13 22:57:25 +1100623 break;
624 }
Damien Miller0a80ca12010-02-27 07:55:05 +1100625 /* If the private key has a cert peer, then list that too */
626 key = sensitive_data.host_certificates[i];
627 if (key == NULL)
628 continue;
629 switch (key->type) {
630 case KEY_RSA_CERT:
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000631 /* for RSA we also support SHA2 signatures */
632 append_hostkey_type(b,
633 "rsa-sha2-512-cert-v01@openssh.com");
634 append_hostkey_type(b,
635 "rsa-sha2-256-cert-v01@openssh.com");
636 /* FALLTHROUGH */
Damien Miller0a80ca12010-02-27 07:55:05 +1100637 case KEY_DSA_CERT:
Damien Millereb8b60e2010-08-31 22:41:14 +1000638 case KEY_ECDSA_CERT:
Damien Miller5be9d9e2013-12-07 11:24:01 +1100639 case KEY_ED25519_CERT:
markus@openbsd.org1b11ea72018-02-23 15:58:37 +0000640 case KEY_XMSS_CERT:
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000641 append_hostkey_type(b, sshkey_ssh_name(key));
Damien Miller0a80ca12010-02-27 07:55:05 +1100642 break;
643 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100644 }
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000645 if ((ret = sshbuf_dup_string(b)) == NULL)
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000646 fatal("%s: sshbuf_dup_string failed", __func__);
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000647 sshbuf_free(b);
648 debug("%s: %s", __func__, ret);
Damien Millerf58b58c2003-11-17 21:18:23 +1100649 return ret;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100650}
651
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000652static struct sshkey *
djm@openbsd.org5104db72015-01-26 06:10:03 +0000653get_hostkey_by_type(int type, int nid, int need_private, struct ssh *ssh)
Damien Miller0bc1bd82000-11-13 22:57:25 +1100654{
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000655 u_int i;
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000656 struct sshkey *key;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000657
Damien Miller9f0f5c62001-12-21 14:45:46 +1100658 for (i = 0; i < options.num_host_key_files; i++) {
Damien Miller4e270b02010-04-16 15:56:21 +1000659 switch (type) {
Damien Miller4e270b02010-04-16 15:56:21 +1000660 case KEY_RSA_CERT:
661 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:
markus@openbsd.org1b11ea72018-02-23 15:58:37 +0000664 case KEY_XMSS_CERT:
Damien Miller0a80ca12010-02-27 07:55:05 +1100665 key = sensitive_data.host_certificates[i];
Damien Miller4e270b02010-04-16 15:56:21 +1000666 break;
667 default:
Damien Miller0a80ca12010-02-27 07:55:05 +1100668 key = sensitive_data.host_keys[i];
Damien Miller85b45e02013-07-20 13:21:52 +1000669 if (key == NULL && !need_private)
670 key = sensitive_data.host_pubkeys[i];
Damien Miller4e270b02010-04-16 15:56:21 +1000671 break;
672 }
djm@openbsd.org5104db72015-01-26 06:10:03 +0000673 if (key != NULL && key->type == type &&
674 (key->type != KEY_ECDSA || key->ecdsa_nid == nid))
Damien Miller0a80ca12010-02-27 07:55:05 +1100675 return need_private ?
676 sensitive_data.host_keys[i] : key;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100677 }
678 return NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000679}
680
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000681struct sshkey *
djm@openbsd.org5104db72015-01-26 06:10:03 +0000682get_hostkey_public_by_type(int type, int nid, struct ssh *ssh)
Damien Miller0a80ca12010-02-27 07:55:05 +1100683{
djm@openbsd.org5104db72015-01-26 06:10:03 +0000684 return get_hostkey_by_type(type, nid, 0, ssh);
Damien Miller0a80ca12010-02-27 07:55:05 +1100685}
686
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000687struct sshkey *
djm@openbsd.org5104db72015-01-26 06:10:03 +0000688get_hostkey_private_by_type(int type, int nid, struct ssh *ssh)
Damien Miller0a80ca12010-02-27 07:55:05 +1100689{
djm@openbsd.org5104db72015-01-26 06:10:03 +0000690 return get_hostkey_by_type(type, nid, 1, ssh);
Damien Miller0a80ca12010-02-27 07:55:05 +1100691}
692
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000693struct sshkey *
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000694get_hostkey_by_index(int ind)
695{
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000696 if (ind < 0 || (u_int)ind >= options.num_host_key_files)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000697 return (NULL);
698 return (sensitive_data.host_keys[ind]);
699}
700
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000701struct sshkey *
markus@openbsd.org57d10cb2015-01-19 20:16:15 +0000702get_hostkey_public_by_index(int ind, struct ssh *ssh)
Damien Miller85b45e02013-07-20 13:21:52 +1000703{
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000704 if (ind < 0 || (u_int)ind >= options.num_host_key_files)
Damien Miller85b45e02013-07-20 13:21:52 +1000705 return (NULL);
706 return (sensitive_data.host_pubkeys[ind]);
707}
708
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000709int
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000710get_hostkey_index(struct sshkey *key, int compare, struct ssh *ssh)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000711{
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000712 u_int i;
Ben Lindstrom822b6342002-06-23 21:38:49 +0000713
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000714 for (i = 0; i < options.num_host_key_files; i++) {
markus@openbsd.org5467fbc2018-07-11 18:53:29 +0000715 if (sshkey_is_cert(key)) {
djm@openbsd.org523463a2015-02-16 22:13:32 +0000716 if (key == sensitive_data.host_certificates[i] ||
717 (compare && sensitive_data.host_certificates[i] &&
718 sshkey_equal(key,
719 sensitive_data.host_certificates[i])))
Damien Miller0a80ca12010-02-27 07:55:05 +1100720 return (i);
721 } else {
djm@openbsd.org523463a2015-02-16 22:13:32 +0000722 if (key == sensitive_data.host_keys[i] ||
723 (compare && sensitive_data.host_keys[i] &&
724 sshkey_equal(key, sensitive_data.host_keys[i])))
Damien Miller0a80ca12010-02-27 07:55:05 +1100725 return (i);
djm@openbsd.org523463a2015-02-16 22:13:32 +0000726 if (key == sensitive_data.host_pubkeys[i] ||
727 (compare && sensitive_data.host_pubkeys[i] &&
728 sshkey_equal(key, sensitive_data.host_pubkeys[i])))
Damien Miller85b45e02013-07-20 13:21:52 +1000729 return (i);
Damien Miller0a80ca12010-02-27 07:55:05 +1100730 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000731 }
732 return (-1);
733}
734
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000735/* Inform the client of all hostkeys */
736static void
737notify_hostkeys(struct ssh *ssh)
738{
739 struct sshbuf *buf;
740 struct sshkey *key;
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000741 u_int i, nkeys;
742 int r;
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000743 char *fp;
744
dtucker@openbsd.orgd8f391c2015-04-10 05:16:50 +0000745 /* Some clients cannot cope with the hostkeys message, skip those. */
djm@openbsd.org04c091f2019-01-19 21:43:56 +0000746 if (ssh->compat & SSH_BUG_HOSTKEYS)
dtucker@openbsd.orgd8f391c2015-04-10 05:16:50 +0000747 return;
748
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000749 if ((buf = sshbuf_new()) == NULL)
750 fatal("%s: sshbuf_new", __func__);
751 for (i = nkeys = 0; i < options.num_host_key_files; i++) {
752 key = get_hostkey_public_by_index(i, ssh);
753 if (key == NULL || key->type == KEY_UNSPEC ||
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000754 sshkey_is_cert(key))
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000755 continue;
756 fp = sshkey_fingerprint(key, options.fingerprint_hash,
757 SSH_FP_DEFAULT);
758 debug3("%s: key %d: %s %s", __func__, i,
759 sshkey_ssh_name(key), fp);
760 free(fp);
djm@openbsd.org523463a2015-02-16 22:13:32 +0000761 if (nkeys == 0) {
djm@openbsd.org6350e032019-01-19 21:42:30 +0000762 /*
763 * Start building the request when we find the
764 * first usable key.
765 */
766 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
767 (r = sshpkt_put_cstring(ssh, "hostkeys-00@openssh.com")) != 0 ||
768 (r = sshpkt_put_u8(ssh, 0)) != 0) /* want reply */
769 sshpkt_fatal(ssh, r, "%s: start request", __func__);
djm@openbsd.org523463a2015-02-16 22:13:32 +0000770 }
djm@openbsd.org6350e032019-01-19 21:42:30 +0000771 /* Append the key to the request */
djm@openbsd.org523463a2015-02-16 22:13:32 +0000772 sshbuf_reset(buf);
773 if ((r = sshkey_putb(key, buf)) != 0)
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000774 fatal("%s: couldn't put hostkey %d: %s",
775 __func__, i, ssh_err(r));
djm@openbsd.org6350e032019-01-19 21:42:30 +0000776 if ((r = sshpkt_put_stringb(ssh, buf)) != 0)
777 sshpkt_fatal(ssh, r, "%s: append key", __func__);
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000778 nkeys++;
779 }
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000780 debug3("%s: sent %u hostkeys", __func__, nkeys);
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000781 if (nkeys == 0)
782 fatal("%s: no hostkeys", __func__);
djm@openbsd.org6350e032019-01-19 21:42:30 +0000783 if ((r = sshpkt_send(ssh)) != 0)
784 sshpkt_fatal(ssh, r, "%s: send", __func__);
djm@openbsd.org523463a2015-02-16 22:13:32 +0000785 sshbuf_free(buf);
djm@openbsd.org8d4f8722015-01-26 03:04:45 +0000786}
787
Damien Miller942da032000-08-18 13:59:06 +1000788/*
789 * returns 1 if connection should be dropped, 0 otherwise.
790 * dropping starts at connection #max_startups_begin with a probability
791 * of (max_startups_rate/100). the probability increases linearly until
792 * all connections are dropped for startups > max_startups
793 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000794static int
Damien Miller942da032000-08-18 13:59:06 +1000795drop_connection(int startups)
796{
Darren Tucker178fa662004-11-05 20:09:09 +1100797 int p, r;
Damien Miller942da032000-08-18 13:59:06 +1000798
799 if (startups < options.max_startups_begin)
800 return 0;
801 if (startups >= options.max_startups)
802 return 1;
803 if (options.max_startups_rate == 100)
804 return 1;
805
806 p = 100 - options.max_startups_rate;
807 p *= startups - options.max_startups_begin;
Darren Tucker178fa662004-11-05 20:09:09 +1100808 p /= options.max_startups - options.max_startups_begin;
Damien Miller942da032000-08-18 13:59:06 +1000809 p += options.max_startups_rate;
Damien Miller354c48c2008-05-19 14:50:00 +1000810 r = arc4random_uniform(100);
Damien Miller942da032000-08-18 13:59:06 +1000811
Darren Tucker3269b132004-11-05 20:20:59 +1100812 debug("drop_connection: p %d, r %d", p, r);
Damien Miller942da032000-08-18 13:59:06 +1000813 return (r < p) ? 1 : 0;
814}
815
Ben Lindstromade03f62001-12-06 18:22:17 +0000816static void
817usage(void)
818{
Damien Miller0c889cd2004-03-22 09:36:00 +1100819 fprintf(stderr, "%s, %s\n",
Damien Miller1f0311c2014-05-15 14:24:09 +1000820 SSH_RELEASE,
821#ifdef WITH_OPENSSL
djm@openbsd.orga65784c2018-10-23 05:56:35 +0000822 OpenSSL_version(OPENSSL_VERSION)
Damien Miller1f0311c2014-05-15 14:24:09 +1000823#else
824 "without OpenSSL"
825#endif
826 );
Damien Millerb4087862004-03-22 09:35:21 +1100827 fprintf(stderr,
naddy@openbsd.orgc38ea632016-08-15 12:27:56 +0000828"usage: sshd [-46DdeiqTt] [-C connection_spec] [-c host_cert_file]\n"
Damien Miller03d4d7e2013-04-23 15:21:06 +1000829" [-E log_file] [-f config_file] [-g login_grace_time]\n"
naddy@openbsd.orgc38ea632016-08-15 12:27:56 +0000830" [-h host_key_file] [-o option] [-p port] [-u len]\n"
Damien Millerb4087862004-03-22 09:35:21 +1100831 );
Ben Lindstromade03f62001-12-06 18:22:17 +0000832 exit(1);
833}
834
Darren Tucker645ab752004-06-25 13:33:20 +1000835static void
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000836send_rexec_state(int fd, struct sshbuf *conf)
Darren Tucker645ab752004-06-25 13:33:20 +1000837{
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000838 struct sshbuf *m;
839 int r;
Darren Tucker645ab752004-06-25 13:33:20 +1000840
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000841 debug3("%s: entering fd = %d config len %zu", __func__, fd,
842 sshbuf_len(conf));
Darren Tucker645ab752004-06-25 13:33:20 +1000843
844 /*
845 * Protocol from reexec master to child:
846 * string configuration
Darren Tuckerc6f82192005-09-27 22:46:32 +1000847 * string rngseed (only if OpenSSL is not self-seeded)
Darren Tucker645ab752004-06-25 13:33:20 +1000848 */
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000849 if ((m = sshbuf_new()) == NULL)
850 fatal("%s: sshbuf_new failed", __func__);
851 if ((r = sshbuf_put_stringb(m, conf)) != 0)
852 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Darren Tucker645ab752004-06-25 13:33:20 +1000853
Damien Miller72ef7c12015-01-15 02:21:31 +1100854#if defined(WITH_OPENSSL) && !defined(OPENSSL_PRNG_ONLY)
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000855 rexec_send_rng_seed(m);
Darren Tuckerc6f82192005-09-27 22:46:32 +1000856#endif
857
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000858 if (ssh_msg_send(fd, 0, m) == -1)
Darren Tucker645ab752004-06-25 13:33:20 +1000859 fatal("%s: ssh_msg_send failed", __func__);
860
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000861 sshbuf_free(m);
Darren Tucker645ab752004-06-25 13:33:20 +1000862
863 debug3("%s: done", __func__);
864}
865
866static void
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +0000867recv_rexec_state(int fd, struct sshbuf *conf)
Darren Tucker645ab752004-06-25 13:33:20 +1000868{
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +0000869 struct sshbuf *m;
870 u_char *cp, ver;
871 size_t len;
872 int r;
Darren Tucker645ab752004-06-25 13:33:20 +1000873
874 debug3("%s: entering fd = %d", __func__, fd);
875
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +0000876 if ((m = sshbuf_new()) == NULL)
877 fatal("%s: sshbuf_new failed", __func__);
878 if (ssh_msg_recv(fd, m) == -1)
Darren Tucker645ab752004-06-25 13:33:20 +1000879 fatal("%s: ssh_msg_recv failed", __func__);
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +0000880 if ((r = sshbuf_get_u8(m, &ver)) != 0)
881 fatal("%s: buffer error: %s", __func__, ssh_err(r));
882 if (ver != 0)
Darren Tucker645ab752004-06-25 13:33:20 +1000883 fatal("%s: rexec version mismatch", __func__);
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +0000884 if ((r = sshbuf_get_string(m, &cp, &len)) != 0)
885 fatal("%s: buffer error: %s", __func__, ssh_err(r));
886 if (conf != NULL && (r = sshbuf_put(conf, cp, len)))
887 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Damien Miller72ef7c12015-01-15 02:21:31 +1100888#if defined(WITH_OPENSSL) && !defined(OPENSSL_PRNG_ONLY)
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +0000889 rexec_recv_rng_seed(m);
Darren Tuckerc6f82192005-09-27 22:46:32 +1000890#endif
891
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +0000892 free(cp);
893 sshbuf_free(m);
Darren Tucker645ab752004-06-25 13:33:20 +1000894
895 debug3("%s: done", __func__);
896}
897
Damien Millera1f68402006-08-19 00:31:39 +1000898/* Accept a connection from inetd */
899static void
900server_accept_inetd(int *sock_in, int *sock_out)
901{
902 int fd;
903
904 startup_pipe = -1;
905 if (rexeced_flag) {
906 close(REEXEC_CONFIG_PASS_FD);
907 *sock_in = *sock_out = dup(STDIN_FILENO);
908 if (!debug_flag) {
909 startup_pipe = dup(REEXEC_STARTUP_PIPE_FD);
910 close(REEXEC_STARTUP_PIPE_FD);
911 }
912 } else {
913 *sock_in = dup(STDIN_FILENO);
914 *sock_out = dup(STDOUT_FILENO);
915 }
916 /*
917 * We intentionally do not close the descriptors 0, 1, and 2
918 * as our code for setting the descriptors won't work if
919 * ttyfd happens to be one of those.
920 */
921 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
922 dup2(fd, STDIN_FILENO);
923 dup2(fd, STDOUT_FILENO);
Darren Tucker0cca17f2013-06-06 08:21:14 +1000924 if (!log_stderr)
925 dup2(fd, STDERR_FILENO);
926 if (fd > (log_stderr ? STDERR_FILENO : STDOUT_FILENO))
Damien Millera1f68402006-08-19 00:31:39 +1000927 close(fd);
928 }
929 debug("inetd sockets after dupping: %d, %d", *sock_in, *sock_out);
930}
931
932/*
933 * Listen for TCP connections
934 */
935static void
djm@openbsd.orgacf559e2017-10-25 00:15:35 +0000936listen_on_addrs(struct listenaddr *la)
Damien Millera1f68402006-08-19 00:31:39 +1000937{
djm@openbsd.orgacf559e2017-10-25 00:15:35 +0000938 int ret, listen_sock;
Damien Millera1f68402006-08-19 00:31:39 +1000939 struct addrinfo *ai;
940 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
941
djm@openbsd.orgacf559e2017-10-25 00:15:35 +0000942 for (ai = la->addrs; ai; ai = ai->ai_next) {
Damien Millera1f68402006-08-19 00:31:39 +1000943 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
944 continue;
945 if (num_listen_socks >= MAX_LISTEN_SOCKS)
946 fatal("Too many listen sockets. "
947 "Enlarge MAX_LISTEN_SOCKS");
948 if ((ret = getnameinfo(ai->ai_addr, ai->ai_addrlen,
949 ntop, sizeof(ntop), strport, sizeof(strport),
950 NI_NUMERICHOST|NI_NUMERICSERV)) != 0) {
951 error("getnameinfo failed: %.100s",
Darren Tucker4abde772007-12-29 02:43:51 +1100952 ssh_gai_strerror(ret));
Damien Millera1f68402006-08-19 00:31:39 +1000953 continue;
954 }
955 /* Create socket for listening. */
Darren Tucker7bd98e72010-01-10 10:31:12 +1100956 listen_sock = socket(ai->ai_family, ai->ai_socktype,
957 ai->ai_protocol);
Damien Millera1f68402006-08-19 00:31:39 +1000958 if (listen_sock < 0) {
959 /* kernel may not support ipv6 */
960 verbose("socket: %.100s", strerror(errno));
961 continue;
962 }
963 if (set_nonblock(listen_sock) == -1) {
964 close(listen_sock);
965 continue;
966 }
djm@openbsd.org8071a692017-02-24 03:16:34 +0000967 if (fcntl(listen_sock, F_SETFD, FD_CLOEXEC) == -1) {
968 verbose("socket: CLOEXEC: %s", strerror(errno));
969 close(listen_sock);
970 continue;
971 }
djm@openbsd.orgacf559e2017-10-25 00:15:35 +0000972 /* Socket options */
973 set_reuseaddr(listen_sock);
974 if (la->rdomain != NULL &&
975 set_rdomain(listen_sock, la->rdomain) == -1) {
976 close(listen_sock);
977 continue;
978 }
Damien Millera1f68402006-08-19 00:31:39 +1000979
Damien Miller49d2a282008-01-20 08:56:00 +1100980 /* Only communicate in IPv6 over AF_INET6 sockets. */
Damien Miller04ee0f82009-11-18 17:48:30 +1100981 if (ai->ai_family == AF_INET6)
982 sock_set_v6only(listen_sock);
Damien Miller49d2a282008-01-20 08:56:00 +1100983
Damien Millera1f68402006-08-19 00:31:39 +1000984 debug("Bind to port %s on %s.", strport, ntop);
985
986 /* Bind the socket to the desired port. */
987 if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) {
988 error("Bind to port %s on %s failed: %.200s.",
989 strport, ntop, strerror(errno));
990 close(listen_sock);
991 continue;
992 }
993 listen_socks[num_listen_socks] = listen_sock;
994 num_listen_socks++;
995
996 /* Start listening on the port. */
997 if (listen(listen_sock, SSH_LISTEN_BACKLOG) < 0)
998 fatal("listen on [%s]:%s: %.100s",
999 ntop, strport, strerror(errno));
djm@openbsd.orgacf559e2017-10-25 00:15:35 +00001000 logit("Server listening on %s port %s%s%s.",
1001 ntop, strport,
1002 la->rdomain == NULL ? "" : " rdomain ",
1003 la->rdomain == NULL ? "" : la->rdomain);
Damien Millera1f68402006-08-19 00:31:39 +10001004 }
djm@openbsd.orgacf559e2017-10-25 00:15:35 +00001005}
1006
1007static void
1008server_listen(void)
1009{
1010 u_int i;
1011
1012 for (i = 0; i < options.num_listen_addrs; i++) {
1013 listen_on_addrs(&options.listen_addrs[i]);
1014 freeaddrinfo(options.listen_addrs[i].addrs);
1015 free(options.listen_addrs[i].rdomain);
1016 memset(&options.listen_addrs[i], 0,
1017 sizeof(options.listen_addrs[i]));
1018 }
1019 free(options.listen_addrs);
1020 options.listen_addrs = NULL;
1021 options.num_listen_addrs = 0;
Damien Millera1f68402006-08-19 00:31:39 +10001022
1023 if (!num_listen_socks)
1024 fatal("Cannot bind any address.");
1025}
1026
1027/*
1028 * The main TCP accept loop. Note that, for the non-debug case, returns
1029 * from this function are in a forked subprocess.
1030 */
1031static void
1032server_accept_loop(int *sock_in, int *sock_out, int *newsock, int *config_s)
1033{
1034 fd_set *fdset;
1035 int i, j, ret, maxfd;
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +00001036 int startups = 0;
Damien Millera1f68402006-08-19 00:31:39 +10001037 int startup_p[2] = { -1 , -1 };
1038 struct sockaddr_storage from;
1039 socklen_t fromlen;
1040 pid_t pid;
Damien Miller045bda52013-09-14 09:44:37 +10001041 u_char rnd[256];
Damien Millera1f68402006-08-19 00:31:39 +10001042
1043 /* setup fd set for accept */
1044 fdset = NULL;
1045 maxfd = 0;
1046 for (i = 0; i < num_listen_socks; i++)
1047 if (listen_socks[i] > maxfd)
1048 maxfd = listen_socks[i];
1049 /* pipes connected to unauthenticated childs */
1050 startup_pipes = xcalloc(options.max_startups, sizeof(int));
1051 for (i = 0; i < options.max_startups; i++)
1052 startup_pipes[i] = -1;
1053
1054 /*
1055 * Stay listening for connections until the system crashes or
1056 * the daemon is killed with a signal.
1057 */
1058 for (;;) {
1059 if (received_sighup)
1060 sighup_restart();
mmcc@openbsd.orgd59ce082015-12-10 17:08:40 +00001061 free(fdset);
deraadt@openbsd.orgce445b02015-08-20 22:32:42 +00001062 fdset = xcalloc(howmany(maxfd + 1, NFDBITS),
Damien Millera1f68402006-08-19 00:31:39 +10001063 sizeof(fd_mask));
1064
1065 for (i = 0; i < num_listen_socks; i++)
1066 FD_SET(listen_socks[i], fdset);
1067 for (i = 0; i < options.max_startups; i++)
1068 if (startup_pipes[i] != -1)
1069 FD_SET(startup_pipes[i], fdset);
1070
1071 /* Wait in select until there is a connection. */
1072 ret = select(maxfd+1, fdset, NULL, NULL, NULL);
1073 if (ret < 0 && errno != EINTR)
1074 error("select: %.100s", strerror(errno));
1075 if (received_sigterm) {
1076 logit("Received signal %d; terminating.",
1077 (int) received_sigterm);
1078 close_listen_socks();
djm@openbsd.org161cf412014-12-22 07:55:51 +00001079 if (options.pid_file != NULL)
1080 unlink(options.pid_file);
Damien Miller26b57ce2011-05-05 14:15:09 +10001081 exit(received_sigterm == SIGTERM ? 0 : 255);
Damien Millera1f68402006-08-19 00:31:39 +10001082 }
Damien Millera1f68402006-08-19 00:31:39 +10001083 if (ret < 0)
1084 continue;
1085
1086 for (i = 0; i < options.max_startups; i++)
1087 if (startup_pipes[i] != -1 &&
1088 FD_ISSET(startup_pipes[i], fdset)) {
1089 /*
1090 * the read end of the pipe is ready
1091 * if the child has closed the pipe
1092 * after successful authentication
1093 * or if the child has died
1094 */
1095 close(startup_pipes[i]);
1096 startup_pipes[i] = -1;
1097 startups--;
1098 }
1099 for (i = 0; i < num_listen_socks; i++) {
1100 if (!FD_ISSET(listen_socks[i], fdset))
1101 continue;
1102 fromlen = sizeof(from);
1103 *newsock = accept(listen_socks[i],
1104 (struct sockaddr *)&from, &fromlen);
1105 if (*newsock < 0) {
Damien Miller37f1c082013-04-23 15:20:43 +10001106 if (errno != EINTR && errno != EWOULDBLOCK &&
1107 errno != ECONNABORTED && errno != EAGAIN)
Damien Millera116d132012-04-22 11:23:46 +10001108 error("accept: %.100s",
1109 strerror(errno));
1110 if (errno == EMFILE || errno == ENFILE)
1111 usleep(100 * 1000);
Damien Millera1f68402006-08-19 00:31:39 +10001112 continue;
1113 }
1114 if (unset_nonblock(*newsock) == -1) {
1115 close(*newsock);
1116 continue;
1117 }
1118 if (drop_connection(startups) == 1) {
djm@openbsd.org08a1e702016-12-09 03:04:29 +00001119 char *laddr = get_local_ipaddr(*newsock);
1120 char *raddr = get_peer_ipaddr(*newsock);
1121
1122 verbose("drop connection #%d from [%s]:%d "
1123 "on [%s]:%d past MaxStartups", startups,
1124 raddr, get_peer_port(*newsock),
1125 laddr, get_local_port(*newsock));
1126 free(laddr);
1127 free(raddr);
Damien Millera1f68402006-08-19 00:31:39 +10001128 close(*newsock);
1129 continue;
1130 }
1131 if (pipe(startup_p) == -1) {
1132 close(*newsock);
1133 continue;
1134 }
1135
1136 if (rexec_flag && socketpair(AF_UNIX,
1137 SOCK_STREAM, 0, config_s) == -1) {
1138 error("reexec socketpair: %s",
1139 strerror(errno));
1140 close(*newsock);
1141 close(startup_p[0]);
1142 close(startup_p[1]);
1143 continue;
1144 }
1145
1146 for (j = 0; j < options.max_startups; j++)
1147 if (startup_pipes[j] == -1) {
1148 startup_pipes[j] = startup_p[0];
1149 if (maxfd < startup_p[0])
1150 maxfd = startup_p[0];
1151 startups++;
1152 break;
1153 }
1154
1155 /*
1156 * Got connection. Fork a child to handle it, unless
1157 * we are in debugging mode.
1158 */
1159 if (debug_flag) {
1160 /*
1161 * In debugging mode. Close the listening
1162 * socket, and start processing the
1163 * connection without forking.
1164 */
1165 debug("Server will not fork when running in debugging mode.");
1166 close_listen_socks();
1167 *sock_in = *newsock;
1168 *sock_out = *newsock;
1169 close(startup_p[0]);
1170 close(startup_p[1]);
1171 startup_pipe = -1;
1172 pid = getpid();
1173 if (rexec_flag) {
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +00001174 send_rexec_state(config_s[0], cfg);
Damien Millera1f68402006-08-19 00:31:39 +10001175 close(config_s[0]);
1176 }
1177 break;
1178 }
1179
1180 /*
1181 * Normal production daemon. Fork, and have
1182 * the child process the connection. The
1183 * parent continues listening.
1184 */
Damien Miller1b06dc32006-08-31 03:24:41 +10001185 platform_pre_fork();
Damien Millera1f68402006-08-19 00:31:39 +10001186 if ((pid = fork()) == 0) {
1187 /*
1188 * Child. Close the listening and
1189 * max_startup sockets. Start using
1190 * the accepted socket. Reinitialize
1191 * logging (since our pid has changed).
1192 * We break out of the loop to handle
1193 * the connection.
1194 */
Damien Miller1b06dc32006-08-31 03:24:41 +10001195 platform_post_fork_child();
Damien Millera1f68402006-08-19 00:31:39 +10001196 startup_pipe = startup_p[1];
1197 close_startup_pipes();
1198 close_listen_socks();
1199 *sock_in = *newsock;
1200 *sock_out = *newsock;
1201 log_init(__progname,
1202 options.log_level,
1203 options.log_facility,
1204 log_stderr);
1205 if (rexec_flag)
1206 close(config_s[0]);
1207 break;
1208 }
1209
1210 /* Parent. Stay in the loop. */
Damien Miller1b06dc32006-08-31 03:24:41 +10001211 platform_post_fork_parent(pid);
Damien Millera1f68402006-08-19 00:31:39 +10001212 if (pid < 0)
1213 error("fork: %.100s", strerror(errno));
1214 else
1215 debug("Forked child %ld.", (long)pid);
1216
1217 close(startup_p[1]);
1218
1219 if (rexec_flag) {
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +00001220 send_rexec_state(config_s[0], cfg);
Damien Millera1f68402006-08-19 00:31:39 +10001221 close(config_s[0]);
1222 close(config_s[1]);
1223 }
Damien Millera1f68402006-08-19 00:31:39 +10001224 close(*newsock);
1225
1226 /*
1227 * Ensure that our random state differs
1228 * from that of the child
1229 */
1230 arc4random_stir();
Damien Miller045bda52013-09-14 09:44:37 +10001231 arc4random_buf(rnd, sizeof(rnd));
Damien Miller72ef7c12015-01-15 02:21:31 +11001232#ifdef WITH_OPENSSL
Damien Miller045bda52013-09-14 09:44:37 +10001233 RAND_seed(rnd, sizeof(rnd));
Damien Miller07889c72015-11-14 18:44:49 +11001234 if ((RAND_bytes((u_char *)rnd, 1)) != 1)
1235 fatal("%s: RAND_bytes failed", __func__);
Damien Miller72ef7c12015-01-15 02:21:31 +11001236#endif
Damien Miller1d2c4562014-02-04 11:18:20 +11001237 explicit_bzero(rnd, sizeof(rnd));
Damien Millera1f68402006-08-19 00:31:39 +10001238 }
1239
1240 /* child process check (or debug mode) */
1241 if (num_listen_socks < 0)
1242 break;
1243 }
1244}
1245
djm@openbsd.org95767262016-03-07 19:02:43 +00001246/*
1247 * If IP options are supported, make sure there are none (log and
1248 * return an error if any are found). Basically we are worried about
1249 * source routing; it can be used to pretend you are somebody
1250 * (ip-address) you are not. That itself may be "almost acceptable"
djm@openbsd.org001aa552018-04-10 00:10:49 +00001251 * under certain circumstances, but rhosts authentication is useless
djm@openbsd.org95767262016-03-07 19:02:43 +00001252 * if source routing is accepted. Notice also that if we just dropped
1253 * source routing here, the other side could use IP spoofing to do
1254 * rest of the interaction and could still bypass security. So we
1255 * exit here if we detect any IP options.
1256 */
1257static void
1258check_ip_options(struct ssh *ssh)
1259{
1260#ifdef IP_OPTIONS
1261 int sock_in = ssh_packet_get_connection_in(ssh);
1262 struct sockaddr_storage from;
djm@openbsd.org95767262016-03-07 19:02:43 +00001263 u_char opts[200];
djm@openbsd.orgdc664d12016-08-28 22:28:12 +00001264 socklen_t i, option_size = sizeof(opts), fromlen = sizeof(from);
djm@openbsd.org95767262016-03-07 19:02:43 +00001265 char text[sizeof(opts) * 3 + 1];
1266
1267 memset(&from, 0, sizeof(from));
1268 if (getpeername(sock_in, (struct sockaddr *)&from,
1269 &fromlen) < 0)
1270 return;
1271 if (from.ss_family != AF_INET)
1272 return;
1273 /* XXX IPv6 options? */
1274
1275 if (getsockopt(sock_in, IPPROTO_IP, IP_OPTIONS, opts,
1276 &option_size) >= 0 && option_size != 0) {
1277 text[0] = '\0';
1278 for (i = 0; i < option_size; i++)
1279 snprintf(text + i*3, sizeof(text) - i*3,
1280 " %2.2x", opts[i]);
1281 fatal("Connection from %.100s port %d with IP opts: %.800s",
1282 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh), text);
1283 }
1284 return;
1285#endif /* IP_OPTIONS */
1286}
Damien Millera1f68402006-08-19 00:31:39 +10001287
djm@openbsd.org35eb33f2017-10-25 00:17:08 +00001288/* Set the routing domain for this process */
1289static void
1290set_process_rdomain(struct ssh *ssh, const char *name)
1291{
Damien Miller43c29bb2017-10-25 13:10:59 +11001292#if defined(HAVE_SYS_SET_PROCESS_RDOMAIN)
1293 if (name == NULL)
1294 return; /* default */
1295
1296 if (strcmp(name, "%D") == 0) {
1297 /* "expands" to routing domain of connection */
1298 if ((name = ssh_packet_rdomain_in(ssh)) == NULL)
1299 return;
1300 }
1301 /* NB. We don't pass 'ssh' to sys_set_process_rdomain() */
1302 return sys_set_process_rdomain(name);
1303#elif defined(__OpenBSD__)
djm@openbsd.org35eb33f2017-10-25 00:17:08 +00001304 int rtable, ortable = getrtable();
1305 const char *errstr;
1306
1307 if (name == NULL)
1308 return; /* default */
1309
1310 if (strcmp(name, "%D") == 0) {
1311 /* "expands" to routing domain of connection */
1312 if ((name = ssh_packet_rdomain_in(ssh)) == NULL)
1313 return;
1314 }
1315
1316 rtable = (int)strtonum(name, 0, 255, &errstr);
1317 if (errstr != NULL) /* Shouldn't happen */
1318 fatal("Invalid routing domain \"%s\": %s", name, errstr);
1319 if (rtable != ortable && setrtable(rtable) != 0)
1320 fatal("Unable to set routing domain %d: %s",
1321 rtable, strerror(errno));
1322 debug("%s: set routing domain %d (was %d)", __func__, rtable, ortable);
Damien Miller43c29bb2017-10-25 13:10:59 +11001323#else /* defined(__OpenBSD__) */
1324 fatal("Unable to set routing domain: not supported in this platform");
1325#endif
djm@openbsd.org35eb33f2017-10-25 00:17:08 +00001326}
1327
dtucker@openbsd.orge9d910b2018-04-13 03:57:26 +00001328static void
1329accumulate_host_timing_secret(struct sshbuf *server_cfg,
1330 const struct sshkey *key)
1331{
1332 static struct ssh_digest_ctx *ctx;
1333 u_char *hash;
1334 size_t len;
1335 struct sshbuf *buf;
1336 int r;
1337
1338 if (ctx == NULL && (ctx = ssh_digest_start(SSH_DIGEST_SHA512)) == NULL)
1339 fatal("%s: ssh_digest_start", __func__);
1340 if (key == NULL) { /* finalize */
1341 /* add server config in case we are using agent for host keys */
1342 if (ssh_digest_update(ctx, sshbuf_ptr(server_cfg),
1343 sshbuf_len(server_cfg)) != 0)
1344 fatal("%s: ssh_digest_update", __func__);
1345 len = ssh_digest_bytes(SSH_DIGEST_SHA512);
1346 hash = xmalloc(len);
1347 if (ssh_digest_final(ctx, hash, len) != 0)
1348 fatal("%s: ssh_digest_final", __func__);
1349 options.timing_secret = PEEK_U64(hash);
1350 freezero(hash, len);
1351 ssh_digest_free(ctx);
1352 ctx = NULL;
1353 return;
1354 }
1355 if ((buf = sshbuf_new()) == NULL)
1356 fatal("%s could not allocate buffer", __func__);
1357 if ((r = sshkey_private_serialize(key, buf)) != 0)
1358 fatal("sshkey_private_serialize: %s", ssh_err(r));
1359 if (ssh_digest_update(ctx, sshbuf_ptr(buf), sshbuf_len(buf)) != 0)
1360 fatal("%s: ssh_digest_update", __func__);
1361 sshbuf_reset(buf);
1362 sshbuf_free(buf);
1363}
1364
Damien Miller95def091999-11-25 00:26:21 +11001365/*
1366 * Main program for the daemon.
1367 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001368int
1369main(int ac, char **av)
1370{
djm@openbsd.org95767262016-03-07 19:02:43 +00001371 struct ssh *ssh = NULL;
Damien Miller95def091999-11-25 00:26:21 +11001372 extern char *optarg;
1373 extern int optind;
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001374 int r, opt, on = 1, already_daemon, remote_port;
Damien Miller386c6a22004-06-30 22:40:20 +10001375 int sock_in = -1, sock_out = -1, newsock = -1;
djm@openbsd.org68af80e2017-10-25 00:19:47 +00001376 const char *remote_ip, *rdomain;
dtucker@openbsd.org15fdfc92015-04-15 23:23:25 +00001377 char *fp, *line, *laddr, *logfile = NULL;
Damien Millera1f68402006-08-19 00:31:39 +10001378 int config_s[2] = { -1 , -1 };
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001379 u_int i, j;
Damien Millerb61f3fc2008-07-11 17:36:48 +10001380 u_int64_t ibytes, obytes;
Damien Miller6ca16c62008-06-16 07:50:58 +10001381 mode_t new_umask;
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001382 struct sshkey *key;
1383 struct sshkey *pubkey;
Damien Miller85b45e02013-07-20 13:21:52 +10001384 int keytype;
Darren Tucker3e33cec2003-10-02 16:12:36 +10001385 Authctxt *authctxt;
dtucker@openbsd.org@openbsd.org0208a482017-11-03 03:18:53 +00001386 struct connection_info *connection_info = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001387
dtucker@openbsd.orgffb1e7e2016-02-15 09:47:49 +00001388 ssh_malloc_init(); /* must be called before any mallocs */
1389
Kevin Steves0ea1d9d2002-04-25 18:17:04 +00001390#ifdef HAVE_SECUREWARE
1391 (void)set_auth_parameters(ac, av);
1392#endif
Damien Miller59d3d5b2003-08-22 09:34:41 +10001393 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +10001394
Damien Millera8ed44b2003-01-10 09:53:12 +11001395 /* Save argv. Duplicate so setproctitle emulation doesn't clobber it */
Damien Millerb8c656e2000-06-28 15:22:41 +10001396 saved_argc = ac;
Darren Tucker17c5d032004-06-25 14:22:23 +10001397 rexec_argc = ac;
Darren Tuckerd8093e42006-05-04 16:24:34 +10001398 saved_argv = xcalloc(ac + 1, sizeof(*saved_argv));
Damien Millere3fa20e2017-10-23 16:25:24 +11001399 for (i = 0; (int)i < ac; i++)
Damien Millera8ed44b2003-01-10 09:53:12 +11001400 saved_argv[i] = xstrdup(av[i]);
Damien Miller04cb5362003-05-15 21:29:10 +10001401 saved_argv[i] = NULL;
Damien Millera8ed44b2003-01-10 09:53:12 +11001402
1403#ifndef HAVE_SETPROCTITLE
1404 /* Prepare for later setproctitle emulation */
1405 compat_init_setproctitle(ac, av);
Damien Millerf2e3e9d2003-06-02 12:15:54 +10001406 av = saved_argv;
Damien Millera8ed44b2003-01-10 09:53:12 +11001407#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001408
Damien Millerbfba3542004-03-22 09:29:57 +11001409 if (geteuid() == 0 && setgroups(0, NULL) == -1)
1410 debug("setgroups(): %.200s", strerror(errno));
1411
Darren Tuckerce321d82005-10-03 18:11:24 +10001412 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1413 sanitise_stdfd();
1414
Damien Miller42c5ec42018-11-23 10:40:06 +11001415 seed_rng();
1416
Damien Miller95def091999-11-25 00:26:21 +11001417 /* Initialize configuration options to their default values. */
1418 initialize_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001419
Damien Miller95def091999-11-25 00:26:21 +11001420 /* Parse command-line arguments. */
djm@openbsd.org3e91b4e2015-05-24 23:39:16 +00001421 while ((opt = getopt(ac, av,
1422 "C:E:b:c:f:g:h:k:o:p:u:46DQRTdeiqrt")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +11001423 switch (opt) {
Damien Miller34132e52000-01-14 15:45:46 +11001424 case '4':
Darren Tucker0f383232005-01-20 10:57:56 +11001425 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +11001426 break;
1427 case '6':
Darren Tucker0f383232005-01-20 10:57:56 +11001428 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +11001429 break;
Damien Miller95def091999-11-25 00:26:21 +11001430 case 'f':
1431 config_file_name = optarg;
1432 break;
Damien Miller0a80ca12010-02-27 07:55:05 +11001433 case 'c':
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001434 servconf_add_hostcert("[command-line]", 0,
1435 &options, optarg);
Damien Miller0a80ca12010-02-27 07:55:05 +11001436 break;
Damien Miller95def091999-11-25 00:26:21 +11001437 case 'd':
Darren Tuckere98dfa32003-07-19 19:54:31 +10001438 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +11001439 debug_flag = 1;
1440 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +10001441 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3)
Damien Millere4340be2000-09-16 13:29:08 +11001442 options.log_level++;
Damien Miller95def091999-11-25 00:26:21 +11001443 break;
Ben Lindstromc72745a2000-12-02 19:03:54 +00001444 case 'D':
1445 no_daemon_flag = 1;
1446 break;
Damien Miller03d4d7e2013-04-23 15:21:06 +10001447 case 'E':
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +00001448 logfile = optarg;
Damien Miller03d4d7e2013-04-23 15:21:06 +10001449 /* FALLTHROUGH */
Ben Lindstrom9fce9f02001-04-11 23:10:09 +00001450 case 'e':
1451 log_stderr = 1;
1452 break;
Damien Miller95def091999-11-25 00:26:21 +11001453 case 'i':
1454 inetd_flag = 1;
1455 break;
Darren Tucker645ab752004-06-25 13:33:20 +10001456 case 'r':
1457 rexec_flag = 0;
1458 break;
1459 case 'R':
1460 rexeced_flag = 1;
1461 inetd_flag = 1;
1462 break;
Damien Miller95def091999-11-25 00:26:21 +11001463 case 'Q':
Ben Lindstromd5390202001-01-29 08:07:43 +00001464 /* ignored */
Damien Miller95def091999-11-25 00:26:21 +11001465 break;
1466 case 'q':
1467 options.log_level = SYSLOG_LEVEL_QUIET;
1468 break;
1469 case 'b':
naddy@openbsd.orgc38ea632016-08-15 12:27:56 +00001470 /* protocol 1, ignored */
Damien Miller95def091999-11-25 00:26:21 +11001471 break;
1472 case 'p':
Damien Miller34132e52000-01-14 15:45:46 +11001473 options.ports_from_cmdline = 1;
Damien Millere4340be2000-09-16 13:29:08 +11001474 if (options.num_ports >= MAX_PORTS) {
1475 fprintf(stderr, "too many ports.\n");
1476 exit(1);
1477 }
Ben Lindstrom19066a12001-04-12 23:39:26 +00001478 options.ports[options.num_ports++] = a2port(optarg);
Damien Miller3dc71ad2009-01-28 16:31:22 +11001479 if (options.ports[options.num_ports-1] <= 0) {
Ben Lindstrom19066a12001-04-12 23:39:26 +00001480 fprintf(stderr, "Bad port number.\n");
1481 exit(1);
1482 }
Damien Miller95def091999-11-25 00:26:21 +11001483 break;
1484 case 'g':
Ben Lindstrom1bda4c82001-06-05 19:59:08 +00001485 if ((options.login_grace_time = convtime(optarg)) == -1) {
1486 fprintf(stderr, "Invalid login grace time.\n");
1487 exit(1);
1488 }
Damien Miller95def091999-11-25 00:26:21 +11001489 break;
1490 case 'k':
naddy@openbsd.orgc38ea632016-08-15 12:27:56 +00001491 /* protocol 1, ignored */
Damien Miller95def091999-11-25 00:26:21 +11001492 break;
1493 case 'h':
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001494 servconf_add_hostkey("[command-line]", 0,
djm@openbsd.org928f1232018-11-19 04:12:32 +00001495 &options, optarg, 1);
Damien Miller95def091999-11-25 00:26:21 +11001496 break;
Ben Lindstrom794325a2001-08-06 21:09:07 +00001497 case 't':
1498 test_flag = 1;
1499 break;
Darren Tuckere7140f22008-06-10 23:01:51 +10001500 case 'T':
1501 test_flag = 2;
1502 break;
1503 case 'C':
djm@openbsd.org172a5922019-01-19 21:37:48 +00001504 connection_info = get_connection_info(ssh, 0, 0);
Darren Tuckerfbcf8272012-05-19 19:37:01 +10001505 if (parse_server_match_testspec(connection_info,
1506 optarg) == -1)
1507 exit(1);
Darren Tuckere7140f22008-06-10 23:01:51 +10001508 break;
Damien Miller942da032000-08-18 13:59:06 +10001509 case 'u':
deraadt@openbsd.org087266e2015-01-20 23:14:00 +00001510 utmp_len = (u_int)strtonum(optarg, 0, HOST_NAME_MAX+1+1, NULL);
1511 if (utmp_len > HOST_NAME_MAX+1) {
Ben Lindstrom41daec72002-07-23 21:15:13 +00001512 fprintf(stderr, "Invalid utmp length.\n");
1513 exit(1);
1514 }
Damien Miller942da032000-08-18 13:59:06 +10001515 break;
Ben Lindstromade03f62001-12-06 18:22:17 +00001516 case 'o':
Damien Millerb9997192003-12-17 16:29:22 +11001517 line = xstrdup(optarg);
1518 if (process_server_config_line(&options, line,
Darren Tuckerfbcf8272012-05-19 19:37:01 +10001519 "command-line", 0, NULL, NULL) != 0)
Damien Miller9f0f5c62001-12-21 14:45:46 +11001520 exit(1);
Darren Tuckera627d422013-06-02 07:31:17 +10001521 free(line);
Ben Lindstromade03f62001-12-06 18:22:17 +00001522 break;
Damien Miller95def091999-11-25 00:26:21 +11001523 case '?':
1524 default:
Ben Lindstromade03f62001-12-06 18:22:17 +00001525 usage();
1526 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001527 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001528 }
Darren Tucker645ab752004-06-25 13:33:20 +10001529 if (rexeced_flag || inetd_flag)
1530 rexec_flag = 0;
djm@openbsd.org2a358622018-11-16 03:26:01 +00001531 if (!test_flag && rexec_flag && !path_absolute(av[0]))
Darren Tucker645ab752004-06-25 13:33:20 +10001532 fatal("sshd re-exec requires execution with an absolute path");
1533 if (rexeced_flag)
Damien Miller035a5b42004-06-26 08:16:31 +10001534 closefrom(REEXEC_MIN_FREE_FD);
1535 else
1536 closefrom(REEXEC_DEVCRYPTO_RESERVED_FD);
Darren Tucker645ab752004-06-25 13:33:20 +10001537
Damien Miller03d4d7e2013-04-23 15:21:06 +10001538 /* If requested, redirect the logs to the specified logfile. */
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +00001539 if (logfile != NULL)
Damien Miller03d4d7e2013-04-23 15:21:06 +10001540 log_redirect_stderr_to(logfile);
Damien Miller34132e52000-01-14 15:45:46 +11001541 /*
1542 * Force logging to stderr until we have loaded the private host
1543 * key (unless started from inetd)
1544 */
Kevin Stevesec84dc12000-12-13 17:45:15 +00001545 log_init(__progname,
Damien Miller5aa5d782002-02-08 22:01:54 +11001546 options.log_level == SYSLOG_LEVEL_NOT_SET ?
1547 SYSLOG_LEVEL_INFO : options.log_level,
1548 options.log_facility == SYSLOG_FACILITY_NOT_SET ?
1549 SYSLOG_FACILITY_AUTH : options.log_facility,
Ben Lindstromc2faa4a2002-11-09 15:50:03 +00001550 log_stderr || !inetd_flag);
Damien Miller34132e52000-01-14 15:45:46 +11001551
Darren Tucker86c093d2004-03-08 22:59:03 +11001552 /*
1553 * Unset KRB5CCNAME, otherwise the user's session may inherit it from
1554 * root's environment
Damien Miller94cf4c82005-07-17 17:04:47 +10001555 */
Darren Tucker9dc6c7d2005-02-02 18:30:33 +11001556 if (getenv("KRB5CCNAME") != NULL)
Tim Ricee3609c92012-02-14 10:03:30 -08001557 (void) unsetenv("KRB5CCNAME");
Darren Tucker9dc6c7d2005-02-02 18:30:33 +11001558
Darren Tucker645ab752004-06-25 13:33:20 +10001559 sensitive_data.have_ssh2_key = 0;
1560
Darren Tuckere7140f22008-06-10 23:01:51 +10001561 /*
dtucker@openbsd.org@openbsd.org0208a482017-11-03 03:18:53 +00001562 * If we're not doing an extended test do not silently ignore connection
1563 * test params.
Darren Tuckere7140f22008-06-10 23:01:51 +10001564 */
dtucker@openbsd.org@openbsd.org0208a482017-11-03 03:18:53 +00001565 if (test_flag < 2 && connection_info != NULL)
Darren Tuckere7140f22008-06-10 23:01:51 +10001566 fatal("Config test connection parameter (-C) provided without "
1567 "test mode (-T)");
1568
Darren Tucker645ab752004-06-25 13:33:20 +10001569 /* Fetch our configuration */
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +00001570 if ((cfg = sshbuf_new()) == NULL)
1571 fatal("%s: sshbuf_new failed", __func__);
Darren Tucker645ab752004-06-25 13:33:20 +10001572 if (rexeced_flag)
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +00001573 recv_rexec_state(REEXEC_CONFIG_PASS_FD, cfg);
djm@openbsd.orgdbcc6522015-04-27 00:21:21 +00001574 else if (strcasecmp(config_file_name, "none") != 0)
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +00001575 load_server_config(config_file_name, cfg);
Darren Tucker645ab752004-06-25 13:33:20 +10001576
Darren Tucker45150472006-07-12 22:34:17 +10001577 parse_server_config(&options, rexeced_flag ? "rexec" : config_file_name,
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +00001578 cfg, NULL);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001579
Damien Miller95def091999-11-25 00:26:21 +11001580 /* Fill in default values for those options not explicitly set. */
1581 fill_default_server_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001582
Darren Tucker97b1bb52007-03-21 20:38:53 +11001583 /* challenge-response is implemented via keyboard interactive */
1584 if (options.challenge_response_authentication)
1585 options.kbd_interactive_authentication = 1;
1586
Damien Millerd0d10992012-11-04 22:23:14 +11001587 /* Check that options are sensible */
1588 if (options.authorized_keys_command_user == NULL &&
1589 (options.authorized_keys_command != NULL &&
1590 strcasecmp(options.authorized_keys_command, "none") != 0))
1591 fatal("AuthorizedKeysCommand set without "
1592 "AuthorizedKeysCommandUser");
djm@openbsd.orgbcc50d82015-05-21 06:43:30 +00001593 if (options.authorized_principals_command_user == NULL &&
1594 (options.authorized_principals_command != NULL &&
1595 strcasecmp(options.authorized_principals_command, "none") != 0))
1596 fatal("AuthorizedPrincipalsCommand set without "
1597 "AuthorizedPrincipalsCommandUser");
Damien Millerd0d10992012-11-04 22:23:14 +11001598
Damien Millera6e3f012012-11-04 23:21:40 +11001599 /*
1600 * Check whether there is any path through configured auth methods.
1601 * Unfortunately it is not possible to verify this generally before
1602 * daemonisation in the presence of Match block, but this catches
1603 * and warns for trivial misconfigurations that could break login.
1604 */
1605 if (options.num_auth_methods != 0) {
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001606 for (i = 0; i < options.num_auth_methods; i++) {
1607 if (auth2_methods_valid(options.auth_methods[i],
Damien Millera6e3f012012-11-04 23:21:40 +11001608 1) == 0)
1609 break;
1610 }
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001611 if (i >= options.num_auth_methods)
Damien Millera6e3f012012-11-04 23:21:40 +11001612 fatal("AuthenticationMethods cannot be satisfied by "
1613 "enabled authentication methods");
1614 }
1615
Damien Miller95def091999-11-25 00:26:21 +11001616 /* Check that there are no remaining arguments. */
1617 if (optind < ac) {
1618 fprintf(stderr, "Extra argument %s.\n", av[optind]);
1619 exit(1);
1620 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001621
Damien Miller22e8a1e2013-02-12 11:04:48 +11001622 debug("sshd version %s, %s", SSH_VERSION,
Damien Miller1f0311c2014-05-15 14:24:09 +10001623#ifdef WITH_OPENSSL
djm@openbsd.orga65784c2018-10-23 05:56:35 +00001624 OpenSSL_version(OPENSSL_VERSION)
Damien Miller1f0311c2014-05-15 14:24:09 +10001625#else
1626 "without OpenSSL"
1627#endif
1628 );
Damien Miller2ccf6611999-11-15 15:25:10 +11001629
Darren Tuckerdf0e4382006-11-07 11:28:40 +11001630 /* Store privilege separation user for later use if required. */
Darren Tuckerd13281f2017-03-29 12:39:39 +11001631 privsep_chroot = use_privsep && (getuid() == 0 || geteuid() == 0);
Darren Tuckerdf0e4382006-11-07 11:28:40 +11001632 if ((privsep_pw = getpwnam(SSH_PRIVSEP_USER)) == NULL) {
Darren Tuckerd13281f2017-03-29 12:39:39 +11001633 if (privsep_chroot || options.kerberos_authentication)
Darren Tuckerdf0e4382006-11-07 11:28:40 +11001634 fatal("Privilege separation user %s does not exist",
1635 SSH_PRIVSEP_USER);
1636 } else {
Darren Tuckerdf0e4382006-11-07 11:28:40 +11001637 privsep_pw = pwcopy(privsep_pw);
djm@openbsd.orgd6364f62018-01-23 05:01:15 +00001638 freezero(privsep_pw->pw_passwd, strlen(privsep_pw->pw_passwd));
Darren Tuckerdf0e4382006-11-07 11:28:40 +11001639 privsep_pw->pw_passwd = xstrdup("*");
1640 }
Damien Miller6433df02006-09-07 10:36:43 +10001641 endpwent();
1642
Damien Miller85b45e02013-07-20 13:21:52 +10001643 /* load host keys */
Damien Miller07d86be2006-03-26 14:19:21 +11001644 sensitive_data.host_keys = xcalloc(options.num_host_key_files,
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001645 sizeof(struct sshkey *));
Damien Miller85b45e02013-07-20 13:21:52 +10001646 sensitive_data.host_pubkeys = xcalloc(options.num_host_key_files,
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001647 sizeof(struct sshkey *));
Damien Miller85b45e02013-07-20 13:21:52 +10001648
1649 if (options.host_key_agent) {
1650 if (strcmp(options.host_key_agent, SSH_AUTHSOCKET_ENV_NAME))
1651 setenv(SSH_AUTHSOCKET_ENV_NAME,
1652 options.host_key_agent, 1);
djm@openbsd.org83f8ffa2015-01-17 18:53:34 +00001653 if ((r = ssh_get_authentication_socket(NULL)) == 0)
1654 have_agent = 1;
1655 else
1656 error("Could not connect to agent \"%s\": %s",
1657 options.host_key_agent, ssh_err(r));
Damien Miller85b45e02013-07-20 13:21:52 +10001658 }
Damien Millereba71ba2000-04-29 23:57:08 +10001659
Damien Miller9f0f5c62001-12-21 14:45:46 +11001660 for (i = 0; i < options.num_host_key_files; i++) {
djm@openbsd.org928f1232018-11-19 04:12:32 +00001661 int ll = options.host_key_file_userprovided[i] ?
1662 SYSLOG_LEVEL_ERROR : SYSLOG_LEVEL_DEBUG1;
1663
djm@openbsd.org161cf412014-12-22 07:55:51 +00001664 if (options.host_key_files[i] == NULL)
1665 continue;
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001666 if ((r = sshkey_load_private(options.host_key_files[i], "",
1667 &key, NULL)) != 0 && r != SSH_ERR_SYSTEM_ERROR)
djm@openbsd.org928f1232018-11-19 04:12:32 +00001668 do_log2(ll, "Unable to load host key \"%s\": %s",
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001669 options.host_key_files[i], ssh_err(r));
1670 if ((r = sshkey_load_public(options.host_key_files[i],
1671 &pubkey, NULL)) != 0 && r != SSH_ERR_SYSTEM_ERROR)
djm@openbsd.org928f1232018-11-19 04:12:32 +00001672 do_log2(ll, "Unable to load host key \"%s\": %s",
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001673 options.host_key_files[i], ssh_err(r));
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00001674 if (pubkey == NULL && key != NULL)
djm@openbsd.org482d23b2018-09-13 02:08:33 +00001675 if ((r = sshkey_from_private(key, &pubkey)) != 0)
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001676 fatal("Could not demote key: \"%s\": %s",
1677 options.host_key_files[i], ssh_err(r));
Ben Lindstromd0fca422001-03-26 13:44:06 +00001678 sensitive_data.host_keys[i] = key;
Damien Miller85b45e02013-07-20 13:21:52 +10001679 sensitive_data.host_pubkeys[i] = pubkey;
1680
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +00001681 if (key == NULL && pubkey != NULL && have_agent) {
djm@openbsd.orgce63c4b2015-02-16 22:30:03 +00001682 debug("will rely on agent for hostkey %s",
1683 options.host_key_files[i]);
Damien Miller85b45e02013-07-20 13:21:52 +10001684 keytype = pubkey->type;
1685 } else if (key != NULL) {
1686 keytype = key->type;
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +00001687 accumulate_host_timing_secret(cfg, key);
Damien Miller85b45e02013-07-20 13:21:52 +10001688 } else {
djm@openbsd.org928f1232018-11-19 04:12:32 +00001689 do_log2(ll, "Unable to load host key: %s",
Ben Lindstrom15f33862001-04-16 02:00:02 +00001690 options.host_key_files[i]);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001691 sensitive_data.host_keys[i] = NULL;
Damien Miller85b45e02013-07-20 13:21:52 +10001692 sensitive_data.host_pubkeys[i] = NULL;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001693 continue;
1694 }
Damien Miller85b45e02013-07-20 13:21:52 +10001695
1696 switch (keytype) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001697 case KEY_RSA:
1698 case KEY_DSA:
Damien Millereb8b60e2010-08-31 22:41:14 +10001699 case KEY_ECDSA:
Damien Miller5be9d9e2013-12-07 11:24:01 +11001700 case KEY_ED25519:
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00001701 case KEY_XMSS:
djm@openbsd.org6049a542015-01-31 20:30:05 +00001702 if (have_agent || key != NULL)
1703 sensitive_data.have_ssh2_key = 1;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001704 break;
1705 }
djm@openbsd.org6049a542015-01-31 20:30:05 +00001706 if ((fp = sshkey_fingerprint(pubkey, options.fingerprint_hash,
1707 SSH_FP_DEFAULT)) == NULL)
1708 fatal("sshkey_fingerprint failed");
1709 debug("%s host key #%d: %s %s",
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +00001710 key ? "private" : "agent", i, sshkey_ssh_name(pubkey), fp);
djm@openbsd.org6049a542015-01-31 20:30:05 +00001711 free(fp);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001712 }
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +00001713 accumulate_host_timing_secret(cfg, NULL);
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +00001714 if (!sensitive_data.have_ssh2_key) {
Damien Miller996acd22003-04-09 20:59:48 +10001715 logit("sshd: no hostkeys available -- exiting.");
Damien Miller95def091999-11-25 00:26:21 +11001716 exit(1);
1717 }
Damien Miller95def091999-11-25 00:26:21 +11001718
Damien Miller0a80ca12010-02-27 07:55:05 +11001719 /*
1720 * Load certificates. They are stored in an array at identical
1721 * indices to the public keys that they relate to.
1722 */
1723 sensitive_data.host_certificates = xcalloc(options.num_host_key_files,
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001724 sizeof(struct sshkey *));
Damien Miller0a80ca12010-02-27 07:55:05 +11001725 for (i = 0; i < options.num_host_key_files; i++)
1726 sensitive_data.host_certificates[i] = NULL;
1727
1728 for (i = 0; i < options.num_host_cert_files; i++) {
djm@openbsd.org161cf412014-12-22 07:55:51 +00001729 if (options.host_cert_files[i] == NULL)
1730 continue;
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001731 if ((r = sshkey_load_public(options.host_cert_files[i],
1732 &key, NULL)) != 0) {
1733 error("Could not load host certificate \"%s\": %s",
1734 options.host_cert_files[i], ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +11001735 continue;
1736 }
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001737 if (!sshkey_is_cert(key)) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001738 error("Certificate file is not a certificate: %s",
1739 options.host_cert_files[i]);
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001740 sshkey_free(key);
Damien Miller0a80ca12010-02-27 07:55:05 +11001741 continue;
1742 }
1743 /* Find matching private key */
1744 for (j = 0; j < options.num_host_key_files; j++) {
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001745 if (sshkey_equal_public(key,
Damien Miller0a80ca12010-02-27 07:55:05 +11001746 sensitive_data.host_keys[j])) {
1747 sensitive_data.host_certificates[j] = key;
1748 break;
1749 }
1750 }
1751 if (j >= options.num_host_key_files) {
1752 error("No matching private key for certificate: %s",
1753 options.host_cert_files[i]);
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001754 sshkey_free(key);
Damien Miller0a80ca12010-02-27 07:55:05 +11001755 continue;
1756 }
1757 sensitive_data.host_certificates[j] = key;
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001758 debug("host certificate: #%u type %d %s", j, key->type,
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001759 sshkey_type(key));
Damien Miller0a80ca12010-02-27 07:55:05 +11001760 }
Damien Miller1f0311c2014-05-15 14:24:09 +10001761
Darren Tuckerd13281f2017-03-29 12:39:39 +11001762 if (privsep_chroot) {
Ben Lindstroma26ea632002-06-06 20:46:25 +00001763 struct stat st;
1764
Ben Lindstroma26ea632002-06-06 20:46:25 +00001765 if ((stat(_PATH_PRIVSEP_CHROOT_DIR, &st) == -1) ||
1766 (S_ISDIR(st.st_mode) == 0))
1767 fatal("Missing privilege separation directory: %s",
1768 _PATH_PRIVSEP_CHROOT_DIR);
Ben Lindstrom59627352002-06-27 18:02:21 +00001769
1770#ifdef HAVE_CYGWIN
1771 if (check_ntsec(_PATH_PRIVSEP_CHROOT_DIR) &&
1772 (st.st_uid != getuid () ||
1773 (st.st_mode & (S_IWGRP|S_IWOTH)) != 0))
1774#else
Ben Lindstrom2dfacb32002-06-23 00:33:47 +00001775 if (st.st_uid != 0 || (st.st_mode & (S_IWGRP|S_IWOTH)) != 0)
Ben Lindstrom59627352002-06-27 18:02:21 +00001776#endif
Damien Miller180fc5b2003-02-24 11:50:18 +11001777 fatal("%s must be owned by root and not group or "
1778 "world-writable.", _PATH_PRIVSEP_CHROOT_DIR);
Ben Lindstroma26ea632002-06-06 20:46:25 +00001779 }
1780
Darren Tuckere7140f22008-06-10 23:01:51 +10001781 if (test_flag > 1) {
djm@openbsd.org@openbsd.org548d3a62017-11-14 00:45:29 +00001782 /*
1783 * If no connection info was provided by -C then use
1784 * use a blank one that will cause no predicate to match.
1785 */
1786 if (connection_info == NULL)
djm@openbsd.org172a5922019-01-19 21:37:48 +00001787 connection_info = get_connection_info(ssh, 0, 0);
dtucker@openbsd.org@openbsd.org0208a482017-11-03 03:18:53 +00001788 parse_server_match_config(&options, connection_info);
Darren Tuckere7140f22008-06-10 23:01:51 +10001789 dump_config(&options);
1790 }
1791
Ben Lindstrom794325a2001-08-06 21:09:07 +00001792 /* Configuration looks good, so exit if in test mode. */
1793 if (test_flag)
1794 exit(0);
1795
Damien Miller87aea252002-05-10 12:20:24 +10001796 /*
1797 * Clear out any supplemental groups we may have inherited. This
1798 * prevents inadvertent creation of files with bad modes (in the
Damien Millera8e06ce2003-11-21 23:48:55 +11001799 * portable version at least, it's certainly possible for PAM
1800 * to create a file, and we can't control the code in every
Damien Miller87aea252002-05-10 12:20:24 +10001801 * module which might be used).
1802 */
1803 if (setgroups(0, NULL) < 0)
1804 debug("setgroups() failed: %.200s", strerror(errno));
1805
Darren Tucker645ab752004-06-25 13:33:20 +10001806 if (rexec_flag) {
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001807 if (rexec_argc < 0)
1808 fatal("rexec_argc %d < 0", rexec_argc);
Damien Miller07d86be2006-03-26 14:19:21 +11001809 rexec_argv = xcalloc(rexec_argc + 2, sizeof(char *));
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001810 for (i = 0; i < (u_int)rexec_argc; i++) {
Darren Tucker645ab752004-06-25 13:33:20 +10001811 debug("rexec_argv[%d]='%s'", i, saved_argv[i]);
1812 rexec_argv[i] = saved_argv[i];
1813 }
1814 rexec_argv[rexec_argc] = "-R";
1815 rexec_argv[rexec_argc + 1] = NULL;
1816 }
1817
Damien Miller6ca16c62008-06-16 07:50:58 +10001818 /* Ensure that umask disallows at least group and world write */
1819 new_umask = umask(0077) | 0022;
1820 (void) umask(new_umask);
1821
Damien Millereba71ba2000-04-29 23:57:08 +10001822 /* Initialize the log (it is reinitialized below in case we forked). */
Darren Tuckerea7c8122005-01-20 11:03:08 +11001823 if (debug_flag && (!inetd_flag || rexeced_flag))
Damien Miller95def091999-11-25 00:26:21 +11001824 log_stderr = 1;
Kevin Stevesec84dc12000-12-13 17:45:15 +00001825 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +11001826
Damien Millereba71ba2000-04-29 23:57:08 +10001827 /*
dtucker@openbsd.org7fc47662016-11-30 00:28:31 +00001828 * If not in debugging mode, not started from inetd and not already
1829 * daemonized (eg re-exec via SIGHUP), disconnect from the controlling
1830 * terminal, and fork. The original process exits.
Damien Millereba71ba2000-04-29 23:57:08 +10001831 */
dtucker@openbsd.org7fc47662016-11-30 00:28:31 +00001832 already_daemon = daemonized();
1833 if (!(debug_flag || inetd_flag || no_daemon_flag || already_daemon)) {
dtucker@openbsd.orgb0899ee2016-11-29 03:54:50 +00001834
Damien Miller95def091999-11-25 00:26:21 +11001835 if (daemon(0, 0) < 0)
1836 fatal("daemon() failed: %.200s", strerror(errno));
1837
dtucker@openbsd.orgb0899ee2016-11-29 03:54:50 +00001838 disconnect_controlling_tty();
Damien Miller95def091999-11-25 00:26:21 +11001839 }
1840 /* Reinitialize the log (because of the fork above). */
Kevin Stevesec84dc12000-12-13 17:45:15 +00001841 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Miller95def091999-11-25 00:26:21 +11001842
Damien Miller95def091999-11-25 00:26:21 +11001843 /* Chdir to the root directory so that the current disk can be
1844 unmounted if desired. */
Darren Tuckerdbee3082013-05-16 20:32:29 +10001845 if (chdir("/") == -1)
1846 error("chdir(\"/\"): %s", strerror(errno));
Damien Miller9f0f5c62001-12-21 14:45:46 +11001847
Ben Lindstromde71cda2001-03-24 00:43:26 +00001848 /* ignore SIGPIPE */
1849 signal(SIGPIPE, SIG_IGN);
Damien Miller95def091999-11-25 00:26:21 +11001850
Damien Millera1f68402006-08-19 00:31:39 +10001851 /* Get a connection, either from inetd or a listening TCP socket */
Damien Miller95def091999-11-25 00:26:21 +11001852 if (inetd_flag) {
Damien Millera1f68402006-08-19 00:31:39 +10001853 server_accept_inetd(&sock_in, &sock_out);
Damien Miller95def091999-11-25 00:26:21 +11001854 } else {
Darren Tuckerc8802aa2009-12-08 13:39:48 +11001855 platform_pre_listen();
Damien Millera1f68402006-08-19 00:31:39 +10001856 server_listen();
Damien Miller34132e52000-01-14 15:45:46 +11001857
Ben Lindstrom98097862001-06-25 05:10:20 +00001858 signal(SIGHUP, sighup_handler);
Damien Millera1f68402006-08-19 00:31:39 +10001859 signal(SIGCHLD, main_sigchld_handler);
Ben Lindstrom98097862001-06-25 05:10:20 +00001860 signal(SIGTERM, sigterm_handler);
1861 signal(SIGQUIT, sigterm_handler);
1862
Damien Millera1f68402006-08-19 00:31:39 +10001863 /*
1864 * Write out the pid file after the sigterm handler
1865 * is setup and the listen sockets are bound
1866 */
dtucker@openbsd.orgf2398eb2016-12-04 22:27:25 +00001867 if (options.pid_file != NULL && !debug_flag) {
Damien Millera1f68402006-08-19 00:31:39 +10001868 FILE *f = fopen(options.pid_file, "w");
1869
Darren Tuckere5327042003-07-03 13:40:44 +10001870 if (f == NULL) {
1871 error("Couldn't create pid file \"%s\": %s",
1872 options.pid_file, strerror(errno));
1873 } else {
Ben Lindstromce0f6342002-06-11 16:42:49 +00001874 fprintf(f, "%ld\n", (long) getpid());
Damien Miller95def091999-11-25 00:26:21 +11001875 fclose(f);
1876 }
1877 }
Damien Miller95def091999-11-25 00:26:21 +11001878
Damien Millera1f68402006-08-19 00:31:39 +10001879 /* Accept a connection and return in a forked child */
1880 server_accept_loop(&sock_in, &sock_out,
1881 &newsock, config_s);
Damien Miller95def091999-11-25 00:26:21 +11001882 }
1883
1884 /* This is the child processing a new connection. */
Damien Miller57aae982004-03-08 23:11:25 +11001885 setproctitle("%s", "[accepted]");
Damien Miller95def091999-11-25 00:26:21 +11001886
Darren Tucker6832b832004-08-12 22:36:51 +10001887 /*
1888 * Create a new session and process group since the 4.4BSD
1889 * setlogin() affects the entire process group. We don't
1890 * want the child to be able to affect the parent.
1891 */
1892#if !defined(SSHD_ACQUIRES_CTTY)
1893 /*
1894 * If setsid is called, on some platforms sshd will later acquire a
1895 * controlling terminal which will result in "could not set
1896 * controlling tty" errors.
1897 */
1898 if (!debug_flag && !inetd_flag && setsid() < 0)
1899 error("setsid: %.100s", strerror(errno));
1900#endif
1901
Darren Tucker645ab752004-06-25 13:33:20 +10001902 if (rexec_flag) {
1903 int fd;
1904
Damien Miller035a5b42004-06-26 08:16:31 +10001905 debug("rexec start in %d out %d newsock %d pipe %d sock %d",
1906 sock_in, sock_out, newsock, startup_pipe, config_s[0]);
Darren Tucker645ab752004-06-25 13:33:20 +10001907 dup2(newsock, STDIN_FILENO);
1908 dup2(STDIN_FILENO, STDOUT_FILENO);
1909 if (startup_pipe == -1)
Damien Miller035a5b42004-06-26 08:16:31 +10001910 close(REEXEC_STARTUP_PIPE_FD);
Damien Miller61ee4d62013-10-15 11:56:47 +11001911 else if (startup_pipe != REEXEC_STARTUP_PIPE_FD) {
Damien Miller035a5b42004-06-26 08:16:31 +10001912 dup2(startup_pipe, REEXEC_STARTUP_PIPE_FD);
Damien Miller61ee4d62013-10-15 11:56:47 +11001913 close(startup_pipe);
1914 startup_pipe = REEXEC_STARTUP_PIPE_FD;
1915 }
Darren Tucker645ab752004-06-25 13:33:20 +10001916
Damien Miller035a5b42004-06-26 08:16:31 +10001917 dup2(config_s[1], REEXEC_CONFIG_PASS_FD);
Darren Tucker645ab752004-06-25 13:33:20 +10001918 close(config_s[1]);
Damien Miller035a5b42004-06-26 08:16:31 +10001919
Darren Tucker645ab752004-06-25 13:33:20 +10001920 execv(rexec_argv[0], rexec_argv);
1921
1922 /* Reexec has failed, fall back and continue */
1923 error("rexec of %s failed: %s", rexec_argv[0], strerror(errno));
Damien Miller035a5b42004-06-26 08:16:31 +10001924 recv_rexec_state(REEXEC_CONFIG_PASS_FD, NULL);
Darren Tucker645ab752004-06-25 13:33:20 +10001925 log_init(__progname, options.log_level,
1926 options.log_facility, log_stderr);
1927
1928 /* Clean up fds */
Damien Miller035a5b42004-06-26 08:16:31 +10001929 close(REEXEC_CONFIG_PASS_FD);
1930 newsock = sock_out = sock_in = dup(STDIN_FILENO);
Darren Tucker645ab752004-06-25 13:33:20 +10001931 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
1932 dup2(fd, STDIN_FILENO);
1933 dup2(fd, STDOUT_FILENO);
1934 if (fd > STDERR_FILENO)
1935 close(fd);
1936 }
Damien Miller035a5b42004-06-26 08:16:31 +10001937 debug("rexec cleanup in %d out %d newsock %d pipe %d sock %d",
1938 sock_in, sock_out, newsock, startup_pipe, config_s[0]);
Darren Tucker645ab752004-06-25 13:33:20 +10001939 }
1940
Damien Miller133d9d32010-01-30 17:30:04 +11001941 /* Executed child processes don't need these. */
1942 fcntl(sock_out, F_SETFD, FD_CLOEXEC);
1943 fcntl(sock_in, F_SETFD, FD_CLOEXEC);
1944
Damien Miller5428f641999-11-25 11:54:57 +11001945 /*
1946 * Disable the key regeneration alarm. We will not regenerate the
1947 * key since we are no longer in a position to give it to anyone. We
1948 * will not restart on SIGHUP since it no longer makes sense.
1949 */
Damien Miller95def091999-11-25 00:26:21 +11001950 alarm(0);
1951 signal(SIGALRM, SIG_DFL);
1952 signal(SIGHUP, SIG_DFL);
1953 signal(SIGTERM, SIG_DFL);
1954 signal(SIGQUIT, SIG_DFL);
1955 signal(SIGCHLD, SIG_DFL);
Damien Miller4e0f5e12000-08-29 11:05:50 +11001956 signal(SIGINT, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +11001957
Damien Miller5428f641999-11-25 11:54:57 +11001958 /*
1959 * Register our connection. This turns encryption off because we do
1960 * not have a key.
1961 */
djm@openbsd.org6350e032019-01-19 21:42:30 +00001962 if ((ssh = ssh_packet_set_connection(NULL, sock_in, sock_out)) == NULL)
1963 fatal("Unable to create connection");
djm@openbsd.org04c091f2019-01-19 21:43:56 +00001964 the_active_state = ssh;
djm@openbsd.org6350e032019-01-19 21:42:30 +00001965 ssh_packet_set_server(ssh);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001966
djm@openbsd.org95767262016-03-07 19:02:43 +00001967 check_ip_options(ssh);
Damien Miller95def091999-11-25 00:26:21 +11001968
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001969 /* Prepare the channels layer */
1970 channel_init_channels(ssh);
1971 channel_set_af(ssh, options.address_family);
1972 process_permitopen(ssh, &options);
1973
Damien Miller4f1d6b22005-05-26 11:59:32 +10001974 /* Set SO_KEEPALIVE if requested. */
djm@openbsd.org6350e032019-01-19 21:42:30 +00001975 if (options.tcp_keep_alive && ssh_packet_connection_is_on_socket(ssh) &&
Damien Miller4f1d6b22005-05-26 11:59:32 +10001976 setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, &on, sizeof(on)) < 0)
1977 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
1978
djm@openbsd.org95767262016-03-07 19:02:43 +00001979 if ((remote_port = ssh_remote_port(ssh)) < 0) {
1980 debug("ssh_remote_port failed");
Damien Miller677257f2005-06-17 12:55:03 +10001981 cleanup_exit(255);
1982 }
Damien Miller4d3fd542005-11-05 15:13:24 +11001983
djm@openbsd.org35eb33f2017-10-25 00:17:08 +00001984 if (options.routing_domain != NULL)
1985 set_process_rdomain(ssh, options.routing_domain);
1986
Damien Miller4d3fd542005-11-05 15:13:24 +11001987 /*
Damien Millereb13e552006-06-13 13:03:53 +10001988 * The rest of the code depends on the fact that
djm@openbsd.org95767262016-03-07 19:02:43 +00001989 * ssh_remote_ipaddr() caches the remote ip, even if
Damien Millereb13e552006-06-13 13:03:53 +10001990 * the socket goes away.
1991 */
djm@openbsd.org95767262016-03-07 19:02:43 +00001992 remote_ip = ssh_remote_ipaddr(ssh);
Damien Miller95def091999-11-25 00:26:21 +11001993
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11001994#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +11001995 audit_connection_from(remote_ip, remote_port);
1996#endif
Damien Miller6a4a4b92001-11-12 11:07:11 +11001997
djm@openbsd.org68af80e2017-10-25 00:19:47 +00001998 rdomain = ssh_packet_rdomain_in(ssh);
1999
Damien Miller95def091999-11-25 00:26:21 +11002000 /* Log the connection. */
dtucker@openbsd.org15fdfc92015-04-15 23:23:25 +00002001 laddr = get_local_ipaddr(sock_in);
djm@openbsd.org@openbsd.orgb77c29a2017-10-27 00:18:41 +00002002 verbose("Connection from %s port %d on %s port %d%s%s%s",
djm@openbsd.org68af80e2017-10-25 00:19:47 +00002003 remote_ip, remote_port, laddr, ssh_local_port(ssh),
djm@openbsd.org@openbsd.orgb77c29a2017-10-27 00:18:41 +00002004 rdomain == NULL ? "" : " rdomain \"",
2005 rdomain == NULL ? "" : rdomain,
2006 rdomain == NULL ? "" : "\"");
dtucker@openbsd.org15fdfc92015-04-15 23:23:25 +00002007 free(laddr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002008
Damien Miller5428f641999-11-25 11:54:57 +11002009 /*
Damien Miller788f2122005-11-05 15:14:59 +11002010 * We don't want to listen forever unless the other side
Damien Miller5428f641999-11-25 11:54:57 +11002011 * successfully authenticates itself. So we set up an alarm which is
2012 * cleared after successful authentication. A limit of zero
Damien Miller788f2122005-11-05 15:14:59 +11002013 * indicates no limit. Note that we don't set the alarm in debugging
Damien Miller5428f641999-11-25 11:54:57 +11002014 * mode; it is just annoying to have the server exit just when you
2015 * are about to discover the bug.
2016 */
Ben Lindstrom5ade9ab2003-08-25 01:16:21 +00002017 signal(SIGALRM, grace_alarm_handler);
Damien Miller95def091999-11-25 00:26:21 +11002018 if (!debug_flag)
2019 alarm(options.login_grace_time);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002020
djm@openbsd.org0a843d92018-12-27 03:25:24 +00002021 if (kex_exchange_identification(ssh, -1, options.version_addendum) != 0)
2022 cleanup_exit(255); /* error already logged */
2023
djm@openbsd.org6350e032019-01-19 21:42:30 +00002024 ssh_packet_set_nonblocking(ssh);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002025
Darren Tucker3e33cec2003-10-02 16:12:36 +10002026 /* allocate authentication context */
Damien Miller07d86be2006-03-26 14:19:21 +11002027 authctxt = xcalloc(1, sizeof(*authctxt));
djm@openbsd.org6350e032019-01-19 21:42:30 +00002028 ssh->authctxt = authctxt;
Darren Tucker3e33cec2003-10-02 16:12:36 +10002029
Damien Miller120a1ec2018-07-10 19:39:52 +10002030 authctxt->loginmsg = loginmsg;
Darren Tuckerf3bb4342005-03-31 21:39:25 +10002031
Darren Tucker3e33cec2003-10-02 16:12:36 +10002032 /* XXX global for cleanup, access from other modules */
2033 the_authctxt = authctxt;
2034
djm@openbsd.org7c856852018-03-03 03:15:51 +00002035 /* Set default key authentication options */
2036 if ((auth_opts = sshauthopt_new_with_keys_defaults()) == NULL)
2037 fatal("allocation failed");
2038
Darren Tucker5c14c732005-01-24 21:55:49 +11002039 /* prepare buffer to collect messages to display to user after login */
markus@openbsd.org2808d182018-07-09 21:26:02 +00002040 if ((loginmsg = sshbuf_new()) == NULL)
2041 fatal("%s: sshbuf_new failed", __func__);
Darren Tuckercd70e1b2010-03-07 23:05:17 +11002042 auth_debug_reset();
Darren Tucker5c14c732005-01-24 21:55:49 +11002043
Damien Miller85b45e02013-07-20 13:21:52 +10002044 if (use_privsep) {
djm@openbsd.org6350e032019-01-19 21:42:30 +00002045 if (privsep_preauth(ssh) == 1)
Ben Lindstrom943481c2002-03-22 03:43:46 +00002046 goto authenticated;
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +00002047 } else if (have_agent) {
djm@openbsd.org141efe42015-01-14 20:05:27 +00002048 if ((r = ssh_get_authentication_socket(&auth_sock)) != 0) {
2049 error("Unable to get agent socket: %s", ssh_err(r));
djm@openbsd.org83f8ffa2015-01-17 18:53:34 +00002050 have_agent = 0;
djm@openbsd.org141efe42015-01-14 20:05:27 +00002051 }
2052 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002053
Damien Miller396691a2000-01-20 22:44:08 +11002054 /* perform the key exchange */
Damien Miller396691a2000-01-20 22:44:08 +11002055 /* authenticate user and start session */
djm@openbsd.org6350e032019-01-19 21:42:30 +00002056 do_ssh2_kex(ssh);
Damien Miller5ebce132019-01-20 09:44:53 +11002057 do_authentication2(ssh);
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +00002058
Ben Lindstrom943481c2002-03-22 03:43:46 +00002059 /*
2060 * If we use privilege separation, the unprivileged child transfers
2061 * the current keystate and exits
2062 */
2063 if (use_privsep) {
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002064 mm_send_keystate(ssh, pmonitor);
djm@openbsd.org6350e032019-01-19 21:42:30 +00002065 ssh_packet_clear_keys(ssh);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002066 exit(0);
Ben Lindstrom943481c2002-03-22 03:43:46 +00002067 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002068
2069 authenticated:
Damien Miller7bff1a92005-12-24 14:59:12 +11002070 /*
2071 * Cancel the alarm we set to limit the time taken for
2072 * authentication.
2073 */
2074 alarm(0);
2075 signal(SIGALRM, SIG_DFL);
Damien Miller3f8123c2006-08-19 00:32:46 +10002076 authctxt->authenticated = 1;
Damien Miller7bff1a92005-12-24 14:59:12 +11002077 if (startup_pipe != -1) {
2078 close(startup_pipe);
2079 startup_pipe = -1;
2080 }
2081
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11002082#ifdef SSH_AUDIT_EVENTS
Damien Miller9b655dc2019-01-20 14:55:27 +11002083 audit_event(ssh, SSH_AUTH_SUCCESS);
Darren Tucker269a1ea2005-02-03 00:20:53 +11002084#endif
2085
Darren Tucker52358d62008-03-11 22:58:25 +11002086#ifdef GSSAPI
2087 if (options.gss_authentication) {
2088 temporarily_use_uid(authctxt->pw);
2089 ssh_gssapi_storecreds();
2090 restore_uid();
2091 }
2092#endif
2093#ifdef USE_PAM
2094 if (options.use_pam) {
2095 do_pam_setcred(1);
djm@openbsd.org7c856852018-03-03 03:15:51 +00002096 do_pam_session(ssh);
Darren Tucker52358d62008-03-11 22:58:25 +11002097 }
2098#endif
2099
Ben Lindstrom6328ab32002-03-22 02:54:23 +00002100 /*
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002101 * In privilege separation, we fork another child and prepare
2102 * file descriptor passing.
2103 */
2104 if (use_privsep) {
djm@openbsd.org6350e032019-01-19 21:42:30 +00002105 privsep_postauth(ssh, authctxt);
Ben Lindstrom943481c2002-03-22 03:43:46 +00002106 /* the monitor process [priv] will not return */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002107 }
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +00002108
djm@openbsd.org6350e032019-01-19 21:42:30 +00002109 ssh_packet_set_timeout(ssh, options.client_alive_interval,
Darren Tucker3fc464e2008-06-13 06:42:45 +10002110 options.client_alive_count_max);
2111
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002112 /* Try to send all our hostkeys to the client */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002113 notify_hostkeys(ssh);
djm@openbsd.org8d4f8722015-01-26 03:04:45 +00002114
Darren Tucker3e33cec2003-10-02 16:12:36 +10002115 /* Start session. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002116 do_authenticated(ssh, authctxt);
Ben Lindstrom73ab9ba2002-03-22 01:27:35 +00002117
Damien Miller3a5b0232002-03-13 13:19:42 +11002118 /* The connection has been terminated. */
djm@openbsd.org6350e032019-01-19 21:42:30 +00002119 ssh_packet_get_bytes(ssh, &ibytes, &obytes);
Damien Miller821de0a2011-01-11 17:20:29 +11002120 verbose("Transferred: sent %llu, received %llu bytes",
2121 (unsigned long long)obytes, (unsigned long long)ibytes);
Damien Millerb61f3fc2008-07-11 17:36:48 +10002122
2123 verbose("Closing connection to %.500s port %d", remote_ip, remote_port);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002124
Damien Millerbeb4ba51999-12-28 15:09:35 +11002125#ifdef USE_PAM
Damien Miller4e448a32003-05-14 15:11:48 +10002126 if (options.use_pam)
2127 finish_pam();
Damien Millerbeb4ba51999-12-28 15:09:35 +11002128#endif /* USE_PAM */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002129
Darren Tucker2b59a6d2005-03-06 22:38:51 +11002130#ifdef SSH_AUDIT_EVENTS
Damien Miller9b655dc2019-01-20 14:55:27 +11002131 PRIVSEP(audit_event(ssh, SSH_CONNECTION_CLOSE));
Darren Tucker2b59a6d2005-03-06 22:38:51 +11002132#endif
2133
djm@openbsd.org6350e032019-01-19 21:42:30 +00002134 ssh_packet_close(ssh);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002135
2136 if (use_privsep)
2137 mm_terminate();
2138
Damien Miller95def091999-11-25 00:26:21 +11002139 exit(0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002140}
2141
markus@openbsd.org57d10cb2015-01-19 20:16:15 +00002142int
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002143sshd_hostkey_sign(struct ssh *ssh, struct sshkey *privkey,
2144 struct sshkey *pubkey, u_char **signature, size_t *slenp,
2145 const u_char *data, size_t dlen, const char *alg)
Damien Miller85b45e02013-07-20 13:21:52 +10002146{
djm@openbsd.org141efe42015-01-14 20:05:27 +00002147 int r;
2148
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002149 if (use_privsep) {
2150 if (privkey) {
2151 if (mm_sshkey_sign(ssh, privkey, signature, slenp,
2152 data, dlen, alg, ssh->compat) < 0)
2153 fatal("%s: privkey sign failed", __func__);
2154 } else {
2155 if (mm_sshkey_sign(ssh, pubkey, signature, slenp,
2156 data, dlen, alg, ssh->compat) < 0)
2157 fatal("%s: pubkey sign failed", __func__);
2158 }
Damien Miller85b45e02013-07-20 13:21:52 +10002159 } else {
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002160 if (privkey) {
2161 if (sshkey_sign(privkey, signature, slenp, data, dlen,
2162 alg, ssh->compat) < 0)
2163 fatal("%s: privkey sign failed", __func__);
2164 } else {
2165 if ((r = ssh_agent_sign(auth_sock, pubkey,
2166 signature, slenp, data, dlen, alg,
2167 ssh->compat)) != 0) {
2168 fatal("%s: agent sign failed: %s",
2169 __func__, ssh_err(r));
2170 }
2171 }
Damien Miller85b45e02013-07-20 13:21:52 +10002172 }
markus@openbsd.org57d10cb2015-01-19 20:16:15 +00002173 return 0;
Damien Miller85b45e02013-07-20 13:21:52 +10002174}
2175
djm@openbsd.orgbdfd29f2015-07-03 03:47:00 +00002176/* SSH2 key exchange */
Ben Lindstrombba81212001-06-25 05:01:22 +00002177static void
djm@openbsd.org6350e032019-01-19 21:42:30 +00002178do_ssh2_kex(struct ssh *ssh)
Damien Millerefb4afe2000-04-12 18:45:05 +10002179{
Damien Miller9235a032014-04-20 13:17:20 +10002180 char *myproposal[PROPOSAL_MAX] = { KEX_SERVER };
markus@openbsd.org57d10cb2015-01-19 20:16:15 +00002181 struct kex *kex;
markus@openbsd.org57e783c2015-01-20 20:16:21 +00002182 int r;
Damien Millerefb4afe2000-04-12 18:45:05 +10002183
djm@openbsd.orgf9eca242015-07-30 00:01:34 +00002184 myproposal[PROPOSAL_KEX_ALGS] = compat_kex_proposal(
djm@openbsd.orgc3903c32018-08-13 02:41:05 +00002185 options.kex_algorithms);
djm@openbsd.orgf9eca242015-07-30 00:01:34 +00002186 myproposal[PROPOSAL_ENC_ALGS_CTOS] = compat_cipher_proposal(
djm@openbsd.orgc3903c32018-08-13 02:41:05 +00002187 options.ciphers);
djm@openbsd.orgf9eca242015-07-30 00:01:34 +00002188 myproposal[PROPOSAL_ENC_ALGS_STOC] = compat_cipher_proposal(
djm@openbsd.orgc3903c32018-08-13 02:41:05 +00002189 options.ciphers);
djm@openbsd.orgf9eca242015-07-30 00:01:34 +00002190 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
2191 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
Damien Millera0ff4662001-03-30 10:49:35 +10002192
Damien Miller9786e6e2005-07-26 21:54:56 +10002193 if (options.compression == COMP_NONE) {
Ben Lindstrom23e0f662002-06-21 01:09:47 +00002194 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
dtucker@openbsd.org8c02e362016-05-24 04:43:45 +00002195 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none";
Ben Lindstrom23e0f662002-06-21 01:09:47 +00002196 }
Damien Miller9395b282014-04-20 13:25:30 +10002197
Darren Tucker5f96f3b2013-05-16 20:29:28 +10002198 if (options.rekey_limit || options.rekey_interval)
djm@openbsd.org6350e032019-01-19 21:42:30 +00002199 ssh_packet_set_rekey_limits(ssh, options.rekey_limit,
dtucker@openbsd.orgc998bf02017-02-03 02:56:00 +00002200 options.rekey_interval);
Darren Tucker5f96f3b2013-05-16 20:29:28 +10002201
Damien Miller324541e2013-12-31 12:25:40 +11002202 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = compat_pkalg_proposal(
djm@openbsd.orgc3903c32018-08-13 02:41:05 +00002203 list_hostkey_types());
Damien Miller0bc1bd82000-11-13 22:57:25 +11002204
Ben Lindstrom8ac91062001-04-04 17:57:54 +00002205 /* start key exchange */
djm@openbsd.org6350e032019-01-19 21:42:30 +00002206 if ((r = kex_setup(ssh, myproposal)) != 0)
markus@openbsd.org57e783c2015-01-20 20:16:21 +00002207 fatal("kex_setup: %s", ssh_err(r));
djm@openbsd.org6350e032019-01-19 21:42:30 +00002208 kex = ssh->kex;
Damien Miller1f0311c2014-05-15 14:24:09 +10002209#ifdef WITH_OPENSSL
Damien Miller8e7fb332003-02-24 12:03:03 +11002210 kex->kex[KEX_DH_GRP1_SHA1] = kexdh_server;
Damien Millerf675fc42004-06-15 10:30:09 +10002211 kex->kex[KEX_DH_GRP14_SHA1] = kexdh_server;
djm@openbsd.org0e8eeec2016-05-02 10:26:04 +00002212 kex->kex[KEX_DH_GRP14_SHA256] = kexdh_server;
2213 kex->kex[KEX_DH_GRP16_SHA512] = kexdh_server;
2214 kex->kex[KEX_DH_GRP18_SHA512] = kexdh_server;
Damien Miller8e7fb332003-02-24 12:03:03 +11002215 kex->kex[KEX_DH_GEX_SHA1] = kexgex_server;
Damien Millera63128d2006-03-15 12:08:28 +11002216 kex->kex[KEX_DH_GEX_SHA256] = kexgex_server;
Darren Tuckerf2004cd2015-02-23 05:04:21 +11002217# ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +10002218 kex->kex[KEX_ECDH_SHA2] = kexecdh_server;
Darren Tuckerf2004cd2015-02-23 05:04:21 +11002219# endif
Damien Miller1f0311c2014-05-15 14:24:09 +10002220#endif
Damien Miller1e124262013-11-04 08:26:52 +11002221 kex->kex[KEX_C25519_SHA256] = kexc25519_server;
Damien Miller0a80ca12010-02-27 07:55:05 +11002222 kex->load_host_public_key=&get_hostkey_public_by_type;
2223 kex->load_host_private_key=&get_hostkey_private_by_type;
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002224 kex->host_key_index=&get_hostkey_index;
Damien Miller85b45e02013-07-20 13:21:52 +10002225 kex->sign = sshd_hostkey_sign;
Damien Millerefb4afe2000-04-12 18:45:05 +10002226
djm@openbsd.org6350e032019-01-19 21:42:30 +00002227 ssh_dispatch_run_fatal(ssh, DISPATCH_BLOCK, &kex->done);
Damien Miller874d77b2000-10-14 16:23:11 +11002228
Ben Lindstrom2d90e002001-04-04 02:00:54 +00002229 session_id2 = kex->session_id;
2230 session_id2_len = kex->session_id_len;
2231
Damien Miller874d77b2000-10-14 16:23:11 +11002232#ifdef DEBUG_KEXDH
2233 /* send 1st encrypted/maced/compressed message */
2234 packet_start(SSH2_MSG_IGNORE);
2235 packet_put_cstring("markus");
2236 packet_send();
2237 packet_write_wait();
2238#endif
Ben Lindstrom20d7c7b2001-04-04 01:56:17 +00002239 debug("KEX done");
Damien Millerefb4afe2000-04-12 18:45:05 +10002240}
Darren Tucker3e33cec2003-10-02 16:12:36 +10002241
2242/* server specific fatal cleanup */
2243void
2244cleanup_exit(int i)
2245{
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002246 if (the_active_state != NULL && the_authctxt != NULL) {
2247 do_cleanup(the_active_state, the_authctxt);
Damien Miller75c62722014-04-20 13:24:31 +10002248 if (use_privsep && privsep_is_preauth &&
2249 pmonitor != NULL && pmonitor->m_pid > 1) {
Damien Miller9ee2c602011-09-22 21:38:30 +10002250 debug("Killing privsep child %d", pmonitor->m_pid);
2251 if (kill(pmonitor->m_pid, SIGKILL) != 0 &&
Darren Tucker2e135602011-10-02 19:10:13 +11002252 errno != ESRCH)
Damien Miller9ee2c602011-09-22 21:38:30 +10002253 error("%s: kill(%d): %s", __func__,
2254 pmonitor->m_pid, strerror(errno));
2255 }
2256 }
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11002257#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +11002258 /* done after do_cleanup so it can cancel the PAM auth 'thread' */
Damien Miller9b655dc2019-01-20 14:55:27 +11002259 if (the_active_state != NULL && (!use_privsep || mm_is_monitor()))
2260 audit_event(the_active_state, SSH_CONNECTION_ABANDON);
Darren Tucker269a1ea2005-02-03 00:20:53 +11002261#endif
Darren Tucker3e33cec2003-10-02 16:12:36 +10002262 _exit(i);
2263}