GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: usr.bin/ssh/sshd/../sshd.c Lines: 234 944 24.8 %
Date: 2017-11-07 Branches: 126 578 21.8 %

Line Branch Exec Source
1
/* $OpenBSD: sshd.c,v 1.492 2017/09/12 06:32:07 djm Exp $ */
2
/*
3
 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4
 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5
 *                    All rights reserved
6
 * This program is the ssh daemon.  It listens for connections from clients,
7
 * and performs authentication, executes use commands or shell, and forwards
8
 * information to/from the application to the user client over an encrypted
9
 * connection.  This can also handle forwarding of X11, TCP/IP, and
10
 * authentication agent connections.
11
 *
12
 * As far as I am concerned, the code I have written for this software
13
 * can be used freely for any purpose.  Any derived versions of this
14
 * software must be clearly marked as such, and if the derived work is
15
 * incompatible with the protocol description in the RFC file, it must be
16
 * called by a name other than "ssh" or "Secure Shell".
17
 *
18
 * SSH2 implementation:
19
 * Privilege Separation:
20
 *
21
 * Copyright (c) 2000, 2001, 2002 Markus Friedl.  All rights reserved.
22
 * Copyright (c) 2002 Niels Provos.  All rights reserved.
23
 *
24
 * Redistribution and use in source and binary forms, with or without
25
 * modification, are permitted provided that the following conditions
26
 * are met:
27
 * 1. Redistributions of source code must retain the above copyright
28
 *    notice, this list of conditions and the following disclaimer.
29
 * 2. Redistributions in binary form must reproduce the above copyright
30
 *    notice, this list of conditions and the following disclaimer in the
31
 *    documentation and/or other materials provided with the distribution.
32
 *
33
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
34
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
35
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
36
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
37
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
38
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
39
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
40
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
41
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
42
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43
 */
44
45
#include <sys/types.h>
46
#include <sys/ioctl.h>
47
#include <sys/wait.h>
48
#include <sys/tree.h>
49
#include <sys/stat.h>
50
#include <sys/socket.h>
51
#include <sys/time.h>
52
#include <sys/queue.h>
53
54
#include <errno.h>
55
#include <fcntl.h>
56
#include <netdb.h>
57
#include <paths.h>
58
#include <pwd.h>
59
#include <signal.h>
60
#include <stdio.h>
61
#include <stdlib.h>
62
#include <string.h>
63
#include <unistd.h>
64
#include <limits.h>
65
66
#ifdef WITH_OPENSSL
67
#include <openssl/bn.h>
68
#endif
69
70
#include "xmalloc.h"
71
#include "ssh.h"
72
#include "ssh2.h"
73
#include "sshpty.h"
74
#include "packet.h"
75
#include "log.h"
76
#include "buffer.h"
77
#include "misc.h"
78
#include "match.h"
79
#include "servconf.h"
80
#include "uidswap.h"
81
#include "compat.h"
82
#include "cipher.h"
83
#include "digest.h"
84
#include "key.h"
85
#include "kex.h"
86
#include "myproposal.h"
87
#include "authfile.h"
88
#include "pathnames.h"
89
#include "atomicio.h"
90
#include "canohost.h"
91
#include "hostfile.h"
92
#include "auth.h"
93
#include "authfd.h"
94
#include "msg.h"
95
#include "dispatch.h"
96
#include "channels.h"
97
#include "session.h"
98
#include "monitor.h"
99
#ifdef GSSAPI
100
#include "ssh-gss.h"
101
#endif
102
#include "monitor_wrap.h"
103
#include "ssh-sandbox.h"
104
#include "version.h"
105
#include "ssherr.h"
106
107
/* Re-exec fds */
108
#define REEXEC_DEVCRYPTO_RESERVED_FD	(STDERR_FILENO + 1)
109
#define REEXEC_STARTUP_PIPE_FD		(STDERR_FILENO + 2)
110
#define REEXEC_CONFIG_PASS_FD		(STDERR_FILENO + 3)
111
#define REEXEC_MIN_FREE_FD		(STDERR_FILENO + 4)
112
113
extern char *__progname;
114
115
/* Server configuration options. */
116
ServerOptions options;
117
118
/* Name of the server configuration file. */
119
char *config_file_name = _PATH_SERVER_CONFIG_FILE;
120
121
/*
122
 * Debug mode flag.  This can be set on the command line.  If debug
123
 * mode is enabled, extra debugging output will be sent to the system
124
 * log, the daemon will not go to background, and will exit after processing
125
 * the first connection.
126
 */
127
int debug_flag = 0;
128
129
/* Flag indicating that the daemon should only test the configuration and keys. */
130
int test_flag = 0;
131
132
/* Flag indicating that the daemon is being started from inetd. */
133
int inetd_flag = 0;
134
135
/* Flag indicating that sshd should not detach and become a daemon. */
136
int no_daemon_flag = 0;
137
138
/* debug goes to stderr unless inetd_flag is set */
139
int log_stderr = 0;
140
141
/* Saved arguments to main(). */
142
char **saved_argv;
143
144
/* re-exec */
145
int rexeced_flag = 0;
146
int rexec_flag = 1;
147
int rexec_argc = 0;
148
char **rexec_argv;
149
150
/*
151
 * The sockets that the server is listening; this is used in the SIGHUP
152
 * signal handler.
153
 */
154
#define	MAX_LISTEN_SOCKS	16
155
int listen_socks[MAX_LISTEN_SOCKS];
156
int num_listen_socks = 0;
157
158
/*
159
 * the client's version string, passed by sshd2 in compat mode. if != NULL,
160
 * sshd will skip the version-number exchange
161
 */
162
char *client_version_string = NULL;
163
char *server_version_string = NULL;
164
165
/* Daemon's agent connection */
166
int auth_sock = -1;
167
int have_agent = 0;
168
169
/*
170
 * Any really sensitive data in the application is contained in this
171
 * structure. The idea is that this structure could be locked into memory so
172
 * that the pages do not get written into swap.  However, there are some
173
 * problems. The private key contains BIGNUMs, and we do not (in principle)
174
 * have access to the internals of them, and locking just the structure is
175
 * not very useful.  Currently, memory locking is not implemented.
176
 */
177
struct {
178
	struct sshkey	**host_keys;		/* all private host keys */
179
	struct sshkey	**host_pubkeys;		/* all public host keys */
180
	struct sshkey	**host_certificates;	/* all public host certificates */
181
	int		have_ssh2_key;
182
} sensitive_data;
183
184
/* This is set to true when a signal is received. */
185
static volatile sig_atomic_t received_sighup = 0;
186
static volatile sig_atomic_t received_sigterm = 0;
187
188
/* session identifier, used by RSA-auth */
189
u_char session_id[16];
190
191
/* same for ssh2 */
192
u_char *session_id2 = NULL;
193
u_int session_id2_len = 0;
194
195
/* record remote hostname or ip */
196
u_int utmp_len = HOST_NAME_MAX+1;
197
198
/* options.max_startup sized array of fd ints */
199
int *startup_pipes = NULL;
200
int startup_pipe;		/* in child */
201
202
/* variables used for privilege separation */
203
int use_privsep = -1;
204
struct monitor *pmonitor = NULL;
205
int privsep_is_preauth = 1;
206
207
/* global authentication context */
208
Authctxt *the_authctxt = NULL;
209
210
/* sshd_config buffer */
211
Buffer cfg;
212
213
/* message to be displayed after login */
214
Buffer loginmsg;
215
216
/* Prototypes for various functions defined later in this file. */
217
void destroy_sensitive_data(void);
218
void demote_sensitive_data(void);
219
static void do_ssh2_kex(void);
220
221
/*
222
 * Close all listening sockets
223
 */
224
static void
225
close_listen_socks(void)
226
{
227
	int i;
228
229
30
	for (i = 0; i < num_listen_socks; i++)
230
6
		close(listen_socks[i]);
231
6
	num_listen_socks = -1;
232
6
}
233
234
static void
235
close_startup_pipes(void)
236
{
237
	int i;
238
239
	if (startup_pipes)
240
		for (i = 0; i < options.max_startups; i++)
241
			if (startup_pipes[i] != -1)
242
				close(startup_pipes[i]);
243
}
244
245
/*
246
 * Signal handler for SIGHUP.  Sshd execs itself when it receives SIGHUP;
247
 * the effect is to reread the configuration file (and to regenerate
248
 * the server key).
249
 */
250
251
/*ARGSUSED*/
252
static void
253
sighup_handler(int sig)
254
{
255
	int save_errno = errno;
256
257
	received_sighup = 1;
258
	signal(SIGHUP, sighup_handler);
259
	errno = save_errno;
260
}
261
262
/*
263
 * Called from the main program after receiving SIGHUP.
264
 * Restarts the server.
265
 */
266
static void
267
sighup_restart(void)
268
{
269
	logit("Received SIGHUP; restarting.");
270
	if (options.pid_file != NULL)
271
		unlink(options.pid_file);
272
	close_listen_socks();
273
	close_startup_pipes();
274
	alarm(0);  /* alarm timer persists across exec */
275
	signal(SIGHUP, SIG_IGN); /* will be restored after exec */
276
	execv(saved_argv[0], saved_argv);
277
	logit("RESTART FAILED: av[0]='%.100s', error: %.100s.", saved_argv[0],
278
	    strerror(errno));
279
	exit(1);
280
}
281
282
/*
283
 * Generic signal handler for terminating signals in the master daemon.
284
 */
285
/*ARGSUSED*/
286
static void
287
sigterm_handler(int sig)
288
{
289
12
	received_sigterm = sig;
290
6
}
291
292
/*
293
 * SIGCHLD handler.  This is called whenever a child dies.  This will then
294
 * reap any zombies left by exited children.
295
 */
