blob: fba25e6b8df8188113c49c1d00d74f7afbc7475d [file] [log] [blame]
Alistair Delvac4490d02020-08-20 16:42:41 -07001/* $OpenBSD: sshd.c,v 1.552 2020/03/13 04:01:57 djm Exp $ */
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
6 * This program is the ssh daemon. It listens for connections from clients,
7 * and performs authentication, executes use commands or shell, and forwards
8 * information to/from the application to the user client over an encrypted
9 * connection. This can also handle forwarding of X11, TCP/IP, and
10 * authentication agent connections.
11 *
12 * As far as I am concerned, the code I have written for this software
13 * can be used freely for any purpose. Any derived versions of this
14 * software must be clearly marked as such, and if the derived work is
15 * incompatible with the protocol description in the RFC file, it must be
16 * called by a name other than "ssh" or "Secure Shell".
17 *
18 * SSH2 implementation:
19 * Privilege Separation:
20 *
21 * Copyright (c) 2000, 2001, 2002 Markus Friedl. All rights reserved.
22 * Copyright (c) 2002 Niels Provos. All rights reserved.
23 *
24 * Redistribution and use in source and binary forms, with or without
25 * modification, are permitted provided that the following conditions
26 * are met:
27 * 1. Redistributions of source code must retain the above copyright
28 * notice, this list of conditions and the following disclaimer.
29 * 2. Redistributions in binary form must reproduce the above copyright
30 * notice, this list of conditions and the following disclaimer in the
31 * documentation and/or other materials provided with the distribution.
32 *
33 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
34 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
35 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
36 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
37 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
38 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
39 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
40 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
41 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
42 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43 */
44
45#include "includes.h"
46
47#include <sys/types.h>
48#include <sys/ioctl.h>
49#include <sys/socket.h>
50#ifdef HAVE_SYS_STAT_H
51# include <sys/stat.h>
52#endif
53#ifdef HAVE_SYS_TIME_H
54# include <sys/time.h>
55#endif
56#include "openbsd-compat/sys-tree.h"
57#include "openbsd-compat/sys-queue.h"
58#include <sys/wait.h>
59
60#include <errno.h>
61#include <fcntl.h>
62#include <netdb.h>
63#ifdef HAVE_PATHS_H
64#include <paths.h>
65#endif
66#include <grp.h>
67#include <pwd.h>
68#include <signal.h>
69#include <stdarg.h>
70#include <stdio.h>
71#include <stdlib.h>
72#include <string.h>
73#include <unistd.h>
Adam Langleyd0592972015-03-30 14:49:51 -070074#include <limits.h>
Greg Hartmanbd77cf72015-02-25 13:21:06 -080075
Adam Langleyd0592972015-03-30 14:49:51 -070076#ifdef WITH_OPENSSL
Greg Hartmanbd77cf72015-02-25 13:21:06 -080077#include <openssl/dh.h>
78#include <openssl/bn.h>
Greg Hartmanbd77cf72015-02-25 13:21:06 -080079#include <openssl/rand.h>
80#include "openbsd-compat/openssl-compat.h"
Adam Langleyd0592972015-03-30 14:49:51 -070081#endif
Greg Hartmanbd77cf72015-02-25 13:21:06 -080082
83#ifdef HAVE_SECUREWARE
84#include <sys/security.h>
85#include <prot.h>
86#endif
87
88#include "xmalloc.h"
89#include "ssh.h"
Greg Hartmanbd77cf72015-02-25 13:21:06 -080090#include "ssh2.h"
Greg Hartmanbd77cf72015-02-25 13:21:06 -080091#include "sshpty.h"
92#include "packet.h"
93#include "log.h"
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +000094#include "sshbuf.h"
Adam Langleyd0592972015-03-30 14:49:51 -070095#include "misc.h"
markus@openbsd.org3a1638d2015-07-10 06:21:53 +000096#include "match.h"
Greg Hartmanbd77cf72015-02-25 13:21:06 -080097#include "servconf.h"
98#include "uidswap.h"
99#include "compat.h"
100#include "cipher.h"
Adam Langleyd0592972015-03-30 14:49:51 -0700101#include "digest.h"
markus@openbsd.org5467fbc2018-07-11 18:53:29 +0000102#include "sshkey.h"
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800103#include "kex.h"
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800104#include "myproposal.h"
105#include "authfile.h"
106#include "pathnames.h"
107#include "atomicio.h"
108#include "canohost.h"
109#include "hostfile.h"
110#include "auth.h"
Adam Langleyd0592972015-03-30 14:49:51 -0700111#include "authfd.h"
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800112#include "msg.h"
113#include "dispatch.h"
114#include "channels.h"
115#include "session.h"
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800116#include "monitor.h"
117#ifdef GSSAPI
118#include "ssh-gss.h"
119#endif
120#include "monitor_wrap.h"
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800121#include "ssh-sandbox.h"
djm@openbsd.org7c856852018-03-03 03:15:51 +0000122#include "auth-options.h"
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800123#include "version.h"
Adam Langleyd0592972015-03-30 14:49:51 -0700124#include "ssherr.h"
djm@openbsd.org56584cc2019-12-15 18:57:30 +0000125#include "sk-api.h"
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800126
127/* Re-exec fds */
128#define REEXEC_DEVCRYPTO_RESERVED_FD (STDERR_FILENO + 1)
129#define REEXEC_STARTUP_PIPE_FD (STDERR_FILENO + 2)
130#define REEXEC_CONFIG_PASS_FD (STDERR_FILENO + 3)
131#define REEXEC_MIN_FREE_FD (STDERR_FILENO + 4)
132
133extern char *__progname;
134
135/* Server configuration options. */
136ServerOptions options;
137
138/* Name of the server configuration file. */
139char *config_file_name = _PATH_SERVER_CONFIG_FILE;
140
141/*
142 * Debug mode flag. This can be set on the command line. If debug
143 * mode is enabled, extra debugging output will be sent to the system
144 * log, the daemon will not go to background, and will exit after processing
145 * the first connection.
146 */
147int debug_flag = 0;
148
djm@openbsd.org@openbsd.org548d3a62017-11-14 00:45:29 +0000149/*
150 * Indicating that the daemon should only test the configuration and keys.
151 * If test_flag > 1 ("-T" flag), then sshd will also dump the effective
152 * configuration, optionally using connection information provided by the
153 * "-C" flag.
154 */
djm@openbsd.orgdbb4dec2019-01-17 01:50:24 +0000155static int test_flag = 0;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800156
157/* Flag indicating that the daemon is being started from inetd. */
djm@openbsd.orgdbb4dec2019-01-17 01:50:24 +0000158static int inetd_flag = 0;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800159
160/* Flag indicating that sshd should not detach and become a daemon. */
djm@openbsd.orgdbb4dec2019-01-17 01:50:24 +0000161static int no_daemon_flag = 0;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800162
163/* debug goes to stderr unless inetd_flag is set */
djm@openbsd.orgdbb4dec2019-01-17 01:50:24 +0000164static int log_stderr = 0;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800165
166/* Saved arguments to main(). */
djm@openbsd.orgdbb4dec2019-01-17 01:50:24 +0000167static char **saved_argv;
168static int saved_argc;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800169
170/* re-exec */
djm@openbsd.orgdbb4dec2019-01-17 01:50:24 +0000171static int rexeced_flag = 0;
172static int rexec_flag = 1;
173static int rexec_argc = 0;
174static char **rexec_argv;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800175
176/*
177 * The sockets that the server is listening; this is used in the SIGHUP
178 * signal handler.
179 */
180#define MAX_LISTEN_SOCKS 16
djm@openbsd.orgdbb4dec2019-01-17 01:50:24 +0000181static int listen_socks[MAX_LISTEN_SOCKS];
182static int num_listen_socks = 0;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800183
Adam Langleyd0592972015-03-30 14:49:51 -0700184/* Daemon's agent connection */
185int auth_sock = -1;
djm@openbsd.orgdbb4dec2019-01-17 01:50:24 +0000186static int have_agent = 0;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800187
188/*
189 * Any really sensitive data in the application is contained in this
190 * structure. The idea is that this structure could be locked into memory so
191 * that the pages do not get written into swap. However, there are some
192 * problems. The private key contains BIGNUMs, and we do not (in principle)
193 * have access to the internals of them, and locking just the structure is
194 * not very useful. Currently, memory locking is not implemented.
195 */
196struct {
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000197 struct sshkey **host_keys; /* all private host keys */
198 struct sshkey **host_pubkeys; /* all public host keys */
199 struct sshkey **host_certificates; /* all public host certificates */
200 int have_ssh2_key;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800201} sensitive_data;
202
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800203/* This is set to true when a signal is received. */
204static volatile sig_atomic_t received_sighup = 0;
205static volatile sig_atomic_t received_sigterm = 0;
206
207/* session identifier, used by RSA-auth */
208u_char session_id[16];
209
210/* same for ssh2 */
211u_char *session_id2 = NULL;
212u_int session_id2_len = 0;
213
214/* record remote hostname or ip */
Adam Langleyd0592972015-03-30 14:49:51 -0700215u_int utmp_len = HOST_NAME_MAX+1;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800216
djm@openbsd.org76a24b32019-03-01 02:32:39 +0000217/*
218 * startup_pipes/flags are used for tracking children of the listening sshd
219 * process early in their lifespans. This tracking is needed for three things:
220 *
221 * 1) Implementing the MaxStartups limit of concurrent unauthenticated
222 * connections.
223 * 2) Avoiding a race condition for SIGHUP processing, where child processes
224 * may have listen_socks open that could collide with main listener process
225 * after it restarts.
226 * 3) Ensuring that rexec'd sshd processes have received their initial state
227 * from the parent listen process before handling SIGHUP.
228 *
229 * Child processes signal that they have completed closure of the listen_socks
230 * and (if applicable) received their rexec state by sending a char over their
231 * sock. Child processes signal that authentication has completed by closing
232 * the sock (or by exiting).
233 */
djm@openbsd.orgdbb4dec2019-01-17 01:50:24 +0000234static int *startup_pipes = NULL;
djm@openbsd.org76a24b32019-03-01 02:32:39 +0000235static int *startup_flags = NULL; /* Indicates child closed listener */
236static int startup_pipe = -1; /* in child */
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800237
238/* variables used for privilege separation */
239int use_privsep = -1;
240struct monitor *pmonitor = NULL;
Adam Langleyd0592972015-03-30 14:49:51 -0700241int privsep_is_preauth = 1;
Darren Tuckerd13281f2017-03-29 12:39:39 +1100242static int privsep_chroot = 1;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800243
djm@openbsd.org04c091f2019-01-19 21:43:56 +0000244/* global connection state and authentication contexts */
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800245Authctxt *the_authctxt = NULL;
djm@openbsd.org04c091f2019-01-19 21:43:56 +0000246struct ssh *the_active_state;
Darren Tucker3e33cec2003-10-02 16:12:36 +1000247
djm@openbsd.org7c856852018-03-03 03:15:51 +0000248/* global key/cert auth options. XXX move to permanent ssh->authctxt? */
249struct sshauthopt *auth_opts = NULL;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800250
251/* sshd_config buffer */
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +0000252struct sshbuf *cfg;
Darren Tucker45150472006-07-12 22:34:17 +1000253
djm@openbsd.orgc2bd7f72020-01-31 22:42:45 +0000254/* Included files from the configuration file */
255struct include_list includes = TAILQ_HEAD_INITIALIZER(includes);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800256
257/* message to be displayed after login */
markus@openbsd.org2808d182018-07-09 21:26:02 +0000258struct sshbuf *loginmsg;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800259
260/* Unprivileged user */
261struct passwd *privsep_pw = NULL;
262
263/* Prototypes for various functions defined later in this file. */
264void destroy_sensitive_data(void);
265void demote_sensitive_data(void);
djm@openbsd.org6350e032019-01-19 21:42:30 +0000266static void do_ssh2_kex(struct ssh *);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800267
djm@openbsd.orga8c05c62020-01-24 23:56:01 +0000268static char *listener_proctitle;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800269
270/*
271 * Close all listening sockets
272 */
273static void
274close_listen_socks(void)
275{
276 int i;
277
278 for (i = 0; i < num_listen_socks; i++)
279 close(listen_socks[i]);
280 num_listen_socks = -1;
281}
282
283static void
284close_startup_pipes(void)
285{
286 int i;
287
288 if (startup_pipes)
289 for (i = 0; i < options.max_startups; i++)
290 if (startup_pipes[i] != -1)
291 close(startup_pipes[i]);
292}
293
294/*
295 * Signal handler for SIGHUP. Sshd execs itself when it receives SIGHUP;
296 * the effect is to reread the configuration file (and to regenerate
297 * the server key).
298 */
299
300/*ARGSUSED*/
301static void
302sighup_handler(int sig)
303{
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800304 received_sighup = 1;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800305}
306
307/*
308 * Called from the main program after receiving SIGHUP.
309 * Restarts the server.
310 */
311static void
312sighup_restart(void)
313{
314 logit("Received SIGHUP; restarting.");
dtucker@openbsd.orgf2398eb2016-12-04 22:27:25 +0000315 if (options.pid_file != NULL)
316 unlink(options.pid_file);
Adam Langleyd0592972015-03-30 14:49:51 -0700317 platform_pre_restart();
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800318 close_listen_socks();
319 close_startup_pipes();
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +0000320 ssh_signal(SIGHUP, SIG_IGN); /* will be restored after exec */
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800321 execv(saved_argv[0], saved_argv);
322 logit("RESTART FAILED: av[0]='%.100s', error: %.100s.", saved_argv[0],
323 strerror(errno));
324 exit(1);
325}
326
327/*
328 * Generic signal handler for terminating signals in the master daemon.
329 */
330/*ARGSUSED*/
331static void
332sigterm_handler(int sig)
333{
334 received_sigterm = sig;
335}
336
337/*
338 * SIGCHLD handler. This is called whenever a child dies. This will then
339 * reap any zombies left by exited children.
340 */
341/*ARGSUSED*/
342static void
343main_sigchld_handler(int sig)
344{
345 int save_errno = errno;
346 pid_t pid;
347 int status;
348
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +0000349 debug("main_sigchld_handler: %s", strsignal(sig));
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800350
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000351 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000352 (pid == -1 && errno == EINTR))
Damien Miller95def091999-11-25 00:26:21 +1100353 ;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800354 errno = save_errno;
355}
356
357/*
358 * Signal handler for the alarm after the login grace period has expired.
359 */
360/*ARGSUSED*/
361static void
362grace_alarm_handler(int sig)
363{
364 if (use_privsep && pmonitor != NULL && pmonitor->m_pid > 0)
365 kill(pmonitor->m_pid, SIGALRM);
366
Adam Langleyd0592972015-03-30 14:49:51 -0700367 /*
368 * Try to kill any processes that we have spawned, E.g. authorized
369 * keys command helpers.
370 */
371 if (getpgid(0) == getpid()) {
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +0000372 ssh_signal(SIGTERM, SIG_IGN);
Adam Langleyd0592972015-03-30 14:49:51 -0700373 kill(0, SIGTERM);
374 }
375
djm@openbsd.org04c091f2019-01-19 21:43:56 +0000376 /* XXX pre-format ipaddr/port so we don't need to access active_state */
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800377 /* Log error and exit. */
djm@openbsd.org95767262016-03-07 19:02:43 +0000378 sigdie("Timeout before authentication for %s port %d",
djm@openbsd.org04c091f2019-01-19 21:43:56 +0000379 ssh_remote_ipaddr(the_active_state),
380 ssh_remote_port(the_active_state));
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800381}
382
383/* Destroy the host and server keys. They will no longer be needed. */
384void
385destroy_sensitive_data(void)
386{
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000387 u_int i;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800388
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800389 for (i = 0; i < options.num_host_key_files; i++) {
390 if (sensitive_data.host_keys[i]) {
markus@openbsd.org5467fbc2018-07-11 18:53:29 +0000391 sshkey_free(sensitive_data.host_keys[i]);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800392 sensitive_data.host_keys[i] = NULL;
393 }
394 if (sensitive_data.host_certificates[i]) {
markus@openbsd.org5467fbc2018-07-11 18:53:29 +0000395 sshkey_free(sensitive_data.host_certificates[i]);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800396 sensitive_data.host_certificates[i] = NULL;
397 }
398 }
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800399}
400
401/* Demote private to public keys for network child */
402void
403demote_sensitive_data(void)
404{
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000405 struct sshkey *tmp;
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000406 u_int i;
markus@openbsd.org5467fbc2018-07-11 18:53:29 +0000407 int r;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800408
409 for (i = 0; i < options.num_host_key_files; i++) {
410 if (sensitive_data.host_keys[i]) {
djm@openbsd.org482d23b2018-09-13 02:08:33 +0000411 if ((r = sshkey_from_private(
412 sensitive_data.host_keys[i], &tmp)) != 0)
markus@openbsd.org5467fbc2018-07-11 18:53:29 +0000413 fatal("could not demote host %s key: %s",
414 sshkey_type(sensitive_data.host_keys[i]),
415 ssh_err(r));
416 sshkey_free(sensitive_data.host_keys[i]);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800417 sensitive_data.host_keys[i] = tmp;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800418 }
419 /* Certs do not need demotion */
420 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000421}
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800422
Ben Lindstrom08105192002-03-22 02:50:06 +0000423static void
Damien Millerc9f880c2016-11-30 13:51:49 +1100424reseed_prngs(void)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000425{
Darren Tucker64cee362009-06-21 20:26:17 +1000426 u_int32_t rnd[256];
Damien Millerc9f880c2016-11-30 13:51:49 +1100427
428#ifdef WITH_OPENSSL
429 RAND_poll();
430#endif
431 arc4random_stir(); /* noop on recent arc4random() implementations */
432 arc4random_buf(rnd, sizeof(rnd)); /* let arc4random notice PID change */
433
434#ifdef WITH_OPENSSL
435 RAND_seed(rnd, sizeof(rnd));
436 /* give libcrypto a chance to notice the PID change */
437 if ((RAND_bytes((u_char *)rnd, 1)) != 1)
438 fatal("%s: RAND_bytes failed", __func__);
439#endif
440
441 explicit_bzero(rnd, sizeof(rnd));
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800442}
443
444static void
445privsep_preauth_child(void)
446{
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800447 gid_t gidset[1];
448
449 /* Enable challenge-response authentication for privilege separation */
450 privsep_challenge_enable();
451
Adam Langleyd0592972015-03-30 14:49:51 -0700452#ifdef GSSAPI
453 /* Cache supported mechanism OIDs for later use */
djm@openbsd.orgcb24d9f2018-09-21 12:23:17 +0000454 ssh_gssapi_prepare_supported_oids();
Adam Langleyd0592972015-03-30 14:49:51 -0700455#endif
456
Damien Millerc9f880c2016-11-30 13:51:49 +1100457 reseed_prngs();
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800458
459 /* Demote the private keys to public keys. */
460 demote_sensitive_data();
461
djm@openbsd.org5b4010d2015-11-16 22:51:05 +0000462 /* Demote the child */
Darren Tuckerd13281f2017-03-29 12:39:39 +1100463 if (privsep_chroot) {
djm@openbsd.org5b4010d2015-11-16 22:51:05 +0000464 /* Change our root directory */
465 if (chroot(_PATH_PRIVSEP_CHROOT_DIR) == -1)
466 fatal("chroot(\"%s\"): %s", _PATH_PRIVSEP_CHROOT_DIR,
467 strerror(errno));
468 if (chdir("/") == -1)
469 fatal("chdir(\"/\"): %s", strerror(errno));
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800470
djm@openbsd.org5b4010d2015-11-16 22:51:05 +0000471 /* Drop our privileges */
472 debug3("privsep user:group %u:%u", (u_int)privsep_pw->pw_uid,
473 (u_int)privsep_pw->pw_gid);
474 gidset[0] = privsep_pw->pw_gid;
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000475 if (setgroups(1, gidset) == -1)
djm@openbsd.org5b4010d2015-11-16 22:51:05 +0000476 fatal("setgroups: %.100s", strerror(errno));
477 permanently_set_uid(privsep_pw);
478 }
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800479}
480
481static int
djm@openbsd.org6350e032019-01-19 21:42:30 +0000482privsep_preauth(struct ssh *ssh)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800483{
Adam Langleyd0592972015-03-30 14:49:51 -0700484 int status, r;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800485 pid_t pid;
486 struct ssh_sandbox *box = NULL;
487
488 /* Set up unprivileged child process to deal with network data */
489 pmonitor = monitor_init();
490 /* Store a pointer to the kex for later rekeying */
djm@openbsd.org6350e032019-01-19 21:42:30 +0000491 pmonitor->m_pkex = &ssh->kex;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800492
Adam Langleyd0592972015-03-30 14:49:51 -0700493 if (use_privsep == PRIVSEP_ON)
494 box = ssh_sandbox_init(pmonitor);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800495 pid = fork();
496 if (pid == -1) {
497 fatal("fork of unprivileged child failed");
498 } else if (pid != 0) {
499 debug2("Network child is on pid %ld", (long)pid);
500
Adam Langleyd0592972015-03-30 14:49:51 -0700501 pmonitor->m_pid = pid;
502 if (have_agent) {
503 r = ssh_get_authentication_socket(&auth_sock);
504 if (r != 0) {
505 error("Could not get agent socket: %s",
506 ssh_err(r));
507 have_agent = 0;
508 }
509 }
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800510 if (box != NULL)
511 ssh_sandbox_parent_preauth(box, pid);
djm@openbsd.orgec00f912019-01-19 21:43:07 +0000512 monitor_child_preauth(ssh, pmonitor);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800513
514 /* Wait for the child's exit status */
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000515 while (waitpid(pid, &status, 0) == -1) {
Adam Langleyd0592972015-03-30 14:49:51 -0700516 if (errno == EINTR)
517 continue;
518 pmonitor->m_pid = -1;
519 fatal("%s: waitpid: %s", __func__, strerror(errno));
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800520 }
Adam Langleyd0592972015-03-30 14:49:51 -0700521 privsep_is_preauth = 0;
522 pmonitor->m_pid = -1;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800523 if (WIFEXITED(status)) {
524 if (WEXITSTATUS(status) != 0)
525 fatal("%s: preauth child exited with status %d",
526 __func__, WEXITSTATUS(status));
527 } else if (WIFSIGNALED(status))
528 fatal("%s: preauth child terminated by signal %d",
529 __func__, WTERMSIG(status));
530 if (box != NULL)
531 ssh_sandbox_parent_finish(box);
532 return 1;
533 } else {
534 /* child */
535 close(pmonitor->m_sendfd);
536 close(pmonitor->m_log_recvfd);
537
538 /* Arrange for logging to be sent to the monitor */
539 set_log_handler(mm_log_handler, pmonitor);
540
djm@openbsd.org5b4010d2015-11-16 22:51:05 +0000541 privsep_preauth_child();
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800542 setproctitle("%s", "[net]");
543 if (box != NULL)
544 ssh_sandbox_child(box);
545
546 return 0;
547 }
548}
549
550static void
djm@openbsd.org6350e032019-01-19 21:42:30 +0000551privsep_postauth(struct ssh *ssh, Authctxt *authctxt)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800552{
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800553#ifdef DISABLE_FD_PASSING
554 if (1) {
555#else
djm@openbsd.org83b58182016-08-19 03:18:06 +0000556 if (authctxt->pw->pw_uid == 0) {
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800557#endif
558 /* File descriptor passing is broken or root login */
559 use_privsep = 0;
560 goto skip;
561 }
562
563 /* New socket pair */
564 monitor_reinit(pmonitor);
565
566 pmonitor->m_pid = fork();
567 if (pmonitor->m_pid == -1)
568 fatal("fork of unprivileged child failed");
569 else if (pmonitor->m_pid != 0) {
570 verbose("User child is on pid %ld", (long)pmonitor->m_pid);
markus@openbsd.org2808d182018-07-09 21:26:02 +0000571 sshbuf_reset(loginmsg);
djm@openbsd.orgec00f912019-01-19 21:43:07 +0000572 monitor_clear_keystate(ssh, pmonitor);
573 monitor_child_postauth(ssh, pmonitor);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800574
575 /* NEVERREACHED */
576 exit(0);
577 }
578
579 /* child */
580
581 close(pmonitor->m_sendfd);
582 pmonitor->m_sendfd = -1;
583
584 /* Demote the private keys to public keys. */
585 demote_sensitive_data();
586
Damien Millerc9f880c2016-11-30 13:51:49 +1100587 reseed_prngs();
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800588
589 /* Drop privileges */
590 do_setusercontext(authctxt->pw);
591
592 skip:
593 /* It is safe now to apply the key state */
djm@openbsd.orgec00f912019-01-19 21:43:07 +0000594 monitor_apply_keystate(ssh, pmonitor);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800595
596 /*
597 * Tell the packet layer that authentication was successful, since
598 * this information is not part of the key state.
599 */
djm@openbsd.org6350e032019-01-19 21:42:30 +0000600 ssh_packet_set_authenticated(ssh);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000601}
602
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000603static void
604append_hostkey_type(struct sshbuf *b, const char *s)
605{
606 int r;
607
608 if (match_pattern_list(s, options.hostkeyalgorithms, 0) != 1) {
609 debug3("%s: %s key not permitted by HostkeyAlgorithms",
610 __func__, s);
611 return;
612 }
613 if ((r = sshbuf_putf(b, "%s%s", sshbuf_len(b) > 0 ? "," : "", s)) != 0)
614 fatal("%s: sshbuf_putf: %s", __func__, ssh_err(r));
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800615}
616
617static char *
618list_hostkey_types(void)
619{
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000620 struct sshbuf *b;
621 struct sshkey *key;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800622 char *ret;
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000623 u_int i;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800624
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000625 if ((b = sshbuf_new()) == NULL)
626 fatal("%s: sshbuf_new failed", __func__);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800627 for (i = 0; i < options.num_host_key_files; i++) {
628 key = sensitive_data.host_keys[i];
629 if (key == NULL)
Adam Langleyd0592972015-03-30 14:49:51 -0700630 key = sensitive_data.host_pubkeys[i];
631 if (key == NULL)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800632 continue;
633 switch (key->type) {
634 case KEY_RSA:
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000635 /* for RSA we also support SHA2 signatures */
636 append_hostkey_type(b, "rsa-sha2-512");
637 append_hostkey_type(b, "rsa-sha2-256");
638 /* FALLTHROUGH */
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800639 case KEY_DSA:
640 case KEY_ECDSA:
Adam Langleyd0592972015-03-30 14:49:51 -0700641 case KEY_ED25519:
djm@openbsd.org56584cc2019-12-15 18:57:30 +0000642 case KEY_ECDSA_SK:
643 case KEY_ED25519_SK:
markus@openbsd.org1b11ea72018-02-23 15:58:37 +0000644 case KEY_XMSS:
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000645 append_hostkey_type(b, sshkey_ssh_name(key));
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800646 break;
647 }
648 /* If the private key has a cert peer, then list that too */
649 key = sensitive_data.host_certificates[i];
650 if (key == NULL)
651 continue;
652 switch (key->type) {
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800653 case KEY_RSA_CERT:
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000654 /* for RSA we also support SHA2 signatures */
655 append_hostkey_type(b,
656 "rsa-sha2-512-cert-v01@openssh.com");
657 append_hostkey_type(b,
658 "rsa-sha2-256-cert-v01@openssh.com");
659 /* FALLTHROUGH */
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800660 case KEY_DSA_CERT:
661 case KEY_ECDSA_CERT:
Adam Langleyd0592972015-03-30 14:49:51 -0700662 case KEY_ED25519_CERT:
djm@openbsd.org56584cc2019-12-15 18:57:30 +0000663 case KEY_ECDSA_SK_CERT:
664 case KEY_ED25519_SK_CERT:
markus@openbsd.org1b11ea72018-02-23 15:58:37 +0000665 case KEY_XMSS_CERT:
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000666 append_hostkey_type(b, sshkey_ssh_name(key));
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800667 break;
668 }
669 }
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000670 if ((ret = sshbuf_dup_string(b)) == NULL)
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000671 fatal("%s: sshbuf_dup_string failed", __func__);
djm@openbsd.org4ba0d542018-07-03 11:39:54 +0000672 sshbuf_free(b);
673 debug("%s: %s", __func__, ret);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800674 return ret;
675}
676
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000677static struct sshkey *
Adam Langleyd0592972015-03-30 14:49:51 -0700678get_hostkey_by_type(int type, int nid, int need_private, struct ssh *ssh)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800679{
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000680 u_int i;
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000681 struct sshkey *key;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800682
683 for (i = 0; i < options.num_host_key_files; i++) {
684 switch (type) {
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800685 case KEY_RSA_CERT:
686 case KEY_DSA_CERT:
687 case KEY_ECDSA_CERT:
Adam Langleyd0592972015-03-30 14:49:51 -0700688 case KEY_ED25519_CERT:
djm@openbsd.org56584cc2019-12-15 18:57:30 +0000689 case KEY_ECDSA_SK_CERT:
690 case KEY_ED25519_SK_CERT:
markus@openbsd.org1b11ea72018-02-23 15:58:37 +0000691 case KEY_XMSS_CERT:
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800692 key = sensitive_data.host_certificates[i];
693 break;
694 default:
695 key = sensitive_data.host_keys[i];
Adam Langleyd0592972015-03-30 14:49:51 -0700696 if (key == NULL && !need_private)
697 key = sensitive_data.host_pubkeys[i];
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800698 break;
699 }
djm@openbsd.org56584cc2019-12-15 18:57:30 +0000700 if (key == NULL || key->type != type)
701 continue;
702 switch (type) {
703 case KEY_ECDSA:
704 case KEY_ECDSA_SK:
705 case KEY_ECDSA_CERT:
706 case KEY_ECDSA_SK_CERT:
707 if (key->ecdsa_nid != nid)
708 continue;
709 /* FALLTHROUGH */
710 default:
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800711 return need_private ?
712 sensitive_data.host_keys[i] : key;
djm@openbsd.org56584cc2019-12-15 18:57:30 +0000713 }
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800714 }
715 return NULL;
716}
717
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000718struct sshkey *
Adam Langleyd0592972015-03-30 14:49:51 -0700719get_hostkey_public_by_type(int type, int nid, struct ssh *ssh)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800720{
Adam Langleyd0592972015-03-30 14:49:51 -0700721 return get_hostkey_by_type(type, nid, 0, ssh);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800722}
723
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000724struct sshkey *
Adam Langleyd0592972015-03-30 14:49:51 -0700725get_hostkey_private_by_type(int type, int nid, struct ssh *ssh)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800726{
Adam Langleyd0592972015-03-30 14:49:51 -0700727 return get_hostkey_by_type(type, nid, 1, ssh);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800728}
729
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000730struct sshkey *
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800731get_hostkey_by_index(int ind)
732{
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000733 if (ind < 0 || (u_int)ind >= options.num_host_key_files)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800734 return (NULL);
735 return (sensitive_data.host_keys[ind]);
736}
737
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000738struct sshkey *
Adam Langleyd0592972015-03-30 14:49:51 -0700739get_hostkey_public_by_index(int ind, struct ssh *ssh)
740{
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000741 if (ind < 0 || (u_int)ind >= options.num_host_key_files)
Adam Langleyd0592972015-03-30 14:49:51 -0700742 return (NULL);
743 return (sensitive_data.host_pubkeys[ind]);
744}
745
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800746int
markus@openbsd.org54d90ac2017-05-30 08:52:19 +0000747get_hostkey_index(struct sshkey *key, int compare, struct ssh *ssh)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800748{
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000749 u_int i;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800750
751 for (i = 0; i < options.num_host_key_files; i++) {
markus@openbsd.org5467fbc2018-07-11 18:53:29 +0000752 if (sshkey_is_cert(key)) {
Adam Langleyd0592972015-03-30 14:49:51 -0700753 if (key == sensitive_data.host_certificates[i] ||
754 (compare && sensitive_data.host_certificates[i] &&
755 sshkey_equal(key,
756 sensitive_data.host_certificates[i])))
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800757 return (i);
758 } else {
Adam Langleyd0592972015-03-30 14:49:51 -0700759 if (key == sensitive_data.host_keys[i] ||
760 (compare && sensitive_data.host_keys[i] &&
761 sshkey_equal(key, sensitive_data.host_keys[i])))
762 return (i);
763 if (key == sensitive_data.host_pubkeys[i] ||
764 (compare && sensitive_data.host_pubkeys[i] &&
765 sshkey_equal(key, sensitive_data.host_pubkeys[i])))
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800766 return (i);
767 }
768 }
769 return (-1);
770}
771
Adam Langleyd0592972015-03-30 14:49:51 -0700772/* Inform the client of all hostkeys */
773static void
774notify_hostkeys(struct ssh *ssh)
775{
776 struct sshbuf *buf;
777 struct sshkey *key;
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000778 u_int i, nkeys;
779 int r;
Adam Langleyd0592972015-03-30 14:49:51 -0700780 char *fp;
781
dtucker@openbsd.orgd8f391c2015-04-10 05:16:50 +0000782 /* Some clients cannot cope with the hostkeys message, skip those. */
djm@openbsd.org04c091f2019-01-19 21:43:56 +0000783 if (ssh->compat & SSH_BUG_HOSTKEYS)
dtucker@openbsd.orgd8f391c2015-04-10 05:16:50 +0000784 return;
785
Adam Langleyd0592972015-03-30 14:49:51 -0700786 if ((buf = sshbuf_new()) == NULL)
787 fatal("%s: sshbuf_new", __func__);
788 for (i = nkeys = 0; i < options.num_host_key_files; i++) {
789 key = get_hostkey_public_by_index(i, ssh);
790 if (key == NULL || key->type == KEY_UNSPEC ||
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +0000791 sshkey_is_cert(key))
Adam Langleyd0592972015-03-30 14:49:51 -0700792 continue;
793 fp = sshkey_fingerprint(key, options.fingerprint_hash,
794 SSH_FP_DEFAULT);
795 debug3("%s: key %d: %s %s", __func__, i,
796 sshkey_ssh_name(key), fp);
797 free(fp);
798 if (nkeys == 0) {
djm@openbsd.org6350e032019-01-19 21:42:30 +0000799 /*
800 * Start building the request when we find the
801 * first usable key.
802 */
803 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
804 (r = sshpkt_put_cstring(ssh, "hostkeys-00@openssh.com")) != 0 ||
805 (r = sshpkt_put_u8(ssh, 0)) != 0) /* want reply */
806 sshpkt_fatal(ssh, r, "%s: start request", __func__);
Adam Langleyd0592972015-03-30 14:49:51 -0700807 }
djm@openbsd.org6350e032019-01-19 21:42:30 +0000808 /* Append the key to the request */
Adam Langleyd0592972015-03-30 14:49:51 -0700809 sshbuf_reset(buf);
810 if ((r = sshkey_putb(key, buf)) != 0)
811 fatal("%s: couldn't put hostkey %d: %s",
812 __func__, i, ssh_err(r));
djm@openbsd.org6350e032019-01-19 21:42:30 +0000813 if ((r = sshpkt_put_stringb(ssh, buf)) != 0)
814 sshpkt_fatal(ssh, r, "%s: append key", __func__);
Adam Langleyd0592972015-03-30 14:49:51 -0700815 nkeys++;
816 }
djm@openbsd.orgdceabc72017-10-05 15:52:03 +0000817 debug3("%s: sent %u hostkeys", __func__, nkeys);
Adam Langleyd0592972015-03-30 14:49:51 -0700818 if (nkeys == 0)
819 fatal("%s: no hostkeys", __func__);
djm@openbsd.org6350e032019-01-19 21:42:30 +0000820 if ((r = sshpkt_send(ssh)) != 0)
821 sshpkt_fatal(ssh, r, "%s: send", __func__);
Adam Langleyd0592972015-03-30 14:49:51 -0700822 sshbuf_free(buf);
823}
824
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800825/*
826 * returns 1 if connection should be dropped, 0 otherwise.
827 * dropping starts at connection #max_startups_begin with a probability
828 * of (max_startups_rate/100). the probability increases linearly until
829 * all connections are dropped for startups > max_startups
830 */
831static int
832drop_connection(int startups)
833{
834 int p, r;
835
836 if (startups < options.max_startups_begin)
837 return 0;
838 if (startups >= options.max_startups)
839 return 1;
840 if (options.max_startups_rate == 100)
841 return 1;
842
843 p = 100 - options.max_startups_rate;
844 p *= startups - options.max_startups_begin;
845 p /= options.max_startups - options.max_startups_begin;
846 p += options.max_startups_rate;
847 r = arc4random_uniform(100);
848
849 debug("drop_connection: p %d, r %d", p, r);
850 return (r < p) ? 1 : 0;
851}
852
853static void
854usage(void)
855{
856 fprintf(stderr, "%s, %s\n",
Adam Langleyd0592972015-03-30 14:49:51 -0700857 SSH_RELEASE,
858#ifdef WITH_OPENSSL
djm@openbsd.orga65784c2018-10-23 05:56:35 +0000859 OpenSSL_version(OPENSSL_VERSION)
Adam Langleyd0592972015-03-30 14:49:51 -0700860#else
861 "without OpenSSL"
862#endif
863 );
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800864 fprintf(stderr,
naddy@openbsd.orgc38ea632016-08-15 12:27:56 +0000865"usage: sshd [-46DdeiqTt] [-C connection_spec] [-c host_cert_file]\n"
Adam Langleyd0592972015-03-30 14:49:51 -0700866" [-E log_file] [-f config_file] [-g login_grace_time]\n"
naddy@openbsd.orgc38ea632016-08-15 12:27:56 +0000867" [-h host_key_file] [-o option] [-p port] [-u len]\n"
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800868 );
869 exit(1);
870}
871
872static void
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000873send_rexec_state(int fd, struct sshbuf *conf)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800874{
djm@openbsd.orgc2bd7f72020-01-31 22:42:45 +0000875 struct sshbuf *m = NULL, *inc = NULL;
876 struct include_item *item = NULL;
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000877 int r;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800878
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000879 debug3("%s: entering fd = %d config len %zu", __func__, fd,
880 sshbuf_len(conf));
Darren Tucker645ab752004-06-25 13:33:20 +1000881
djm@openbsd.orgc2bd7f72020-01-31 22:42:45 +0000882 if ((m = sshbuf_new()) == NULL || (inc = sshbuf_new()) == NULL)
883 fatal("%s: sshbuf_new failed", __func__);
884
885 /* pack includes into a string */
886 TAILQ_FOREACH(item, &includes, entry) {
887 if ((r = sshbuf_put_cstring(inc, item->selector)) != 0 ||
888 (r = sshbuf_put_cstring(inc, item->filename)) != 0 ||
889 (r = sshbuf_put_stringb(inc, item->contents)) != 0)
890 fatal("%s: buffer error: %s", __func__, ssh_err(r));
891 }
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800892
893 /*
894 * Protocol from reexec master to child:
895 * string configuration
djm@openbsd.orgc2bd7f72020-01-31 22:42:45 +0000896 * string included_files[] {
897 * string selector
898 * string filename
899 * string contents
900 * }
901 * string rng_seed (if required)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800902 */
djm@openbsd.orgc2bd7f72020-01-31 22:42:45 +0000903 if ((r = sshbuf_put_stringb(m, conf)) != 0 ||
904 (r = sshbuf_put_stringb(m, inc)) != 0)
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000905 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Adam Langleyd0592972015-03-30 14:49:51 -0700906#if defined(WITH_OPENSSL) && !defined(OPENSSL_PRNG_ONLY)
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000907 rexec_send_rng_seed(m);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800908#endif
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000909 if (ssh_msg_send(fd, 0, m) == -1)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800910 fatal("%s: ssh_msg_send failed", __func__);
911
djm@openbsd.org1a31d022016-05-02 08:49:03 +0000912 sshbuf_free(m);
djm@openbsd.orgc2bd7f72020-01-31 22:42:45 +0000913 sshbuf_free(inc);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800914
915 debug3("%s: done", __func__);
916}
917
918static void
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +0000919recv_rexec_state(int fd, struct sshbuf *conf)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800920{
djm@openbsd.orgc2bd7f72020-01-31 22:42:45 +0000921 struct sshbuf *m, *inc;
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +0000922 u_char *cp, ver;
923 size_t len;
924 int r;
djm@openbsd.orgc2bd7f72020-01-31 22:42:45 +0000925 struct include_item *item;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800926
927 debug3("%s: entering fd = %d", __func__, fd);
928
djm@openbsd.orgc2bd7f72020-01-31 22:42:45 +0000929 if ((m = sshbuf_new()) == NULL || (inc = sshbuf_new()) == NULL)
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +0000930 fatal("%s: sshbuf_new failed", __func__);
931 if (ssh_msg_recv(fd, m) == -1)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800932 fatal("%s: ssh_msg_recv failed", __func__);
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +0000933 if ((r = sshbuf_get_u8(m, &ver)) != 0)
934 fatal("%s: buffer error: %s", __func__, ssh_err(r));
935 if (ver != 0)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800936 fatal("%s: rexec version mismatch", __func__);
djm@openbsd.orgc2bd7f72020-01-31 22:42:45 +0000937 if ((r = sshbuf_get_string(m, &cp, &len)) != 0 ||
938 (r = sshbuf_get_stringb(m, inc)) != 0)
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +0000939 fatal("%s: buffer error: %s", __func__, ssh_err(r));
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800940
Adam Langleyd0592972015-03-30 14:49:51 -0700941#if defined(WITH_OPENSSL) && !defined(OPENSSL_PRNG_ONLY)
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +0000942 rexec_recv_rng_seed(m);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800943#endif
944
djm@openbsd.orgc2bd7f72020-01-31 22:42:45 +0000945 if (conf != NULL && (r = sshbuf_put(conf, cp, len)))
946 fatal("%s: buffer error: %s", __func__, ssh_err(r));
947
948 while (sshbuf_len(inc) != 0) {
949 item = xcalloc(1, sizeof(*item));
950 if ((item->contents = sshbuf_new()) == NULL)
951 fatal("%s: sshbuf_new failed", __func__);
952 if ((r = sshbuf_get_cstring(inc, &item->selector, NULL)) != 0 ||
953 (r = sshbuf_get_cstring(inc, &item->filename, NULL)) != 0 ||
954 (r = sshbuf_get_stringb(inc, item->contents)) != 0)
955 fatal("%s: buffer error: %s", __func__, ssh_err(r));
956 TAILQ_INSERT_TAIL(&includes, item, entry);
957 }
958
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +0000959 free(cp);
960 sshbuf_free(m);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800961
962 debug3("%s: done", __func__);
963}
964
965/* Accept a connection from inetd */
966static void
967server_accept_inetd(int *sock_in, int *sock_out)
968{
969 int fd;
970
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800971 if (rexeced_flag) {
972 close(REEXEC_CONFIG_PASS_FD);
973 *sock_in = *sock_out = dup(STDIN_FILENO);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800974 } else {
975 *sock_in = dup(STDIN_FILENO);
976 *sock_out = dup(STDOUT_FILENO);
977 }
978 /*
979 * We intentionally do not close the descriptors 0, 1, and 2
980 * as our code for setting the descriptors won't work if
981 * ttyfd happens to be one of those.
982 */
983 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
984 dup2(fd, STDIN_FILENO);
985 dup2(fd, STDOUT_FILENO);
Adam Langleyd0592972015-03-30 14:49:51 -0700986 if (!log_stderr)
987 dup2(fd, STDERR_FILENO);
988 if (fd > (log_stderr ? STDERR_FILENO : STDOUT_FILENO))
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800989 close(fd);
990 }
991 debug("inetd sockets after dupping: %d, %d", *sock_in, *sock_out);
992}
993
994/*
995 * Listen for TCP connections
996 */
997static void
djm@openbsd.orgacf559e2017-10-25 00:15:35 +0000998listen_on_addrs(struct listenaddr *la)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800999{
djm@openbsd.orgacf559e2017-10-25 00:15:35 +00001000 int ret, listen_sock;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001001 struct addrinfo *ai;
1002 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
1003
djm@openbsd.orgacf559e2017-10-25 00:15:35 +00001004 for (ai = la->addrs; ai; ai = ai->ai_next) {
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001005 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1006 continue;
1007 if (num_listen_socks >= MAX_LISTEN_SOCKS)
1008 fatal("Too many listen sockets. "
1009 "Enlarge MAX_LISTEN_SOCKS");
1010 if ((ret = getnameinfo(ai->ai_addr, ai->ai_addrlen,
1011 ntop, sizeof(ntop), strport, sizeof(strport),
1012 NI_NUMERICHOST|NI_NUMERICSERV)) != 0) {
1013 error("getnameinfo failed: %.100s",
1014 ssh_gai_strerror(ret));
1015 continue;
1016 }
1017 /* Create socket for listening. */
1018 listen_sock = socket(ai->ai_family, ai->ai_socktype,
1019 ai->ai_protocol);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001020 if (listen_sock == -1) {
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001021 /* kernel may not support ipv6 */
1022 verbose("socket: %.100s", strerror(errno));
1023 continue;
1024 }
1025 if (set_nonblock(listen_sock) == -1) {
1026 close(listen_sock);
1027 continue;
1028 }
djm@openbsd.org8071a692017-02-24 03:16:34 +00001029 if (fcntl(listen_sock, F_SETFD, FD_CLOEXEC) == -1) {
1030 verbose("socket: CLOEXEC: %s", strerror(errno));
1031 close(listen_sock);
1032 continue;
1033 }
djm@openbsd.orgacf559e2017-10-25 00:15:35 +00001034 /* Socket options */
1035 set_reuseaddr(listen_sock);
1036 if (la->rdomain != NULL &&
1037 set_rdomain(listen_sock, la->rdomain) == -1) {
1038 close(listen_sock);
1039 continue;
1040 }
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001041
1042 /* Only communicate in IPv6 over AF_INET6 sockets. */
1043 if (ai->ai_family == AF_INET6)
1044 sock_set_v6only(listen_sock);
1045
1046 debug("Bind to port %s on %s.", strport, ntop);
1047
1048 /* Bind the socket to the desired port. */
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001049 if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) == -1) {
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001050 error("Bind to port %s on %s failed: %.200s.",
1051 strport, ntop, strerror(errno));
1052 close(listen_sock);
1053 continue;
1054 }
1055 listen_socks[num_listen_socks] = listen_sock;
1056 num_listen_socks++;
1057
1058 /* Start listening on the port. */
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001059 if (listen(listen_sock, SSH_LISTEN_BACKLOG) == -1)
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001060 fatal("listen on [%s]:%s: %.100s",
1061 ntop, strport, strerror(errno));
djm@openbsd.orgacf559e2017-10-25 00:15:35 +00001062 logit("Server listening on %s port %s%s%s.",
1063 ntop, strport,
1064 la->rdomain == NULL ? "" : " rdomain ",
1065 la->rdomain == NULL ? "" : la->rdomain);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001066 }
djm@openbsd.orgacf559e2017-10-25 00:15:35 +00001067}
1068
1069static void
1070server_listen(void)
1071{
1072 u_int i;
1073
1074 for (i = 0; i < options.num_listen_addrs; i++) {
1075 listen_on_addrs(&options.listen_addrs[i]);
1076 freeaddrinfo(options.listen_addrs[i].addrs);
1077 free(options.listen_addrs[i].rdomain);
1078 memset(&options.listen_addrs[i], 0,
1079 sizeof(options.listen_addrs[i]));
1080 }
1081 free(options.listen_addrs);
1082 options.listen_addrs = NULL;
1083 options.num_listen_addrs = 0;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001084
1085 if (!num_listen_socks)
1086 fatal("Cannot bind any address.");
1087}
1088
1089/*
1090 * The main TCP accept loop. Note that, for the non-debug case, returns
1091 * from this function are in a forked subprocess.
1092 */
1093static void
1094server_accept_loop(int *sock_in, int *sock_out, int *newsock, int *config_s)
1095{
1096 fd_set *fdset;
1097 int i, j, ret, maxfd;
djm@openbsd.org70d38c32020-01-21 22:39:57 +00001098 int ostartups = -1, startups = 0, listening = 0, lameduck = 0;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001099 int startup_p[2] = { -1 , -1 };
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001100 char c = 0;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001101 struct sockaddr_storage from;
1102 socklen_t fromlen;
1103 pid_t pid;
Adam Langleyd0592972015-03-30 14:49:51 -07001104 u_char rnd[256];
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001105
1106 /* setup fd set for accept */
1107 fdset = NULL;
1108 maxfd = 0;
1109 for (i = 0; i < num_listen_socks; i++)
1110 if (listen_socks[i] > maxfd)
1111 maxfd = listen_socks[i];
djm@openbsd.orgd081f012020-03-13 03:17:07 +00001112 /* pipes connected to unauthenticated child sshd processes */
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001113 startup_pipes = xcalloc(options.max_startups, sizeof(int));
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001114 startup_flags = xcalloc(options.max_startups, sizeof(int));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001115 for (i = 0; i < options.max_startups; i++)
1116 startup_pipes[i] = -1;
1117
1118 /*
1119 * Stay listening for connections until the system crashes or
1120 * the daemon is killed with a signal.
1121 */
1122 for (;;) {
djm@openbsd.org70d38c32020-01-21 22:39:57 +00001123 if (ostartups != startups) {
djm@openbsd.orga8c05c62020-01-24 23:56:01 +00001124 setproctitle("%s [listener] %d of %d-%d startups",
1125 listener_proctitle, startups,
1126 options.max_startups_begin, options.max_startups);
djm@openbsd.org70d38c32020-01-21 22:39:57 +00001127 ostartups = startups;
1128 }
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001129 if (received_sighup) {
1130 if (!lameduck) {
1131 debug("Received SIGHUP; waiting for children");
1132 close_listen_socks();
1133 lameduck = 1;
1134 }
1135 if (listening <= 0)
1136 sighup_restart();
1137 }
mmcc@openbsd.orgd59ce082015-12-10 17:08:40 +00001138 free(fdset);
deraadt@openbsd.orgce445b02015-08-20 22:32:42 +00001139 fdset = xcalloc(howmany(maxfd + 1, NFDBITS),
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001140 sizeof(fd_mask));
1141
1142 for (i = 0; i < num_listen_socks; i++)
1143 FD_SET(listen_socks[i], fdset);
1144 for (i = 0; i < options.max_startups; i++)
1145 if (startup_pipes[i] != -1)
1146 FD_SET(startup_pipes[i], fdset);
1147
1148 /* Wait in select until there is a connection. */
1149 ret = select(maxfd+1, fdset, NULL, NULL, NULL);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001150 if (ret == -1 && errno != EINTR)
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001151 error("select: %.100s", strerror(errno));
1152 if (received_sigterm) {
1153 logit("Received signal %d; terminating.",
1154 (int) received_sigterm);
1155 close_listen_socks();
Adam Langleyd0592972015-03-30 14:49:51 -07001156 if (options.pid_file != NULL)
1157 unlink(options.pid_file);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001158 exit(received_sigterm == SIGTERM ? 0 : 255);
1159 }
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001160 if (ret == -1)
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001161 continue;
1162
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001163 for (i = 0; i < options.max_startups; i++) {
1164 if (startup_pipes[i] == -1 ||
1165 !FD_ISSET(startup_pipes[i], fdset))
1166 continue;
1167 switch (read(startup_pipes[i], &c, sizeof(c))) {
1168 case -1:
1169 if (errno == EINTR || errno == EAGAIN)
1170 continue;
1171 if (errno != EPIPE) {
1172 error("%s: startup pipe %d (fd=%d): "
1173 "read %s", __func__, i,
1174 startup_pipes[i], strerror(errno));
1175 }
1176 /* FALLTHROUGH */
1177 case 0:
1178 /* child exited or completed auth */
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001179 close(startup_pipes[i]);
1180 startup_pipes[i] = -1;
1181 startups--;
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001182 if (startup_flags[i])
1183 listening--;
1184 break;
1185 case 1:
1186 /* child has finished preliminaries */
1187 if (startup_flags[i]) {
1188 listening--;
1189 startup_flags[i] = 0;
1190 }
1191 break;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001192 }
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001193 }
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001194 for (i = 0; i < num_listen_socks; i++) {
1195 if (!FD_ISSET(listen_socks[i], fdset))
1196 continue;
1197 fromlen = sizeof(from);
1198 *newsock = accept(listen_socks[i],
1199 (struct sockaddr *)&from, &fromlen);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001200 if (*newsock == -1) {
Adam Langleyd0592972015-03-30 14:49:51 -07001201 if (errno != EINTR && errno != EWOULDBLOCK &&
1202 errno != ECONNABORTED && errno != EAGAIN)
1203 error("accept: %.100s",
1204 strerror(errno));
1205 if (errno == EMFILE || errno == ENFILE)
1206 usleep(100 * 1000);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001207 continue;
1208 }
1209 if (unset_nonblock(*newsock) == -1) {
1210 close(*newsock);
1211 continue;
1212 }
1213 if (drop_connection(startups) == 1) {
djm@openbsd.org08a1e702016-12-09 03:04:29 +00001214 char *laddr = get_local_ipaddr(*newsock);
1215 char *raddr = get_peer_ipaddr(*newsock);
dtucker@openbsd.orgfc173ae2019-11-13 11:25:11 +00001216 char msg[] = "Exceeded MaxStartups\r\n";
djm@openbsd.org08a1e702016-12-09 03:04:29 +00001217
1218 verbose("drop connection #%d from [%s]:%d "
1219 "on [%s]:%d past MaxStartups", startups,
1220 raddr, get_peer_port(*newsock),
1221 laddr, get_local_port(*newsock));
1222 free(laddr);
1223 free(raddr);
dtucker@openbsd.orgfc173ae2019-11-13 11:25:11 +00001224 /* best-effort notification to client */
1225 (void)write(*newsock, msg, strlen(msg));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001226 close(*newsock);
1227 continue;
1228 }
1229 if (pipe(startup_p) == -1) {
1230 close(*newsock);
1231 continue;
1232 }
1233
1234 if (rexec_flag && socketpair(AF_UNIX,
1235 SOCK_STREAM, 0, config_s) == -1) {
1236 error("reexec socketpair: %s",
1237 strerror(errno));
1238 close(*newsock);
1239 close(startup_p[0]);
1240 close(startup_p[1]);
1241 continue;
1242 }
1243
1244 for (j = 0; j < options.max_startups; j++)
1245 if (startup_pipes[j] == -1) {
1246 startup_pipes[j] = startup_p[0];
1247 if (maxfd < startup_p[0])
1248 maxfd = startup_p[0];
1249 startups++;
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001250 startup_flags[j] = 1;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001251 break;
1252 }
1253
1254 /*
1255 * Got connection. Fork a child to handle it, unless
1256 * we are in debugging mode.
1257 */
1258 if (debug_flag) {
1259 /*
1260 * In debugging mode. Close the listening
1261 * socket, and start processing the
1262 * connection without forking.
1263 */
1264 debug("Server will not fork when running in debugging mode.");
1265 close_listen_socks();
1266 *sock_in = *newsock;
1267 *sock_out = *newsock;
1268 close(startup_p[0]);
1269 close(startup_p[1]);
1270 startup_pipe = -1;
1271 pid = getpid();
1272 if (rexec_flag) {
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +00001273 send_rexec_state(config_s[0], cfg);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001274 close(config_s[0]);
1275 }
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001276 return;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001277 }
1278
1279 /*
1280 * Normal production daemon. Fork, and have
1281 * the child process the connection. The
1282 * parent continues listening.
1283 */
1284 platform_pre_fork();
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001285 listening++;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001286 if ((pid = fork()) == 0) {
1287 /*
1288 * Child. Close the listening and
1289 * max_startup sockets. Start using
1290 * the accepted socket. Reinitialize
1291 * logging (since our pid has changed).
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001292 * We return from this function to handle
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001293 * the connection.
1294 */
1295 platform_post_fork_child();
1296 startup_pipe = startup_p[1];
1297 close_startup_pipes();
1298 close_listen_socks();
1299 *sock_in = *newsock;
1300 *sock_out = *newsock;
1301 log_init(__progname,
1302 options.log_level,
1303 options.log_facility,
1304 log_stderr);
1305 if (rexec_flag)
1306 close(config_s[0]);
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001307 else {
1308 /*
1309 * Signal parent that the preliminaries
1310 * for this child are complete. For the
1311 * re-exec case, this happens after the
1312 * child has received the rexec state
1313 * from the server.
1314 */
1315 (void)atomicio(vwrite, startup_pipe,
1316 "\0", 1);
1317 }
1318 return;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001319 }
1320
1321 /* Parent. Stay in the loop. */
1322 platform_post_fork_parent(pid);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001323 if (pid == -1)
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001324 error("fork: %.100s", strerror(errno));
1325 else
1326 debug("Forked child %ld.", (long)pid);
1327
1328 close(startup_p[1]);
1329
1330 if (rexec_flag) {
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +00001331 send_rexec_state(config_s[0], cfg);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001332 close(config_s[0]);
1333 close(config_s[1]);
1334 }
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001335 close(*newsock);
1336
1337 /*
1338 * Ensure that our random state differs
1339 * from that of the child
1340 */
1341 arc4random_stir();
Adam Langleyd0592972015-03-30 14:49:51 -07001342 arc4random_buf(rnd, sizeof(rnd));
1343#ifdef WITH_OPENSSL
1344 RAND_seed(rnd, sizeof(rnd));
Greg Hartman7d4e4742015-11-16 10:13:36 -08001345 if ((RAND_bytes((u_char *)rnd, 1)) != 1)
1346 fatal("%s: RAND_bytes failed", __func__);
Adam Langleyd0592972015-03-30 14:49:51 -07001347#endif
1348 explicit_bzero(rnd, sizeof(rnd));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001349 }
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001350 }
1351}
1352
djm@openbsd.org95767262016-03-07 19:02:43 +00001353/*
1354 * If IP options are supported, make sure there are none (log and
1355 * return an error if any are found). Basically we are worried about
1356 * source routing; it can be used to pretend you are somebody
1357 * (ip-address) you are not. That itself may be "almost acceptable"
djm@openbsd.org001aa552018-04-10 00:10:49 +00001358 * under certain circumstances, but rhosts authentication is useless
djm@openbsd.org95767262016-03-07 19:02:43 +00001359 * if source routing is accepted. Notice also that if we just dropped
1360 * source routing here, the other side could use IP spoofing to do
1361 * rest of the interaction and could still bypass security. So we
1362 * exit here if we detect any IP options.
1363 */
1364static void
1365check_ip_options(struct ssh *ssh)
1366{
1367#ifdef IP_OPTIONS
1368 int sock_in = ssh_packet_get_connection_in(ssh);
1369 struct sockaddr_storage from;
djm@openbsd.org95767262016-03-07 19:02:43 +00001370 u_char opts[200];
djm@openbsd.orgdc664d12016-08-28 22:28:12 +00001371 socklen_t i, option_size = sizeof(opts), fromlen = sizeof(from);
djm@openbsd.org95767262016-03-07 19:02:43 +00001372 char text[sizeof(opts) * 3 + 1];
1373
1374 memset(&from, 0, sizeof(from));
1375 if (getpeername(sock_in, (struct sockaddr *)&from,
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001376 &fromlen) == -1)
djm@openbsd.org95767262016-03-07 19:02:43 +00001377 return;
1378 if (from.ss_family != AF_INET)
1379 return;
1380 /* XXX IPv6 options? */
1381
1382 if (getsockopt(sock_in, IPPROTO_IP, IP_OPTIONS, opts,
1383 &option_size) >= 0 && option_size != 0) {
1384 text[0] = '\0';
1385 for (i = 0; i < option_size; i++)
1386 snprintf(text + i*3, sizeof(text) - i*3,
1387 " %2.2x", opts[i]);
1388 fatal("Connection from %.100s port %d with IP opts: %.800s",
1389 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh), text);
1390 }
1391 return;
1392#endif /* IP_OPTIONS */
1393}
Damien Millera1f68402006-08-19 00:31:39 +10001394
djm@openbsd.org35eb33f2017-10-25 00:17:08 +00001395/* Set the routing domain for this process */
1396static void
1397set_process_rdomain(struct ssh *ssh, const char *name)
1398{
Damien Miller43c29bb2017-10-25 13:10:59 +11001399#if defined(HAVE_SYS_SET_PROCESS_RDOMAIN)
1400 if (name == NULL)
1401 return; /* default */
1402
1403 if (strcmp(name, "%D") == 0) {
1404 /* "expands" to routing domain of connection */
1405 if ((name = ssh_packet_rdomain_in(ssh)) == NULL)
1406 return;
1407 }
1408 /* NB. We don't pass 'ssh' to sys_set_process_rdomain() */
1409 return sys_set_process_rdomain(name);
1410#elif defined(__OpenBSD__)
djm@openbsd.org35eb33f2017-10-25 00:17:08 +00001411 int rtable, ortable = getrtable();
1412 const char *errstr;
1413
1414 if (name == NULL)
1415 return; /* default */
1416
1417 if (strcmp(name, "%D") == 0) {
1418 /* "expands" to routing domain of connection */
1419 if ((name = ssh_packet_rdomain_in(ssh)) == NULL)
1420 return;
1421 }
1422
1423 rtable = (int)strtonum(name, 0, 255, &errstr);
1424 if (errstr != NULL) /* Shouldn't happen */
1425 fatal("Invalid routing domain \"%s\": %s", name, errstr);
1426 if (rtable != ortable && setrtable(rtable) != 0)
1427 fatal("Unable to set routing domain %d: %s",
1428 rtable, strerror(errno));
1429 debug("%s: set routing domain %d (was %d)", __func__, rtable, ortable);
Damien Miller43c29bb2017-10-25 13:10:59 +11001430#else /* defined(__OpenBSD__) */
1431 fatal("Unable to set routing domain: not supported in this platform");
1432#endif
djm@openbsd.org35eb33f2017-10-25 00:17:08 +00001433}
1434
dtucker@openbsd.orge9d910b2018-04-13 03:57:26 +00001435static void
1436accumulate_host_timing_secret(struct sshbuf *server_cfg,
djm@openbsd.org4f7a56d2019-06-21 04:21:04 +00001437 struct sshkey *key)
dtucker@openbsd.orge9d910b2018-04-13 03:57:26 +00001438{
1439 static struct ssh_digest_ctx *ctx;
1440 u_char *hash;
1441 size_t len;
1442 struct sshbuf *buf;
1443 int r;
1444
1445 if (ctx == NULL && (ctx = ssh_digest_start(SSH_DIGEST_SHA512)) == NULL)
1446 fatal("%s: ssh_digest_start", __func__);
1447 if (key == NULL) { /* finalize */
1448 /* add server config in case we are using agent for host keys */
1449 if (ssh_digest_update(ctx, sshbuf_ptr(server_cfg),
1450 sshbuf_len(server_cfg)) != 0)
1451 fatal("%s: ssh_digest_update", __func__);
1452 len = ssh_digest_bytes(SSH_DIGEST_SHA512);
1453 hash = xmalloc(len);
1454 if (ssh_digest_final(ctx, hash, len) != 0)
1455 fatal("%s: ssh_digest_final", __func__);
1456 options.timing_secret = PEEK_U64(hash);
1457 freezero(hash, len);
1458 ssh_digest_free(ctx);
1459 ctx = NULL;
1460 return;
1461 }
1462 if ((buf = sshbuf_new()) == NULL)
1463 fatal("%s could not allocate buffer", __func__);
1464 if ((r = sshkey_private_serialize(key, buf)) != 0)
1465 fatal("sshkey_private_serialize: %s", ssh_err(r));
1466 if (ssh_digest_update(ctx, sshbuf_ptr(buf), sshbuf_len(buf)) != 0)
1467 fatal("%s: ssh_digest_update", __func__);
1468 sshbuf_reset(buf);
1469 sshbuf_free(buf);
1470}
1471
djm@openbsd.orga8c05c62020-01-24 23:56:01 +00001472static char *
1473prepare_proctitle(int ac, char **av)
1474{
1475 char *ret = NULL;
1476 int i;
1477
1478 for (i = 0; i < ac; i++)
1479 xextendf(&ret, " ", "%s", av[i]);
1480 return ret;
1481}
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001482
1483/*
1484 * Main program for the daemon.
1485 */
1486int
1487main(int ac, char **av)
1488{
djm@openbsd.org95767262016-03-07 19:02:43 +00001489 struct ssh *ssh = NULL;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001490 extern char *optarg;
1491 extern int optind;
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001492 int r, opt, on = 1, already_daemon, remote_port;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001493 int sock_in = -1, sock_out = -1, newsock = -1;
djm@openbsd.org68af80e2017-10-25 00:19:47 +00001494 const char *remote_ip, *rdomain;
dtucker@openbsd.org15fdfc92015-04-15 23:23:25 +00001495 char *fp, *line, *laddr, *logfile = NULL;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001496 int config_s[2] = { -1 , -1 };
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001497 u_int i, j;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001498 u_int64_t ibytes, obytes;
1499 mode_t new_umask;
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001500 struct sshkey *key;
1501 struct sshkey *pubkey;
Adam Langleyd0592972015-03-30 14:49:51 -07001502 int keytype;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001503 Authctxt *authctxt;
dtucker@openbsd.org@openbsd.org0208a482017-11-03 03:18:53 +00001504 struct connection_info *connection_info = NULL;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001505
1506#ifdef HAVE_SECUREWARE
1507 (void)set_auth_parameters(ac, av);
1508#endif
1509 __progname = ssh_get_progname(av[0]);
1510
1511 /* Save argv. Duplicate so setproctitle emulation doesn't clobber it */
1512 saved_argc = ac;
1513 rexec_argc = ac;
1514 saved_argv = xcalloc(ac + 1, sizeof(*saved_argv));
Damien Millere3fa20e2017-10-23 16:25:24 +11001515 for (i = 0; (int)i < ac; i++)
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001516 saved_argv[i] = xstrdup(av[i]);
1517 saved_argv[i] = NULL;
1518
1519#ifndef HAVE_SETPROCTITLE
1520 /* Prepare for later setproctitle emulation */
1521 compat_init_setproctitle(ac, av);
1522 av = saved_argv;
1523#endif
1524
1525 if (geteuid() == 0 && setgroups(0, NULL) == -1)
1526 debug("setgroups(): %.200s", strerror(errno));
1527
1528 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1529 sanitise_stdfd();
1530
Damien Miller42c5ec42018-11-23 10:40:06 +11001531 seed_rng();
1532
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001533 /* Initialize configuration options to their default values. */
1534 initialize_server_options(&options);
1535
1536 /* Parse command-line arguments. */
djm@openbsd.org3e91b4e2015-05-24 23:39:16 +00001537 while ((opt = getopt(ac, av,
1538 "C:E:b:c:f:g:h:k:o:p:u:46DQRTdeiqrt")) != -1) {
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001539 switch (opt) {
1540 case '4':
1541 options.address_family = AF_INET;
1542 break;
1543 case '6':
1544 options.address_family = AF_INET6;
1545 break;
1546 case 'f':
1547 config_file_name = optarg;
1548 break;
1549 case 'c':
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001550 servconf_add_hostcert("[command-line]", 0,
1551 &options, optarg);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001552 break;
1553 case 'd':
1554 if (debug_flag == 0) {
1555 debug_flag = 1;
1556 options.log_level = SYSLOG_LEVEL_DEBUG1;
1557 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3)
1558 options.log_level++;
1559 break;
1560 case 'D':
1561 no_daemon_flag = 1;
1562 break;
Adam Langleyd0592972015-03-30 14:49:51 -07001563 case 'E':
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +00001564 logfile = optarg;
Adam Langleyd0592972015-03-30 14:49:51 -07001565 /* FALLTHROUGH */
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001566 case 'e':
1567 log_stderr = 1;
1568 break;
1569 case 'i':
1570 inetd_flag = 1;
1571 break;
1572 case 'r':
1573 rexec_flag = 0;
1574 break;
1575 case 'R':
1576 rexeced_flag = 1;
1577 inetd_flag = 1;
1578 break;
1579 case 'Q':
1580 /* ignored */
1581 break;
1582 case 'q':
1583 options.log_level = SYSLOG_LEVEL_QUIET;
1584 break;
1585 case 'b':
naddy@openbsd.orgc38ea632016-08-15 12:27:56 +00001586 /* protocol 1, ignored */
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001587 break;
1588 case 'p':
1589 options.ports_from_cmdline = 1;
1590 if (options.num_ports >= MAX_PORTS) {
1591 fprintf(stderr, "too many ports.\n");
1592 exit(1);
1593 }
1594 options.ports[options.num_ports++] = a2port(optarg);
1595 if (options.ports[options.num_ports-1] <= 0) {
1596 fprintf(stderr, "Bad port number.\n");
1597 exit(1);
1598 }
1599 break;
1600 case 'g':
1601 if ((options.login_grace_time = convtime(optarg)) == -1) {
1602 fprintf(stderr, "Invalid login grace time.\n");
1603 exit(1);
1604 }
1605 break;
1606 case 'k':
naddy@openbsd.orgc38ea632016-08-15 12:27:56 +00001607 /* protocol 1, ignored */
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001608 break;
1609 case 'h':
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001610 servconf_add_hostkey("[command-line]", 0,
djm@openbsd.org928f1232018-11-19 04:12:32 +00001611 &options, optarg, 1);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001612 break;
1613 case 't':
1614 test_flag = 1;
1615 break;
1616 case 'T':
1617 test_flag = 2;
1618 break;
1619 case 'C':
djm@openbsd.org172a5922019-01-19 21:37:48 +00001620 connection_info = get_connection_info(ssh, 0, 0);
Adam Langleyd0592972015-03-30 14:49:51 -07001621 if (parse_server_match_testspec(connection_info,
1622 optarg) == -1)
1623 exit(1);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001624 break;
1625 case 'u':
Adam Langleyd0592972015-03-30 14:49:51 -07001626 utmp_len = (u_int)strtonum(optarg, 0, HOST_NAME_MAX+1+1, NULL);
1627 if (utmp_len > HOST_NAME_MAX+1) {
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001628 fprintf(stderr, "Invalid utmp length.\n");
1629 exit(1);
1630 }
1631 break;
1632 case 'o':
1633 line = xstrdup(optarg);
1634 if (process_server_config_line(&options, line,
djm@openbsd.orgc2bd7f72020-01-31 22:42:45 +00001635 "command-line", 0, NULL, NULL, &includes) != 0)
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001636 exit(1);
Adam Langleyd0592972015-03-30 14:49:51 -07001637 free(line);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001638 break;
1639 case '?':
1640 default:
1641 usage();
1642 break;
1643 }
1644 }
1645 if (rexeced_flag || inetd_flag)
1646 rexec_flag = 0;
djm@openbsd.org2a358622018-11-16 03:26:01 +00001647 if (!test_flag && rexec_flag && !path_absolute(av[0]))
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001648 fatal("sshd re-exec requires execution with an absolute path");
1649 if (rexeced_flag)
1650 closefrom(REEXEC_MIN_FREE_FD);
1651 else
1652 closefrom(REEXEC_DEVCRYPTO_RESERVED_FD);
1653
Adam Langleyd0592972015-03-30 14:49:51 -07001654 /* If requested, redirect the logs to the specified logfile. */
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +00001655 if (logfile != NULL)
Adam Langleyd0592972015-03-30 14:49:51 -07001656 log_redirect_stderr_to(logfile);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001657 /*
1658 * Force logging to stderr until we have loaded the private host
1659 * key (unless started from inetd)
1660 */
1661 log_init(__progname,
1662 options.log_level == SYSLOG_LEVEL_NOT_SET ?
1663 SYSLOG_LEVEL_INFO : options.log_level,
1664 options.log_facility == SYSLOG_FACILITY_NOT_SET ?
1665 SYSLOG_FACILITY_AUTH : options.log_facility,
djm@openbsd.org245399d2020-01-31 23:11:25 +00001666 log_stderr || !inetd_flag || debug_flag);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001667
1668 /*
1669 * Unset KRB5CCNAME, otherwise the user's session may inherit it from
1670 * root's environment
1671 */
1672 if (getenv("KRB5CCNAME") != NULL)
Adam Langleyd0592972015-03-30 14:49:51 -07001673 (void) unsetenv("KRB5CCNAME");
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001674
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001675 sensitive_data.have_ssh2_key = 0;
1676
1677 /*
dtucker@openbsd.org@openbsd.org0208a482017-11-03 03:18:53 +00001678 * If we're not doing an extended test do not silently ignore connection
1679 * test params.
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001680 */
dtucker@openbsd.org@openbsd.org0208a482017-11-03 03:18:53 +00001681 if (test_flag < 2 && connection_info != NULL)
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001682 fatal("Config test connection parameter (-C) provided without "
1683 "test mode (-T)");
1684
1685 /* Fetch our configuration */
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +00001686 if ((cfg = sshbuf_new()) == NULL)
1687 fatal("%s: sshbuf_new failed", __func__);
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001688 if (rexeced_flag) {
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +00001689 recv_rexec_state(REEXEC_CONFIG_PASS_FD, cfg);
djm@openbsd.org76a24b32019-03-01 02:32:39 +00001690 if (!debug_flag) {
1691 startup_pipe = dup(REEXEC_STARTUP_PIPE_FD);
1692 close(REEXEC_STARTUP_PIPE_FD);
1693 /*
1694 * Signal parent that this child is at a point where
1695 * they can go away if they have a SIGHUP pending.
1696 */
1697 (void)atomicio(vwrite, startup_pipe, "\0", 1);
1698 }
djm@openbsd.orgd4f4cdd2020-01-31 23:13:04 +00001699 } else if (strcasecmp(config_file_name, "none") != 0)
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +00001700 load_server_config(config_file_name, cfg);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001701
1702 parse_server_config(&options, rexeced_flag ? "rexec" : config_file_name,
djm@openbsd.orgc2bd7f72020-01-31 22:42:45 +00001703 cfg, &includes, NULL);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001704
1705 /* Fill in default values for those options not explicitly set. */
1706 fill_default_server_options(&options);
1707
1708 /* challenge-response is implemented via keyboard interactive */
1709 if (options.challenge_response_authentication)
1710 options.kbd_interactive_authentication = 1;
1711
Adam Langleyd0592972015-03-30 14:49:51 -07001712 /* Check that options are sensible */
1713 if (options.authorized_keys_command_user == NULL &&
1714 (options.authorized_keys_command != NULL &&
1715 strcasecmp(options.authorized_keys_command, "none") != 0))
1716 fatal("AuthorizedKeysCommand set without "
1717 "AuthorizedKeysCommandUser");
djm@openbsd.orgbcc50d82015-05-21 06:43:30 +00001718 if (options.authorized_principals_command_user == NULL &&
1719 (options.authorized_principals_command != NULL &&
1720 strcasecmp(options.authorized_principals_command, "none") != 0))
1721 fatal("AuthorizedPrincipalsCommand set without "
1722 "AuthorizedPrincipalsCommandUser");
Adam Langleyd0592972015-03-30 14:49:51 -07001723
1724 /*
1725 * Check whether there is any path through configured auth methods.
1726 * Unfortunately it is not possible to verify this generally before
1727 * daemonisation in the presence of Match block, but this catches
1728 * and warns for trivial misconfigurations that could break login.
1729 */
1730 if (options.num_auth_methods != 0) {
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001731 for (i = 0; i < options.num_auth_methods; i++) {
1732 if (auth2_methods_valid(options.auth_methods[i],
Adam Langleyd0592972015-03-30 14:49:51 -07001733 1) == 0)
1734 break;
1735 }
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001736 if (i >= options.num_auth_methods)
Adam Langleyd0592972015-03-30 14:49:51 -07001737 fatal("AuthenticationMethods cannot be satisfied by "
1738 "enabled authentication methods");
1739 }
1740
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001741 /* Check that there are no remaining arguments. */
1742 if (optind < ac) {
1743 fprintf(stderr, "Extra argument %s.\n", av[optind]);
1744 exit(1);
1745 }
1746
Adam Langleyd0592972015-03-30 14:49:51 -07001747 debug("sshd version %s, %s", SSH_VERSION,
1748#ifdef WITH_OPENSSL
djm@openbsd.orga65784c2018-10-23 05:56:35 +00001749 OpenSSL_version(OPENSSL_VERSION)
Adam Langleyd0592972015-03-30 14:49:51 -07001750#else
1751 "without OpenSSL"
1752#endif
1753 );
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001754
1755 /* Store privilege separation user for later use if required. */
Darren Tuckerd13281f2017-03-29 12:39:39 +11001756 privsep_chroot = use_privsep && (getuid() == 0 || geteuid() == 0);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001757 if ((privsep_pw = getpwnam(SSH_PRIVSEP_USER)) == NULL) {
Darren Tuckerd13281f2017-03-29 12:39:39 +11001758 if (privsep_chroot || options.kerberos_authentication)
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001759 fatal("Privilege separation user %s does not exist",
1760 SSH_PRIVSEP_USER);
1761 } else {
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001762 privsep_pw = pwcopy(privsep_pw);
djm@openbsd.orgd6364f62018-01-23 05:01:15 +00001763 freezero(privsep_pw->pw_passwd, strlen(privsep_pw->pw_passwd));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001764 privsep_pw->pw_passwd = xstrdup("*");
1765 }
Adam Langleyd0592972015-03-30 14:49:51 -07001766#if !defined(ANDROID)
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001767 endpwent();
Greg Hartmanf5c67b42015-02-27 07:55:00 -08001768#endif
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001769
Adam Langleyd0592972015-03-30 14:49:51 -07001770 /* load host keys */
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001771 sensitive_data.host_keys = xcalloc(options.num_host_key_files,
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001772 sizeof(struct sshkey *));
Adam Langleyd0592972015-03-30 14:49:51 -07001773 sensitive_data.host_pubkeys = xcalloc(options.num_host_key_files,
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001774 sizeof(struct sshkey *));
Adam Langleyd0592972015-03-30 14:49:51 -07001775
1776 if (options.host_key_agent) {
1777 if (strcmp(options.host_key_agent, SSH_AUTHSOCKET_ENV_NAME))
1778 setenv(SSH_AUTHSOCKET_ENV_NAME,
1779 options.host_key_agent, 1);
1780 if ((r = ssh_get_authentication_socket(NULL)) == 0)
1781 have_agent = 1;
1782 else
1783 error("Could not connect to agent \"%s\": %s",
1784 options.host_key_agent, ssh_err(r));
1785 }
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001786
1787 for (i = 0; i < options.num_host_key_files; i++) {
djm@openbsd.org928f1232018-11-19 04:12:32 +00001788 int ll = options.host_key_file_userprovided[i] ?
1789 SYSLOG_LEVEL_ERROR : SYSLOG_LEVEL_DEBUG1;
1790
Adam Langleyd0592972015-03-30 14:49:51 -07001791 if (options.host_key_files[i] == NULL)
1792 continue;
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001793 if ((r = sshkey_load_private(options.host_key_files[i], "",
1794 &key, NULL)) != 0 && r != SSH_ERR_SYSTEM_ERROR)
djm@openbsd.org928f1232018-11-19 04:12:32 +00001795 do_log2(ll, "Unable to load host key \"%s\": %s",
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001796 options.host_key_files[i], ssh_err(r));
djm@openbsd.org56584cc2019-12-15 18:57:30 +00001797 if (sshkey_is_sk(key) &&
1798 key->sk_flags & SSH_SK_USER_PRESENCE_REQD) {
1799 debug("host key %s requires user presence, ignoring",
1800 options.host_key_files[i]);
1801 key->sk_flags &= ~SSH_SK_USER_PRESENCE_REQD;
1802 }
1803 if (r == 0 && key != NULL &&
1804 (r = sshkey_shield_private(key)) != 0) {
djm@openbsd.org4f7a56d2019-06-21 04:21:04 +00001805 do_log2(ll, "Unable to shield host key \"%s\": %s",
1806 options.host_key_files[i], ssh_err(r));
1807 sshkey_free(key);
1808 key = NULL;
1809 }
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001810 if ((r = sshkey_load_public(options.host_key_files[i],
1811 &pubkey, NULL)) != 0 && r != SSH_ERR_SYSTEM_ERROR)
djm@openbsd.org928f1232018-11-19 04:12:32 +00001812 do_log2(ll, "Unable to load host key \"%s\": %s",
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001813 options.host_key_files[i], ssh_err(r));
Adam Langleyd0592972015-03-30 14:49:51 -07001814 if (pubkey == NULL && key != NULL)
djm@openbsd.org482d23b2018-09-13 02:08:33 +00001815 if ((r = sshkey_from_private(key, &pubkey)) != 0)
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001816 fatal("Could not demote key: \"%s\": %s",
1817 options.host_key_files[i], ssh_err(r));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001818 sensitive_data.host_keys[i] = key;
Adam Langleyd0592972015-03-30 14:49:51 -07001819 sensitive_data.host_pubkeys[i] = pubkey;
1820
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +00001821 if (key == NULL && pubkey != NULL && have_agent) {
Adam Langleyd0592972015-03-30 14:49:51 -07001822 debug("will rely on agent for hostkey %s",
1823 options.host_key_files[i]);
1824 keytype = pubkey->type;
1825 } else if (key != NULL) {
1826 keytype = key->type;
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +00001827 accumulate_host_timing_secret(cfg, key);
Adam Langleyd0592972015-03-30 14:49:51 -07001828 } else {
djm@openbsd.org928f1232018-11-19 04:12:32 +00001829 do_log2(ll, "Unable to load host key: %s",
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001830 options.host_key_files[i]);
1831 sensitive_data.host_keys[i] = NULL;
Adam Langleyd0592972015-03-30 14:49:51 -07001832 sensitive_data.host_pubkeys[i] = NULL;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001833 continue;
1834 }
Adam Langleyd0592972015-03-30 14:49:51 -07001835
1836 switch (keytype) {
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001837 case KEY_RSA:
1838 case KEY_DSA:
1839 case KEY_ECDSA:
Adam Langleyd0592972015-03-30 14:49:51 -07001840 case KEY_ED25519:
djm@openbsd.org56584cc2019-12-15 18:57:30 +00001841 case KEY_ECDSA_SK:
1842 case KEY_ED25519_SK:
markus@openbsd.org1b11ea72018-02-23 15:58:37 +00001843 case KEY_XMSS:
Adam Langleyd0592972015-03-30 14:49:51 -07001844 if (have_agent || key != NULL)
1845 sensitive_data.have_ssh2_key = 1;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001846 break;
1847 }
Adam Langleyd0592972015-03-30 14:49:51 -07001848 if ((fp = sshkey_fingerprint(pubkey, options.fingerprint_hash,
1849 SSH_FP_DEFAULT)) == NULL)
1850 fatal("sshkey_fingerprint failed");
1851 debug("%s host key #%d: %s %s",
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +00001852 key ? "private" : "agent", i, sshkey_ssh_name(pubkey), fp);
Adam Langleyd0592972015-03-30 14:49:51 -07001853 free(fp);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001854 }
markus@openbsd.orgc3cb7792018-07-09 21:29:36 +00001855 accumulate_host_timing_secret(cfg, NULL);
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +00001856 if (!sensitive_data.have_ssh2_key) {
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001857 logit("sshd: no hostkeys available -- exiting.");
1858 exit(1);
1859 }
1860
1861 /*
1862 * Load certificates. They are stored in an array at identical
1863 * indices to the public keys that they relate to.
1864 */
1865 sensitive_data.host_certificates = xcalloc(options.num_host_key_files,
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001866 sizeof(struct sshkey *));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001867 for (i = 0; i < options.num_host_key_files; i++)
1868 sensitive_data.host_certificates[i] = NULL;
1869
1870 for (i = 0; i < options.num_host_cert_files; i++) {
Adam Langleyd0592972015-03-30 14:49:51 -07001871 if (options.host_cert_files[i] == NULL)
1872 continue;
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001873 if ((r = sshkey_load_public(options.host_cert_files[i],
1874 &key, NULL)) != 0) {
1875 error("Could not load host certificate \"%s\": %s",
1876 options.host_cert_files[i], ssh_err(r));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001877 continue;
1878 }
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001879 if (!sshkey_is_cert(key)) {
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001880 error("Certificate file is not a certificate: %s",
1881 options.host_cert_files[i]);
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001882 sshkey_free(key);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001883 continue;
1884 }
1885 /* Find matching private key */
1886 for (j = 0; j < options.num_host_key_files; j++) {
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001887 if (sshkey_equal_public(key,
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001888 sensitive_data.host_keys[j])) {
1889 sensitive_data.host_certificates[j] = key;
1890 break;
1891 }
1892 }
1893 if (j >= options.num_host_key_files) {
1894 error("No matching private key for certificate: %s",
1895 options.host_cert_files[i]);
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001896 sshkey_free(key);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001897 continue;
1898 }
1899 sensitive_data.host_certificates[j] = key;
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001900 debug("host certificate: #%u type %d %s", j, key->type,
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001901 sshkey_type(key));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001902 }
Adam Langleyd0592972015-03-30 14:49:51 -07001903
Darren Tuckerd13281f2017-03-29 12:39:39 +11001904 if (privsep_chroot) {
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001905 struct stat st;
1906
1907 if ((stat(_PATH_PRIVSEP_CHROOT_DIR, &st) == -1) ||
1908 (S_ISDIR(st.st_mode) == 0))
1909 fatal("Missing privilege separation directory: %s",
1910 _PATH_PRIVSEP_CHROOT_DIR);
1911
1912#ifdef HAVE_CYGWIN
1913 if (check_ntsec(_PATH_PRIVSEP_CHROOT_DIR) &&
1914 (st.st_uid != getuid () ||
1915 (st.st_mode & (S_IWGRP|S_IWOTH)) != 0))
1916#else
1917 if (st.st_uid != 0 || (st.st_mode & (S_IWGRP|S_IWOTH)) != 0)
1918#endif
1919 fatal("%s must be owned by root and not group or "
1920 "world-writable.", _PATH_PRIVSEP_CHROOT_DIR);
1921 }
1922
1923 if (test_flag > 1) {
djm@openbsd.org@openbsd.org548d3a62017-11-14 00:45:29 +00001924 /*
1925 * If no connection info was provided by -C then use
1926 * use a blank one that will cause no predicate to match.
1927 */
1928 if (connection_info == NULL)
djm@openbsd.org172a5922019-01-19 21:37:48 +00001929 connection_info = get_connection_info(ssh, 0, 0);
dtucker@openbsd.orge826bbc2019-04-18 18:56:16 +00001930 connection_info->test = 1;
djm@openbsd.orgc2bd7f72020-01-31 22:42:45 +00001931 parse_server_match_config(&options, &includes, connection_info);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001932 dump_config(&options);
1933 }
1934
1935 /* Configuration looks good, so exit if in test mode. */
1936 if (test_flag)
1937 exit(0);
1938
1939 /*
1940 * Clear out any supplemental groups we may have inherited. This
1941 * prevents inadvertent creation of files with bad modes (in the
1942 * portable version at least, it's certainly possible for PAM
1943 * to create a file, and we can't control the code in every
1944 * module which might be used).
1945 */
1946 if (setgroups(0, NULL) < 0)
1947 debug("setgroups() failed: %.200s", strerror(errno));
1948
1949 if (rexec_flag) {
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001950 if (rexec_argc < 0)
1951 fatal("rexec_argc %d < 0", rexec_argc);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001952 rexec_argv = xcalloc(rexec_argc + 2, sizeof(char *));
djm@openbsd.orgdceabc72017-10-05 15:52:03 +00001953 for (i = 0; i < (u_int)rexec_argc; i++) {
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001954 debug("rexec_argv[%d]='%s'", i, saved_argv[i]);
1955 rexec_argv[i] = saved_argv[i];
1956 }
1957 rexec_argv[rexec_argc] = "-R";
1958 rexec_argv[rexec_argc + 1] = NULL;
1959 }
djm@openbsd.orga8c05c62020-01-24 23:56:01 +00001960 listener_proctitle = prepare_proctitle(ac, av);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001961
1962 /* Ensure that umask disallows at least group and world write */
1963 new_umask = umask(0077) | 0022;
1964 (void) umask(new_umask);
1965
1966 /* Initialize the log (it is reinitialized below in case we forked). */
1967 if (debug_flag && (!inetd_flag || rexeced_flag))
1968 log_stderr = 1;
1969 log_init(__progname, options.log_level, options.log_facility, log_stderr);
1970
1971 /*
dtucker@openbsd.org7fc47662016-11-30 00:28:31 +00001972 * If not in debugging mode, not started from inetd and not already
1973 * daemonized (eg re-exec via SIGHUP), disconnect from the controlling
1974 * terminal, and fork. The original process exits.
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001975 */
dtucker@openbsd.org7fc47662016-11-30 00:28:31 +00001976 already_daemon = daemonized();
1977 if (!(debug_flag || inetd_flag || no_daemon_flag || already_daemon)) {
dtucker@openbsd.orgb0899ee2016-11-29 03:54:50 +00001978
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001979 if (daemon(0, 0) == -1)
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001980 fatal("daemon() failed: %.200s", strerror(errno));
1981
dtucker@openbsd.orgb0899ee2016-11-29 03:54:50 +00001982 disconnect_controlling_tty();
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001983 }
1984 /* Reinitialize the log (because of the fork above). */
1985 log_init(__progname, options.log_level, options.log_facility, log_stderr);
1986
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001987 /* Chdir to the root directory so that the current disk can be
1988 unmounted if desired. */
Adam Langleyd0592972015-03-30 14:49:51 -07001989 if (chdir("/") == -1)
1990 error("chdir(\"/\"): %s", strerror(errno));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001991
1992 /* ignore SIGPIPE */
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +00001993 ssh_signal(SIGPIPE, SIG_IGN);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001994
1995 /* Get a connection, either from inetd or a listening TCP socket */
1996 if (inetd_flag) {
1997 server_accept_inetd(&sock_in, &sock_out);
1998 } else {
1999 platform_pre_listen();
2000 server_listen();
2001
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +00002002 ssh_signal(SIGHUP, sighup_handler);
2003 ssh_signal(SIGCHLD, main_sigchld_handler);
2004 ssh_signal(SIGTERM, sigterm_handler);
2005 ssh_signal(SIGQUIT, sigterm_handler);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002006
2007 /*
2008 * Write out the pid file after the sigterm handler
2009 * is setup and the listen sockets are bound
2010 */
Adam Langleyd0592972015-03-30 14:49:51 -07002011 if (options.pid_file != NULL && !debug_flag) {
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002012 FILE *f = fopen(options.pid_file, "w");
2013
2014 if (f == NULL) {
2015 error("Couldn't create pid file \"%s\": %s",
2016 options.pid_file, strerror(errno));
2017 } else {
2018 fprintf(f, "%ld\n", (long) getpid());
2019 fclose(f);
2020 }
2021 }
2022
2023 /* Accept a connection and return in a forked child */
2024 server_accept_loop(&sock_in, &sock_out,
2025 &newsock, config_s);
2026 }
2027
2028 /* This is the child processing a new connection. */
2029 setproctitle("%s", "[accepted]");
2030
2031 /*
2032 * Create a new session and process group since the 4.4BSD
2033 * setlogin() affects the entire process group. We don't
2034 * want the child to be able to affect the parent.
2035 */
2036#if !defined(SSHD_ACQUIRES_CTTY)
2037 /*
2038 * If setsid is called, on some platforms sshd will later acquire a
2039 * controlling terminal which will result in "could not set
2040 * controlling tty" errors.
2041 */
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00002042 if (!debug_flag && !inetd_flag && setsid() == -1)
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002043 error("setsid: %.100s", strerror(errno));
2044#endif
2045
2046 if (rexec_flag) {
2047 int fd;
2048
2049 debug("rexec start in %d out %d newsock %d pipe %d sock %d",
2050 sock_in, sock_out, newsock, startup_pipe, config_s[0]);
2051 dup2(newsock, STDIN_FILENO);
2052 dup2(STDIN_FILENO, STDOUT_FILENO);
2053 if (startup_pipe == -1)
2054 close(REEXEC_STARTUP_PIPE_FD);
Adam Langleyd0592972015-03-30 14:49:51 -07002055 else if (startup_pipe != REEXEC_STARTUP_PIPE_FD) {
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002056 dup2(startup_pipe, REEXEC_STARTUP_PIPE_FD);
Adam Langleyd0592972015-03-30 14:49:51 -07002057 close(startup_pipe);
2058 startup_pipe = REEXEC_STARTUP_PIPE_FD;
2059 }
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002060
2061 dup2(config_s[1], REEXEC_CONFIG_PASS_FD);
2062 close(config_s[1]);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002063
2064 execv(rexec_argv[0], rexec_argv);
2065
2066 /* Reexec has failed, fall back and continue */
2067 error("rexec of %s failed: %s", rexec_argv[0], strerror(errno));
2068 recv_rexec_state(REEXEC_CONFIG_PASS_FD, NULL);
2069 log_init(__progname, options.log_level,
2070 options.log_facility, log_stderr);
2071
2072 /* Clean up fds */
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002073 close(REEXEC_CONFIG_PASS_FD);
2074 newsock = sock_out = sock_in = dup(STDIN_FILENO);
2075 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
2076 dup2(fd, STDIN_FILENO);
2077 dup2(fd, STDOUT_FILENO);
2078 if (fd > STDERR_FILENO)
2079 close(fd);
2080 }
2081 debug("rexec cleanup in %d out %d newsock %d pipe %d sock %d",
2082 sock_in, sock_out, newsock, startup_pipe, config_s[0]);
2083 }
2084
2085 /* Executed child processes don't need these. */
2086 fcntl(sock_out, F_SETFD, FD_CLOEXEC);
2087 fcntl(sock_in, F_SETFD, FD_CLOEXEC);
2088
dtucker@openbsd.orgeef88412020-03-13 03:24:49 +00002089 /* We will not restart on SIGHUP since it no longer makes sense. */
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +00002090 ssh_signal(SIGALRM, SIG_DFL);
2091 ssh_signal(SIGHUP, SIG_DFL);
2092 ssh_signal(SIGTERM, SIG_DFL);
2093 ssh_signal(SIGQUIT, SIG_DFL);
2094 ssh_signal(SIGCHLD, SIG_DFL);
2095 ssh_signal(SIGINT, SIG_DFL);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002096
2097 /*
2098 * Register our connection. This turns encryption off because we do
2099 * not have a key.
2100 */
djm@openbsd.org6350e032019-01-19 21:42:30 +00002101 if ((ssh = ssh_packet_set_connection(NULL, sock_in, sock_out)) == NULL)
2102 fatal("Unable to create connection");
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002103 the_active_state = ssh;
djm@openbsd.org6350e032019-01-19 21:42:30 +00002104 ssh_packet_set_server(ssh);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002105
djm@openbsd.org95767262016-03-07 19:02:43 +00002106 check_ip_options(ssh);
Damien Miller95def091999-11-25 00:26:21 +11002107
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002108 /* Prepare the channels layer */
2109 channel_init_channels(ssh);
2110 channel_set_af(ssh, options.address_family);
2111 process_permitopen(ssh, &options);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002112
2113 /* Set SO_KEEPALIVE if requested. */
djm@openbsd.org6350e032019-01-19 21:42:30 +00002114 if (options.tcp_keep_alive && ssh_packet_connection_is_on_socket(ssh) &&
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00002115 setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, &on, sizeof(on)) == -1)
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002116 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
2117
djm@openbsd.org95767262016-03-07 19:02:43 +00002118 if ((remote_port = ssh_remote_port(ssh)) < 0) {
2119 debug("ssh_remote_port failed");
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002120 cleanup_exit(255);
2121 }
2122
djm@openbsd.org35eb33f2017-10-25 00:17:08 +00002123 if (options.routing_domain != NULL)
2124 set_process_rdomain(ssh, options.routing_domain);
2125
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002126 /*
2127 * The rest of the code depends on the fact that
djm@openbsd.org95767262016-03-07 19:02:43 +00002128 * ssh_remote_ipaddr() caches the remote ip, even if
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002129 * the socket goes away.
2130 */
djm@openbsd.org95767262016-03-07 19:02:43 +00002131 remote_ip = ssh_remote_ipaddr(ssh);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002132
2133#ifdef SSH_AUDIT_EVENTS
2134 audit_connection_from(remote_ip, remote_port);
2135#endif
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002136
djm@openbsd.org68af80e2017-10-25 00:19:47 +00002137 rdomain = ssh_packet_rdomain_in(ssh);
2138
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002139 /* Log the connection. */
dtucker@openbsd.org15fdfc92015-04-15 23:23:25 +00002140 laddr = get_local_ipaddr(sock_in);
djm@openbsd.org@openbsd.orgb77c29a2017-10-27 00:18:41 +00002141 verbose("Connection from %s port %d on %s port %d%s%s%s",
djm@openbsd.org68af80e2017-10-25 00:19:47 +00002142 remote_ip, remote_port, laddr, ssh_local_port(ssh),
djm@openbsd.org@openbsd.orgb77c29a2017-10-27 00:18:41 +00002143 rdomain == NULL ? "" : " rdomain \"",
2144 rdomain == NULL ? "" : rdomain,
2145 rdomain == NULL ? "" : "\"");
dtucker@openbsd.org15fdfc92015-04-15 23:23:25 +00002146 free(laddr);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002147
2148 /*
2149 * We don't want to listen forever unless the other side
2150 * successfully authenticates itself. So we set up an alarm which is
2151 * cleared after successful authentication. A limit of zero
2152 * indicates no limit. Note that we don't set the alarm in debugging
2153 * mode; it is just annoying to have the server exit just when you
2154 * are about to discover the bug.
2155 */
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +00002156 ssh_signal(SIGALRM, grace_alarm_handler);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002157 if (!debug_flag)
2158 alarm(options.login_grace_time);
2159
djm@openbsd.org5becbec2020-03-13 04:01:56 +00002160 if ((r = kex_exchange_identification(ssh, -1,
2161 options.version_addendum)) != 0)
2162 sshpkt_fatal(ssh, r, "banner exchange");
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002163
djm@openbsd.org6350e032019-01-19 21:42:30 +00002164 ssh_packet_set_nonblocking(ssh);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002165
2166 /* allocate authentication context */
2167 authctxt = xcalloc(1, sizeof(*authctxt));
djm@openbsd.org6350e032019-01-19 21:42:30 +00002168 ssh->authctxt = authctxt;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002169
Damien Miller120a1ec2018-07-10 19:39:52 +10002170 authctxt->loginmsg = loginmsg;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002171
2172 /* XXX global for cleanup, access from other modules */
2173 the_authctxt = authctxt;
2174
djm@openbsd.org7c856852018-03-03 03:15:51 +00002175 /* Set default key authentication options */
2176 if ((auth_opts = sshauthopt_new_with_keys_defaults()) == NULL)
2177 fatal("allocation failed");
2178
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002179 /* prepare buffer to collect messages to display to user after login */
markus@openbsd.org2808d182018-07-09 21:26:02 +00002180 if ((loginmsg = sshbuf_new()) == NULL)
2181 fatal("%s: sshbuf_new failed", __func__);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002182 auth_debug_reset();
2183
Adam Langleyd0592972015-03-30 14:49:51 -07002184 if (use_privsep) {
djm@openbsd.org6350e032019-01-19 21:42:30 +00002185 if (privsep_preauth(ssh) == 1)
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002186 goto authenticated;
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +00002187 } else if (have_agent) {
Adam Langleyd0592972015-03-30 14:49:51 -07002188 if ((r = ssh_get_authentication_socket(&auth_sock)) != 0) {
2189 error("Unable to get agent socket: %s", ssh_err(r));
2190 have_agent = 0;
2191 }
2192 }
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002193
2194 /* perform the key exchange */
2195 /* authenticate user and start session */
djm@openbsd.org6350e032019-01-19 21:42:30 +00002196 do_ssh2_kex(ssh);
Damien Miller5ebce132019-01-20 09:44:53 +11002197 do_authentication2(ssh);
markus@openbsd.org6cb6dcf2016-08-13 17:47:40 +00002198
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002199 /*
2200 * If we use privilege separation, the unprivileged child transfers
2201 * the current keystate and exits
2202 */
2203 if (use_privsep) {
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002204 mm_send_keystate(ssh, pmonitor);
djm@openbsd.org6350e032019-01-19 21:42:30 +00002205 ssh_packet_clear_keys(ssh);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002206 exit(0);
2207 }
2208
2209 authenticated:
2210 /*
2211 * Cancel the alarm we set to limit the time taken for
2212 * authentication.
2213 */
2214 alarm(0);
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +00002215 ssh_signal(SIGALRM, SIG_DFL);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002216 authctxt->authenticated = 1;
2217 if (startup_pipe != -1) {
2218 close(startup_pipe);
2219 startup_pipe = -1;
2220 }
2221
2222#ifdef SSH_AUDIT_EVENTS
Damien Miller9b655dc2019-01-20 14:55:27 +11002223 audit_event(ssh, SSH_AUTH_SUCCESS);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002224#endif
2225
2226#ifdef GSSAPI
2227 if (options.gss_authentication) {
2228 temporarily_use_uid(authctxt->pw);
2229 ssh_gssapi_storecreds();
2230 restore_uid();
2231 }
2232#endif
2233#ifdef USE_PAM
2234 if (options.use_pam) {
2235 do_pam_setcred(1);
djm@openbsd.org7c856852018-03-03 03:15:51 +00002236 do_pam_session(ssh);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002237 }
2238#endif
2239
2240 /*
2241 * In privilege separation, we fork another child and prepare
2242 * file descriptor passing.
2243 */
2244 if (use_privsep) {
djm@openbsd.org6350e032019-01-19 21:42:30 +00002245 privsep_postauth(ssh, authctxt);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002246 /* the monitor process [priv] will not return */
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002247 }
2248
djm@openbsd.org6350e032019-01-19 21:42:30 +00002249 ssh_packet_set_timeout(ssh, options.client_alive_interval,
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002250 options.client_alive_count_max);
2251
Adam Langleyd0592972015-03-30 14:49:51 -07002252 /* Try to send all our hostkeys to the client */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002253 notify_hostkeys(ssh);
Adam Langleyd0592972015-03-30 14:49:51 -07002254
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002255 /* Start session. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002256 do_authenticated(ssh, authctxt);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002257
2258 /* The connection has been terminated. */
djm@openbsd.org6350e032019-01-19 21:42:30 +00002259 ssh_packet_get_bytes(ssh, &ibytes, &obytes);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002260 verbose("Transferred: sent %llu, received %llu bytes",
2261 (unsigned long long)obytes, (unsigned long long)ibytes);
2262
2263 verbose("Closing connection to %.500s port %d", remote_ip, remote_port);
2264
2265#ifdef USE_PAM
2266 if (options.use_pam)
2267 finish_pam();
2268#endif /* USE_PAM */
2269
2270#ifdef SSH_AUDIT_EVENTS
Damien Miller9b655dc2019-01-20 14:55:27 +11002271 PRIVSEP(audit_event(ssh, SSH_CONNECTION_CLOSE));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002272#endif
2273
djm@openbsd.org6350e032019-01-19 21:42:30 +00002274 ssh_packet_close(ssh);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002275
2276 if (use_privsep)
2277 mm_terminate();
2278
2279 exit(0);
2280}
2281
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002282int
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002283sshd_hostkey_sign(struct ssh *ssh, struct sshkey *privkey,
2284 struct sshkey *pubkey, u_char **signature, size_t *slenp,
2285 const u_char *data, size_t dlen, const char *alg)
Adam Langleyd0592972015-03-30 14:49:51 -07002286{
2287 int r;
Adam Langleyd0592972015-03-30 14:49:51 -07002288
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002289 if (use_privsep) {
2290 if (privkey) {
2291 if (mm_sshkey_sign(ssh, privkey, signature, slenp,
djm@openbsd.org56584cc2019-12-15 18:57:30 +00002292 data, dlen, alg, options.sk_provider,
2293 ssh->compat) < 0)
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002294 fatal("%s: privkey sign failed", __func__);
2295 } else {
2296 if (mm_sshkey_sign(ssh, pubkey, signature, slenp,
djm@openbsd.org56584cc2019-12-15 18:57:30 +00002297 data, dlen, alg, options.sk_provider,
2298 ssh->compat) < 0)
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002299 fatal("%s: pubkey sign failed", __func__);
2300 }
Adam Langleyd0592972015-03-30 14:49:51 -07002301 } else {
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002302 if (privkey) {
2303 if (sshkey_sign(privkey, signature, slenp, data, dlen,
djm@openbsd.org56584cc2019-12-15 18:57:30 +00002304 alg, options.sk_provider, ssh->compat) < 0)
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002305 fatal("%s: privkey sign failed", __func__);
2306 } else {
2307 if ((r = ssh_agent_sign(auth_sock, pubkey,
2308 signature, slenp, data, dlen, alg,
2309 ssh->compat)) != 0) {
2310 fatal("%s: agent sign failed: %s",
2311 __func__, ssh_err(r));
2312 }
2313 }
Adam Langleyd0592972015-03-30 14:49:51 -07002314 }
2315 return 0;
2316}
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002317
djm@openbsd.orgbdfd29f2015-07-03 03:47:00 +00002318/* SSH2 key exchange */
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002319static void
djm@openbsd.org6350e032019-01-19 21:42:30 +00002320do_ssh2_kex(struct ssh *ssh)
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002321{
Adam Langleyd0592972015-03-30 14:49:51 -07002322 char *myproposal[PROPOSAL_MAX] = { KEX_SERVER };
2323 struct kex *kex;
2324 int r;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002325
djm@openbsd.orgf9eca242015-07-30 00:01:34 +00002326 myproposal[PROPOSAL_KEX_ALGS] = compat_kex_proposal(
djm@openbsd.orgc3903c32018-08-13 02:41:05 +00002327 options.kex_algorithms);
djm@openbsd.orgf9eca242015-07-30 00:01:34 +00002328 myproposal[PROPOSAL_ENC_ALGS_CTOS] = compat_cipher_proposal(
djm@openbsd.orgc3903c32018-08-13 02:41:05 +00002329 options.ciphers);
djm@openbsd.orgf9eca242015-07-30 00:01:34 +00002330 myproposal[PROPOSAL_ENC_ALGS_STOC] = compat_cipher_proposal(
djm@openbsd.orgc3903c32018-08-13 02:41:05 +00002331 options.ciphers);
djm@openbsd.orgf9eca242015-07-30 00:01:34 +00002332 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
2333 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002334
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002335 if (options.compression == COMP_NONE) {
2336 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
dtucker@openbsd.org8c02e362016-05-24 04:43:45 +00002337 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none";
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002338 }
Adam Langleyd0592972015-03-30 14:49:51 -07002339
2340 if (options.rekey_limit || options.rekey_interval)
djm@openbsd.org6350e032019-01-19 21:42:30 +00002341 ssh_packet_set_rekey_limits(ssh, options.rekey_limit,
dtucker@openbsd.orgc998bf02017-02-03 02:56:00 +00002342 options.rekey_interval);
Adam Langleyd0592972015-03-30 14:49:51 -07002343
2344 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = compat_pkalg_proposal(
2345 list_hostkey_types());
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002346
2347 /* start key exchange */
djm@openbsd.org6350e032019-01-19 21:42:30 +00002348 if ((r = kex_setup(ssh, myproposal)) != 0)
Adam Langleyd0592972015-03-30 14:49:51 -07002349 fatal("kex_setup: %s", ssh_err(r));
djm@openbsd.org6350e032019-01-19 21:42:30 +00002350 kex = ssh->kex;
Adam Langleyd0592972015-03-30 14:49:51 -07002351#ifdef WITH_OPENSSL
djm@openbsd.orgaaca72d2019-01-21 10:40:11 +00002352 kex->kex[KEX_DH_GRP1_SHA1] = kex_gen_server;
2353 kex->kex[KEX_DH_GRP14_SHA1] = kex_gen_server;
2354 kex->kex[KEX_DH_GRP14_SHA256] = kex_gen_server;
2355 kex->kex[KEX_DH_GRP16_SHA512] = kex_gen_server;
2356 kex->kex[KEX_DH_GRP18_SHA512] = kex_gen_server;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002357 kex->kex[KEX_DH_GEX_SHA1] = kexgex_server;
2358 kex->kex[KEX_DH_GEX_SHA256] = kexgex_server;
Adam Langleyd0592972015-03-30 14:49:51 -07002359# ifdef OPENSSL_HAS_ECC
djm@openbsd.orgaaca72d2019-01-21 10:40:11 +00002360 kex->kex[KEX_ECDH_SHA2] = kex_gen_server;
Adam Langleyd0592972015-03-30 14:49:51 -07002361# endif
2362#endif
djm@openbsd.orgaaca72d2019-01-21 10:40:11 +00002363 kex->kex[KEX_C25519_SHA256] = kex_gen_server;
2364 kex->kex[KEX_KEM_SNTRUP4591761X25519_SHA512] = kex_gen_server;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002365 kex->load_host_public_key=&get_hostkey_public_by_type;
2366 kex->load_host_private_key=&get_hostkey_private_by_type;
2367 kex->host_key_index=&get_hostkey_index;
Adam Langleyd0592972015-03-30 14:49:51 -07002368 kex->sign = sshd_hostkey_sign;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002369
djm@openbsd.org6350e032019-01-19 21:42:30 +00002370 ssh_dispatch_run_fatal(ssh, DISPATCH_BLOCK, &kex->done);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002371
2372 session_id2 = kex->session_id;
2373 session_id2_len = kex->session_id_len;
2374
2375#ifdef DEBUG_KEXDH
2376 /* send 1st encrypted/maced/compressed message */
Alistair Delvac4490d02020-08-20 16:42:41 -07002377 packet_start(SSH2_MSG_IGNORE);
2378 packet_put_cstring("markus");
2379 packet_send();
2380 packet_write_wait();
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002381#endif
2382 debug("KEX done");
2383}
2384
2385/* server specific fatal cleanup */
2386void
2387cleanup_exit(int i)
2388{
djm@openbsd.org04c091f2019-01-19 21:43:56 +00002389 if (the_active_state != NULL && the_authctxt != NULL) {
2390 do_cleanup(the_active_state, the_authctxt);
Adam Langleyd0592972015-03-30 14:49:51 -07002391 if (use_privsep && privsep_is_preauth &&
2392 pmonitor != NULL && pmonitor->m_pid > 1) {
2393 debug("Killing privsep child %d", pmonitor->m_pid);
2394 if (kill(pmonitor->m_pid, SIGKILL) != 0 &&
2395 errno != ESRCH)
2396 error("%s: kill(%d): %s", __func__,
2397 pmonitor->m_pid, strerror(errno));
2398 }
2399 }
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002400#ifdef SSH_AUDIT_EVENTS
2401 /* done after do_cleanup so it can cancel the PAM auth 'thread' */
Damien Miller9b655dc2019-01-20 14:55:27 +11002402 if (the_active_state != NULL && (!use_privsep || mm_is_monitor()))
2403 audit_event(the_active_state, SSH_CONNECTION_ABANDON);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002404#endif
2405 _exit(i);
2406}