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