296
/*ARGSUSED*/
297
static void
298
main_sigchld_handler(int sig)
299
{
300
10
	int save_errno = errno;
301
	pid_t pid;
302
5
	int status;
303
304

20
	while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
305
10
	    (pid < 0 && errno == EINTR))
306
		;
307
308
5
	signal(SIGCHLD, main_sigchld_handler);
309
5
	errno = save_errno;
310
5
}
311
312
/*
313
 * Signal handler for the alarm after the login grace period has expired.
314
 */
315
/*ARGSUSED*/
316
static void
317
grace_alarm_handler(int sig)
318
{
319
	if (use_privsep && pmonitor != NULL && pmonitor->m_pid > 0)
320
		kill(pmonitor->m_pid, SIGALRM);
321
322
	/*
323
	 * Try to kill any processes that we have spawned, E.g. authorized
324
	 * keys command helpers.
325
	 */
326
	if (getpgid(0) == getpid()) {
327
		signal(SIGTERM, SIG_IGN);
328
		kill(0, SIGTERM);
329
	}
330
331
	/* Log error and exit. */
332
	sigdie("Timeout before authentication for %s port %d",
333
	    ssh_remote_ipaddr(active_state), ssh_remote_port(active_state));
334
}
335
336
static void
337
sshd_exchange_identification(struct ssh *ssh, int sock_in, int sock_out)
338
{
339
	u_int i;
340
	int remote_major, remote_minor;
341
	char *s;
342
	char buf[256];			/* Must not be larger than remote_version. */
343
	char remote_version[256];	/* Must be at least as big as buf. */
344
345
	xasprintf(&server_version_string, "SSH-%d.%d-%.100s%s%s\r\n",
346
	    PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2, SSH_VERSION,
347
	    *options.version_addendum == '\0' ? "" : " ",
348
	    options.version_addendum);
349
350
	/* Send our protocol version identification. */
351
	if (atomicio(vwrite, sock_out, server_version_string,
352
	    strlen(server_version_string))
353
	    != strlen(server_version_string)) {
354
		logit("Could not write ident string to %s port %d",
355
		    ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
356
		cleanup_exit(255);
357
	}
358
359
	/* Read other sides version identification. */
360
	memset(buf, 0, sizeof(buf));
361
	for (i = 0; i < sizeof(buf) - 1; i++) {
362
		if (atomicio(read, sock_in, &buf[i], 1) != 1) {
363
			logit("Did not receive identification string "
364
			    "from %s port %d",
365
			    ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
366
			cleanup_exit(255);
367
		}
368
		if (buf[i] == '\r') {
369
			buf[i] = 0;
370
			/* Kludge for F-Secure Macintosh < 1.0.2 */
371
			if (i == 12 &&
372
			    strncmp(buf, "SSH-1.5-W1.0", 12) == 0)
373
				break;
374
			continue;
375
		}
376
		if (buf[i] == '\n') {
377
			buf[i] = 0;
378
			break;
379
		}
380
	}
381
	buf[sizeof(buf) - 1] = 0;
382
	client_version_string = xstrdup(buf);
383
384
	/*
385
	 * Check that the versions match.  In future this might accept
386
	 * several versions and set appropriate flags to handle them.
387
	 */
388
	if (sscanf(client_version_string, "SSH-%d.%d-%[^\n]\n",
389
	    &remote_major, &remote_minor, remote_version) != 3) {
390
		s = "Protocol mismatch.\n";
391
		(void) atomicio(vwrite, sock_out, s, strlen(s));
392
		logit("Bad protocol version identification '%.100s' "
393
		    "from %s port %d", client_version_string,
394
		    ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
395
		close(sock_in);
396
		close(sock_out);
397
		cleanup_exit(255);
398
	}
399
	debug("Client protocol version %d.%d; client software version %.100s",
400
	    remote_major, remote_minor, remote_version);
401
402
	ssh->compat = compat_datafellows(remote_version);
403
404
	if ((ssh->compat & SSH_BUG_PROBE) != 0) {
405
		logit("probed from %s port %d with %s.  Don't panic.",
406
		    ssh_remote_ipaddr(ssh), ssh_remote_port(ssh),
407
		    client_version_string);
408
		cleanup_exit(255);
409
	}
410
	if ((ssh->compat & SSH_BUG_SCANNER) != 0) {
411
		logit("scanned from %s port %d with %s.  Don't panic.",
412
		    ssh_remote_ipaddr(ssh), ssh_remote_port(ssh),
413
		    client_version_string);
414
		cleanup_exit(255);
415
	}
416
	if ((ssh->compat & SSH_BUG_RSASIGMD5) != 0) {
417
		logit("Client version \"%.100s\" uses unsafe RSA signature "
418
		    "scheme; disabling use of RSA keys", remote_version);
419
	}
420
	if ((ssh->compat & SSH_BUG_DERIVEKEY) != 0) {
421
		fatal("Client version \"%.100s\" uses unsafe key agreement; "
422
		    "refusing connection", remote_version);
423
	}
424
425
	chop(server_version_string);
426
	debug("Local version string %.200s", server_version_string);
427
428
	if (remote_major != 2 ||
429
	    (remote_major == 1 && remote_minor != 99)) {
430
		s = "Protocol major versions differ.\n";
431
		(void) atomicio(vwrite, sock_out, s, strlen(s));
432
		close(sock_in);
433
		close(sock_out);
434
		logit("Protocol major versions differ for %s port %d: "
435
		    "%.200s vs. %.200s",
436
		    ssh_remote_ipaddr(ssh), ssh_remote_port(ssh),
437
		    server_version_string, client_version_string);
438
		cleanup_exit(255);
439
	}
440
}
441
442
/* Destroy the host and server keys.  They will no longer be needed. */
443
void
444
destroy_sensitive_data(void)
445
{
446
	int i;
447
448
	for (i = 0; i < options.num_host_key_files; i++) {
449
		if (sensitive_data.host_keys[i]) {
450
			key_free(sensitive_data.host_keys[i]);
451
			sensitive_data.host_keys[i] = NULL;
452
		}
453
		if (sensitive_data.host_certificates[i]) {
454
			key_free(sensitive_data.host_certificates[i]);
455
			sensitive_data.host_certificates[i] = NULL;
456
		}
457
	}
458
}
459
460
/* Demote private to public keys for network child */
461
void
462
demote_sensitive_data(void)
463
{
464
	struct sshkey *tmp;
465
	int i;
466
467
	for (i = 0; i < options.num_host_key_files; i++) {
468
		if (sensitive_data.host_keys[i]) {
469
			tmp = key_demote(sensitive_data.host_keys[i]);
470
			key_free(sensitive_data.host_keys[i]);
471
			sensitive_data.host_keys[i] = tmp;
472
		}
473
		/* Certs do not need demotion */
474
	}
475
}
476
477
static void
478
privsep_preauth_child(void)
479
{
480
	gid_t gidset[1];
481
	struct passwd *pw;
482
483
	/* Enable challenge-response authentication for privilege separation */
484
	privsep_challenge_enable();
485
486
#ifdef GSSAPI
487
	/* Cache supported mechanism OIDs for later use */
488
	if (options.gss_authentication)
489
		ssh_gssapi_prepare_supported_oids();
490
#endif
491
492
	/* Demote the private keys to public keys. */
493
	demote_sensitive_data();
494
495
	/* Demote the child */
496
	if (getuid() == 0 || geteuid() == 0) {
497
		if ((pw = getpwnam(SSH_PRIVSEP_USER)) == NULL)
498
			fatal("Privilege separation user %s does not exist",
499
			    SSH_PRIVSEP_USER);
500
		explicit_bzero(pw->pw_passwd, strlen(pw->pw_passwd));
501
		endpwent();
502
503
		/* Change our root directory */
504
		if (chroot(_PATH_PRIVSEP_CHROOT_DIR) == -1)
505
			fatal("chroot(\"%s\"): %s", _PATH_PRIVSEP_CHROOT_DIR,
506
			    strerror(errno));
507
		if (chdir("/") == -1)
508
			fatal("chdir(\"/\"): %s", strerror(errno));
509
510
		/*
511
		 * Drop our privileges
512
		 * NB. Can't use setusercontext() after chroot.
513
		 */
514
		debug3("privsep user:group %u:%u", (u_int)pw->pw_uid,
515
		    (u_int)pw->pw_gid);
516
		gidset[0] = pw->pw_gid;
517
		if (setgroups(1, gidset) < 0)
518
			fatal("setgroups: %.100s", strerror(errno));
519
		permanently_set_uid(pw);
520
	}
521
}
522
523
static int
524
privsep_preauth(Authctxt *authctxt)
525
{
526
	int status, r;
527
	pid_t pid;
528
	struct ssh_sandbox *box = NULL;
529
530
	/* Set up unprivileged child process to deal with network data */
531
	pmonitor = monitor_init();
532
	/* Store a pointer to the kex for later rekeying */
533
	pmonitor->m_pkex = &active_state->kex;
534
535
	if (use_privsep == PRIVSEP_ON)
536
		box = ssh_sandbox_init();
537
	pid = fork();
538
	if (pid == -1) {
539
		fatal("fork of unprivileged child failed");
540
	} else if (pid != 0) {
541
		debug2("Network child is on pid %ld", (long)pid);
542
543
		pmonitor->m_pid = pid;
544
		if (have_agent) {
545
			r = ssh_get_authentication_socket(&auth_sock);
546
			if (r != 0) {
547
				error("Could not get agent socket: %s",
548
				    ssh_err(r));
549
				have_agent = 0;
550
			}
551
		}
552
		if (box != NULL)
553
			ssh_sandbox_parent_preauth(box, pid);
554
		monitor_child_preauth(authctxt, pmonitor);
555
556
		/* Wait for the child's exit status */
557
		while (waitpid(pid, &status, 0) < 0) {
558
			if (errno == EINTR)
559
				continue;
560
			pmonitor->m_pid = -1;
561
			fatal("%s: waitpid: %s", __func__, strerror(errno));
562
		}
563
		privsep_is_preauth = 0;
564
		pmonitor->m_pid = -1;
565
		if (WIFEXITED(status)) {
566
			if (WEXITSTATUS(status) != 0)
567
				fatal("%s: preauth child exited with status %d",
568
				    __func__, WEXITSTATUS(status));
569
		} else if (WIFSIGNALED(status))
570
			fatal("%s: preauth child terminated by signal %d",
571
			    __func__, WTERMSIG(status));
572
		if (box != NULL)
573
			ssh_sandbox_parent_finish(box);
574
		return 1;
575
	} else {
576
		/* child */
577
		close(pmonitor->m_sendfd);
578
		close(pmonitor->m_log_recvfd);
579
580
		/* Arrange for logging to be sent to the monitor */
581
		set_log_handler(mm_log_handler, pmonitor);
582
583
		privsep_preauth_child();
584
		setproctitle("%s", "[net]");
585
		if (box != NULL)
586
			ssh_sandbox_child(box);
587
588
		return 0;
589
	}
590
}
591
592
static void
593
privsep_postauth(Authctxt *authctxt)
594
{
595
	if (authctxt->pw->pw_uid == 0) {
596
		/* File descriptor passing is broken or root login */
597
		use_privsep = 0;
598
		goto skip;
599
	}
600
601
	/* New socket pair */
602
	monitor_reinit(pmonitor);
603
604
	pmonitor->m_pid = fork();
605
	if (pmonitor->m_pid == -1)
606
		fatal("fork of unprivileged child failed");
607
	else if (pmonitor->m_pid != 0) {
608
		verbose("User child is on pid %ld", (long)pmonitor->m_pid);
609
		buffer_clear(&loginmsg);
610
		monitor_clear_keystate(pmonitor);
611
		monitor_child_postauth(pmonitor);
612
613
		/* NEVERREACHED */
614
		exit(0);
615
	}
616
617
	/* child */
618
619
	close(pmonitor->m_sendfd);
620
	pmonitor->m_sendfd = -1;
621
622
	/* Demote the private keys to public keys. */
623
	demote_sensitive_data();
624
625
	/* Drop privileges */
626
	do_setusercontext(authctxt->pw);
627
628
 skip:
629
	/* It is safe now to apply the key state */
630
	monitor_apply_keystate(pmonitor);
631
632
	/*
633
	 * Tell the packet layer that authentication was successful, since
634
	 * this information is not part of the key state.
635
	 */
636
	packet_set_authenticated();
637
}
638
639
static char *
640
list_hostkey_types(void)
641
{
642
	Buffer b;
643
	const char *p;
644
	char *ret;
645
	int i;
646
	struct sshkey *key;
647
648
	buffer_init(&b);
649
	for (i = 0; i < options.num_host_key_files; i++) {
650
		key = sensitive_data.host_keys[i];
651
		if (key == NULL)
652
			key = sensitive_data.host_pubkeys[i];
653
		if (key == NULL)
654
			continue;
655
		/* Check that the key is accepted in HostkeyAlgorithms */
656
		if (match_pattern_list(sshkey_ssh_name(key),
657
		    options.hostkeyalgorithms, 0) != 1) {
658
			debug3("%s: %s key not permitted by HostkeyAlgorithms",
659
			    __func__, sshkey_ssh_name(key));
660
			continue;
661
		}
662
		switch (key->type) {
663
		case KEY_RSA:
664
		case KEY_DSA:
665
		case KEY_ECDSA:
666
		case KEY_ED25519:
667
			if (buffer_len(&b) > 0)
668
				buffer_append(&b, ",", 1);
669
			p = key_ssh_name(key);
670
			buffer_append(&b, p, strlen(p));
671
672
			/* for RSA we also support SHA2 signatures */
673
			if (key->type == KEY_RSA) {
674
				p = ",rsa-sha2-512,rsa-sha2-256";
675
				buffer_append(&b, p, strlen(p));
676
			}
677
			break;
678
		}
679
		/* If the private key has a cert peer, then list that too */
680
		key = sensitive_data.host_certificates[i];
681
		if (key == NULL)
682
			continue;
683
		switch (key->type) {
684
		case KEY_RSA_CERT:
685
		case KEY_DSA_CERT:
686
		case KEY_ECDSA_CERT:
687
		case KEY_ED25519_CERT:
688
			if (buffer_len(&b) > 0)
689
				buffer_append(&b, ",", 1);
690
			p = key_ssh_name(key);
691
			buffer_append(&b, p, strlen(p));
692
			break;
693
		}
694
	}
695
	if ((ret = sshbuf_dup_string(&b)) == NULL)
696
		fatal("%s: sshbuf_dup_string failed", __func__);
697
	buffer_free(&b);
698
	debug("list_hostkey_types: %s", ret);
699
	return ret;
700
}
701
702
static struct sshkey *
703
get_hostkey_by_type(int type, int nid, int need_private, struct ssh *ssh)
704
{
705
	int i;
706
	struct sshkey *key;
707
708
	for (i = 0; i < options.num_host_key_files; i++) {
709
		switch (type) {
710
		case KEY_RSA_CERT:
711
		case KEY_DSA_CERT:
712
		case KEY_ECDSA_CERT:
713
		case KEY_ED25519_CERT:
714
			key = sensitive_data.host_certificates[i];
715
			break;
716
		default:
717
			key = sensitive_data.host_keys[i];
718
			if (key == NULL && !need_private)
719
				key = sensitive_data.host_pubkeys[i];
720
			break;
721
		}
722
		if (key != NULL && key->type == type &&
723
		    (key->type != KEY_ECDSA || key->ecdsa_nid == nid))
724
			return need_private ?
725
			    sensitive_data.host_keys[i] : key;
726
	}
727
	return NULL;
728
}
729
730
struct sshkey *
731
get_hostkey_public_by_type(int type, int nid, struct ssh *ssh)
732
{
733
	return get_hostkey_by_type(type, nid, 0, ssh);
734
}
735
736
struct sshkey *
737
get_hostkey_private_by_type(int type, int nid, struct ssh *ssh)
738
{
739
	return get_hostkey_by_type(type, nid, 1, ssh);
740
}
741
742
struct sshkey *
743
get_hostkey_by_index(int ind)
744
{
745
	if (ind < 0 || ind >= options.num_host_key_files)
746
		return (NULL);
747
	return (sensitive_data.host_keys[ind]);
748
}
749
750
struct sshkey *
751
get_hostkey_public_by_index(int ind, struct ssh *ssh)
752
{
753
	if (ind < 0 || ind >= options.num_host_key_files)
754
		return (NULL);
755
	return (sensitive_data.host_pubkeys[ind]);
756
}
757
758
int
759
get_hostkey_index(struct sshkey *key, int compare, struct ssh *ssh)
760
{
761
	int i;
762
763
	for (i = 0; i < options.num_host_key_files; i++) {
764
		if (key_is_cert(key)) {
765
			if (key == sensitive_data.host_certificates[i] ||
766
			    (compare && sensitive_data.host_certificates[i] &&
767
			    sshkey_equal(key,
768
			    sensitive_data.host_certificates[i])))
769
				return (i);
770
		} else {
771
			if (key == sensitive_data.host_keys[i] ||
772
			    (compare && sensitive_data.host_keys[i] &&
773
			    sshkey_equal(key, sensitive_data.host_keys[i])))
774
				return (i);
775
			if (key == sensitive_data.host_pubkeys[i] ||
776
			    (compare && sensitive_data.host_pubkeys[i] &&
777
			    sshkey_equal(key, sensitive_data.host_pubkeys[i])))
778
				return (i);
779
		}
780
	}
781
	return (-1);
782
}
783
784
/* Inform the client of all hostkeys */
785
static void
786
notify_hostkeys(struct ssh *ssh)
787
{
788
	struct sshbuf *buf;
789
	struct sshkey *key;
790
	int i, nkeys, r;
791
	char *fp;
792
793
	/* Some clients cannot cope with the hostkeys message, skip those. */
794
	if (datafellows & SSH_BUG_HOSTKEYS)
795
		return;
796
797
	if ((buf = sshbuf_new()) == NULL)
798
		fatal("%s: sshbuf_new", __func__);
799
	for (i = nkeys = 0; i < options.num_host_key_files; i++) {
800
		key = get_hostkey_public_by_index(i, ssh);
801
		if (key == NULL || key->type == KEY_UNSPEC ||
802
		    sshkey_is_cert(key))
803
			continue;
804
		fp = sshkey_fingerprint(key, options.fingerprint_hash,
805
		    SSH_FP_DEFAULT);
806
		debug3("%s: key %d: %s %s", __func__, i,
807
		    sshkey_ssh_name(key), fp);
808
		free(fp);
809
		if (nkeys == 0) {
810
			packet_start(SSH2_MSG_GLOBAL_REQUEST);
811
			packet_put_cstring("hostkeys-00@openssh.com");
812
			packet_put_char(0); /* want-reply */
813
		}
814
		sshbuf_reset(buf);
815
		if ((r = sshkey_putb(key, buf)) != 0)
816
			fatal("%s: couldn't put hostkey %d: %s",
817
			    __func__, i, ssh_err(r));
818
		packet_put_string(sshbuf_ptr(buf), sshbuf_len(buf));
819
		nkeys++;
820
	}
821
	debug3("%s: sent %d hostkeys", __func__, nkeys);
822
	if (nkeys == 0)
823
		fatal("%s: no hostkeys", __func__);
824
	packet_send();
825
	sshbuf_free(buf);
826
}
827
828
/*
829
 * returns 1 if connection should be dropped, 0 otherwise.
830
 * dropping starts at connection #max_startups_begin with a probability
831
 * of (max_startups_rate/100). the probability increases linearly until
832
 * all connections are dropped for startups > max_startups
833
 */
834
static int
835
drop_connection(int startups)
836
{
837
	int p, r;
838
839
12
	if (startups < options.max_startups_begin)
840
6
		return 0;
841
	if (startups >= options.max_startups)
842
		return 1;
843
	if (options.max_startups_rate == 100)
844
		return 1;
845
846
	p  = 100 - options.max_startups_rate;
847
	p *= startups - options.max_startups_begin;
848
	p /= options.max_startups - options.max_startups_begin;
849
	p += options.max_startups_rate;
850
	r = arc4random_uniform(100);
851
852
	debug("drop_connection: p %d, r %d", p, r);
853
	return (r < p) ? 1 : 0;
854
6
}
855
856
static void
857
usage(void)
858
{
859
	fprintf(stderr, "%s, %s\n",
860
	    SSH_VERSION,
861
#ifdef WITH_OPENSSL
862
	    SSLeay_version(SSLEAY_VERSION)
863
#else
864
	    "without OpenSSL"
865
#endif
866
	);
867
	fprintf(stderr,
868
"usage: sshd [-46DdeiqTt] [-C connection_spec] [-c host_cert_file]\n"
869
"            [-E log_file] [-f config_file] [-g login_grace_time]\n"
870
"            [-h host_key_file] [-o option] [-p port] [-u len]\n"
871
	);
872
	exit(1);
873
}
874
875
static void
876
send_rexec_state(int fd, struct sshbuf *conf)
877
{
878
	struct sshbuf *m;
879
	int r;
880
881
6
	debug3("%s: entering fd = %d config len %zu", __func__, fd,
882
12
	    sshbuf_len(conf));
883
884
	/*
885
	 * Protocol from reexec master to child:
886
	 *	string	configuration
887
	 */
888
6
	if ((m = sshbuf_new()) == NULL)
889
		fatal("%s: sshbuf_new failed", __func__);
890
6
	if ((r = sshbuf_put_stringb(m, conf)) != 0)
891
		fatal("%s: buffer error: %s", __func__, ssh_err(r));
892
6
	if (ssh_msg_send(fd, 0, m) == -1)
893
		fatal("%s: ssh_msg_send failed", __func__);
894
895
6
	sshbuf_free(m);
896
897
6
	debug3("%s: done", __func__);
898
6
}
899
900
static void
901
recv_rexec_state(int fd, Buffer *conf)
902
{
903
	Buffer m;
904
	char *cp;
905
	u_int len;
906
907
	debug3("%s: entering fd = %d", __func__, fd);
908
909
	buffer_init(&m);
910
911
	if (ssh_msg_recv(fd, &m) == -1)
912
		fatal("%s: ssh_msg_recv failed", __func__);
913
	if (buffer_get_char(&m) != 0)
914
		fatal("%s: rexec version mismatch", __func__);
915
916
	cp = buffer_get_string(&m, &len);
917
	if (conf != NULL)
918
		buffer_append(conf, cp, len);
919
	free(cp);
920
921
	buffer_free(&m);
922
923
	debug3("%s: done", __func__);
924
}
925
926
/* Accept a connection from inetd */
927
static void
928
server_accept_inetd(int *sock_in, int *sock_out)
929
{
930
	int fd;
931
932
	startup_pipe = -1;
933
	if (rexeced_flag) {
934
		close(REEXEC_CONFIG_PASS_FD);
935
		*sock_in = *sock_out = dup(STDIN_FILENO);
936
		if (!debug_flag) {
937
			startup_pipe = dup(REEXEC_STARTUP_PIPE_FD);
938
			close(REEXEC_STARTUP_PIPE_FD);
939
		}
940
	} else {
941
		*sock_in = dup(STDIN_FILENO);
942
		*sock_out = dup(STDOUT_FILENO);
943
	}
944
	/*
945
	 * We intentionally do not close the descriptors 0, 1, and 2
946
	 * as our code for setting the descriptors won't work if
947
	 * ttyfd happens to be one of those.
948
	 */
949
	if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
950
		dup2(fd, STDIN_FILENO);
951
		dup2(fd, STDOUT_FILENO);
952
		if (!log_stderr)
953
			dup2(fd, STDERR_FILENO);
954
		if (fd > (log_stderr ? STDERR_FILENO : STDOUT_FILENO))
955
			close(fd);
956
	}
957
	debug("inetd sockets after dupping: %d, %d", *sock_in, *sock_out);
958
}
959
960
/*
961
 * Listen for TCP connections
962
 */
963
static void
964
server_listen(void)
965
{
966
12
	int ret, listen_sock, on = 1;
967
	struct addrinfo *ai;
968
6
	char ntop[NI_MAXHOST], strport[NI_MAXSERV];
969
970
24
	for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
971

6
		if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
972
			continue;
973
6
		if (num_listen_socks >= MAX_LISTEN_SOCKS)
974
			fatal("Too many listen sockets. "
975
			    "Enlarge MAX_LISTEN_SOCKS");
976
18
		if ((ret = getnameinfo(ai->ai_addr, ai->ai_addrlen,
977
6
		    ntop, sizeof(ntop), strport, sizeof(strport),
978
6
		    NI_NUMERICHOST|NI_NUMERICSERV)) != 0) {
979
			error("getnameinfo failed: %.100s",
980
			    ssh_gai_strerror(ret));
981
			continue;
982
		}
983
		/* Create socket for listening. */
984
12
		listen_sock = socket(ai->ai_family, ai->ai_socktype,
985
6
		    ai->ai_protocol);
986
6
		if (listen_sock < 0) {
987
			/* kernel may not support ipv6 */
988
			verbose("socket: %.100s", strerror(errno));
989
			continue;
990
		}
991
6
		if (set_nonblock(listen_sock) == -1) {
992
			close(listen_sock);
993
			continue;
994
		}
995
6
		if (fcntl(listen_sock, F_SETFD, FD_CLOEXEC) == -1) {
996
			verbose("socket: CLOEXEC: %s", strerror(errno));
997
			close(listen_sock);
998
			continue;
999
		}
1000
		/*
1001
		 * Set socket options.
1002
		 * Allow local port reuse in TIME_WAIT.
1003
		 */
1004
12
		if (setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
1005
6
		    &on, sizeof(on)) == -1)
1006
			error("setsockopt SO_REUSEADDR: %s", strerror(errno));
1007
1008
6
		debug("Bind to port %s on %s.", strport, ntop);
1009
1010
		/* Bind the socket to the desired port. */
1011
6
		if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1012
			error("Bind to port %s on %s failed: %.200s.",
1013
			    strport, ntop, strerror(errno));
1014
			close(listen_sock);
1015
			continue;
1016
		}
1017
6
		listen_socks[num_listen_socks] = listen_sock;
1018
6
		num_listen_socks++;
1019
1020
		/* Start listening on the port. */
1021
6
		if (listen(listen_sock, SSH_LISTEN_BACKLOG) < 0)
1022
			fatal("listen on [%s]:%s: %.100s",
1023
			    ntop, strport, strerror(errno));
1024
6
		logit("Server listening on %s port %s.", ntop, strport);
1025
6
	}
