xref: /freebsd/crypto/openssh/sshd.c (revision 77b7cdf1999ee965ad494fddd184b18f532ac91a)
1 /*
2  * Author: Tatu Ylonen <ylo@cs.hut.fi>
3  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4  *                    All rights reserved
5  * This program is the ssh daemon.  It listens for connections from clients,
6  * and performs authentication, executes use commands or shell, and forwards
7  * information to/from the application to the user client over an encrypted
8  * connection.  This can also handle forwarding of X11, TCP/IP, and
9  * authentication agent connections.
10  *
11  * As far as I am concerned, the code I have written for this software
12  * can be used freely for any purpose.  Any derived versions of this
13  * software must be clearly marked as such, and if the derived work is
14  * incompatible with the protocol description in the RFC file, it must be
15  * called by a name other than "ssh" or "Secure Shell".
16  *
17  * SSH2 implementation:
18  * Privilege Separation:
19  *
20  * Copyright (c) 2000, 2001, 2002 Markus Friedl.  All rights reserved.
21  * Copyright (c) 2002 Niels Provos.  All rights reserved.
22  *
23  * Redistribution and use in source and binary forms, with or without
24  * modification, are permitted provided that the following conditions
25  * are met:
26  * 1. Redistributions of source code must retain the above copyright
27  *    notice, this list of conditions and the following disclaimer.
28  * 2. Redistributions in binary form must reproduce the above copyright
29  *    notice, this list of conditions and the following disclaimer in the
30  *    documentation and/or other materials provided with the distribution.
31  *
32  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
33  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
34  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
35  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
36  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
37  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
38  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
39  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
40  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
41  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
42  */
43 
44 #include "includes.h"
45 RCSID("$OpenBSD: sshd.c,v 1.263 2003/02/16 17:09:57 markus Exp $");
46 RCSID("$FreeBSD$");
47 
48 #include <openssl/dh.h>
49 #include <openssl/bn.h>
50 #include <openssl/md5.h>
51 #include <openssl/rand.h>
52 #ifdef HAVE_SECUREWARE
53 #include <sys/security.h>
54 #include <prot.h>
55 #endif
56 
57 #ifdef __FreeBSD__
58 #include <resolv.h>
59 #endif
60 
61 #include "ssh.h"
62 #include "ssh1.h"
63 #include "ssh2.h"
64 #include "xmalloc.h"
65 #include "rsa.h"
66 #include "sshpty.h"
67 #include "packet.h"
68 #include "mpaux.h"
69 #include "log.h"
70 #include "servconf.h"
71 #include "uidswap.h"
72 #include "compat.h"
73 #include "buffer.h"
74 #include "cipher.h"
75 #include "kex.h"
76 #include "key.h"
77 #include "dh.h"
78 #include "myproposal.h"
79 #include "authfile.h"
80 #include "pathnames.h"
81 #include "atomicio.h"
82 #include "canohost.h"
83 #include "auth.h"
84 #include "misc.h"
85 #include "dispatch.h"
86 #include "channels.h"
87 #include "session.h"
88 #include "monitor_mm.h"
89 #include "monitor.h"
90 #include "monitor_wrap.h"
91 #include "monitor_fdpass.h"
92 
93 #ifdef LIBWRAP
94 #include <tcpd.h>
95 #include <syslog.h>
96 int allow_severity = LOG_INFO;
97 int deny_severity = LOG_WARNING;
98 #endif /* LIBWRAP */
99 
100 #ifndef O_NOCTTY
101 #define O_NOCTTY	0
102 #endif
103 
104 #ifdef HAVE___PROGNAME
105 extern char *__progname;
106 #else
107 char *__progname;
108 #endif
109 
110 /* Server configuration options. */
111 ServerOptions options;
112 
113 /* Name of the server configuration file. */
114 char *config_file_name = _PATH_SERVER_CONFIG_FILE;
115 
116 /*
117  * Flag indicating whether IPv4 or IPv6.  This can be set on the command line.
118  * Default value is AF_UNSPEC means both IPv4 and IPv6.
119  */
120 #ifdef IPV4_DEFAULT
121 int IPv4or6 = AF_INET;
122 #else
123 int IPv4or6 = AF_UNSPEC;
124 #endif
125 
126 /*
127  * Debug mode flag.  This can be set on the command line.  If debug
128  * mode is enabled, extra debugging output will be sent to the system
129  * log, the daemon will not go to background, and will exit after processing
130  * the first connection.
131  */
132 int debug_flag = 0;
133 
134 /* Flag indicating that the daemon should only test the configuration and keys. */
135 int test_flag = 0;
136 
137 /* Flag indicating that the daemon is being started from inetd. */
138 int inetd_flag = 0;
139 
140 /* Flag indicating that sshd should not detach and become a daemon. */
141 int no_daemon_flag = 0;
142 
143 /* debug goes to stderr unless inetd_flag is set */
144 int log_stderr = 0;
145 
146 /* Saved arguments to main(). */
147 char **saved_argv;
148 int saved_argc;
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 /* for rekeying XXX fixme */
166 Kex *xxx_kex;
167 
168 /*
169  * Any really sensitive data in the application is contained in this
170  * structure. The idea is that this structure could be locked into memory so
171  * that the pages do not get written into swap.  However, there are some
172  * problems. The private key contains BIGNUMs, and we do not (in principle)
173  * have access to the internals of them, and locking just the structure is
174  * not very useful.  Currently, memory locking is not implemented.
175  */
176 struct {
177 	Key	*server_key;		/* ephemeral server key */
178 	Key	*ssh1_host_key;		/* ssh1 host key */
179 	Key	**host_keys;		/* all private host keys */
180 	int	have_ssh1_key;
181 	int	have_ssh2_key;
182 	u_char	ssh1_cookie[SSH_SESSION_KEY_LENGTH];
183 } sensitive_data;
184 
185 /*
186  * Flag indicating whether the RSA server key needs to be regenerated.
187  * Is set in the SIGALRM handler and cleared when the key is regenerated.
188  */
189 static volatile sig_atomic_t key_do_regen = 0;
190 
191 /* This is set to true when a signal is received. */
192 static volatile sig_atomic_t received_sighup = 0;
193 static volatile sig_atomic_t received_sigterm = 0;
194 
195 /* session identifier, used by RSA-auth */
196 u_char session_id[16];
197 
198 /* same for ssh2 */
199 u_char *session_id2 = NULL;
200 int session_id2_len = 0;
201 
202 /* record remote hostname or ip */
203 u_int utmp_len = MAXHOSTNAMELEN;
204 
205 /* options.max_startup sized array of fd ints */
206 int *startup_pipes = NULL;
207 int startup_pipe;		/* in child */
208 
209 /* variables used for privilege separation */
210 int use_privsep;
211 struct monitor *pmonitor;
212 
213 /* Prototypes for various functions defined later in this file. */
214 void destroy_sensitive_data(void);
215 void demote_sensitive_data(void);
216 
217 static void do_ssh1_kex(void);
218 static void do_ssh2_kex(void);
219 
220 /*
221  * Close all listening sockets
222  */
223 static void
224 close_listen_socks(void)
225 {
226 	int i;
227 
228 	for (i = 0; i < num_listen_socks; i++)
229 		close(listen_socks[i]);
230 	num_listen_socks = -1;
231 }
232 
233 static void
234 close_startup_pipes(void)
235 {
236 	int i;
237 
238 	if (startup_pipes)
239 		for (i = 0; i < options.max_startups; i++)
240 			if (startup_pipes[i] != -1)
241 				close(startup_pipes[i]);
242 }
243 
244 /*
245  * Signal handler for SIGHUP.  Sshd execs itself when it receives SIGHUP;
246  * the effect is to reread the configuration file (and to regenerate
247  * the server key).
248  */
249 static void
250 sighup_handler(int sig)
251 {
252 	int save_errno = errno;
253 
254 	received_sighup = 1;
255 	signal(SIGHUP, sighup_handler);
256 	errno = save_errno;
257 }
258 
259 /*
260  * Called from the main program after receiving SIGHUP.
261  * Restarts the server.
262  */
263 static void
264 sighup_restart(void)
265 {
266 	log("Received SIGHUP; restarting.");
267 	close_listen_socks();
268 	close_startup_pipes();
269 	execv(saved_argv[0], saved_argv);
270 	log("RESTART FAILED: av[0]='%.100s', error: %.100s.", saved_argv[0],
271 	    strerror(errno));
272 	exit(1);
273 }
274 
275 /*
276  * Generic signal handler for terminating signals in the master daemon.
277  */
278 static void
279 sigterm_handler(int sig)
280 {
281 	received_sigterm = sig;
282 }
283 
284 /*
285  * SIGCHLD handler.  This is called whenever a child dies.  This will then
286  * reap any zombies left by exited children.
287  */
288 static void
289 main_sigchld_handler(int sig)
290 {
291 	int save_errno = errno;
292 	pid_t pid;
293 	int status;
294 
295 	while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
296 	    (pid < 0 && errno == EINTR))
297 		;
298 
299 	signal(SIGCHLD, main_sigchld_handler);
300 	errno = save_errno;
301 }
302 
303 /*
304  * Signal handler for the alarm after the login grace period has expired.
305  */
306 static void
307 grace_alarm_handler(int sig)
308 {
309 	/* XXX no idea how fix this signal handler */
310 
311 	/* Log error and exit. */
312 	fatal("Timeout before authentication for %s", get_remote_ipaddr());
313 }
314 
315 /*
316  * Signal handler for the key regeneration alarm.  Note that this
317  * alarm only occurs in the daemon waiting for connections, and it does not
318  * do anything with the private key or random state before forking.
319  * Thus there should be no concurrency control/asynchronous execution
320  * problems.
321  */
322 static void
323 generate_ephemeral_server_key(void)
324 {
325 	u_int32_t rnd = 0;
326 	int i;
327 
328 	verbose("Generating %s%d bit RSA key.",
329 	    sensitive_data.server_key ? "new " : "", options.server_key_bits);
330 	if (sensitive_data.server_key != NULL)
331 		key_free(sensitive_data.server_key);
332 	sensitive_data.server_key = key_generate(KEY_RSA1,
333 	    options.server_key_bits);
334 	verbose("RSA key generation complete.");
335 
336 	for (i = 0; i < SSH_SESSION_KEY_LENGTH; i++) {
337 		if (i % 4 == 0)
338 			rnd = arc4random();
339 		sensitive_data.ssh1_cookie[i] = rnd & 0xff;
340 		rnd >>= 8;
341 	}
342 	arc4random_stir();
343 }
344 
345 static void
346 key_regeneration_alarm(int sig)
347 {
348 	int save_errno = errno;
349 
350 	signal(SIGALRM, SIG_DFL);
351 	errno = save_errno;
352 	key_do_regen = 1;
353 }
354 
355 static void
356 sshd_exchange_identification(int sock_in, int sock_out)
357 {
358 	int i, mismatch;
359 	int remote_major, remote_minor;
360 	int major, minor;
361 	char *s;
362 	char buf[256];			/* Must not be larger than remote_version. */
363 	char remote_version[256];	/* Must be at least as big as buf. */
364 
365 	if ((options.protocol & SSH_PROTO_1) &&
366 	    (options.protocol & SSH_PROTO_2)) {
367 		major = PROTOCOL_MAJOR_1;
368 		minor = 99;
369 	} else if (options.protocol & SSH_PROTO_2) {
370 		major = PROTOCOL_MAJOR_2;
371 		minor = PROTOCOL_MINOR_2;
372 	} else {
373 		major = PROTOCOL_MAJOR_1;
374 		minor = PROTOCOL_MINOR_1;
375 	}
376 	snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n", major, minor, SSH_VERSION);
377 	server_version_string = xstrdup(buf);
378 
379 	if (client_version_string == NULL) {
380 		/* Send our protocol version identification. */
381 		if (atomicio(write, sock_out, server_version_string,
382 		    strlen(server_version_string))
383 		    != strlen(server_version_string)) {
384 			log("Could not write ident string to %s", get_remote_ipaddr());
385 			fatal_cleanup();
386 		}
387 
388 		/* Read other sides version identification. */
389 		memset(buf, 0, sizeof(buf));
390 		for (i = 0; i < sizeof(buf) - 1; i++) {
391 			if (atomicio(read, sock_in, &buf[i], 1) != 1) {
392 				log("Did not receive identification string from %s",
393 				    get_remote_ipaddr());
394 				fatal_cleanup();
395 			}
396 			if (buf[i] == '\r') {
397 				buf[i] = 0;
398 				/* Kludge for F-Secure Macintosh < 1.0.2 */
399 				if (i == 12 &&
400 				    strncmp(buf, "SSH-1.5-W1.0", 12) == 0)
401 					break;
402 				continue;
403 			}
404 			if (buf[i] == '\n') {
405 				buf[i] = 0;
406 				break;
407 			}
408 		}
409 		buf[sizeof(buf) - 1] = 0;
410 		client_version_string = xstrdup(buf);
411 	}
412 
413 	/*
414 	 * Check that the versions match.  In future this might accept
415 	 * several versions and set appropriate flags to handle them.
416 	 */
417 	if (sscanf(client_version_string, "SSH-%d.%d-%[^\n]\n",
418 	    &remote_major, &remote_minor, remote_version) != 3) {
419 		s = "Protocol mismatch.\n";
420 		(void) atomicio(write, sock_out, s, strlen(s));
421 		close(sock_in);
422 		close(sock_out);
423 		log("Bad protocol version identification '%.100s' from %s",
424 		    client_version_string, get_remote_ipaddr());
425 		fatal_cleanup();
426 	}
427 	debug("Client protocol version %d.%d; client software version %.100s",
428 	    remote_major, remote_minor, remote_version);
429 
430 	compat_datafellows(remote_version);
431 
432 	if (datafellows & SSH_BUG_PROBE) {
433 		log("probed from %s with %s.  Don't panic.",
434 		    get_remote_ipaddr(), client_version_string);
435 		fatal_cleanup();
436 	}
437 
438 	if (datafellows & SSH_BUG_SCANNER) {
439 		log("scanned from %s with %s.  Don't panic.",
440 		    get_remote_ipaddr(), client_version_string);
441 		fatal_cleanup();
442 	}
443 
444 	mismatch = 0;
445 	switch (remote_major) {
446 	case 1:
447 		if (remote_minor == 99) {
448 			if (options.protocol & SSH_PROTO_2)
449 				enable_compat20();
450 			else
451 				mismatch = 1;
452 			break;
453 		}
454 		if (!(options.protocol & SSH_PROTO_1)) {
455 			mismatch = 1;
456 			break;
457 		}
458 		if (remote_minor < 3) {
459 			packet_disconnect("Your ssh version is too old and "
460 			    "is no longer supported.  Please install a newer version.");
461 		} else if (remote_minor == 3) {
462 			/* note that this disables agent-forwarding */
463 			enable_compat13();
464 		}
465 		break;
466 	case 2:
467 		if (options.protocol & SSH_PROTO_2) {
468 			enable_compat20();
469 			break;
470 		}
471 		/* FALLTHROUGH */
472 	default:
473 		mismatch = 1;
474 		break;
475 	}
476 	chop(server_version_string);
477 	debug("Local version string %.200s", server_version_string);
478 
479 	if (mismatch) {
480 		s = "Protocol major versions differ.\n";
481 		(void) atomicio(write, sock_out, s, strlen(s));
482 		close(sock_in);
483 		close(sock_out);
484 		log("Protocol major versions differ for %s: %.200s vs. %.200s",
485 		    get_remote_ipaddr(),
486 		    server_version_string, client_version_string);
487 		fatal_cleanup();
488 	}
489 }
490 
491 /* Destroy the host and server keys.  They will no longer be needed. */
492 void
493 destroy_sensitive_data(void)
494 {
495 	int i;
496 
497 	if (sensitive_data.server_key) {
498 		key_free(sensitive_data.server_key);
499 		sensitive_data.server_key = NULL;
500 	}
501 	for (i = 0; i < options.num_host_key_files; i++) {
502 		if (sensitive_data.host_keys[i]) {
503 			key_free(sensitive_data.host_keys[i]);
504 			sensitive_data.host_keys[i] = NULL;
505 		}
506 	}
507 	sensitive_data.ssh1_host_key = NULL;
508 	memset(sensitive_data.ssh1_cookie, 0, SSH_SESSION_KEY_LENGTH);
509 }
510 
511 /* Demote private to public keys for network child */
512 void
513 demote_sensitive_data(void)
514 {
515 	Key *tmp;
516 	int i;
517 
518 	if (sensitive_data.server_key) {
519 		tmp = key_demote(sensitive_data.server_key);
520 		key_free(sensitive_data.server_key);
521 		sensitive_data.server_key = tmp;
522 	}
523 
524 	for (i = 0; i < options.num_host_key_files; i++) {
525 		if (sensitive_data.host_keys[i]) {
526 			tmp = key_demote(sensitive_data.host_keys[i]);
527 			key_free(sensitive_data.host_keys[i]);
528 			sensitive_data.host_keys[i] = tmp;
529 			if (tmp->type == KEY_RSA1)
530 				sensitive_data.ssh1_host_key = tmp;
531 		}
532 	}
533 
534 	/* We do not clear ssh1_host key and cookie.  XXX - Okay Niels? */
535 }
536 
537 static void
538 privsep_preauth_child(void)
539 {
540 	u_int32_t rnd[256];
541 	gid_t gidset[1];
542 	struct passwd *pw;
543 	int i;
544 
545 	/* Enable challenge-response authentication for privilege separation */
546 	privsep_challenge_enable();
547 
548 	for (i = 0; i < 256; i++)
549 		rnd[i] = arc4random();
550 	RAND_seed(rnd, sizeof(rnd));
551 
552 	/* Demote the private keys to public keys. */
553 	demote_sensitive_data();
554 
555 	if ((pw = getpwnam(SSH_PRIVSEP_USER)) == NULL)
556 		fatal("Privilege separation user %s does not exist",
557 		    SSH_PRIVSEP_USER);
558 	memset(pw->pw_passwd, 0, strlen(pw->pw_passwd));
559 	endpwent();
560 
561 	/* Change our root directory */
562 	if (chroot(_PATH_PRIVSEP_CHROOT_DIR) == -1)
563 		fatal("chroot(\"%s\"): %s", _PATH_PRIVSEP_CHROOT_DIR,
564 		    strerror(errno));
565 	if (chdir("/") == -1)
566 		fatal("chdir(\"/\"): %s", strerror(errno));
567 
568 	/* Drop our privileges */
569 	debug3("privsep user:group %u:%u", (u_int)pw->pw_uid,
570 	    (u_int)pw->pw_gid);
571 #if 0
572 	/* XXX not ready, to heavy after chroot */
573 	do_setusercontext(pw);
574 #else
575 	gidset[0] = pw->pw_gid;
576 	if (setgid(pw->pw_gid) < 0)
577 		fatal("setgid failed for %u", pw->pw_gid );
578 	if (setgroups(1, gidset) < 0)
579 		fatal("setgroups: %.100s", strerror(errno));
580 	permanently_set_uid(pw);
581 #endif
582 }
583 
584 static Authctxt *
585 privsep_preauth(void)
586 {
587 	Authctxt *authctxt = NULL;
588 	int status;
589 	pid_t pid;
590 
591 	/* Set up unprivileged child process to deal with network data */
592 	pmonitor = monitor_init();
593 	/* Store a pointer to the kex for later rekeying */
594 	pmonitor->m_pkex = &xxx_kex;
595 
596 	pid = fork();
597 	if (pid == -1) {
598 		fatal("fork of unprivileged child failed");
599 	} else if (pid != 0) {
600 		fatal_remove_cleanup((void (*) (void *)) packet_close, NULL);
601 
602 		debug2("Network child is on pid %ld", (long)pid);
603 
604 		close(pmonitor->m_recvfd);
605 		authctxt = monitor_child_preauth(pmonitor);
606 		close(pmonitor->m_sendfd);
607 
608 		/* Sync memory */
609 		monitor_sync(pmonitor);
610 
611 		/* Wait for the child's exit status */
612 		while (waitpid(pid, &status, 0) < 0)
613 			if (errno != EINTR)
614 				break;
615 
616 		/* Reinstall, since the child has finished */
617 		fatal_add_cleanup((void (*) (void *)) packet_close, NULL);
618 
619 		return (authctxt);
620 	} else {
621 		/* child */
622 
623 		close(pmonitor->m_sendfd);
624 
625 		/* Demote the child */
626 		if (getuid() == 0 || geteuid() == 0)
627 			privsep_preauth_child();
628 		setproctitle("%s", "[net]");
629 	}
630 	return (NULL);
631 }
632 
633 static void
634 privsep_postauth(Authctxt *authctxt)
635 {
636 	extern Authctxt *x_authctxt;
637 
638 	/* XXX - Remote port forwarding */
639 	x_authctxt = authctxt;
640 
641 #ifdef DISABLE_FD_PASSING
642 	if (1) {
643 #else
644 	if (authctxt->pw->pw_uid == 0 || options.use_login) {
645 #endif
646 		/* File descriptor passing is broken or root login */
647 		monitor_apply_keystate(pmonitor);
648 		use_privsep = 0;
649 		return;
650 	}
651 
652 	/* Authentication complete */
653 	alarm(0);
654 	if (startup_pipe != -1) {
655 		close(startup_pipe);
656 		startup_pipe = -1;
657 	}
658 
659 	/* New socket pair */
660 	monitor_reinit(pmonitor);
661 
662 	pmonitor->m_pid = fork();
663 	if (pmonitor->m_pid == -1)
664 		fatal("fork of unprivileged child failed");
665 	else if (pmonitor->m_pid != 0) {
666 		fatal_remove_cleanup((void (*) (void *)) packet_close, NULL);
667 
668 		debug2("User child is on pid %ld", (long)pmonitor->m_pid);
669 		close(pmonitor->m_recvfd);
670 		monitor_child_postauth(pmonitor);
671 
672 		/* NEVERREACHED */
673 		exit(0);
674 	}
675 
676 	close(pmonitor->m_sendfd);
677 
678 	/* Demote the private keys to public keys. */
679 	demote_sensitive_data();
680 
681 	/* Drop privileges */
682 	do_setusercontext(authctxt->pw);
683 
684 	/* It is safe now to apply the key state */
685 	monitor_apply_keystate(pmonitor);
686 }
687 
688 static char *
689 list_hostkey_types(void)
690 {
691 	Buffer b;
692 	char *p;
693 	int i;
694 
695 	buffer_init(&b);
696 	for (i = 0; i < options.num_host_key_files; i++) {
697 		Key *key = sensitive_data.host_keys[i];
698 		if (key == NULL)
699 			continue;
700 		switch (key->type) {
701 		case KEY_RSA:
702 		case KEY_DSA:
703 			if (buffer_len(&b) > 0)
704 				buffer_append(&b, ",", 1);
705 			p = key_ssh_name(key);
706 			buffer_append(&b, p, strlen(p));
707 			break;
708 		}
709 	}
710 	buffer_append(&b, "\0", 1);
711 	p = xstrdup(buffer_ptr(&b));
712 	buffer_free(&b);
713 	debug("list_hostkey_types: %s", p);
714 	return p;
715 }
716 
717 Key *
718 get_hostkey_by_type(int type)
719 {
720 	int i;
721 
722 	for (i = 0; i < options.num_host_key_files; i++) {
723 		Key *key = sensitive_data.host_keys[i];
724 		if (key != NULL && key->type == type)
725 			return key;
726 	}
727 	return NULL;
728 }
729 
730 Key *
731 get_hostkey_by_index(int ind)
732 {
733 	if (ind < 0 || ind >= options.num_host_key_files)
734 		return (NULL);
735 	return (sensitive_data.host_keys[ind]);
736 }
737 
738 int
739 get_hostkey_index(Key *key)
740 {
741 	int i;
742 
743 	for (i = 0; i < options.num_host_key_files; i++) {
744 		if (key == sensitive_data.host_keys[i])
745 			return (i);
746 	}
747 	return (-1);
748 }
749 
750 /*
751  * returns 1 if connection should be dropped, 0 otherwise.
752  * dropping starts at connection #max_startups_begin with a probability
753  * of (max_startups_rate/100). the probability increases linearly until
754  * all connections are dropped for startups > max_startups
755  */
756 static int
757 drop_connection(int startups)
758 {
759 	double p, r;
760 
761 	if (startups < options.max_startups_begin)
762 		return 0;
763 	if (startups >= options.max_startups)
764 		return 1;
765 	if (options.max_startups_rate == 100)
766 		return 1;
767 
768 	p  = 100 - options.max_startups_rate;
769 	p *= startups - options.max_startups_begin;
770 	p /= (double) (options.max_startups - options.max_startups_begin);
771 	p += options.max_startups_rate;
772 	p /= 100.0;
773 	r = arc4random() / (double) UINT_MAX;
774 
775 	debug("drop_connection: p %g, r %g", p, r);
776 	return (r < p) ? 1 : 0;
777 }
778 
779 static void
780 usage(void)
781 {
782 	fprintf(stderr, "sshd version %s\n", SSH_VERSION);
783 	fprintf(stderr, "Usage: %s [options]\n", __progname);
784 	fprintf(stderr, "Options:\n");
785 	fprintf(stderr, "  -f file    Configuration file (default %s)\n", _PATH_SERVER_CONFIG_FILE);
786 	fprintf(stderr, "  -d         Debugging mode (multiple -d means more debugging)\n");
787 	fprintf(stderr, "  -i         Started from inetd\n");
788 	fprintf(stderr, "  -D         Do not fork into daemon mode\n");
789 	fprintf(stderr, "  -t         Only test configuration file and keys\n");
790 	fprintf(stderr, "  -q         Quiet (no logging)\n");
791 	fprintf(stderr, "  -p port    Listen on the specified port (default: 22)\n");
792 	fprintf(stderr, "  -k seconds Regenerate server key every this many seconds (default: 3600)\n");
793 	fprintf(stderr, "  -g seconds Grace period for authentication (default: 600)\n");
794 	fprintf(stderr, "  -b bits    Size of server RSA key (default: 768 bits)\n");
795 	fprintf(stderr, "  -h file    File from which to read host key (default: %s)\n",
796 	    _PATH_HOST_KEY_FILE);
797 	fprintf(stderr, "  -u len     Maximum hostname length for utmp recording\n");
798 	fprintf(stderr, "  -4         Use IPv4 only\n");
799 	fprintf(stderr, "  -6         Use IPv6 only\n");
800 	fprintf(stderr, "  -o option  Process the option as if it was read from a configuration file.\n");
801 	exit(1);
802 }
803 
804 /*
805  * Main program for the daemon.
806  */
807 int
808 main(int ac, char **av)
809 {
810 	extern char *optarg;
811 	extern int optind;
812 	int opt, sock_in = 0, sock_out = 0, newsock, j, i, fdsetsz, on = 1;
813 	pid_t pid;
814 	socklen_t fromlen;
815 	fd_set *fdset;
816 	struct sockaddr_storage from;
817 	const char *remote_ip;
818 	int remote_port;
819 	FILE *f;
820 	struct addrinfo *ai;
821 	char ntop[NI_MAXHOST], strport[NI_MAXSERV];
822 	int listen_sock, maxfd;
823 	int startup_p[2];
824 	int startups = 0;
825 	Authctxt *authctxt;
826 	Key *key;
827 	int ret, key_used = 0;
828 
829 #ifdef HAVE_SECUREWARE
830 	(void)set_auth_parameters(ac, av);
831 #endif
832 	__progname = get_progname(av[0]);
833 	init_rng();
834 
835 	/* Save argv. Duplicate so setproctitle emulation doesn't clobber it */
836 	saved_argc = ac;
837 	saved_argv = av;
838 	saved_argv = xmalloc(sizeof(*saved_argv) * ac);
839 	for (i = 0; i < ac; i++)
840 		saved_argv[i] = xstrdup(av[i]);
841 
842 #ifndef HAVE_SETPROCTITLE
843 	/* Prepare for later setproctitle emulation */
844 	compat_init_setproctitle(ac, av);
845 #endif
846 
847 	/* Initialize configuration options to their default values. */
848 	initialize_server_options(&options);
849 
850 	/* Parse command-line arguments. */
851 	while ((opt = getopt(ac, av, "f:p:b:k:h:g:V:u:o:dDeiqtQ46")) != -1) {
852 		switch (opt) {
853 		case '4':
854 			IPv4or6 = AF_INET;
855 			break;
856 		case '6':
857 			IPv4or6 = AF_INET6;
858 			break;
859 		case 'f':
860 			config_file_name = optarg;
861 			break;
862 		case 'd':
863 			if (0 == debug_flag) {
864 				debug_flag = 1;
865 				options.log_level = SYSLOG_LEVEL_DEBUG1;
866 			} else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
867 				options.log_level++;
868 			} else {
869 				fprintf(stderr, "Too high debugging level.\n");
870 				exit(1);
871 			}
872 			break;
873 		case 'D':
874 			no_daemon_flag = 1;
875 			break;
876 		case 'e':
877 			log_stderr = 1;
878 			break;
879 		case 'i':
880 			inetd_flag = 1;
881 			break;
882 		case 'Q':
883 			/* ignored */
884 			break;
885 		case 'q':
886 			options.log_level = SYSLOG_LEVEL_QUIET;
887 			break;
888 		case 'b':
889 			options.server_key_bits = atoi(optarg);
890 			break;
891 		case 'p':
892 			options.ports_from_cmdline = 1;
893 			if (options.num_ports >= MAX_PORTS) {
894 				fprintf(stderr, "too many ports.\n");
895 				exit(1);
896 			}
897 			options.ports[options.num_ports++] = a2port(optarg);
898 			if (options.ports[options.num_ports-1] == 0) {
899 				fprintf(stderr, "Bad port number.\n");
900 				exit(1);
901 			}
902 			break;
903 		case 'g':
904 			if ((options.login_grace_time = convtime(optarg)) == -1) {
905 				fprintf(stderr, "Invalid login grace time.\n");
906 				exit(1);
907 			}
908 			break;
909 		case 'k':
910 			if ((options.key_regeneration_time = convtime(optarg)) == -1) {
911 				fprintf(stderr, "Invalid key regeneration interval.\n");
912 				exit(1);
913 			}
914 			break;
915 		case 'h':
916 			if (options.num_host_key_files >= MAX_HOSTKEYS) {
917 				fprintf(stderr, "too many host keys.\n");
918 				exit(1);
919 			}
920 			options.host_key_files[options.num_host_key_files++] = optarg;
921 			break;
922 		case 'V':
923 			client_version_string = optarg;
924 			/* only makes sense with inetd_flag, i.e. no listen() */
925 			inetd_flag = 1;
926 			break;
927 		case 't':
928 			test_flag = 1;
929 			break;
930 		case 'u':
931 			utmp_len = atoi(optarg);
932 			if (utmp_len > MAXHOSTNAMELEN) {
933 				fprintf(stderr, "Invalid utmp length.\n");
934 				exit(1);
935 			}
936 			break;
937 		case 'o':
938 			if (process_server_config_line(&options, optarg,
939 			    "command-line", 0) != 0)
940 				exit(1);
941 			break;
942 		case '?':
943 		default:
944 			usage();
945 			break;
946 		}
947 	}
948 	SSLeay_add_all_algorithms();
949 	channel_set_af(IPv4or6);
950 
951 	/*
952 	 * Force logging to stderr until we have loaded the private host
953 	 * key (unless started from inetd)
954 	 */
955 	log_init(__progname,
956 	    options.log_level == SYSLOG_LEVEL_NOT_SET ?
957 	    SYSLOG_LEVEL_INFO : options.log_level,
958 	    options.log_facility == SYSLOG_FACILITY_NOT_SET ?
959 	    SYSLOG_FACILITY_AUTH : options.log_facility,
960 	    log_stderr || !inetd_flag);
961 
962 #ifdef _UNICOS
963 	/* Cray can define user privs drop all prives now!
964 	 * Not needed on PRIV_SU systems!
965 	 */
966 	drop_cray_privs();
967 #endif
968 
969 	seed_rng();
970 
971 	/* Read server configuration options from the configuration file. */
972 	read_server_config(&options, config_file_name);
973 
974 	/* Fill in default values for those options not explicitly set. */
975 	fill_default_server_options(&options);
976 
977 	/* Check that there are no remaining arguments. */
978 	if (optind < ac) {
979 		fprintf(stderr, "Extra argument %s.\n", av[optind]);
980 		exit(1);
981 	}
982 
983 	debug("sshd version %.100s", SSH_VERSION);
984 
985 	/* load private host keys */
986 	sensitive_data.host_keys = xmalloc(options.num_host_key_files *
987 	    sizeof(Key *));
988 	for (i = 0; i < options.num_host_key_files; i++)
989 		sensitive_data.host_keys[i] = NULL;
990 	sensitive_data.server_key = NULL;
991 	sensitive_data.ssh1_host_key = NULL;
992 	sensitive_data.have_ssh1_key = 0;
993 	sensitive_data.have_ssh2_key = 0;
994 
995 	for (i = 0; i < options.num_host_key_files; i++) {
996 		key = key_load_private(options.host_key_files[i], "", NULL);
997 		sensitive_data.host_keys[i] = key;
998 		if (key == NULL) {
999 			error("Could not load host key: %s",
1000 			    options.host_key_files[i]);
1001 			sensitive_data.host_keys[i] = NULL;
1002 			continue;
1003 		}
1004 		switch (key->type) {
1005 		case KEY_RSA1:
1006 			sensitive_data.ssh1_host_key = key;
1007 			sensitive_data.have_ssh1_key = 1;
1008 			break;
1009 		case KEY_RSA:
1010 		case KEY_DSA:
1011 			sensitive_data.have_ssh2_key = 1;
1012 			break;
1013 		}
1014 		debug("private host key: #%d type %d %s", i, key->type,
1015 		    key_type(key));
1016 	}
1017 	if ((options.protocol & SSH_PROTO_1) && !sensitive_data.have_ssh1_key) {
1018 		log("Disabling protocol version 1. Could not load host key");
1019 		options.protocol &= ~SSH_PROTO_1;
1020 	}
1021 	if ((options.protocol & SSH_PROTO_2) && !sensitive_data.have_ssh2_key) {
1022 		log("Disabling protocol version 2. Could not load host key");
1023 		options.protocol &= ~SSH_PROTO_2;
1024 	}
1025 	if (!(options.protocol & (SSH_PROTO_1|SSH_PROTO_2))) {
1026 		log("sshd: no hostkeys available -- exiting.");
1027 		exit(1);
1028 	}
1029 
1030 	/* Check certain values for sanity. */
1031 	if (options.protocol & SSH_PROTO_1) {
1032 		if (options.server_key_bits < 512 ||
1033 		    options.server_key_bits > 32768) {
1034 			fprintf(stderr, "Bad server key size.\n");
1035 			exit(1);
1036 		}
1037 		/*
1038 		 * Check that server and host key lengths differ sufficiently. This
1039 		 * is necessary to make double encryption work with rsaref. Oh, I
1040 		 * hate software patents. I dont know if this can go? Niels
1041 		 */
1042 		if (options.server_key_bits >
1043 		    BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) -
1044 		    SSH_KEY_BITS_RESERVED && options.server_key_bits <
1045 		    BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) +
1046 		    SSH_KEY_BITS_RESERVED) {
1047 			options.server_key_bits =
1048 			    BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) +
1049 			    SSH_KEY_BITS_RESERVED;
1050 			debug("Forcing server key to %d bits to make it differ from host key.",
1051 			    options.server_key_bits);
1052 		}
1053 	}
1054 
1055 	if (use_privsep) {
1056 		struct passwd *pw;
1057 		struct stat st;
1058 
1059 		if ((pw = getpwnam(SSH_PRIVSEP_USER)) == NULL)
1060 			fatal("Privilege separation user %s does not exist",
1061 			    SSH_PRIVSEP_USER);
1062 		if ((stat(_PATH_PRIVSEP_CHROOT_DIR, &st) == -1) ||
1063 		    (S_ISDIR(st.st_mode) == 0))
1064 			fatal("Missing privilege separation directory: %s",
1065 			    _PATH_PRIVSEP_CHROOT_DIR);
1066 
1067 #ifdef HAVE_CYGWIN
1068 		if (check_ntsec(_PATH_PRIVSEP_CHROOT_DIR) &&
1069 		    (st.st_uid != getuid () ||
1070 		    (st.st_mode & (S_IWGRP|S_IWOTH)) != 0))
1071 #else
1072 		if (st.st_uid != 0 || (st.st_mode & (S_IWGRP|S_IWOTH)) != 0)
1073 #endif
1074 			fatal("%s must be owned by root and not group or "
1075 			    "world-writable.", _PATH_PRIVSEP_CHROOT_DIR);
1076 	}
1077 
1078 	/* Configuration looks good, so exit if in test mode. */
1079 	if (test_flag)
1080 		exit(0);
1081 
1082 	/*
1083 	 * Clear out any supplemental groups we may have inherited.  This
1084 	 * prevents inadvertent creation of files with bad modes (in the
1085 	 * portable version at least, it's certainly possible for PAM
1086 	 * to create a file, and we can't control the code in every
1087 	 * module which might be used).
1088 	 */
1089 	if (setgroups(0, NULL) < 0)
1090 		debug("setgroups() failed: %.200s", strerror(errno));
1091 
1092 	/* Initialize the log (it is reinitialized below in case we forked). */
1093 	if (debug_flag && !inetd_flag)
1094 		log_stderr = 1;
1095 	log_init(__progname, options.log_level, options.log_facility, log_stderr);
1096 
1097 	/*
1098 	 * If not in debugging mode, and not started from inetd, disconnect
1099 	 * from the controlling terminal, and fork.  The original process
1100 	 * exits.
1101 	 */
1102 	if (!(debug_flag || inetd_flag || no_daemon_flag)) {
1103 #ifdef TIOCNOTTY
1104 		int fd;
1105 #endif /* TIOCNOTTY */
1106 		if (daemon(0, 0) < 0)
1107 			fatal("daemon() failed: %.200s", strerror(errno));
1108 
1109 		/* Disconnect from the controlling tty. */
1110 #ifdef TIOCNOTTY
1111 		fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
1112 		if (fd >= 0) {
1113 			(void) ioctl(fd, TIOCNOTTY, NULL);
1114 			close(fd);
1115 		}
1116 #endif /* TIOCNOTTY */
1117 	}
1118 	/* Reinitialize the log (because of the fork above). */
1119 	log_init(__progname, options.log_level, options.log_facility, log_stderr);
1120 
1121 	/* Initialize the random number generator. */
1122 	arc4random_stir();
1123 
1124 	/* Chdir to the root directory so that the current disk can be
1125 	   unmounted if desired. */
1126 	chdir("/");
1127 
1128 	/* ignore SIGPIPE */
1129 	signal(SIGPIPE, SIG_IGN);
1130 
1131 	/* Start listening for a socket, unless started from inetd. */
1132 	if (inetd_flag) {
1133 		int s1;
1134 		s1 = dup(0);	/* Make sure descriptors 0, 1, and 2 are in use. */
1135 		dup(s1);
1136 		sock_in = dup(0);
1137 		sock_out = dup(1);
1138 		startup_pipe = -1;
1139 		/*
1140 		 * We intentionally do not close the descriptors 0, 1, and 2
1141 		 * as our code for setting the descriptors won\'t work if
1142 		 * ttyfd happens to be one of those.
1143 		 */
1144 		debug("inetd sockets after dupping: %d, %d", sock_in, sock_out);
1145 		if (options.protocol & SSH_PROTO_1)
1146 			generate_ephemeral_server_key();
1147 	} else {
1148 		for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
1149 			if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1150 				continue;
1151 			if (num_listen_socks >= MAX_LISTEN_SOCKS)
1152 				fatal("Too many listen sockets. "
1153 				    "Enlarge MAX_LISTEN_SOCKS");
1154 			if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
1155 			    ntop, sizeof(ntop), strport, sizeof(strport),
1156 			    NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
1157 				error("getnameinfo failed");
1158 				continue;
1159 			}
1160 			/* Create socket for listening. */
1161 			listen_sock = socket(ai->ai_family, SOCK_STREAM, 0);
1162 			if (listen_sock < 0) {
1163 				/* kernel may not support ipv6 */
1164 				verbose("socket: %.100s", strerror(errno));
1165 				continue;
1166 			}
1167 			if (fcntl(listen_sock, F_SETFL, O_NONBLOCK) < 0) {
1168 				error("listen_sock O_NONBLOCK: %s", strerror(errno));
1169 				close(listen_sock);
1170 				continue;
1171 			}
1172 			/*
1173 			 * Set socket options.
1174 			 * Allow local port reuse in TIME_WAIT.
1175 			 */
1176 			if (setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
1177 			    &on, sizeof(on)) == -1)
1178 				error("setsockopt SO_REUSEADDR: %s", strerror(errno));
1179 
1180 			debug("Bind to port %s on %s.", strport, ntop);
1181 
1182 			/* Bind the socket to the desired port. */
1183 			if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1184 				if (!ai->ai_next)
1185 				    error("Bind to port %s on %s failed: %.200s.",
1186 					    strport, ntop, strerror(errno));
1187 				close(listen_sock);
1188 				continue;
1189 			}
1190 			listen_socks[num_listen_socks] = listen_sock;
1191 			num_listen_socks++;
1192 
1193 			/* Start listening on the port. */
1194 			log("Server listening on %s port %s.", ntop, strport);
1195 			if (listen(listen_sock, 5) < 0)
1196 				fatal("listen: %.100s", strerror(errno));
1197 
1198 		}
1199 		freeaddrinfo(options.listen_addrs);
1200 
1201 		if (!num_listen_socks)
1202 			fatal("Cannot bind any address.");
1203 
1204 		if (options.protocol & SSH_PROTO_1)
1205 			generate_ephemeral_server_key();
1206 
1207 		/*
1208 		 * Arrange to restart on SIGHUP.  The handler needs
1209 		 * listen_sock.
1210 		 */
1211 		signal(SIGHUP, sighup_handler);
1212 
1213 		signal(SIGTERM, sigterm_handler);
1214 		signal(SIGQUIT, sigterm_handler);
1215 
1216 		/* Arrange SIGCHLD to be caught. */
1217 		signal(SIGCHLD, main_sigchld_handler);
1218 
1219 		/* Write out the pid file after the sigterm handler is setup */
1220 		if (!debug_flag) {
1221 			/*
1222 			 * Record our pid in /var/run/sshd.pid to make it
1223 			 * easier to kill the correct sshd.  We don't want to
1224 			 * do this before the bind above because the bind will
1225 			 * fail if there already is a daemon, and this will
1226 			 * overwrite any old pid in the file.
1227 			 */
1228 			f = fopen(options.pid_file, "wb");
1229 			if (f) {
1230 				fprintf(f, "%ld\n", (long) getpid());
1231 				fclose(f);
1232 			}
1233 		}
1234 
1235 		/* setup fd set for listen */
1236 		fdset = NULL;
1237 		maxfd = 0;
1238 		for (i = 0; i < num_listen_socks; i++)
1239 			if (listen_socks[i] > maxfd)
1240 				maxfd = listen_socks[i];
1241 		/* pipes connected to unauthenticated childs */
1242 		startup_pipes = xmalloc(options.max_startups * sizeof(int));
1243 		for (i = 0; i < options.max_startups; i++)
1244 			startup_pipes[i] = -1;
1245 
1246 		/*
1247 		 * Stay listening for connections until the system crashes or
1248 		 * the daemon is killed with a signal.
1249 		 */
1250 		for (;;) {
1251 			if (received_sighup)
1252 				sighup_restart();
1253 			if (fdset != NULL)
1254 				xfree(fdset);
1255 			fdsetsz = howmany(maxfd+1, NFDBITS) * sizeof(fd_mask);
1256 			fdset = (fd_set *)xmalloc(fdsetsz);
1257 			memset(fdset, 0, fdsetsz);
1258 
1259 			for (i = 0; i < num_listen_socks; i++)
1260 				FD_SET(listen_socks[i], fdset);
1261 			for (i = 0; i < options.max_startups; i++)
1262 				if (startup_pipes[i] != -1)
1263 					FD_SET(startup_pipes[i], fdset);
1264 
1265 			/* Wait in select until there is a connection. */
1266 			ret = select(maxfd+1, fdset, NULL, NULL, NULL);
1267 			if (ret < 0 && errno != EINTR)
1268 				error("select: %.100s", strerror(errno));
1269 			if (received_sigterm) {
1270 				log("Received signal %d; terminating.",
1271 				    (int) received_sigterm);
1272 				close_listen_socks();
1273 				unlink(options.pid_file);
1274 				exit(255);
1275 			}
1276 			if (key_used && key_do_regen) {
1277 				generate_ephemeral_server_key();
1278 				key_used = 0;
1279 				key_do_regen = 0;
1280 			}
1281 			if (ret < 0)
1282 				continue;
1283 
1284 			for (i = 0; i < options.max_startups; i++)
1285 				if (startup_pipes[i] != -1 &&
1286 				    FD_ISSET(startup_pipes[i], fdset)) {
1287 					/*
1288 					 * the read end of the pipe is ready
1289 					 * if the child has closed the pipe
1290 					 * after successful authentication
1291 					 * or if the child has died
1292 					 */
1293 					close(startup_pipes[i]);
1294 					startup_pipes[i] = -1;
1295 					startups--;
1296 				}
1297 			for (i = 0; i < num_listen_socks; i++) {
1298 				if (!FD_ISSET(listen_socks[i], fdset))
1299 					continue;
1300 				fromlen = sizeof(from);
1301 				newsock = accept(listen_socks[i], (struct sockaddr *)&from,
1302 				    &fromlen);
1303 				if (newsock < 0) {
1304 					if (errno != EINTR && errno != EWOULDBLOCK)
1305 						error("accept: %.100s", strerror(errno));
1306 					continue;
1307 				}
1308 				if (fcntl(newsock, F_SETFL, 0) < 0) {
1309 					error("newsock del O_NONBLOCK: %s", strerror(errno));
1310 					close(newsock);
1311 					continue;
1312 				}
1313 				if (drop_connection(startups) == 1) {
1314 					debug("drop connection #%d", startups);
1315 					close(newsock);
1316 					continue;
1317 				}
1318 				if (pipe(startup_p) == -1) {
1319 					close(newsock);
1320 					continue;
1321 				}
1322 
1323 				for (j = 0; j < options.max_startups; j++)
1324 					if (startup_pipes[j] == -1) {
1325 						startup_pipes[j] = startup_p[0];
1326 						if (maxfd < startup_p[0])
1327 							maxfd = startup_p[0];
1328 						startups++;
1329 						break;
1330 					}
1331 
1332 				/*
1333 				 * Got connection.  Fork a child to handle it, unless
1334 				 * we are in debugging mode.
1335 				 */
1336 				if (debug_flag) {
1337 					/*
1338 					 * In debugging mode.  Close the listening
1339 					 * socket, and start processing the
1340 					 * connection without forking.
1341 					 */
1342 					debug("Server will not fork when running in debugging mode.");
1343 					close_listen_socks();
1344 					sock_in = newsock;
1345 					sock_out = newsock;
1346 					startup_pipe = -1;
1347 					pid = getpid();
1348 					break;
1349 				} else {
1350 					/*
1351 					 * Normal production daemon.  Fork, and have
1352 					 * the child process the connection. The
1353 					 * parent continues listening.
1354 					 */
1355 					if ((pid = fork()) == 0) {
1356 						/*
1357 						 * Child.  Close the listening and max_startup
1358 						 * sockets.  Start using the accepted socket.
1359 						 * Reinitialize logging (since our pid has
1360 						 * changed).  We break out of the loop to handle
1361 						 * the connection.
1362 						 */
1363 						startup_pipe = startup_p[1];
1364 						close_startup_pipes();
1365 						close_listen_socks();
1366 						sock_in = newsock;
1367 						sock_out = newsock;
1368 						log_init(__progname, options.log_level, options.log_facility, log_stderr);
1369 						break;
1370 					}
1371 				}
1372 
1373 				/* Parent.  Stay in the loop. */
1374 				if (pid < 0)
1375 					error("fork: %.100s", strerror(errno));
1376 				else
1377 					debug("Forked child %ld.", (long)pid);
1378 
1379 				close(startup_p[1]);
1380 
1381 				/* Mark that the key has been used (it was "given" to the child). */
1382 				if ((options.protocol & SSH_PROTO_1) &&
1383 				    key_used == 0) {
1384 					/* Schedule server key regeneration alarm. */
1385 					signal(SIGALRM, key_regeneration_alarm);
1386 					alarm(options.key_regeneration_time);
1387 					key_used = 1;
1388 				}
1389 
1390 				arc4random_stir();
1391 
1392 				/* Close the new socket (the child is now taking care of it). */
1393 				close(newsock);
1394 			}
1395 			/* child process check (or debug mode) */
1396 			if (num_listen_socks < 0)
1397 				break;
1398 		}
1399 	}
1400 
1401 	/* This is the child processing a new connection. */
1402 
1403 	/*
1404 	 * Create a new session and process group since the 4.4BSD
1405 	 * setlogin() affects the entire process group.  We don't
1406 	 * want the child to be able to affect the parent.
1407 	 */
1408 #if !defined(STREAMS_PUSH_ACQUIRES_CTTY)
1409 	/*
1410 	 * If setsid is called on Solaris, sshd will acquire the controlling
1411 	 * terminal while pushing STREAMS modules. This will prevent the
1412 	 * shell from acquiring it later.
1413 	 */
1414 	if (!debug_flag && !inetd_flag && setsid() < 0)
1415 		error("setsid: %.100s", strerror(errno));
1416 #endif
1417 
1418 	/*
1419 	 * Disable the key regeneration alarm.  We will not regenerate the
1420 	 * key since we are no longer in a position to give it to anyone. We
1421 	 * will not restart on SIGHUP since it no longer makes sense.
1422 	 */
1423 	alarm(0);
1424 	signal(SIGALRM, SIG_DFL);
1425 	signal(SIGHUP, SIG_DFL);
1426 	signal(SIGTERM, SIG_DFL);
1427 	signal(SIGQUIT, SIG_DFL);
1428 	signal(SIGCHLD, SIG_DFL);
1429 	signal(SIGINT, SIG_DFL);
1430 
1431 	/* Set keepalives if requested. */
1432 	if (options.keepalives &&
1433 	    setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, &on,
1434 	    sizeof(on)) < 0)
1435 		error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
1436 
1437 #ifdef __FreeBSD__
1438 	/*
1439 	 * Initialize the resolver.  This may not happen automatically
1440 	 * before privsep chroot().
1441 	 */
1442 	if ((_res.options & RES_INIT) == 0) {
1443 		debug("res_init()");
1444 		res_init();
1445 	}
1446 #endif
1447 
1448 	/*
1449 	 * Register our connection.  This turns encryption off because we do
1450 	 * not have a key.
1451 	 */
1452 	packet_set_connection(sock_in, sock_out);
1453 
1454 	remote_port = get_remote_port();
1455 	remote_ip = get_remote_ipaddr();
1456 
1457 #ifdef LIBWRAP
1458 	/* Check whether logins are denied from this host. */
1459 	{
1460 		struct request_info req;
1461 
1462 		request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, 0);
1463 		fromhost(&req);
1464 
1465 		if (!hosts_access(&req)) {
1466 			debug("Connection refused by tcp wrapper");
1467 			refuse(&req);
1468 			/* NOTREACHED */
1469 			fatal("libwrap refuse returns");
1470 		}
1471 	}
1472 #endif /* LIBWRAP */
1473 
1474 	/* Log the connection. */
1475 	verbose("Connection from %.500s port %d", remote_ip, remote_port);
1476 
1477 	/*
1478 	 * We don\'t want to listen forever unless the other side
1479 	 * successfully authenticates itself.  So we set up an alarm which is
1480 	 * cleared after successful authentication.  A limit of zero
1481 	 * indicates no limit. Note that we don\'t set the alarm in debugging
1482 	 * mode; it is just annoying to have the server exit just when you
1483 	 * are about to discover the bug.
1484 	 */
1485 	signal(SIGALRM, grace_alarm_handler);
1486 	if (!debug_flag)
1487 		alarm(options.login_grace_time);
1488 
1489 	sshd_exchange_identification(sock_in, sock_out);
1490 	/*
1491 	 * Check that the connection comes from a privileged port.
1492 	 * Rhosts-Authentication only makes sense from privileged
1493 	 * programs.  Of course, if the intruder has root access on his local
1494 	 * machine, he can connect from any port.  So do not use these
1495 	 * authentication methods from machines that you do not trust.
1496 	 */
1497 	if (options.rhosts_authentication &&
1498 	    (remote_port >= IPPORT_RESERVED ||
1499 	    remote_port < IPPORT_RESERVED / 2)) {
1500 		debug("Rhosts Authentication disabled, "
1501 		    "originating port %d not trusted.", remote_port);
1502 		options.rhosts_authentication = 0;
1503 	}
1504 #if defined(KRB4) && !defined(KRB5)
1505 	if (!packet_connection_is_ipv4() &&
1506 	    options.kerberos_authentication) {
1507 		debug("Kerberos Authentication disabled, only available for IPv4.");
1508 		options.kerberos_authentication = 0;
1509 	}
1510 #endif /* KRB4 && !KRB5 */
1511 #ifdef AFS
1512 	/* If machine has AFS, set process authentication group. */
1513 	if (k_hasafs()) {
1514 		k_setpag();
1515 		k_unlog();
1516 	}
1517 #endif /* AFS */
1518 
1519 	packet_set_nonblocking();
1520 
1521 	if (use_privsep)
1522 		if ((authctxt = privsep_preauth()) != NULL)
1523 			goto authenticated;
1524 
1525 	/* perform the key exchange */
1526 	/* authenticate user and start session */
1527 	if (compat20) {
1528 		do_ssh2_kex();
1529 		authctxt = do_authentication2();
1530 	} else {
1531 		do_ssh1_kex();
1532 		authctxt = do_authentication();
1533 	}
1534 	/*
1535 	 * If we use privilege separation, the unprivileged child transfers
1536 	 * the current keystate and exits
1537 	 */
1538 	if (use_privsep) {
1539 		mm_send_keystate(pmonitor);
1540 		exit(0);
1541 	}
1542 
1543  authenticated:
1544 	/*
1545 	 * In privilege separation, we fork another child and prepare
1546 	 * file descriptor passing.
1547 	 */
1548 	if (use_privsep) {
1549 		privsep_postauth(authctxt);
1550 		/* the monitor process [priv] will not return */
1551 		if (!compat20)
1552 			destroy_sensitive_data();
1553 	}
1554 
1555 	/* Perform session preparation. */
1556 	do_authenticated(authctxt);
1557 
1558 	/* The connection has been terminated. */
1559 	verbose("Closing connection to %.100s", remote_ip);
1560 
1561 #ifdef USE_PAM
1562 	finish_pam();
1563 #endif /* USE_PAM */
1564 
1565 	packet_close();
1566 
1567 	if (use_privsep)
1568 		mm_terminate();
1569 
1570 	exit(0);
1571 }
1572 
1573 /*
1574  * Decrypt session_key_int using our private server key and private host key
1575  * (key with larger modulus first).
1576  */
1577 int
1578 ssh1_session_key(BIGNUM *session_key_int)
1579 {
1580 	int rsafail = 0;
1581 
1582 	if (BN_cmp(sensitive_data.server_key->rsa->n, sensitive_data.ssh1_host_key->rsa->n) > 0) {
1583 		/* Server key has bigger modulus. */
1584 		if (BN_num_bits(sensitive_data.server_key->rsa->n) <
1585 		    BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1586 			fatal("do_connection: %s: server_key %d < host_key %d + SSH_KEY_BITS_RESERVED %d",
1587 			    get_remote_ipaddr(),
1588 			    BN_num_bits(sensitive_data.server_key->rsa->n),
1589 			    BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1590 			    SSH_KEY_BITS_RESERVED);
1591 		}
1592 		if (rsa_private_decrypt(session_key_int, session_key_int,
1593 		    sensitive_data.server_key->rsa) <= 0)
1594 			rsafail++;
1595 		if (rsa_private_decrypt(session_key_int, session_key_int,
1596 		    sensitive_data.ssh1_host_key->rsa) <= 0)
1597 			rsafail++;
1598 	} else {
1599 		/* Host key has bigger modulus (or they are equal). */
1600 		if (BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) <
1601 		    BN_num_bits(sensitive_data.server_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1602 			fatal("do_connection: %s: host_key %d < server_key %d + SSH_KEY_BITS_RESERVED %d",
1603 			    get_remote_ipaddr(),
1604 			    BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1605 			    BN_num_bits(sensitive_data.server_key->rsa->n),
1606 			    SSH_KEY_BITS_RESERVED);
1607 		}
1608 		if (rsa_private_decrypt(session_key_int, session_key_int,
1609 		    sensitive_data.ssh1_host_key->rsa) < 0)
1610 			rsafail++;
1611 		if (rsa_private_decrypt(session_key_int, session_key_int,
1612 		    sensitive_data.server_key->rsa) < 0)
1613 			rsafail++;
1614 	}
1615 	return (rsafail);
1616 }
1617 /*
1618  * SSH1 key exchange
1619  */
1620 static void
1621 do_ssh1_kex(void)
1622 {
1623 	int i, len;
1624 	int rsafail = 0;
1625 	BIGNUM *session_key_int;
1626 	u_char session_key[SSH_SESSION_KEY_LENGTH];
1627 	u_char cookie[8];
1628 	u_int cipher_type, auth_mask, protocol_flags;
1629 	u_int32_t rnd = 0;
1630 
1631 	/*
1632 	 * Generate check bytes that the client must send back in the user
1633 	 * packet in order for it to be accepted; this is used to defy ip
1634 	 * spoofing attacks.  Note that this only works against somebody
1635 	 * doing IP spoofing from a remote machine; any machine on the local
1636 	 * network can still see outgoing packets and catch the random
1637 	 * cookie.  This only affects rhosts authentication, and this is one
1638 	 * of the reasons why it is inherently insecure.
1639 	 */
1640 	for (i = 0; i < 8; i++) {
1641 		if (i % 4 == 0)
1642 			rnd = arc4random();
1643 		cookie[i] = rnd & 0xff;
1644 		rnd >>= 8;
1645 	}
1646 
1647 	/*
1648 	 * Send our public key.  We include in the packet 64 bits of random
1649 	 * data that must be matched in the reply in order to prevent IP
1650 	 * spoofing.
1651 	 */
1652 	packet_start(SSH_SMSG_PUBLIC_KEY);
1653 	for (i = 0; i < 8; i++)
1654 		packet_put_char(cookie[i]);
1655 
1656 	/* Store our public server RSA key. */
1657 	packet_put_int(BN_num_bits(sensitive_data.server_key->rsa->n));
1658 	packet_put_bignum(sensitive_data.server_key->rsa->e);
1659 	packet_put_bignum(sensitive_data.server_key->rsa->n);
1660 
1661 	/* Store our public host RSA key. */
1662 	packet_put_int(BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
1663 	packet_put_bignum(sensitive_data.ssh1_host_key->rsa->e);
1664 	packet_put_bignum(sensitive_data.ssh1_host_key->rsa->n);
1665 
1666 	/* Put protocol flags. */
1667 	packet_put_int(SSH_PROTOFLAG_HOST_IN_FWD_OPEN);
1668 
1669 	/* Declare which ciphers we support. */
1670 	packet_put_int(cipher_mask_ssh1(0));
1671 
1672 	/* Declare supported authentication types. */
1673 	auth_mask = 0;
1674 	if (options.rhosts_authentication)
1675 		auth_mask |= 1 << SSH_AUTH_RHOSTS;
1676 	if (options.rhosts_rsa_authentication)
1677 		auth_mask |= 1 << SSH_AUTH_RHOSTS_RSA;
1678 	if (options.rsa_authentication)
1679 		auth_mask |= 1 << SSH_AUTH_RSA;
1680 #if defined(KRB4) || defined(KRB5)
1681 	if (options.kerberos_authentication)
1682 		auth_mask |= 1 << SSH_AUTH_KERBEROS;
1683 #endif
1684 #if defined(AFS) || defined(KRB5)
1685 	if (options.kerberos_tgt_passing)
1686 		auth_mask |= 1 << SSH_PASS_KERBEROS_TGT;
1687 #endif
1688 #ifdef AFS
1689 	if (options.afs_token_passing)
1690 		auth_mask |= 1 << SSH_PASS_AFS_TOKEN;
1691 #endif
1692 	if (options.challenge_response_authentication == 1)
1693 		auth_mask |= 1 << SSH_AUTH_TIS;
1694 	if (options.password_authentication)
1695 		auth_mask |= 1 << SSH_AUTH_PASSWORD;
1696 	packet_put_int(auth_mask);
1697 
1698 	/* Send the packet and wait for it to be sent. */
1699 	packet_send();
1700 	packet_write_wait();
1701 
1702 	debug("Sent %d bit server key and %d bit host key.",
1703 	    BN_num_bits(sensitive_data.server_key->rsa->n),
1704 	    BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
1705 
1706 	/* Read clients reply (cipher type and session key). */
1707 	packet_read_expect(SSH_CMSG_SESSION_KEY);
1708 
1709 	/* Get cipher type and check whether we accept this. */
1710 	cipher_type = packet_get_char();
1711 
1712 	if (!(cipher_mask_ssh1(0) & (1 << cipher_type)))
1713 		packet_disconnect("Warning: client selects unsupported cipher.");
1714 
1715 	/* Get check bytes from the packet.  These must match those we
1716 	   sent earlier with the public key packet. */
1717 	for (i = 0; i < 8; i++)
1718 		if (cookie[i] != packet_get_char())
1719 			packet_disconnect("IP Spoofing check bytes do not match.");
1720 
1721 	debug("Encryption type: %.200s", cipher_name(cipher_type));
1722 
1723 	/* Get the encrypted integer. */
1724 	if ((session_key_int = BN_new()) == NULL)
1725 		fatal("do_ssh1_kex: BN_new failed");
1726 	packet_get_bignum(session_key_int);
1727 
1728 	protocol_flags = packet_get_int();
1729 	packet_set_protocol_flags(protocol_flags);
1730 	packet_check_eom();
1731 
1732 	/* Decrypt session_key_int using host/server keys */
1733 	rsafail = PRIVSEP(ssh1_session_key(session_key_int));
1734 
1735 	/*
1736 	 * Extract session key from the decrypted integer.  The key is in the
1737 	 * least significant 256 bits of the integer; the first byte of the
1738 	 * key is in the highest bits.
1739 	 */
1740 	if (!rsafail) {
1741 		BN_mask_bits(session_key_int, sizeof(session_key) * 8);
1742 		len = BN_num_bytes(session_key_int);
1743 		if (len < 0 || len > sizeof(session_key)) {
1744 			error("do_connection: bad session key len from %s: "
1745 			    "session_key_int %d > sizeof(session_key) %lu",
1746 			    get_remote_ipaddr(), len, (u_long)sizeof(session_key));
1747 			rsafail++;
1748 		} else {
1749 			memset(session_key, 0, sizeof(session_key));
1750 			BN_bn2bin(session_key_int,
1751 			    session_key + sizeof(session_key) - len);
1752 
1753 			compute_session_id(session_id, cookie,
1754 			    sensitive_data.ssh1_host_key->rsa->n,
1755 			    sensitive_data.server_key->rsa->n);
1756 			/*
1757 			 * Xor the first 16 bytes of the session key with the
1758 			 * session id.
1759 			 */
1760 			for (i = 0; i < 16; i++)
1761 				session_key[i] ^= session_id[i];
1762 		}
1763 	}
1764 	if (rsafail) {
1765 		int bytes = BN_num_bytes(session_key_int);
1766 		u_char *buf = xmalloc(bytes);
1767 		MD5_CTX md;
1768 
1769 		log("do_connection: generating a fake encryption key");
1770 		BN_bn2bin(session_key_int, buf);
1771 		MD5_Init(&md);
1772 		MD5_Update(&md, buf, bytes);
1773 		MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1774 		MD5_Final(session_key, &md);
1775 		MD5_Init(&md);
1776 		MD5_Update(&md, session_key, 16);
1777 		MD5_Update(&md, buf, bytes);
1778 		MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1779 		MD5_Final(session_key + 16, &md);
1780 		memset(buf, 0, bytes);
1781 		xfree(buf);
1782 		for (i = 0; i < 16; i++)
1783 			session_id[i] = session_key[i] ^ session_key[i + 16];
1784 	}
1785 	/* Destroy the private and public keys. No longer. */
1786 	destroy_sensitive_data();
1787 
1788 	if (use_privsep)
1789 		mm_ssh1_session_id(session_id);
1790 
1791 	/* Destroy the decrypted integer.  It is no longer needed. */
1792 	BN_clear_free(session_key_int);
1793 
1794 	/* Set the session key.  From this on all communications will be encrypted. */
1795 	packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, cipher_type);
1796 
1797 	/* Destroy our copy of the session key.  It is no longer needed. */
1798 	memset(session_key, 0, sizeof(session_key));
1799 
1800 	debug("Received session key; encryption turned on.");
1801 
1802 	/* Send an acknowledgment packet.  Note that this packet is sent encrypted. */
1803 	packet_start(SSH_SMSG_SUCCESS);
1804 	packet_send();
1805 	packet_write_wait();
1806 }
1807 
1808 /*
1809  * SSH2 key exchange: diffie-hellman-group1-sha1
1810  */
1811 static void
1812 do_ssh2_kex(void)
1813 {
1814 	Kex *kex;
1815 
1816 	if (options.ciphers != NULL) {
1817 		myproposal[PROPOSAL_ENC_ALGS_CTOS] =
1818 		myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
1819 	}
1820 	myproposal[PROPOSAL_ENC_ALGS_CTOS] =
1821 	    compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
1822 	myproposal[PROPOSAL_ENC_ALGS_STOC] =
1823 	    compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
1824 
1825 	if (options.macs != NULL) {
1826 		myproposal[PROPOSAL_MAC_ALGS_CTOS] =
1827 		myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
1828 	}
1829 	if (!options.compression) {
1830 		myproposal[PROPOSAL_COMP_ALGS_CTOS] =
1831 		myproposal[PROPOSAL_COMP_ALGS_STOC] = "none";
1832 	}
1833 	myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = list_hostkey_types();
1834 
1835 	/* start key exchange */
1836 	kex = kex_setup(myproposal);
1837 	kex->kex[KEX_DH_GRP1_SHA1] = kexdh_server;
1838 	kex->kex[KEX_DH_GEX_SHA1] = kexgex_server;
1839 	kex->server = 1;
1840 	kex->client_version_string=client_version_string;
1841 	kex->server_version_string=server_version_string;
1842 	kex->load_host_key=&get_hostkey_by_type;
1843 	kex->host_key_index=&get_hostkey_index;
1844 
1845 	xxx_kex = kex;
1846 
1847 	dispatch_run(DISPATCH_BLOCK, &kex->done, kex);
1848 
1849 	session_id2 = kex->session_id;
1850 	session_id2_len = kex->session_id_len;
1851 
1852 #ifdef DEBUG_KEXDH
1853 	/* send 1st encrypted/maced/compressed message */
1854 	packet_start(SSH2_MSG_IGNORE);
1855 	packet_put_cstring("markus");
1856 	packet_send();
1857 	packet_write_wait();
1858 #endif
1859 	debug("KEX done");
1860 }
1861