1026
6
	freeaddrinfo(options.listen_addrs);
1027
1028
6
	if (!num_listen_socks)
1029
		fatal("Cannot bind any address.");
1030
6
}
1031
1032
/*
1033
 * The main TCP accept loop. Note that, for the non-debug case, returns
1034
 * from this function are in a forked subprocess.
1035
 */
1036
static void
1037
server_accept_loop(int *sock_in, int *sock_out, int *newsock, int *config_s)
1038
{
1039
	fd_set *fdset;
1040
	int i, j, ret, maxfd;
1041
	int startups = 0;
1042
12
	int startup_p[2] = { -1 , -1 };
1043
6
	struct sockaddr_storage from;
1044
6
	socklen_t fromlen;
1045
	pid_t pid;
1046
1047
	/* setup fd set for accept */
1048
	fdset = NULL;
1049
	maxfd = 0;
1050
24
	for (i = 0; i < num_listen_socks; i++)
1051
6
		if (listen_socks[i] > maxfd)
1052
6
			maxfd = listen_socks[i];
1053
	/* pipes connected to unauthenticated childs */
1054
6
	startup_pipes = xcalloc(options.max_startups, sizeof(int));
1055
1212
	for (i = 0; i < options.max_startups; i++)
1056
600
		startup_pipes[i] = -1;
1057
1058
	/*
1059
	 * Stay listening for connections until the system crashes or
1060
	 * the daemon is killed with a signal.
1061
	 */
1062
	for (;;) {
1063
22
		if (received_sighup)
1064
			sighup_restart();
1065
22
		free(fdset);
1066
22
		fdset = xcalloc(howmany(maxfd + 1, NFDBITS),
1067
		    sizeof(fd_mask));
1068
1069
88
		for (i = 0; i < num_listen_socks; i++)
1070
22
			FD_SET(listen_socks[i], fdset);
1071
4444
		for (i = 0; i < options.max_startups; i++)
1072
2200
			if (startup_pipes[i] != -1)
1073
11
				FD_SET(startup_pipes[i], fdset);
1074
1075
		/* Wait in select until there is a connection. */
1076
22
		ret = select(maxfd+1, fdset, NULL, NULL, NULL);
1077

33
		if (ret < 0 && errno != EINTR)
1078
			error("select: %.100s", strerror(errno));
1079
22
		if (received_sigterm) {
1080
6
			logit("Received signal %d; terminating.",
1081
6
			    (int) received_sigterm);
1082
6
			close_listen_socks();
1083
6
			if (options.pid_file != NULL)
1084
6
				unlink(options.pid_file);
1085
			exit(received_sigterm == SIGTERM ? 0 : 255);
1086
		}
1087
16
		if (ret < 0)
1088
			continue;
1089
1090
2222
		for (i = 0; i < options.max_startups; i++)
1091

1105
			if (startup_pipes[i] != -1 &&
1092
5
			    FD_ISSET(startup_pipes[i], fdset)) {
1093
				/*
1094
				 * the read end of the pipe is ready
1095
				 * if the child has closed the pipe
1096
				 * after successful authentication
1097
				 * or if the child has died
1098
				 */
1099
5
				close(startup_pipes[i]);
1100
5
				startup_pipes[i] = -1;
1101
5
				startups--;
1102
5
			}
1103
44
		for (i = 0; i < num_listen_socks; i++) {
1104
11
			if (!FD_ISSET(listen_socks[i], fdset))
1105
				continue;
1106
6
			fromlen = sizeof(from);
1107
12
			*newsock = accept(listen_socks[i],
1108
6
			    (struct sockaddr *)&from, &fromlen);
1109
6
			if (*newsock < 0) {
1110
				if (errno != EINTR && errno != EWOULDBLOCK &&
1111
				    errno != ECONNABORTED)
1112
					error("accept: %.100s",
1113
					    strerror(errno));
1114
				if (errno == EMFILE || errno == ENFILE)
1115
					usleep(100 * 1000);
1116
				continue;
1117
			}
1118
6
			if (unset_nonblock(*newsock) == -1) {
1119
				close(*newsock);
1120
				continue;
1121
			}
1122
6
			if (drop_connection(startups) == 1) {
1123
				char *laddr = get_local_ipaddr(*newsock);
1124
				char *raddr = get_peer_ipaddr(*newsock);
1125
1126
				verbose("drop connection #%d from [%s]:%d "
1127
				    "on [%s]:%d past MaxStartups", startups,
1128
				    raddr, get_peer_port(*newsock),
1129
				    laddr, get_local_port(*newsock));
1130
				free(laddr);
1131
				free(raddr);
1132
				close(*newsock);
1133
				continue;
1134
			}
1135
6
			if (pipe(startup_p) == -1) {
1136
				close(*newsock);
1137
				continue;
1138
			}
1139
1140

18
			if (rexec_flag && socketpair(AF_UNIX,
1141
6
			    SOCK_STREAM, 0, config_s) == -1) {
1142
				error("reexec socketpair: %s",
1143
				    strerror(errno));
1144
				close(*newsock);
1145
				close(startup_p[0]);
1146
				close(startup_p[1]);
1147
				continue;
1148
			}
1149
1150
12
			for (j = 0; j < options.max_startups; j++)
1151
6
				if (startup_pipes[j] == -1) {
1152
6
					startup_pipes[j] = startup_p[0];
1153
6
					if (maxfd < startup_p[0])
1154
6
						maxfd = startup_p[0];
1155
6
					startups++;
1156
6
					break;
1157
				}
1158
1159
			/*
1160
			 * Got connection.  Fork a child to handle it, unless
1161
			 * we are in debugging mode.
1162
			 */
1163
6
			if (debug_flag) {
1164
				/*
1165
				 * In debugging mode.  Close the listening
1166
				 * socket, and start processing the
1167
				 * connection without forking.
1168
				 */
1169
				debug("Server will not fork when running in debugging mode.");
1170
				close_listen_socks();
1171
				*sock_in = *newsock;
1172
				*sock_out = *newsock;
1173
				close(startup_p[0]);
1174
				close(startup_p[1]);
1175
				startup_pipe = -1;
1176
				pid = getpid();
1177
				if (rexec_flag) {
1178
					send_rexec_state(config_s[0],
1179
					    &cfg);
1180
					close(config_s[0]);
1181
				}
1182
				break;
1183
			}
1184
1185
			/*
1186
			 * Normal production daemon.  Fork, and have
1187
			 * the child process the connection. The
1188
			 * parent continues listening.
1189
			 */
1190
6
			if ((pid = fork()) == 0) {
1191
				/*
1192
				 * Child.  Close the listening and
1193
				 * max_startup sockets.  Start using
1194
				 * the accepted socket. Reinitialize
1195
				 * logging (since our pid has changed).
1196
				 * We break out of the loop to handle
1197
				 * the connection.
1198
				 */
1199
				startup_pipe = startup_p[1];
1200
				close_startup_pipes();
1201
				close_listen_socks();
1202
				*sock_in = *newsock;
1203
				*sock_out = *newsock;
1204
				log_init(__progname,
1205
				    options.log_level,
1206
				    options.log_facility,
1207
				    log_stderr);
1208
				if (rexec_flag)
1209
					close(config_s[0]);
1210
				break;
1211
			}
1212
1213
			/* Parent.  Stay in the loop. */
1214
6
			if (pid < 0)
1215
				error("fork: %.100s", strerror(errno));
1216
			else
1217
6
				debug("Forked child %ld.", (long)pid);
1218
1219
6
			close(startup_p[1]);
1220
1221
6
			if (rexec_flag) {
1222
6
				send_rexec_state(config_s[0], &cfg);
1223
6
				close(config_s[0]);
1224
6
				close(config_s[1]);
1225
6
			}
1226
6
			close(*newsock);
1227
6
		}
1228
1229
		/* child process check (or debug mode) */
1230
11
		if (num_listen_socks < 0)
1231
			break;
1232
	}
1233
}
1234
1235
/*
1236
 * If IP options are supported, make sure there are none (log and
1237
 * return an error if any are found).  Basically we are worried about
1238
 * source routing; it can be used to pretend you are somebody
1239
 * (ip-address) you are not. That itself may be "almost acceptable"
1240
 * under certain circumstances, but rhosts autentication is useless
1241
 * if source routing is accepted. Notice also that if we just dropped
1242
 * source routing here, the other side could use IP spoofing to do
1243
 * rest of the interaction and could still bypass security.  So we
1244
 * exit here if we detect any IP options.
1245
 */
1246
static void
1247
check_ip_options(struct ssh *ssh)
1248
{
1249
	int sock_in = ssh_packet_get_connection_in(ssh);
1250
	struct sockaddr_storage from;
1251
	u_char opts[200];
1252
	socklen_t i, option_size = sizeof(opts), fromlen = sizeof(from);
1253
	char text[sizeof(opts) * 3 + 1];
1254
1255
	memset(&from, 0, sizeof(from));
1256
	if (getpeername(sock_in, (struct sockaddr *)&from,
1257
	    &fromlen) < 0)
1258
		return;
1259
	if (from.ss_family != AF_INET)
1260
		return;
1261
	/* XXX IPv6 options? */
1262
1263
	if (getsockopt(sock_in, IPPROTO_IP, IP_OPTIONS, opts,
1264
	    &option_size) >= 0 && option_size != 0) {
1265
		text[0] = '\0';
1266
		for (i = 0; i < option_size; i++)
1267
			snprintf(text + i*3, sizeof(text) - i*3,
1268
			    " %2.2x", opts[i]);
1269
		fatal("Connection from %.100s port %d with IP opts: %.800s",
1270
		    ssh_remote_ipaddr(ssh), ssh_remote_port(ssh), text);
1271
	}
1272
	return;
1273
}
1274
1275
/*
1276
 * Main program for the daemon.
1277
 */
1278
int
1279
main(int ac, char **av)
1280
{
1281
	struct ssh *ssh = NULL;
1282
	extern char *optarg;
1283
	extern int optind;
1284
36
	int r, opt, i, j, on = 1, already_daemon;
1285
18
	int sock_in = -1, sock_out = -1, newsock = -1;
1286
	const char *remote_ip;
1287
	int remote_port;
1288
	char *fp, *line, *laddr, *logfile = NULL;
1289
18
	int config_s[2] = { -1 , -1 };
1290
	u_int n;
1291
18
	u_int64_t ibytes, obytes;
1292
	mode_t new_umask;
1293
	struct sshkey *key;
1294
	struct sshkey *pubkey;
1295
	int keytype;
1296
	Authctxt *authctxt;
1297
18
	struct connection_info *connection_info = get_connection_info(0, 0);
1298
1299
18
	ssh_malloc_init();	/* must be called before any mallocs */
1300
	/* Save argv. */
1301
18
	saved_argv = av;
1302
18
	rexec_argc = ac;
1303
1304
	/* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1305
18
	sanitise_stdfd();
1306
1307
	/* Initialize configuration options to their default values. */
1308
18
	initialize_server_options(&options);
1309
1310
	/* Parse command-line arguments. */
1311
126
	while ((opt = getopt(ac, av,
1312
54
	    "C:E:b:c:f:g:h:k:o:p:u:46DQRTdeiqrt")) != -1) {
1313






78
		switch (opt) {
1314
		case '4':
1315
			options.address_family = AF_INET;
1316
			break;
1317
		case '6':
1318
			options.address_family = AF_INET6;
1319
			break;
1320
		case 'f':
1321
18
			config_file_name = optarg;
1322
18
			break;
1323
		case 'c':
1324
			if (options.num_host_cert_files >= MAX_HOSTCERTS) {
1325
				fprintf(stderr, "too many host certificates.\n");
1326
				exit(1);
1327
			}
1328
			options.host_cert_files[options.num_host_cert_files++] =
1329
			   derelativise_path(optarg);
1330
			break;
1331
		case 'd':
1332
			if (debug_flag == 0) {
1333
				debug_flag = 1;
1334
				options.log_level = SYSLOG_LEVEL_DEBUG1;
1335
			} else if (options.log_level < SYSLOG_LEVEL_DEBUG3)
1336
				options.log_level++;
1337
			break;
1338
		case 'D':
1339
			no_daemon_flag = 1;
1340
			break;
1341
		case 'E':
1342
6
			logfile = optarg;
1343
			/* FALLTHROUGH */
1344
		case 'e':
1345
6
			log_stderr = 1;
1346
6
			break;
1347
		case 'i':
1348
			inetd_flag = 1;
1349
			break;
1350
		case 'r':
1351
			rexec_flag = 0;
1352
			break;
1353
		case 'R':
1354
			rexeced_flag = 1;
1355
			inetd_flag = 1;
1356
			break;
1357
		case 'Q':
1358
			/* ignored */
1359
			break;
1360
		case 'q':
1361
			options.log_level = SYSLOG_LEVEL_QUIET;
1362
			break;
1363
		case 'b':
1364
			/* protocol 1, ignored */
1365
			break;
1366
		case 'p':
1367
			options.ports_from_cmdline = 1;
1368
			if (options.num_ports >= MAX_PORTS) {
1369
				fprintf(stderr, "too many ports.\n");
1370
				exit(1);
1371
			}
1372
			options.ports[options.num_ports++] = a2port(optarg);
1373
			if (options.ports[options.num_ports-1] <= 0) {
1374
				fprintf(stderr, "Bad port number.\n");
1375
				exit(1);
1376
			}
1377
			break;
1378
		case 'g':
1379
			if ((options.login_grace_time = convtime(optarg)) == -1) {
1380
				fprintf(stderr, "Invalid login grace time.\n");
1381
				exit(1);
1382
			}
1383
			break;
1384
		case 'k':
1385
			/* protocol 1, ignored */
1386
			break;
1387
		case 'h':
1388
			if (options.num_host_key_files >= MAX_HOSTKEYS) {
1389
				fprintf(stderr, "too many host keys.\n");
1390
				exit(1);
1391
			}
1392
			options.host_key_files[options.num_host_key_files++] =
1393
			   derelativise_path(optarg);
1394
			break;
1395
		case 't':
1396
12
			test_flag = 1;
1397
12
			break;
1398
		case 'T':
1399
			test_flag = 2;
1400
			break;
1401
		case 'C':
1402
			if (parse_server_match_testspec(connection_info,
1403
			    optarg) == -1)
1404
				exit(1);
1405
			break;
1406
		case 'u':
1407
			utmp_len = (u_int)strtonum(optarg, 0, HOST_NAME_MAX+1+1, NULL);
1408
			if (utmp_len > HOST_NAME_MAX+1) {
1409
				fprintf(stderr, "Invalid utmp length.\n");
1410
				exit(1);
1411
			}
1412
			break;
1413
		case 'o':
1414
			line = xstrdup(optarg);
1415
			if (process_server_config_line(&options, line,
1416
			    "command-line", 0, NULL, NULL) != 0)
1417
				exit(1);
1418
			free(line);
1419
			break;
1420
		case '?':
1421
		default:
1422
			usage();
1423
			break;
1424
		}
1425
	}
1426
18
	if (rexeced_flag || inetd_flag)
1427
		rexec_flag = 0;
1428

30
	if (!test_flag && (rexec_flag && (av[0] == NULL || *av[0] != '/')))
1429
		fatal("sshd re-exec requires execution with an absolute path");
1430
18
	if (rexeced_flag)
1431
		closefrom(REEXEC_MIN_FREE_FD);
1432
	else
1433
18
		closefrom(REEXEC_DEVCRYPTO_RESERVED_FD);
1434
1435
#ifdef WITH_OPENSSL
1436
18
	OpenSSL_add_all_algorithms();
1437
#endif
1438
1439
	/* If requested, redirect the logs to the specified logfile. */
1440
18
	if (logfile != NULL)
1441
6
		log_redirect_stderr_to(logfile);
1442
	/*
1443
	 * Force logging to stderr until we have loaded the private host
1444
	 * key (unless started from inetd)
1445
	 */
1446
36
	log_init(__progname,
1447
18
	    options.log_level == SYSLOG_LEVEL_NOT_SET ?
1448
	    SYSLOG_LEVEL_INFO : options.log_level,
1449
18
	    options.log_facility == SYSLOG_FACILITY_NOT_SET ?
1450
	    SYSLOG_FACILITY_AUTH : options.log_facility,
1451
48
	    log_stderr || !inetd_flag);
1452
1453
18
	sensitive_data.have_ssh2_key = 0;
1454
1455
	/*
1456
	 * If we're doing an extended config test, make sure we have all of
1457
	 * the parameters we need.  If we're not doing an extended test,
1458
	 * do not silently ignore connection test params.
1459
	 */
1460

18
	if (test_flag >= 2 && server_match_spec_complete(connection_info) == 0)
1461
		fatal("user, host and addr are all required when testing "
1462
		   "Match configs");
1463

36
	if (test_flag < 2 && server_match_spec_complete(connection_info) >= 0)
1464
		fatal("Config test connection parameter (-C) provided without "
1465
		   "test mode (-T)");
1466
1467
	/* Fetch our configuration */
1468
18
	buffer_init(&cfg);
1469
18
	if (rexeced_flag)
1470
		recv_rexec_state(REEXEC_CONFIG_PASS_FD, &cfg);
1471
18
	else if (strcasecmp(config_file_name, "none") != 0)
1472
18
		load_server_config(config_file_name, &cfg);
1473
1474
18
	parse_server_config(&options, rexeced_flag ? "rexec" : config_file_name,
1475
	    &cfg, NULL);
1476
1477
	/* Fill in default values for those options not explicitly set. */
1478
18
	fill_default_server_options(&options);
1479
1480
	/* challenge-response is implemented via keyboard interactive */
1481
18
	if (options.challenge_response_authentication)
1482
18
		options.kbd_interactive_authentication = 1;
1483
1484
	/* Check that options are sensible */
1485

36
	if (options.authorized_keys_command_user == NULL &&
1486
18
	    (options.authorized_keys_command != NULL &&
1487
	    strcasecmp(options.authorized_keys_command, "none") != 0))
1488
		fatal("AuthorizedKeysCommand set without "
1489
		    "AuthorizedKeysCommandUser");
1490

36
	if (options.authorized_principals_command_user == NULL &&
1491
18
	    (options.authorized_principals_command != NULL &&
1492
	    strcasecmp(options.authorized_principals_command, "none") != 0))
1493
		fatal("AuthorizedPrincipalsCommand set without "
1494
		    "AuthorizedPrincipalsCommandUser");
1495
1496
	/*
1497
	 * Check whether there is any path through configured auth methods.
1498
	 * Unfortunately it is not possible to verify this generally before
1499
	 * daemonisation in the presence of Match block, but this catches
1500
	 * and warns for trivial misconfigurations that could break login.
1501
	 */
1502
18
	if (options.num_auth_methods != 0) {
1503
		for (n = 0; n < options.num_auth_methods; n++) {
1504
			if (auth2_methods_valid(options.auth_methods[n],
1505
			    1) == 0)
1506
				break;
1507
		}
1508
		if (n >= options.num_auth_methods)
1509
			fatal("AuthenticationMethods cannot be satisfied by "
1510
			    "enabled authentication methods");
1511
	}
1512
1513
	/* Check that there are no remaining arguments. */
1514
18
	if (optind < ac) {
1515
		fprintf(stderr, "Extra argument %s.\n", av[optind]);
1516
		exit(1);
1517
	}
1518
1519
18
	debug("sshd version %s, %s", SSH_VERSION,
1520
#ifdef WITH_OPENSSL
1521
18
	    SSLeay_version(SSLEAY_VERSION)
1522
#else
1523
	    "without OpenSSL"
1524
#endif
1525
	);
1526
1527
	/* load host keys */
1528
18
	sensitive_data.host_keys = xcalloc(options.num_host_key_files,
1529
	    sizeof(struct sshkey *));
1530
18
	sensitive_data.host_pubkeys = xcalloc(options.num_host_key_files,
1531
	    sizeof(struct sshkey *));
1532
1533
18
	if (options.host_key_agent) {
1534
		if (strcmp(options.host_key_agent, SSH_AUTHSOCKET_ENV_NAME))
1535
			setenv(SSH_AUTHSOCKET_ENV_NAME,
1536
			    options.host_key_agent, 1);
1537
		if ((r = ssh_get_authentication_socket(NULL)) == 0)
1538
			have_agent = 1;
1539
		else
1540
			error("Could not connect to agent \"%s\": %s",
1541
			    options.host_key_agent, ssh_err(r));
1542
	}
1543
1544
108
	for (i = 0; i < options.num_host_key_files; i++) {
1545
36
		if (options.host_key_files[i] == NULL)
1546
			continue;
1547
36
		key = key_load_private(options.host_key_files[i], "", NULL);
1548
36
		pubkey = key_load_public(options.host_key_files[i], NULL);
1549
1550
36
		if (pubkey == NULL && key != NULL)
1551
24
			pubkey = key_demote(key);
1552
36
		sensitive_data.host_keys[i] = key;
1553
36
		sensitive_data.host_pubkeys[i] = pubkey;
1554
1555
36
		if (key == NULL && pubkey != NULL && have_agent) {
1556
			debug("will rely on agent for hostkey %s",
1557
			    options.host_key_files[i]);
1558
			keytype = pubkey->type;
1559
36
		} else if (key != NULL) {
1560
36
			keytype = key->type;
1561
		} else {
1562
			error("Could not load host key: %s",
1563
			    options.host_key_files[i]);
1564
			sensitive_data.host_keys[i] = NULL;
1565
			sensitive_data.host_pubkeys[i] = NULL;
1566
			continue;
1567
		}
1568
1569
36
		switch (keytype) {
1570
		case KEY_RSA:
1571
		case KEY_DSA:
1572
		case KEY_ECDSA:
1573
		case KEY_ED25519:
1574
36
			if (have_agent || key != NULL)
1575
36
				sensitive_data.have_ssh2_key = 1;
1576
			break;
1577
		}
1578
72
		if ((fp = sshkey_fingerprint(pubkey, options.fingerprint_hash,
1579
36
		    SSH_FP_DEFAULT)) == NULL)
1580
			fatal("sshkey_fingerprint failed");
1581
36
		debug("%s host key #%d: %s %s",
1582
36
		    key ? "private" : "agent", i, sshkey_ssh_name(pubkey), fp);
1583
36
		free(fp);
1584
36
	}
1585
18
	if (!sensitive_data.have_ssh2_key) {
1586
		logit("sshd: no hostkeys available -- exiting.");
1587
		exit(1);
1588
	}
1589
1590
	/*
1591
	 * Load certificates. They are stored in an array at identical
1592
	 * indices to the public keys that they relate to.
1593
	 */
1594
18
	sensitive_data.host_certificates = xcalloc(options.num_host_key_files,
1595
	    sizeof(struct sshkey *));
1596
108
	for (i = 0; i < options.num_host_key_files; i++)
1597
36
		sensitive_data.host_certificates[i] = NULL;
1598
1599
36
	for (i = 0; i < options.num_host_cert_files; i++) {
1600
		if (options.host_cert_files[i] == NULL)
1601
			continue;
1602
		key = key_load_public(options.host_cert_files[i], NULL);
1603
		if (key == NULL) {
1604
			error("Could not load host certificate: %s",
1605
			    options.host_cert_files[i]);
1606
			continue;
1607
		}
1608
		if (!key_is_cert(key)) {
1609
			error("Certificate file is not a certificate: %s",
1610
			    options.host_cert_files[i]);
1611
			key_free(key);
1612
			continue;
1613
		}
1614
		/* Find matching private key */
1615
		for (j = 0; j < options.num_host_key_files; j++) {
1616
			if (key_equal_public(key,
1617
			    sensitive_data.host_keys[j])) {
1618
				sensitive_data.host_certificates[j] = key;
1619
				break;
1620
			}
1621
		}
1622
		if (j >= options.num_host_key_files) {
1623
			error("No matching private key for certificate: %s",
1624
			    options.host_cert_files[i]);
1625
			key_free(key);
1626
			continue;
1627
		}
1628
		sensitive_data.host_certificates[j] = key;
1629
		debug("host certificate: #%d type %d %s", j, key->type,
1630
		    key_type(key));
1631
	}
1632
1633
18
	if (use_privsep) {
1634
18
		struct stat st;
1635
1636
18
		if (getpwnam(SSH_PRIVSEP_USER) == NULL)
1637
			fatal("Privilege separation user %s does not exist",
1638
			    SSH_PRIVSEP_USER);
1639

36
		if ((stat(_PATH_PRIVSEP_CHROOT_DIR, &st) == -1) ||
1640
18
		    (S_ISDIR(st.st_mode) == 0))
1641
			fatal("Missing privilege separation directory: %s",
1642
			    _PATH_PRIVSEP_CHROOT_DIR);
1643

36
		if (st.st_uid != 0 || (st.st_mode & (S_IWGRP|S_IWOTH)) != 0)
1644
			fatal("%s must be owned by root and not group or "
1645
			    "world-writable.", _PATH_PRIVSEP_CHROOT_DIR);
1646
18
	}
1647
1648
18
	if (test_flag > 1) {
1649
		if (server_match_spec_complete(connection_info) == 1)
1650
			parse_server_match_config(&options, connection_info);
1651
		dump_config(&options);
1652
	}
1653
1654
	/* Configuration looks good, so exit if in test mode. */
1655
18
	if (test_flag)
1656
		exit(0);
1657
1658
6
	if (rexec_flag) {
1659
6
		rexec_argv = xcalloc(rexec_argc + 2, sizeof(char *));
1660
60
		for (i = 0; i < rexec_argc; i++) {
1661
24
			debug("rexec_argv[%d]='%s'", i, saved_argv[i]);
1662
24
			rexec_argv[i] = saved_argv[i];
1663
		}
1664
6
		rexec_argv[rexec_argc] = "-R";
1665
6
		rexec_argv[rexec_argc + 1] = NULL;
1666
6
	}
1667
1668
	/* Ensure that umask disallows at least group and world write */
1669
6
	new_umask = umask(0077) | 0022;
1670
6
	(void) umask(new_umask);
1671
1672
	/* Initialize the log (it is reinitialized below in case we forked). */
1673

6
	if (debug_flag && (!inetd_flag || rexeced_flag))
1674
		log_stderr = 1;
1675
6
	log_init(__progname, options.log_level, options.log_facility, log_stderr);
1676
1677
	/*
1678
	 * If not in debugging mode, not started from inetd and not already
1679
	 * daemonized (eg re-exec via SIGHUP), disconnect from the controlling
1680
	 * terminal, and fork.  The original process exits.
1681
	 */
1682
6
	already_daemon = daemonized();
1683
6
	if (!(debug_flag || inetd_flag || no_daemon_flag || already_daemon)) {
1684
1685
6
		if (daemon(0, 0) < 0)
1686
			fatal("daemon() failed: %.200s", strerror(errno));
1687
1688
6
		disconnect_controlling_tty();
1689
6
	}
1690
	/* Reinitialize the log (because of the fork above). */
1691
6
	log_init(__progname, options.log_level, options.log_facility, log_stderr);
1692
1693
	/* Chdir to the root directory so that the current disk can be
1694
	   unmounted if desired. */
1695
6
	if (chdir("/") == -1)
1696
		error("chdir(\"/\"): %s", strerror(errno));
1697
1698
	/* ignore SIGPIPE */
1699
6
	signal(SIGPIPE, SIG_IGN);
1700
1701
	/* Get a connection, either from inetd or a listening TCP socket */
1702
6
	if (inetd_flag) {
1703
		server_accept_inetd(&sock_in, &sock_out);
1704
	} else {
1705
6
		server_listen();
1706
1707
6
		signal(SIGHUP, sighup_handler);
1708
6
		signal(SIGCHLD, main_sigchld_handler);
1709
6
		signal(SIGTERM, sigterm_handler);
1710
6
		signal(SIGQUIT, sigterm_handler);
1711
1712
		/*
1713
		 * Write out the pid file after the sigterm handler
1714
		 * is setup and the listen sockets are bound
1715
		 */
1716
6
		if (options.pid_file != NULL && !debug_flag) {
1717
6
			FILE *f = fopen(options.pid_file, "w");
1718
1719
6
			if (f == NULL) {
1720
				error("Couldn't create pid file \"%s\": %s",
1721
				    options.pid_file, strerror(errno));
1722
			} else {
1723
6
				fprintf(f, "%ld\n", (long) getpid());
1724
6
				fclose(f);
1725
			}
1726
6
		}
1727
1728
		/* Accept a connection and return in a forked child */
1729
6
		server_accept_loop(&sock_in, &sock_out,
1730
6
		    &newsock, config_s);
1731
	}
1732
1733
	/* This is the child processing a new connection. */
1734
	setproctitle("%s", "[accepted]");
1735
1736
	/*
1737
	 * Create a new session and process group since the 4.4BSD
1738
	 * setlogin() affects the entire process group.  We don't
1739
	 * want the child to be able to affect the parent.
1740
	 */
1741
	if (!debug_flag && !inetd_flag && setsid() < 0)
1742
		error("setsid: %.100s", strerror(errno));
1743
1744
	if (rexec_flag) {
1745
		int fd;
1746
1747
		debug("rexec start in %d out %d newsock %d pipe %d sock %d",
1748
		    sock_in, sock_out, newsock, startup_pipe, config_s[0]);
1749
		dup2(newsock, STDIN_FILENO);
1750
		dup2(STDIN_FILENO, STDOUT_FILENO);
1751
		if (startup_pipe == -1)
1752
			close(REEXEC_STARTUP_PIPE_FD);
1753
		else if (startup_pipe != REEXEC_STARTUP_PIPE_FD) {
1754
			dup2(startup_pipe, REEXEC_STARTUP_PIPE_FD);
1755
			close(startup_pipe);
1756
			startup_pipe = REEXEC_STARTUP_PIPE_FD;
1757
		}
1758
1759
		dup2(config_s[1], REEXEC_CONFIG_PASS_FD);
1760
		close(config_s[1]);
1761
1762
		execv(rexec_argv[0], rexec_argv);
1763
1764
		/* Reexec has failed, fall back and continue */
1765
		error("rexec of %s failed: %s", rexec_argv[0], strerror(errno));
1766
		recv_rexec_state(REEXEC_CONFIG_PASS_FD, NULL);
1767
		log_init(__progname, options.log_level,
1768
		    options.log_facility, log_stderr);
1769
1770
		/* Clean up fds */
1771
		close(REEXEC_CONFIG_PASS_FD);
1772
		newsock = sock_out = sock_in = dup(STDIN_FILENO);
1773
		if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
1774
			dup2(fd, STDIN_FILENO);
1775
			dup2(fd, STDOUT_FILENO);
1776
			if (fd > STDERR_FILENO)
1777
				close(fd);
1778
		}
1779
		debug("rexec cleanup in %d out %d newsock %d pipe %d sock %d",
1780
		    sock_in, sock_out, newsock, startup_pipe, config_s[0]);
1781
	}
1782
1783
	/* Executed child processes don't need these. */
1784
	fcntl(sock_out, F_SETFD, FD_CLOEXEC);
1785
	fcntl(sock_in, F_SETFD, FD_CLOEXEC);
1786
1787
	/*
1788
	 * Disable the key regeneration alarm.  We will not regenerate the
1789
	 * key since we are no longer in a position to give it to anyone. We
1790
	 * will not restart on SIGHUP since it no longer makes sense.
1791
	 */
1792
	alarm(0);
1793
	signal(SIGALRM, SIG_DFL);
1794
	signal(SIGHUP, SIG_DFL);
1795
	signal(SIGTERM, SIG_DFL);
1796
	signal(SIGQUIT, SIG_DFL);
1797
	signal(SIGCHLD, SIG_DFL);
1798
1799
	/*
1800
	 * Register our connection.  This turns encryption off because we do
1801
	 * not have a key.
1802
	 */
1803
	packet_set_connection(sock_in, sock_out);
1804
	packet_set_server();
1805
	ssh = active_state; /* XXX */
1806
1807
	check_ip_options(ssh);
1808
1809
	/* Prepare the channels layer */
1810
	channel_init_channels(ssh);
1811
	channel_set_af(ssh, options.address_family);
1812
	process_permitopen(ssh, &options);
1813
1814
	/* Set SO_KEEPALIVE if requested. */
1815
	if (options.tcp_keep_alive && packet_connection_is_on_socket() &&
1816
	    setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, &on, sizeof(on)) < 0)
1817
		error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
1818
1819
	if ((remote_port = ssh_remote_port(ssh)) < 0) {
1820
		debug("ssh_remote_port failed");
1821
		cleanup_exit(255);
1822
	}
1823
1824
	/*
1825
	 * The rest of the code depends on the fact that
1826
	 * ssh_remote_ipaddr() caches the remote ip, even if
1827
	 * the socket goes away.
1828
	 */
1829
	remote_ip = ssh_remote_ipaddr(ssh);
1830
1831
	/* Log the connection. */
1832
	laddr = get_local_ipaddr(sock_in);
1833
	verbose("Connection from %s port %d on %s port %d",
1834
	    remote_ip, remote_port, laddr,  ssh_local_port(ssh));
1835
	free(laddr);
1836
1837
	/*
1838
	 * We don't want to listen forever unless the other side
1839
	 * successfully authenticates itself.  So we set up an alarm which is
1840
	 * cleared after successful authentication.  A limit of zero
1841
	 * indicates no limit. Note that we don't set the alarm in debugging
1842
	 * mode; it is just annoying to have the server exit just when you
1843
	 * are about to discover the bug.
1844
	 */
1845
	signal(SIGALRM, grace_alarm_handler);
1846
	if (!debug_flag)
1847
		alarm(options.login_grace_time);
1848
1849
	sshd_exchange_identification(ssh, sock_in, sock_out);
1850
	packet_set_nonblocking();
1851
1852
	/* allocate authentication context */
1853
	authctxt = xcalloc(1, sizeof(*authctxt));
1854
1855
	/* XXX global for cleanup, access from other modules */
1856
	the_authctxt = authctxt;
1857
1858
	/* prepare buffer to collect messages to display to user after login */
1859
	buffer_init(&loginmsg);
1860
	auth_debug_reset();
1861
1862
	if (use_privsep) {
1863
		if (privsep_preauth(authctxt) == 1)
1864
			goto authenticated;
1865
	} else if (have_agent) {
1866
		if ((r = ssh_get_authentication_socket(&auth_sock)) != 0) {
1867
			error("Unable to get agent socket: %s", ssh_err(r));
1868
			have_agent = 0;
1869
		}
1870
	}
1871
1872
	/* perform the key exchange */
1873
	/* authenticate user and start session */
1874
	do_ssh2_kex();
1875
	do_authentication2(authctxt);
1876
1877
	/*
1878
	 * If we use privilege separation, the unprivileged child transfers
1879
	 * the current keystate and exits
1880
	 */
1881
	if (use_privsep) {
1882
		mm_send_keystate(pmonitor);
1883
		packet_clear_keys();
1884
		exit(0);
1885
	}
1886
1887
 authenticated:
1888
	/*
1889
	 * Cancel the alarm we set to limit the time taken for
1890
	 * authentication.
1891
	 */
1892
	alarm(0);
1893
	signal(SIGALRM, SIG_DFL);
1894
	authctxt->authenticated = 1;
1895
	if (startup_pipe != -1) {
1896
		close(startup_pipe);
1897
		startup_pipe = -1;
1898
	}
1899
1900
	/*
1901
	 * In privilege separation, we fork another child and prepare
1902
	 * file descriptor passing.
1903
	 */
1904
	if (use_privsep) {
1905
		privsep_postauth(authctxt);
1906
		/* the monitor process [priv] will not return */
1907
	}
1908
1909
	packet_set_timeout(options.client_alive_interval,
1910
	    options.client_alive_count_max);
1911
1912
	/* Try to send all our hostkeys to the client */
1913
	notify_hostkeys(ssh);
1914
1915
	/* Start session. */
1916
	do_authenticated(ssh, authctxt);
1917
1918
	/* The connection has been terminated. */
1919
	packet_get_bytes(&ibytes, &obytes);
1920
	verbose("Transferred: sent %llu, received %llu bytes",
1921
	    (unsigned long long)obytes, (unsigned long long)ibytes);
1922
1923
	verbose("Closing connection to %.500s port %d", remote_ip, remote_port);
1924
	packet_close();
1925
1926
	if (use_privsep)
1927
		mm_terminate();
1928
1929
	exit(0);
1930
}
1931
1932
int
1933
sshd_hostkey_sign(struct sshkey *privkey, struct sshkey *pubkey,
1934
    u_char **signature, size_t *slen, const u_char *data, size_t dlen,
1935
    const char *alg, u_int flag)
1936
{
1937
	int r;
1938
	u_int xxx_slen, xxx_dlen = dlen;
1939
1940
	if (privkey) {
1941
		if (PRIVSEP(key_sign(privkey, signature, &xxx_slen, data, xxx_dlen,
1942
		    alg) < 0))
1943
			fatal("%s: key_sign failed", __func__);
1944
		if (slen)
1945
			*slen = xxx_slen;
1946
	} else if (use_privsep) {
1947
		if (mm_key_sign(pubkey, signature, &xxx_slen, data, xxx_dlen,
1948
		    alg) < 0)
1949
			fatal("%s: pubkey_sign failed", __func__);
1950
		if (slen)
1951
			*slen = xxx_slen;
1952
	} else {
1953
		if ((r = ssh_agent_sign(auth_sock, pubkey, signature, slen,
1954
		    data, dlen, alg, datafellows)) != 0)
1955
			fatal("%s: ssh_agent_sign failed: %s",
1956
			    __func__, ssh_err(r));
1957
	}
1958
	return 0;
1959
}
1960
1961
/* SSH2 key exchange */
1962
static void
1963
do_ssh2_kex(void)
1964
{
1965
	char *myproposal[PROPOSAL_MAX] = { KEX_SERVER };
1966
	struct kex *kex;
1967
	int r;
1968
1969
	myproposal[PROPOSAL_KEX_ALGS] = compat_kex_proposal(
1970
	    options.kex_algorithms);
1971
	myproposal[PROPOSAL_ENC_ALGS_CTOS] = compat_cipher_proposal(
1972
	    options.ciphers);
1973
	myproposal[PROPOSAL_ENC_ALGS_STOC] = compat_cipher_proposal(
1974
	    options.ciphers);
1975
	myproposal[PROPOSAL_MAC_ALGS_CTOS] =
1976
	    myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
1977
1978
	if (options.compression == COMP_NONE) {
1979
		myproposal[PROPOSAL_COMP_ALGS_CTOS] =
1980
		    myproposal[PROPOSAL_COMP_ALGS_STOC] = "none";
1981
	}
1982
1983
	if (options.rekey_limit || options.rekey_interval)
1984
		packet_set_rekey_limits(options.rekey_limit,
1985
		    options.rekey_interval);
1986
1987
	myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = compat_pkalg_proposal(
1988
	    list_hostkey_types());
1989
1990
	/* start key exchange */
1991
	if ((r = kex_setup(active_state, myproposal)) != 0)
1992
		fatal("kex_setup: %s", ssh_err(r));
1993
	kex = active_state->kex;
1994
#ifdef WITH_OPENSSL
1995
	kex->kex[KEX_DH_GRP1_SHA1] = kexdh_server;
1996
	kex->kex[KEX_DH_GRP14_SHA1] = kexdh_server;
1997
	kex->kex[KEX_DH_GRP14_SHA256] = kexdh_server;
1998
	kex->kex[KEX_DH_GRP16_SHA512] = kexdh_server;
1999
	kex->kex[KEX_DH_GRP18_SHA512] = kexdh_server;
2000
	kex->kex[KEX_DH_GEX_SHA1] = kexgex_server;
2001
	kex->kex[KEX_DH_GEX_SHA256] = kexgex_server;
2002
	kex->kex[KEX_ECDH_SHA2] = kexecdh_server;
2003
#endif
2004
	kex->kex[KEX_C25519_SHA256] = kexc25519_server;
2005
	kex->server = 1;
2006
	kex->client_version_string=client_version_string;
2007
	kex->server_version_string=server_version_string;
2008
	kex->load_host_public_key=&get_hostkey_public_by_type;
2009
	kex->load_host_private_key=&get_hostkey_private_by_type;
2010
	kex->host_key_index=&get_hostkey_index;
2011
	kex->sign = sshd_hostkey_sign;
2012
2013
	ssh_dispatch_run_fatal(active_state, DISPATCH_BLOCK, &kex->done);
2014
2015
	session_id2 = kex->session_id;
2016
	session_id2_len = kex->session_id_len;
2017
2018
#ifdef DEBUG_KEXDH
2019
	/* send 1st encrypted/maced/compressed message */
2020
	packet_start(SSH2_MSG_IGNORE);
2021
	packet_put_cstring("markus");
2022
	packet_send();
2023
	packet_write_wait();
2024
#endif
2025
	debug("KEX done");
2026
}
2027
2028
/* server specific fatal cleanup */
2029
void
2030
cleanup_exit(int i)
2031
{
2032
	struct ssh *ssh = active_state; /* XXX */
2033
2034
	if (the_authctxt) {
2035
		do_cleanup(ssh, the_authctxt);
2036
		if (use_privsep && privsep_is_preauth &&
2037
		    pmonitor != NULL && pmonitor->m_pid > 1) {
2038
			debug("Killing privsep child %d", pmonitor->m_pid);
2039
			if (kill(pmonitor->m_pid, SIGKILL) != 0 &&
2040
			    errno != ESRCH)
2041
				error("%s: kill(%d): %s", __func__,
2042
				    pmonitor->m_pid, strerror(errno));
2043
		}
2044
	}
2045
	_exit(i);
2046
}