1 /* $NetBSD: sshd.c,v 1.1.1.2 2009/12/27 01:07:16 christos Exp $ */
2 /* $OpenBSD: sshd.c,v 1.367 2009/05/28 16:50:16 andreas Exp $ */
4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
7 * This program is the ssh daemon. It listens for connections from clients,
8 * and performs authentication, executes use commands or shell, and forwards
9 * information to/from the application to the user client over an encrypted
10 * connection. This can also handle forwarding of X11, TCP/IP, and
11 * authentication agent connections.
13 * As far as I am concerned, the code I have written for this software
14 * can be used freely for any purpose. Any derived versions of this
15 * software must be clearly marked as such, and if the derived work is
16 * incompatible with the protocol description in the RFC file, it must be
17 * called by a name other than "ssh" or "Secure Shell".
19 * SSH2 implementation:
20 * Privilege Separation:
22 * Copyright (c) 2000, 2001, 2002 Markus Friedl. All rights reserved.
23 * Copyright (c) 2002 Niels Provos. All rights reserved.
25 * Redistribution and use in source and binary forms, with or without
26 * modification, are permitted provided that the following conditions
28 * 1. Redistributions of source code must retain the above copyright
29 * notice, this list of conditions and the following disclaimer.
30 * 2. Redistributions in binary form must reproduce the above copyright
31 * notice, this list of conditions and the following disclaimer in the
32 * documentation and/or other materials provided with the distribution.
34 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
35 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
36 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
37 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
38 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
39 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
40 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
41 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
42 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
43 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
47 __RCSID("$NetBSD: sshd.c,v 1.2 2009/06/07 22:38:47 christos Exp $");
48 #include <sys/types.h>
49 #include <sys/param.h>
50 #include <sys/ioctl.h>
54 #include <sys/socket.h>
56 #include <sys/queue.h>
69 #include <openssl/dh.h>
70 #include <openssl/bn.h>
71 #include <openssl/md5.h>
72 #include <openssl/rand.h>
90 #include "myproposal.h"
92 #include "pathnames.h"
100 #include "channels.h"
102 #include "monitor_mm.h"
107 #include "monitor_wrap.h"
115 int allow_severity
= LOG_INFO
;
116 int deny_severity
= LOG_WARNING
;
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)
132 extern char *__progname
;
134 /* Server configuration options. */
135 ServerOptions options
;
137 /* Name of the server configuration file. */
138 char *config_file_name
= _PATH_SERVER_CONFIG_FILE
;
141 * Debug mode flag. This can be set on the command line. If debug
142 * mode is enabled, extra debugging output will be sent to the system
143 * log, the daemon will not go to background, and will exit after processing
144 * the first connection.
148 /* Flag indicating that the daemon should only test the configuration and keys. */
151 /* Flag indicating that the daemon is being started from inetd. */
154 /* Flag indicating that sshd should not detach and become a daemon. */
155 int no_daemon_flag
= 0;
157 /* debug goes to stderr unless inetd_flag is set */
160 /* Saved arguments to main(). */
164 int rexeced_flag
= 0;
170 * The sockets that the server is listening; this is used in the SIGHUP
173 #define MAX_LISTEN_SOCKS 16
174 int listen_socks
[MAX_LISTEN_SOCKS
];
175 int num_listen_socks
= 0;
178 * the client's version string, passed by sshd2 in compat mode. if != NULL,
179 * sshd will skip the version-number exchange
181 char *client_version_string
= NULL
;
182 char *server_version_string
= NULL
;
184 /* for rekeying XXX fixme */
188 * Any really sensitive data in the application is contained in this
189 * structure. The idea is that this structure could be locked into memory so
190 * that the pages do not get written into swap. However, there are some
191 * problems. The private key contains BIGNUMs, and we do not (in principle)
192 * have access to the internals of them, and locking just the structure is
193 * not very useful. Currently, memory locking is not implemented.
196 Key
*server_key
; /* ephemeral server key */
197 Key
*ssh1_host_key
; /* ssh1 host key */
198 Key
**host_keys
; /* all private host keys */
201 u_char ssh1_cookie
[SSH_SESSION_KEY_LENGTH
];
205 * Flag indicating whether the RSA server key needs to be regenerated.
206 * Is set in the SIGALRM handler and cleared when the key is regenerated.
208 static volatile sig_atomic_t key_do_regen
= 0;
210 /* This is set to true when a signal is received. */
211 static volatile sig_atomic_t received_sighup
= 0;
212 static volatile sig_atomic_t received_sigterm
= 0;
214 /* session identifier, used by RSA-auth */
215 u_char session_id
[16];
218 u_char
*session_id2
= NULL
;
219 u_int session_id2_len
= 0;
221 /* record remote hostname or ip */
222 u_int utmp_len
= MAXHOSTNAMELEN
;
224 /* options.max_startup sized array of fd ints */
225 int *startup_pipes
= NULL
;
226 int startup_pipe
; /* in child */
228 /* variables used for privilege separation */
229 int use_privsep
= -1;
230 struct monitor
*pmonitor
= NULL
;
232 /* global authentication context */
233 Authctxt
*the_authctxt
= NULL
;
235 /* sshd_config buffer */
238 /* message to be displayed after login */
241 /* Prototypes for various functions defined later in this file. */
242 void destroy_sensitive_data(void);
243 void demote_sensitive_data(void);
245 static void do_ssh1_kex(void);
246 static void do_ssh2_kex(void);
249 * Close all listening sockets
252 close_listen_socks(void)
256 for (i
= 0; i
< num_listen_socks
; i
++)
257 close(listen_socks
[i
]);
258 num_listen_socks
= -1;
262 close_startup_pipes(void)
267 for (i
= 0; i
< options
.max_startups
; i
++)
268 if (startup_pipes
[i
] != -1)
269 close(startup_pipes
[i
]);
273 * Signal handler for SIGHUP. Sshd execs itself when it receives SIGHUP;
274 * the effect is to reread the configuration file (and to regenerate
280 sighup_handler(int sig
)
282 int save_errno
= errno
;
285 signal(SIGHUP
, sighup_handler
);
290 * Called from the main program after receiving SIGHUP.
291 * Restarts the server.
296 logit("Received SIGHUP; restarting.");
297 close_listen_socks();
298 close_startup_pipes();
299 alarm(0); /* alarm timer persists across exec */
300 execv(saved_argv
[0], saved_argv
);
301 logit("RESTART FAILED: av[0]='%.100s', error: %.100s.", saved_argv
[0],
307 * Generic signal handler for terminating signals in the master daemon.
311 sigterm_handler(int sig
)
313 received_sigterm
= sig
;
317 * SIGCHLD handler. This is called whenever a child dies. This will then
318 * reap any zombies left by exited children.
322 main_sigchld_handler(int sig
)
324 int save_errno
= errno
;
328 while ((pid
= waitpid(-1, &status
, WNOHANG
)) > 0 ||
329 (pid
< 0 && errno
== EINTR
))
332 signal(SIGCHLD
, main_sigchld_handler
);
337 * Signal handler for the alarm after the login grace period has expired.
341 grace_alarm_handler(int sig
)
343 if (use_privsep
&& pmonitor
!= NULL
&& pmonitor
->m_pid
> 0)
344 kill(pmonitor
->m_pid
, SIGALRM
);
346 /* Log error and exit. */
347 sigdie("Timeout before authentication for %s", get_remote_ipaddr());
351 * Signal handler for the key regeneration alarm. Note that this
352 * alarm only occurs in the daemon waiting for connections, and it does not
353 * do anything with the private key or random state before forking.
354 * Thus there should be no concurrency control/asynchronous execution
358 generate_ephemeral_server_key(void)
360 verbose("Generating %s%d bit RSA key.",
361 sensitive_data
.server_key
? "new " : "", options
.server_key_bits
);
362 if (sensitive_data
.server_key
!= NULL
)
363 key_free(sensitive_data
.server_key
);
364 sensitive_data
.server_key
= key_generate(KEY_RSA1
,
365 options
.server_key_bits
);
366 verbose("RSA key generation complete.");
368 arc4random_buf(sensitive_data
.ssh1_cookie
, SSH_SESSION_KEY_LENGTH
);
374 key_regeneration_alarm(int sig
)
376 int save_errno
= errno
;
378 signal(SIGALRM
, SIG_DFL
);
384 sshd_exchange_identification(int sock_in
, int sock_out
)
388 int remote_major
, remote_minor
;
390 char *s
, *newline
= "\n";
391 char buf
[256]; /* Must not be larger than remote_version. */
392 char remote_version
[256]; /* Must be at least as big as buf. */
394 if ((options
.protocol
& SSH_PROTO_1
) &&
395 (options
.protocol
& SSH_PROTO_2
)) {
396 major
= PROTOCOL_MAJOR_1
;
398 } else if (options
.protocol
& SSH_PROTO_2
) {
399 major
= PROTOCOL_MAJOR_2
;
400 minor
= PROTOCOL_MINOR_2
;
403 major
= PROTOCOL_MAJOR_1
;
404 minor
= PROTOCOL_MINOR_1
;
406 snprintf(buf
, sizeof buf
, "SSH-%d.%d-%.100s%s", major
, minor
,
407 SSH_RELEASE
, newline
);
408 server_version_string
= xstrdup(buf
);
410 /* Send our protocol version identification. */
411 if (roaming_atomicio(vwrite
, sock_out
, server_version_string
,
412 strlen(server_version_string
))
413 != strlen(server_version_string
)) {
414 logit("Could not write ident string to %s", get_remote_ipaddr());
418 /* Read other sides version identification. */
419 memset(buf
, 0, sizeof(buf
));
420 for (i
= 0; i
< sizeof(buf
) - 1; i
++) {
421 if (roaming_atomicio(read
, sock_in
, &buf
[i
], 1) != 1) {
422 logit("Did not receive identification string from %s",
423 get_remote_ipaddr());
426 if (buf
[i
] == '\r') {
428 /* Kludge for F-Secure Macintosh < 1.0.2 */
430 strncmp(buf
, "SSH-1.5-W1.0", 12) == 0)
434 if (buf
[i
] == '\n') {
439 buf
[sizeof(buf
) - 1] = 0;
440 client_version_string
= xstrdup(buf
);
443 * Check that the versions match. In future this might accept
444 * several versions and set appropriate flags to handle them.
446 if (sscanf(client_version_string
, "SSH-%d.%d-%[^\n]\n",
447 &remote_major
, &remote_minor
, remote_version
) != 3) {
448 s
= "Protocol mismatch.\n";
449 (void) atomicio(vwrite
, sock_out
, s
, strlen(s
));
452 logit("Bad protocol version identification '%.100s' from %s",
453 client_version_string
, get_remote_ipaddr());
456 debug("Client protocol version %d.%d; client software version %.100s",
457 remote_major
, remote_minor
, remote_version
);
458 logit("SSH: Server;Ltype: Version;Remote: %s-%d;Protocol: %d.%d;Client: %.100s",
459 get_remote_ipaddr(), get_remote_port(),
460 remote_major
, remote_minor
, remote_version
);
462 compat_datafellows(remote_version
);
464 if (datafellows
& SSH_BUG_PROBE
) {
465 logit("probed from %s with %s. Don't panic.",
466 get_remote_ipaddr(), client_version_string
);
470 if (datafellows
& SSH_BUG_SCANNER
) {
471 logit("scanned from %s with %s. Don't panic.",
472 get_remote_ipaddr(), client_version_string
);
477 switch (remote_major
) {
479 if (remote_minor
== 99) {
480 if (options
.protocol
& SSH_PROTO_2
)
486 if (!(options
.protocol
& SSH_PROTO_1
)) {
490 if (remote_minor
< 3) {
491 packet_disconnect("Your ssh version is too old and "
492 "is no longer supported. Please install a newer version.");
493 } else if (remote_minor
== 3) {
494 /* note that this disables agent-forwarding */
499 if (options
.protocol
& SSH_PROTO_2
) {
508 chop(server_version_string
);
509 debug("Local version string %.200s", server_version_string
);
512 s
= "Protocol major versions differ.\n";
513 (void) atomicio(vwrite
, sock_out
, s
, strlen(s
));
516 logit("Protocol major versions differ for %s: %.200s vs. %.200s",
518 server_version_string
, client_version_string
);
523 /* Destroy the host and server keys. They will no longer be needed. */
525 destroy_sensitive_data(void)
529 if (sensitive_data
.server_key
) {
530 key_free(sensitive_data
.server_key
);
531 sensitive_data
.server_key
= NULL
;
533 for (i
= 0; i
< options
.num_host_key_files
; i
++) {
534 if (sensitive_data
.host_keys
[i
]) {
535 key_free(sensitive_data
.host_keys
[i
]);
536 sensitive_data
.host_keys
[i
] = NULL
;
539 sensitive_data
.ssh1_host_key
= NULL
;
540 memset(sensitive_data
.ssh1_cookie
, 0, SSH_SESSION_KEY_LENGTH
);
543 /* Demote private to public keys for network child */
545 demote_sensitive_data(void)
550 if (sensitive_data
.server_key
) {
551 tmp
= key_demote(sensitive_data
.server_key
);
552 key_free(sensitive_data
.server_key
);
553 sensitive_data
.server_key
= tmp
;
556 for (i
= 0; i
< options
.num_host_key_files
; i
++) {
557 if (sensitive_data
.host_keys
[i
]) {
558 tmp
= key_demote(sensitive_data
.host_keys
[i
]);
559 key_free(sensitive_data
.host_keys
[i
]);
560 sensitive_data
.host_keys
[i
] = tmp
;
561 if (tmp
->type
== KEY_RSA1
)
562 sensitive_data
.ssh1_host_key
= tmp
;
566 /* We do not clear ssh1_host key and cookie. XXX - Okay Niels? */
570 privsep_preauth_child(void)
576 /* Enable challenge-response authentication for privilege separation */
577 privsep_challenge_enable();
580 arc4random_buf(rnd
, sizeof(rnd
));
581 RAND_seed(rnd
, sizeof(rnd
));
583 /* Demote the private keys to public keys. */
584 demote_sensitive_data();
586 if ((pw
= getpwnam(SSH_PRIVSEP_USER
)) == NULL
)
587 fatal("Privilege separation user %s does not exist",
589 memset(pw
->pw_passwd
, 0, strlen(pw
->pw_passwd
));
592 /* Change our root directory */
593 if (chroot(_PATH_PRIVSEP_CHROOT_DIR
) == -1)
594 fatal("chroot(\"%s\"): %s", _PATH_PRIVSEP_CHROOT_DIR
,
596 if (chdir("/") == -1)
597 fatal("chdir(\"/\"): %s", strerror(errno
));
599 /* Drop our privileges */
600 debug3("privsep user:group %u:%u", (u_int
)pw
->pw_uid
,
603 /* XXX not ready, too heavy after chroot */
604 do_setusercontext(pw
);
606 gidset
[0] = pw
->pw_gid
;
607 if (setgroups(1, gidset
) < 0)
608 fatal("setgroups: %.100s", strerror(errno
));
609 permanently_set_uid(pw
);
614 privsep_preauth(Authctxt
*authctxt
)
619 /* Set up unprivileged child process to deal with network data */
620 pmonitor
= monitor_init();
621 /* Store a pointer to the kex for later rekeying */
622 pmonitor
->m_pkex
= &xxx_kex
;
626 fatal("fork of unprivileged child failed");
627 } else if (pid
!= 0) {
628 debug2("Network child is on pid %ld", (long)pid
);
630 close(pmonitor
->m_recvfd
);
631 pmonitor
->m_pid
= pid
;
632 monitor_child_preauth(authctxt
, pmonitor
);
633 close(pmonitor
->m_sendfd
);
636 monitor_sync(pmonitor
);
638 /* Wait for the child's exit status */
639 while (waitpid(pid
, &status
, 0) < 0)
646 close(pmonitor
->m_sendfd
);
648 /* Demote the child */
649 if (getuid() == 0 || geteuid() == 0)
650 privsep_preauth_child();
651 setproctitle("%s", "[net]");
657 privsep_postauth(Authctxt
*authctxt
)
661 if (authctxt
->pw
->pw_uid
== 0 || options
.use_login
) {
662 /* File descriptor passing is broken or root login */
667 /* New socket pair */
668 monitor_reinit(pmonitor
);
670 pmonitor
->m_pid
= fork();
671 if (pmonitor
->m_pid
== -1)
672 fatal("fork of unprivileged child failed");
673 else if (pmonitor
->m_pid
!= 0) {
674 verbose("User child is on pid %ld", (long)pmonitor
->m_pid
);
675 close(pmonitor
->m_recvfd
);
676 buffer_clear(&loginmsg
);
677 monitor_child_postauth(pmonitor
);
683 close(pmonitor
->m_sendfd
);
685 /* Demote the private keys to public keys. */
686 demote_sensitive_data();
689 arc4random_buf(rnd
, sizeof(rnd
));
690 RAND_seed(rnd
, sizeof(rnd
));
692 /* Drop privileges */
693 do_setusercontext(authctxt
->pw
);
696 /* It is safe now to apply the key state */
697 monitor_apply_keystate(pmonitor
);
700 * Tell the packet layer that authentication was successful, since
701 * this information is not part of the key state.
703 packet_set_authenticated();
707 list_hostkey_types(void)
715 for (i
= 0; i
< options
.num_host_key_files
; i
++) {
716 Key
*key
= sensitive_data
.host_keys
[i
];
722 if (buffer_len(&b
) > 0)
723 buffer_append(&b
, ",", 1);
724 p
= key_ssh_name(key
);
725 buffer_append(&b
, p
, strlen(p
));
729 buffer_append(&b
, "\0", 1);
730 ret
= xstrdup(buffer_ptr(&b
));
732 debug("list_hostkey_types: %s", ret
);
737 get_hostkey_by_type(int type
)
741 for (i
= 0; i
< options
.num_host_key_files
; i
++) {
742 Key
*key
= sensitive_data
.host_keys
[i
];
743 if (key
!= NULL
&& key
->type
== type
)
750 get_hostkey_by_index(int ind
)
752 if (ind
< 0 || ind
>= options
.num_host_key_files
)
754 return (sensitive_data
.host_keys
[ind
]);
758 get_hostkey_index(Key
*key
)
762 for (i
= 0; i
< options
.num_host_key_files
; i
++) {
763 if (key
== sensitive_data
.host_keys
[i
])
770 * returns 1 if connection should be dropped, 0 otherwise.
771 * dropping starts at connection #max_startups_begin with a probability
772 * of (max_startups_rate/100). the probability increases linearly until
773 * all connections are dropped for startups > max_startups
776 drop_connection(int startups
)
780 if (startups
< options
.max_startups_begin
)
782 if (startups
>= options
.max_startups
)
784 if (options
.max_startups_rate
== 100)
787 p
= 100 - options
.max_startups_rate
;
788 p
*= startups
- options
.max_startups_begin
;
789 p
/= options
.max_startups
- options
.max_startups_begin
;
790 p
+= options
.max_startups_rate
;
791 r
= arc4random_uniform(100);
793 debug("drop_connection: p %d, r %d", p
, r
);
794 return (r
< p
) ? 1 : 0;
800 fprintf(stderr
, "%s, %s\n",
801 SSH_VERSION
, SSLeay_version(SSLEAY_VERSION
));
803 "usage: sshd [-46DdeiqTt] [-b bits] [-C connection_spec] [-f config_file]\n"
804 " [-g login_grace_time] [-h host_key_file] [-k key_gen_time]\n"
805 " [-o option] [-p port] [-u len]\n"
811 send_rexec_state(int fd
, Buffer
*conf
)
815 debug3("%s: entering fd = %d config len %d", __func__
, fd
,
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)
830 buffer_put_cstring(&m
, buffer_ptr(conf
));
832 if (sensitive_data
.server_key
!= NULL
&&
833 sensitive_data
.server_key
->type
== KEY_RSA1
) {
834 buffer_put_int(&m
, 1);
835 buffer_put_bignum(&m
, sensitive_data
.server_key
->rsa
->e
);
836 buffer_put_bignum(&m
, sensitive_data
.server_key
->rsa
->n
);
837 buffer_put_bignum(&m
, sensitive_data
.server_key
->rsa
->d
);
838 buffer_put_bignum(&m
, sensitive_data
.server_key
->rsa
->iqmp
);
839 buffer_put_bignum(&m
, sensitive_data
.server_key
->rsa
->p
);
840 buffer_put_bignum(&m
, sensitive_data
.server_key
->rsa
->q
);
842 buffer_put_int(&m
, 0);
844 if (ssh_msg_send(fd
, 0, &m
) == -1)
845 fatal("%s: ssh_msg_send failed", __func__
);
849 debug3("%s: done", __func__
);
853 recv_rexec_state(int fd
, Buffer
*conf
)
859 debug3("%s: entering fd = %d", __func__
, fd
);
863 if (ssh_msg_recv(fd
, &m
) == -1)
864 fatal("%s: ssh_msg_recv failed", __func__
);
865 if (buffer_get_char(&m
) != 0)
866 fatal("%s: rexec version mismatch", __func__
);
868 cp
= buffer_get_string(&m
, &len
);
870 buffer_append(conf
, cp
, len
+ 1);
873 if (buffer_get_int(&m
)) {
874 if (sensitive_data
.server_key
!= NULL
)
875 key_free(sensitive_data
.server_key
);
876 sensitive_data
.server_key
= key_new_private(KEY_RSA1
);
877 buffer_get_bignum(&m
, sensitive_data
.server_key
->rsa
->e
);
878 buffer_get_bignum(&m
, sensitive_data
.server_key
->rsa
->n
);
879 buffer_get_bignum(&m
, sensitive_data
.server_key
->rsa
->d
);
880 buffer_get_bignum(&m
, sensitive_data
.server_key
->rsa
->iqmp
);
881 buffer_get_bignum(&m
, sensitive_data
.server_key
->rsa
->p
);
882 buffer_get_bignum(&m
, sensitive_data
.server_key
->rsa
->q
);
883 rsa_generate_additional_parameters(
884 sensitive_data
.server_key
->rsa
);
888 debug3("%s: done", __func__
);
891 /* Accept a connection from inetd */
893 server_accept_inetd(int *sock_in
, int *sock_out
)
899 close(REEXEC_CONFIG_PASS_FD
);
900 *sock_in
= *sock_out
= dup(STDIN_FILENO
);
902 startup_pipe
= dup(REEXEC_STARTUP_PIPE_FD
);
903 close(REEXEC_STARTUP_PIPE_FD
);
906 *sock_in
= dup(STDIN_FILENO
);
907 *sock_out
= dup(STDOUT_FILENO
);
910 * We intentionally do not close the descriptors 0, 1, and 2
911 * as our code for setting the descriptors won't work if
912 * ttyfd happens to be one of those.
914 if ((fd
= open(_PATH_DEVNULL
, O_RDWR
, 0)) != -1) {
915 dup2(fd
, STDIN_FILENO
);
916 dup2(fd
, STDOUT_FILENO
);
917 if (fd
> STDOUT_FILENO
)
920 debug("inetd sockets after dupping: %d, %d", *sock_in
, *sock_out
);
924 * Listen for TCP connections
929 int ret
, listen_sock
, on
= 1;
931 char ntop
[NI_MAXHOST
], strport
[NI_MAXSERV
];
933 socklen_t socksizelen
= sizeof(int);
935 for (ai
= options
.listen_addrs
; ai
; ai
= ai
->ai_next
) {
936 if (ai
->ai_family
!= AF_INET
&& ai
->ai_family
!= AF_INET6
)
938 if (num_listen_socks
>= MAX_LISTEN_SOCKS
)
939 fatal("Too many listen sockets. "
940 "Enlarge MAX_LISTEN_SOCKS");
941 if ((ret
= getnameinfo(ai
->ai_addr
, ai
->ai_addrlen
,
942 ntop
, sizeof(ntop
), strport
, sizeof(strport
),
943 NI_NUMERICHOST
|NI_NUMERICSERV
)) != 0) {
944 error("getnameinfo failed: %.100s",
945 ssh_gai_strerror(ret
));
948 /* Create socket for listening. */
949 listen_sock
= socket(ai
->ai_family
, ai
->ai_socktype
,
951 if (listen_sock
< 0) {
952 /* kernel may not support ipv6 */
953 verbose("socket: %.100s", strerror(errno
));
956 if (set_nonblock(listen_sock
) == -1) {
961 * Set socket options.
962 * Allow local port reuse in TIME_WAIT.
964 if (setsockopt(listen_sock
, SOL_SOCKET
, SO_REUSEADDR
,
965 &on
, sizeof(on
)) == -1)
966 error("setsockopt SO_REUSEADDR: %s", strerror(errno
));
968 debug("Bind to port %s on %s.", strport
, ntop
);
970 getsockopt(listen_sock
, SOL_SOCKET
, SO_RCVBUF
,
971 &socksize
, &socksizelen
);
972 debug("Server TCP RWIN socket size: %d", socksize
);
973 debug("HPN Buffer Size: %d", options
.hpn_buffer_size
);
975 /* Bind the socket to the desired port. */
976 if (bind(listen_sock
, ai
->ai_addr
, ai
->ai_addrlen
) < 0) {
977 error("Bind to port %s on %s failed: %.200s.",
978 strport
, ntop
, strerror(errno
));
982 listen_socks
[num_listen_socks
] = listen_sock
;
985 /* Start listening on the port. */
986 if (listen(listen_sock
, SSH_LISTEN_BACKLOG
) < 0)
987 fatal("listen on [%s]:%s: %.100s",
988 ntop
, strport
, strerror(errno
));
989 logit("Server listening on %s port %s.", ntop
, strport
);
991 freeaddrinfo(options
.listen_addrs
);
993 if (!num_listen_socks
)
994 fatal("Cannot bind any address.");
998 * The main TCP accept loop. Note that, for the non-debug case, returns
999 * from this function are in a forked subprocess.
1002 server_accept_loop(int *sock_in
, int *sock_out
, int *newsock
, int *config_s
)
1005 int i
, j
, ret
, maxfd
;
1006 int key_used
= 0, startups
= 0;
1007 int startup_p
[2] = { -1 , -1 };
1008 struct sockaddr_storage from
;
1012 /* setup fd set for accept */
1015 for (i
= 0; i
< num_listen_socks
; i
++)
1016 if (listen_socks
[i
] > maxfd
)
1017 maxfd
= listen_socks
[i
];
1018 /* pipes connected to unauthenticated childs */
1019 startup_pipes
= xcalloc(options
.max_startups
, sizeof(int));
1020 for (i
= 0; i
< options
.max_startups
; i
++)
1021 startup_pipes
[i
] = -1;
1024 * Stay listening for connections until the system crashes or
1025 * the daemon is killed with a signal.
1028 if (received_sighup
)
1032 fdset
= (fd_set
*)xcalloc(howmany(maxfd
+ 1, NFDBITS
),
1035 for (i
= 0; i
< num_listen_socks
; i
++)
1036 FD_SET(listen_socks
[i
], fdset
);
1037 for (i
= 0; i
< options
.max_startups
; i
++)
1038 if (startup_pipes
[i
] != -1)
1039 FD_SET(startup_pipes
[i
], fdset
);
1041 /* Wait in select until there is a connection. */
1042 ret
= select(maxfd
+1, fdset
, NULL
, NULL
, NULL
);
1043 if (ret
< 0 && errno
!= EINTR
)
1044 error("select: %.100s", strerror(errno
));
1045 if (received_sigterm
) {
1046 logit("Received signal %d; terminating.",
1047 (int) received_sigterm
);
1048 close_listen_socks();
1049 unlink(options
.pid_file
);
1052 if (key_used
&& key_do_regen
) {
1053 generate_ephemeral_server_key();
1060 for (i
= 0; i
< options
.max_startups
; i
++)
1061 if (startup_pipes
[i
] != -1 &&
1062 FD_ISSET(startup_pipes
[i
], fdset
)) {
1064 * the read end of the pipe is ready
1065 * if the child has closed the pipe
1066 * after successful authentication
1067 * or if the child has died
1069 close(startup_pipes
[i
]);
1070 startup_pipes
[i
] = -1;
1073 for (i
= 0; i
< num_listen_socks
; i
++) {
1074 if (!FD_ISSET(listen_socks
[i
], fdset
))
1076 fromlen
= sizeof(from
);
1077 *newsock
= accept(listen_socks
[i
],
1078 (struct sockaddr
*)&from
, &fromlen
);
1080 if (errno
!= EINTR
&& errno
!= EWOULDBLOCK
)
1081 error("accept: %.100s", strerror(errno
));
1084 if (unset_nonblock(*newsock
) == -1) {
1088 if (drop_connection(startups
) == 1) {
1089 debug("drop connection #%d", startups
);
1093 if (pipe(startup_p
) == -1) {
1098 if (rexec_flag
&& socketpair(AF_UNIX
,
1099 SOCK_STREAM
, 0, config_s
) == -1) {
1100 error("reexec socketpair: %s",
1103 close(startup_p
[0]);
1104 close(startup_p
[1]);
1108 for (j
= 0; j
< options
.max_startups
; j
++)
1109 if (startup_pipes
[j
] == -1) {
1110 startup_pipes
[j
] = startup_p
[0];
1111 if (maxfd
< startup_p
[0])
1112 maxfd
= startup_p
[0];
1118 * Got connection. Fork a child to handle it, unless
1119 * we are in debugging mode.
1123 * In debugging mode. Close the listening
1124 * socket, and start processing the
1125 * connection without forking.
1127 debug("Server will not fork when running in debugging mode.");
1128 close_listen_socks();
1129 *sock_in
= *newsock
;
1130 *sock_out
= *newsock
;
1131 close(startup_p
[0]);
1132 close(startup_p
[1]);
1136 send_rexec_state(config_s
[0],
1144 * Normal production daemon. Fork, and have
1145 * the child process the connection. The
1146 * parent continues listening.
1148 if ((pid
= fork()) == 0) {
1150 * Child. Close the listening and
1151 * max_startup sockets. Start using
1152 * the accepted socket. Reinitialize
1153 * logging (since our pid has changed).
1154 * We break out of the loop to handle
1157 startup_pipe
= startup_p
[1];
1158 close_startup_pipes();
1159 close_listen_socks();
1160 *sock_in
= *newsock
;
1161 *sock_out
= *newsock
;
1162 log_init(__progname
,
1164 options
.log_facility
,
1171 /* Parent. Stay in the loop. */
1173 error("fork: %.100s", strerror(errno
));
1175 debug("Forked child %ld.", (long)pid
);
1177 close(startup_p
[1]);
1180 send_rexec_state(config_s
[0], &cfg
);
1186 * Mark that the key has been used (it
1187 * was "given" to the child).
1189 if ((options
.protocol
& SSH_PROTO_1
) &&
1191 /* Schedule server key regeneration alarm. */
1192 signal(SIGALRM
, key_regeneration_alarm
);
1193 alarm(options
.key_regeneration_time
);
1200 * Ensure that our random state differs
1201 * from that of the child
1206 /* child process check (or debug mode) */
1207 if (num_listen_socks
< 0)
1214 * Main program for the daemon.
1217 main(int ac
, char **av
)
1219 extern char *optarg
;
1222 int sock_in
= -1, sock_out
= -1, newsock
= -1;
1223 const char *remote_ip
;
1224 char *test_user
= NULL
, *test_host
= NULL
, *test_addr
= NULL
;
1226 char *line
, *p
, *cp
;
1227 int config_s
[2] = { -1 , -1 };
1228 u_int64_t ibytes
, obytes
;
1237 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1240 /* Initialize configuration options to their default values. */
1241 initialize_server_options(&options
);
1243 /* Parse command-line arguments. */
1244 while ((opt
= getopt(ac
, av
, "f:p:b:k:h:g:u:o:C:dDeiqrtQRT46")) != -1) {
1247 options
.address_family
= AF_INET
;
1250 options
.address_family
= AF_INET6
;
1253 config_file_name
= optarg
;
1256 if (debug_flag
== 0) {
1258 options
.log_level
= SYSLOG_LEVEL_DEBUG1
;
1259 } else if (options
.log_level
< SYSLOG_LEVEL_DEBUG3
)
1260 options
.log_level
++;
1282 options
.log_level
= SYSLOG_LEVEL_QUIET
;
1285 options
.server_key_bits
= (int)strtonum(optarg
, 256,
1289 options
.ports_from_cmdline
= 1;
1290 if (options
.num_ports
>= MAX_PORTS
) {
1291 fprintf(stderr
, "too many ports.\n");
1294 options
.ports
[options
.num_ports
++] = a2port(optarg
);
1295 if (options
.ports
[options
.num_ports
-1] <= 0) {
1296 fprintf(stderr
, "Bad port number.\n");
1301 if ((options
.login_grace_time
= convtime(optarg
)) == -1) {
1302 fprintf(stderr
, "Invalid login grace time.\n");
1307 if ((options
.key_regeneration_time
= convtime(optarg
)) == -1) {
1308 fprintf(stderr
, "Invalid key regeneration interval.\n");
1313 if (options
.num_host_key_files
>= MAX_HOSTKEYS
) {
1314 fprintf(stderr
, "too many host keys.\n");
1317 options
.host_key_files
[options
.num_host_key_files
++] = optarg
;
1327 while ((p
= strsep(&cp
, ",")) && *p
!= '\0') {
1328 if (strncmp(p
, "addr=", 5) == 0)
1329 test_addr
= xstrdup(p
+ 5);
1330 else if (strncmp(p
, "host=", 5) == 0)
1331 test_host
= xstrdup(p
+ 5);
1332 else if (strncmp(p
, "user=", 5) == 0)
1333 test_user
= xstrdup(p
+ 5);
1335 fprintf(stderr
, "Invalid test "
1336 "mode specification %s\n", p
);
1342 utmp_len
= (u_int
)strtonum(optarg
, 0, MAXHOSTNAMELEN
+1, NULL
);
1343 if (utmp_len
> MAXHOSTNAMELEN
) {
1344 fprintf(stderr
, "Invalid utmp length.\n");
1349 line
= xstrdup(optarg
);
1350 if (process_server_config_line(&options
, line
,
1351 "command-line", 0, NULL
, NULL
, NULL
, NULL
) != 0)
1361 if (rexeced_flag
|| inetd_flag
)
1363 if (!test_flag
&& (rexec_flag
&& (av
[0] == NULL
|| *av
[0] != '/')))
1364 fatal("sshd re-exec requires execution with an absolute path");
1366 closefrom(REEXEC_MIN_FREE_FD
);
1368 closefrom(REEXEC_DEVCRYPTO_RESERVED_FD
);
1370 SSLeay_add_all_algorithms();
1373 * Force logging to stderr until we have loaded the private host
1374 * key (unless started from inetd)
1376 log_init(__progname
,
1377 options
.log_level
== SYSLOG_LEVEL_NOT_SET
?
1378 SYSLOG_LEVEL_INFO
: options
.log_level
,
1379 options
.log_facility
== SYSLOG_FACILITY_NOT_SET
?
1380 SYSLOG_FACILITY_AUTH
: options
.log_facility
,
1381 log_stderr
|| !inetd_flag
);
1383 sensitive_data
.server_key
= NULL
;
1384 sensitive_data
.ssh1_host_key
= NULL
;
1385 sensitive_data
.have_ssh1_key
= 0;
1386 sensitive_data
.have_ssh2_key
= 0;
1389 * If we're doing an extended config test, make sure we have all of
1390 * the parameters we need. If we're not doing an extended test,
1391 * do not silently ignore connection test params.
1393 if (test_flag
>= 2 &&
1394 (test_user
!= NULL
|| test_host
!= NULL
|| test_addr
!= NULL
)
1395 && (test_user
== NULL
|| test_host
== NULL
|| test_addr
== NULL
))
1396 fatal("user, host and addr are all required when testing "
1398 if (test_flag
< 2 && (test_user
!= NULL
|| test_host
!= NULL
||
1400 fatal("Config test connection parameter (-C) provided without "
1403 /* Fetch our configuration */
1406 recv_rexec_state(REEXEC_CONFIG_PASS_FD
, &cfg
);
1408 load_server_config(config_file_name
, &cfg
);
1410 parse_server_config(&options
, rexeced_flag
? "rexec" : config_file_name
,
1411 &cfg
, NULL
, NULL
, NULL
);
1413 /* Fill in default values for those options not explicitly set. */
1414 fill_default_server_options(&options
);
1416 /* challenge-response is implemented via keyboard interactive */
1417 if (options
.challenge_response_authentication
)
1418 options
.kbd_interactive_authentication
= 1;
1420 /* set default channel AF */
1421 channel_set_af(options
.address_family
);
1423 /* Check that there are no remaining arguments. */
1425 fprintf(stderr
, "Extra argument %s.\n", av
[optind
]);
1429 debug("sshd version %.100s", SSH_VERSION
);
1431 /* load private host keys */
1432 sensitive_data
.host_keys
= xcalloc(options
.num_host_key_files
,
1434 for (i
= 0; i
< options
.num_host_key_files
; i
++)
1435 sensitive_data
.host_keys
[i
] = NULL
;
1437 for (i
= 0; i
< options
.num_host_key_files
; i
++) {
1438 key
= key_load_private(options
.host_key_files
[i
], "", NULL
);
1439 sensitive_data
.host_keys
[i
] = key
;
1441 error("Could not load host key: %s",
1442 options
.host_key_files
[i
]);
1443 sensitive_data
.host_keys
[i
] = NULL
;
1446 switch (key
->type
) {
1448 sensitive_data
.ssh1_host_key
= key
;
1449 sensitive_data
.have_ssh1_key
= 1;
1453 sensitive_data
.have_ssh2_key
= 1;
1456 debug("private host key: #%d type %d %s", i
, key
->type
,
1459 if ((options
.protocol
& SSH_PROTO_1
) && !sensitive_data
.have_ssh1_key
) {
1460 logit("Disabling protocol version 1. Could not load host key");
1461 options
.protocol
&= ~SSH_PROTO_1
;
1463 if ((options
.protocol
& SSH_PROTO_2
) && !sensitive_data
.have_ssh2_key
) {
1464 logit("Disabling protocol version 2. Could not load host key");
1465 options
.protocol
&= ~SSH_PROTO_2
;
1467 if (!(options
.protocol
& (SSH_PROTO_1
|SSH_PROTO_2
))) {
1468 logit("sshd: no hostkeys available -- exiting.");
1472 /* Check certain values for sanity. */
1473 if (options
.protocol
& SSH_PROTO_1
) {
1474 if (options
.server_key_bits
< 512 ||
1475 options
.server_key_bits
> 32768) {
1476 fprintf(stderr
, "Bad server key size.\n");
1480 * Check that server and host key lengths differ sufficiently. This
1481 * is necessary to make double encryption work with rsaref. Oh, I
1482 * hate software patents. I dont know if this can go? Niels
1484 if (options
.server_key_bits
>
1485 BN_num_bits(sensitive_data
.ssh1_host_key
->rsa
->n
) -
1486 SSH_KEY_BITS_RESERVED
&& options
.server_key_bits
<
1487 BN_num_bits(sensitive_data
.ssh1_host_key
->rsa
->n
) +
1488 SSH_KEY_BITS_RESERVED
) {
1489 options
.server_key_bits
=
1490 BN_num_bits(sensitive_data
.ssh1_host_key
->rsa
->n
) +
1491 SSH_KEY_BITS_RESERVED
;
1492 debug("Forcing server key to %d bits to make it differ from host key.",
1493 options
.server_key_bits
);
1500 if (getpwnam(SSH_PRIVSEP_USER
) == NULL
)
1501 fatal("Privilege separation user %s does not exist",
1503 if ((stat(_PATH_PRIVSEP_CHROOT_DIR
, &st
) == -1) ||
1504 (S_ISDIR(st
.st_mode
) == 0))
1505 fatal("Missing privilege separation directory: %s",
1506 _PATH_PRIVSEP_CHROOT_DIR
);
1507 if (st
.st_uid
!= 0 || (st
.st_mode
& (S_IWGRP
|S_IWOTH
)) != 0)
1508 fatal("%s must be owned by root and not group or "
1509 "world-writable.", _PATH_PRIVSEP_CHROOT_DIR
);
1512 if (test_flag
> 1) {
1513 if (test_user
!= NULL
&& test_addr
!= NULL
&& test_host
!= NULL
)
1514 parse_server_match_config(&options
, test_user
,
1515 test_host
, test_addr
);
1516 dump_config(&options
);
1519 /* Configuration looks good, so exit if in test mode. */
1524 rexec_argv
= xcalloc(rexec_argc
+ 2, sizeof(char *));
1525 for (i
= 0; i
< rexec_argc
; i
++) {
1526 debug("rexec_argv[%d]='%s'", i
, saved_argv
[i
]);
1527 rexec_argv
[i
] = saved_argv
[i
];
1529 rexec_argv
[rexec_argc
] = "-R";
1530 rexec_argv
[rexec_argc
+ 1] = NULL
;
1533 /* Ensure that umask disallows at least group and world write */
1534 new_umask
= umask(0077) | 0022;
1535 (void) umask(new_umask
);
1537 /* Initialize the log (it is reinitialized below in case we forked). */
1538 if (debug_flag
&& (!inetd_flag
|| rexeced_flag
))
1540 log_init(__progname
, options
.log_level
, options
.log_facility
, log_stderr
);
1543 * If not in debugging mode, and not started from inetd, disconnect
1544 * from the controlling terminal, and fork. The original process
1547 if (!(debug_flag
|| inetd_flag
|| no_daemon_flag
)) {
1550 if (daemon(0, 0) < 0)
1551 fatal("daemon() failed: %.200s", strerror(errno
));
1553 /* Disconnect from the controlling tty. */
1554 fd
= open(_PATH_TTY
, O_RDWR
| O_NOCTTY
);
1556 (void) ioctl(fd
, TIOCNOTTY
, NULL
);
1560 /* Reinitialize the log (because of the fork above). */
1561 log_init(__progname
, options
.log_level
, options
.log_facility
, log_stderr
);
1563 /* Initialize the random number generator. */
1566 /* Chdir to the root directory so that the current disk can be
1567 unmounted if desired. */
1570 /* ignore SIGPIPE */
1571 signal(SIGPIPE
, SIG_IGN
);
1573 /* Get a connection, either from inetd or a listening TCP socket */
1575 server_accept_inetd(&sock_in
, &sock_out
);
1579 if (options
.protocol
& SSH_PROTO_1
)
1580 generate_ephemeral_server_key();
1582 signal(SIGHUP
, sighup_handler
);
1583 signal(SIGCHLD
, main_sigchld_handler
);
1584 signal(SIGTERM
, sigterm_handler
);
1585 signal(SIGQUIT
, sigterm_handler
);
1588 * Write out the pid file after the sigterm handler
1589 * is setup and the listen sockets are bound
1592 FILE *f
= fopen(options
.pid_file
, "w");
1595 error("Couldn't create pid file \"%s\": %s",
1596 options
.pid_file
, strerror(errno
));
1598 fprintf(f
, "%ld\n", (long) getpid());
1603 /* Accept a connection and return in a forked child */
1604 server_accept_loop(&sock_in
, &sock_out
,
1605 &newsock
, config_s
);
1608 /* This is the child processing a new connection. */
1609 setproctitle("%s", "[accepted]");
1612 * Create a new session and process group since the 4.4BSD
1613 * setlogin() affects the entire process group. We don't
1614 * want the child to be able to affect the parent.
1616 if (!debug_flag
&& !inetd_flag
&& setsid() < 0)
1617 error("setsid: %.100s", strerror(errno
));
1622 debug("rexec start in %d out %d newsock %d pipe %d sock %d",
1623 sock_in
, sock_out
, newsock
, startup_pipe
, config_s
[0]);
1624 dup2(newsock
, STDIN_FILENO
);
1625 dup2(STDIN_FILENO
, STDOUT_FILENO
);
1626 if (startup_pipe
== -1)
1627 close(REEXEC_STARTUP_PIPE_FD
);
1629 dup2(startup_pipe
, REEXEC_STARTUP_PIPE_FD
);
1631 dup2(config_s
[1], REEXEC_CONFIG_PASS_FD
);
1633 if (startup_pipe
!= -1)
1634 close(startup_pipe
);
1636 execv(rexec_argv
[0], rexec_argv
);
1638 /* Reexec has failed, fall back and continue */
1639 error("rexec of %s failed: %s", rexec_argv
[0], strerror(errno
));
1640 recv_rexec_state(REEXEC_CONFIG_PASS_FD
, NULL
);
1641 log_init(__progname
, options
.log_level
,
1642 options
.log_facility
, log_stderr
);
1645 startup_pipe
= REEXEC_STARTUP_PIPE_FD
;
1647 close(REEXEC_CONFIG_PASS_FD
);
1648 newsock
= sock_out
= sock_in
= dup(STDIN_FILENO
);
1649 if ((fd
= open(_PATH_DEVNULL
, O_RDWR
, 0)) != -1) {
1650 dup2(fd
, STDIN_FILENO
);
1651 dup2(fd
, STDOUT_FILENO
);
1652 if (fd
> STDERR_FILENO
)
1655 debug("rexec cleanup in %d out %d newsock %d pipe %d sock %d",
1656 sock_in
, sock_out
, newsock
, startup_pipe
, config_s
[0]);
1660 * Disable the key regeneration alarm. We will not regenerate the
1661 * key since we are no longer in a position to give it to anyone. We
1662 * will not restart on SIGHUP since it no longer makes sense.
1665 signal(SIGALRM
, SIG_DFL
);
1666 signal(SIGHUP
, SIG_DFL
);
1667 signal(SIGTERM
, SIG_DFL
);
1668 signal(SIGQUIT
, SIG_DFL
);
1669 signal(SIGCHLD
, SIG_DFL
);
1672 * Register our connection. This turns encryption off because we do
1675 packet_set_connection(sock_in
, sock_out
);
1676 packet_set_server();
1678 /* Set SO_KEEPALIVE if requested. */
1679 if (options
.tcp_keep_alive
&& packet_connection_is_on_socket() &&
1680 setsockopt(sock_in
, SOL_SOCKET
, SO_KEEPALIVE
, &on
, sizeof(on
)) < 0)
1681 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno
));
1683 if ((remote_port
= get_remote_port()) < 0) {
1684 debug("get_remote_port failed");
1689 * We use get_canonical_hostname with usedns = 0 instead of
1690 * get_remote_ipaddr here so IP options will be checked.
1692 (void) get_canonical_hostname(0);
1694 * The rest of the code depends on the fact that
1695 * get_remote_ipaddr() caches the remote ip, even if
1696 * the socket goes away.
1698 remote_ip
= get_remote_ipaddr();
1701 /* Check whether logins are denied from this host. */
1702 if (packet_connection_is_on_socket()) {
1703 struct request_info req
;
1705 request_init(&req
, RQ_DAEMON
, __progname
, RQ_FILE
, sock_in
, 0);
1708 if (!hosts_access(&req
)) {
1709 debug("Connection refused by tcp wrapper");
1712 fatal("libwrap refuse returns");
1715 #endif /* LIBWRAP */
1717 /* Log the connection. */
1718 verbose("Connection from %.500s port %d", remote_ip
, remote_port
);
1720 /* set the HPN options for the child */
1721 channel_set_hpn(options
.hpn_disabled
, options
.hpn_buffer_size
);
1724 * We don't want to listen forever unless the other side
1725 * successfully authenticates itself. So we set up an alarm which is
1726 * cleared after successful authentication. A limit of zero
1727 * indicates no limit. Note that we don't set the alarm in debugging
1728 * mode; it is just annoying to have the server exit just when you
1729 * are about to discover the bug.
1731 signal(SIGALRM
, grace_alarm_handler
);
1733 alarm(options
.login_grace_time
);
1735 sshd_exchange_identification(sock_in
, sock_out
);
1737 /* In inetd mode, generate ephemeral key only for proto 1 connections */
1738 if (!compat20
&& inetd_flag
&& sensitive_data
.server_key
== NULL
)
1739 generate_ephemeral_server_key();
1741 packet_set_nonblocking();
1743 /* allocate authentication context */
1744 authctxt
= xcalloc(1, sizeof(*authctxt
));
1746 /* XXX global for cleanup, access from other modules */
1747 the_authctxt
= authctxt
;
1749 /* prepare buffer to collect messages to display to user after login */
1750 buffer_init(&loginmsg
);
1753 if (privsep_preauth(authctxt
) == 1)
1756 /* perform the key exchange */
1757 /* authenticate user and start session */
1760 do_authentication2(authctxt
);
1763 do_authentication(authctxt
);
1766 * If we use privilege separation, the unprivileged child transfers
1767 * the current keystate and exits
1770 mm_send_keystate(pmonitor
);
1776 * Cancel the alarm we set to limit the time taken for
1780 signal(SIGALRM
, SIG_DFL
);
1781 authctxt
->authenticated
= 1;
1782 if (startup_pipe
!= -1) {
1783 close(startup_pipe
);
1788 if (options
.use_pam
) {
1795 * In privilege separation, we fork another child and prepare
1796 * file descriptor passing.
1799 privsep_postauth(authctxt
);
1800 /* the monitor process [priv] will not return */
1802 destroy_sensitive_data();
1805 packet_set_timeout(options
.client_alive_interval
,
1806 options
.client_alive_count_max
);
1808 /* Start session. */
1809 do_authenticated(authctxt
);
1812 if (options
.use_pam
)
1814 #endif /* USE_PAM */
1816 /* The connection has been terminated. */
1817 packet_get_state(MODE_IN
, NULL
, NULL
, NULL
, &ibytes
);
1818 packet_get_state(MODE_OUT
, NULL
, NULL
, NULL
, &obytes
);
1819 verbose("Transferred: sent %llu, received %llu bytes",
1820 (unsigned long long)obytes
, (unsigned long long)ibytes
);
1822 verbose("Closing connection to %.500s port %d", remote_ip
, remote_port
);
1832 * Decrypt session_key_int using our private server key and private host key
1833 * (key with larger modulus first).
1836 ssh1_session_key(BIGNUM
*session_key_int
)
1840 if (BN_cmp(sensitive_data
.server_key
->rsa
->n
,
1841 sensitive_data
.ssh1_host_key
->rsa
->n
) > 0) {
1842 /* Server key has bigger modulus. */
1843 if (BN_num_bits(sensitive_data
.server_key
->rsa
->n
) <
1844 BN_num_bits(sensitive_data
.ssh1_host_key
->rsa
->n
) +
1845 SSH_KEY_BITS_RESERVED
) {
1846 fatal("do_connection: %s: "
1847 "server_key %d < host_key %d + SSH_KEY_BITS_RESERVED %d",
1848 get_remote_ipaddr(),
1849 BN_num_bits(sensitive_data
.server_key
->rsa
->n
),
1850 BN_num_bits(sensitive_data
.ssh1_host_key
->rsa
->n
),
1851 SSH_KEY_BITS_RESERVED
);
1853 if (rsa_private_decrypt(session_key_int
, session_key_int
,
1854 sensitive_data
.server_key
->rsa
) <= 0)
1856 if (rsa_private_decrypt(session_key_int
, session_key_int
,
1857 sensitive_data
.ssh1_host_key
->rsa
) <= 0)
1860 /* Host key has bigger modulus (or they are equal). */
1861 if (BN_num_bits(sensitive_data
.ssh1_host_key
->rsa
->n
) <
1862 BN_num_bits(sensitive_data
.server_key
->rsa
->n
) +
1863 SSH_KEY_BITS_RESERVED
) {
1864 fatal("do_connection: %s: "
1865 "host_key %d < server_key %d + SSH_KEY_BITS_RESERVED %d",
1866 get_remote_ipaddr(),
1867 BN_num_bits(sensitive_data
.ssh1_host_key
->rsa
->n
),
1868 BN_num_bits(sensitive_data
.server_key
->rsa
->n
),
1869 SSH_KEY_BITS_RESERVED
);
1871 if (rsa_private_decrypt(session_key_int
, session_key_int
,
1872 sensitive_data
.ssh1_host_key
->rsa
) < 0)
1874 if (rsa_private_decrypt(session_key_int
, session_key_int
,
1875 sensitive_data
.server_key
->rsa
) < 0)
1888 BIGNUM
*session_key_int
;
1889 u_char session_key
[SSH_SESSION_KEY_LENGTH
];
1891 u_int cipher_type
, auth_mask
, protocol_flags
;
1894 * Generate check bytes that the client must send back in the user
1895 * packet in order for it to be accepted; this is used to defy ip
1896 * spoofing attacks. Note that this only works against somebody
1897 * doing IP spoofing from a remote machine; any machine on the local
1898 * network can still see outgoing packets and catch the random
1899 * cookie. This only affects rhosts authentication, and this is one
1900 * of the reasons why it is inherently insecure.
1902 arc4random_buf(cookie
, sizeof(cookie
));
1905 * Send our public key. We include in the packet 64 bits of random
1906 * data that must be matched in the reply in order to prevent IP
1909 packet_start(SSH_SMSG_PUBLIC_KEY
);
1910 for (i
= 0; i
< 8; i
++)
1911 packet_put_char(cookie
[i
]);
1913 /* Store our public server RSA key. */
1914 packet_put_int(BN_num_bits(sensitive_data
.server_key
->rsa
->n
));
1915 packet_put_bignum(sensitive_data
.server_key
->rsa
->e
);
1916 packet_put_bignum(sensitive_data
.server_key
->rsa
->n
);
1918 /* Store our public host RSA key. */
1919 packet_put_int(BN_num_bits(sensitive_data
.ssh1_host_key
->rsa
->n
));
1920 packet_put_bignum(sensitive_data
.ssh1_host_key
->rsa
->e
);
1921 packet_put_bignum(sensitive_data
.ssh1_host_key
->rsa
->n
);
1923 /* Put protocol flags. */
1924 packet_put_int(SSH_PROTOFLAG_HOST_IN_FWD_OPEN
);
1926 /* Declare which ciphers we support. */
1927 packet_put_int(cipher_mask_ssh1(0));
1929 /* Declare supported authentication types. */
1931 if (options
.rhosts_rsa_authentication
)
1932 auth_mask
|= 1 << SSH_AUTH_RHOSTS_RSA
;
1933 if (options
.rsa_authentication
)
1934 auth_mask
|= 1 << SSH_AUTH_RSA
;
1935 #if defined(KRB4) || defined(KRB5)
1936 if (options
.kerberos_authentication
)
1937 auth_mask
|= 1 << SSH_AUTH_KERBEROS
;
1939 #if defined(AFS) || defined(KRB5)
1940 if (options
.kerberos_tgt_passing
)
1941 auth_mask
|= 1 << SSH_PASS_KERBEROS_TGT
;
1944 if (options
.afs_token_passing
)
1945 auth_mask
|= 1 << SSH_PASS_AFS_TOKEN
;
1947 if (options
.challenge_response_authentication
== 1)
1948 auth_mask
|= 1 << SSH_AUTH_TIS
;
1949 if (options
.password_authentication
)
1950 auth_mask
|= 1 << SSH_AUTH_PASSWORD
;
1951 packet_put_int(auth_mask
);
1953 /* Send the packet and wait for it to be sent. */
1955 packet_write_wait();
1957 debug("Sent %d bit server key and %d bit host key.",
1958 BN_num_bits(sensitive_data
.server_key
->rsa
->n
),
1959 BN_num_bits(sensitive_data
.ssh1_host_key
->rsa
->n
));
1961 /* Read clients reply (cipher type and session key). */
1962 packet_read_expect(SSH_CMSG_SESSION_KEY
);
1964 /* Get cipher type and check whether we accept this. */
1965 cipher_type
= packet_get_char();
1967 if (!(cipher_mask_ssh1(0) & (1 << cipher_type
)))
1968 packet_disconnect("Warning: client selects unsupported cipher.");
1970 /* Get check bytes from the packet. These must match those we
1971 sent earlier with the public key packet. */
1972 for (i
= 0; i
< 8; i
++)
1973 if (cookie
[i
] != packet_get_char())
1974 packet_disconnect("IP Spoofing check bytes do not match.");
1976 debug("Encryption type: %.200s", cipher_name(cipher_type
));
1978 /* Get the encrypted integer. */
1979 if ((session_key_int
= BN_new()) == NULL
)
1980 fatal("do_ssh1_kex: BN_new failed");
1981 packet_get_bignum(session_key_int
);
1983 protocol_flags
= packet_get_int();
1984 packet_set_protocol_flags(protocol_flags
);
1987 /* Decrypt session_key_int using host/server keys */
1988 rsafail
= PRIVSEP(ssh1_session_key(session_key_int
));
1991 * Extract session key from the decrypted integer. The key is in the
1992 * least significant 256 bits of the integer; the first byte of the
1993 * key is in the highest bits.
1996 (void) BN_mask_bits(session_key_int
, sizeof(session_key
) * 8);
1997 len
= BN_num_bytes(session_key_int
);
1998 if (len
< 0 || (u_int
)len
> sizeof(session_key
)) {
1999 error("do_ssh1_kex: bad session key len from %s: "
2000 "session_key_int %d > sizeof(session_key) %lu",
2001 get_remote_ipaddr(), len
, (u_long
)sizeof(session_key
));
2004 memset(session_key
, 0, sizeof(session_key
));
2005 BN_bn2bin(session_key_int
,
2006 session_key
+ sizeof(session_key
) - len
);
2008 derive_ssh1_session_id(
2009 sensitive_data
.ssh1_host_key
->rsa
->n
,
2010 sensitive_data
.server_key
->rsa
->n
,
2011 cookie
, session_id
);
2013 * Xor the first 16 bytes of the session key with the
2016 for (i
= 0; i
< 16; i
++)
2017 session_key
[i
] ^= session_id
[i
];
2021 int bytes
= BN_num_bytes(session_key_int
);
2022 u_char
*buf
= xmalloc(bytes
);
2025 logit("do_connection: generating a fake encryption key");
2026 BN_bn2bin(session_key_int
, buf
);
2028 MD5_Update(&md
, buf
, bytes
);
2029 MD5_Update(&md
, sensitive_data
.ssh1_cookie
, SSH_SESSION_KEY_LENGTH
);
2030 MD5_Final(session_key
, &md
);
2032 MD5_Update(&md
, session_key
, 16);
2033 MD5_Update(&md
, buf
, bytes
);
2034 MD5_Update(&md
, sensitive_data
.ssh1_cookie
, SSH_SESSION_KEY_LENGTH
);
2035 MD5_Final(session_key
+ 16, &md
);
2036 memset(buf
, 0, bytes
);
2038 for (i
= 0; i
< 16; i
++)
2039 session_id
[i
] = session_key
[i
] ^ session_key
[i
+ 16];
2041 /* Destroy the private and public keys. No longer. */
2042 destroy_sensitive_data();
2045 mm_ssh1_session_id(session_id
);
2047 /* Destroy the decrypted integer. It is no longer needed. */
2048 BN_clear_free(session_key_int
);
2050 /* Set the session key. From this on all communications will be encrypted. */
2051 packet_set_encryption_key(session_key
, SSH_SESSION_KEY_LENGTH
, cipher_type
);
2053 /* Destroy our copy of the session key. It is no longer needed. */
2054 memset(session_key
, 0, sizeof(session_key
));
2056 debug("Received session key; encryption turned on.");
2058 /* Send an acknowledgment packet. Note that this packet is sent encrypted. */
2059 packet_start(SSH_SMSG_SUCCESS
);
2061 packet_write_wait();
2065 * SSH2 key exchange: diffie-hellman-group1-sha1
2073 debug ("MYFLAG IS %d", myflag
);
2074 if (options
.ciphers
!= NULL
) {
2075 myproposal
[PROPOSAL_ENC_ALGS_CTOS
] =
2076 myproposal
[PROPOSAL_ENC_ALGS_STOC
] = options
.ciphers
;
2077 } else if (options
.none_enabled
== 1) {
2078 debug ("WARNING: None cipher enabled");
2079 myproposal
[PROPOSAL_ENC_ALGS_CTOS
] =
2080 myproposal
[PROPOSAL_ENC_ALGS_STOC
] = KEX_ENCRYPT_INCLUDE_NONE
;
2082 myproposal
[PROPOSAL_ENC_ALGS_CTOS
] =
2083 compat_cipher_proposal(myproposal
[PROPOSAL_ENC_ALGS_CTOS
]);
2084 myproposal
[PROPOSAL_ENC_ALGS_STOC
] =
2085 compat_cipher_proposal(myproposal
[PROPOSAL_ENC_ALGS_STOC
]);
2087 if (options
.macs
!= NULL
) {
2088 myproposal
[PROPOSAL_MAC_ALGS_CTOS
] =
2089 myproposal
[PROPOSAL_MAC_ALGS_STOC
] = options
.macs
;
2091 if (options
.compression
== COMP_NONE
) {
2092 myproposal
[PROPOSAL_COMP_ALGS_CTOS
] =
2093 myproposal
[PROPOSAL_COMP_ALGS_STOC
] = "none";
2094 } else if (options
.compression
== COMP_DELAYED
) {
2095 myproposal
[PROPOSAL_COMP_ALGS_CTOS
] =
2096 myproposal
[PROPOSAL_COMP_ALGS_STOC
] = "none,zlib@openssh.com";
2099 myproposal
[PROPOSAL_SERVER_HOST_KEY_ALGS
] = list_hostkey_types();
2101 /* start key exchange */
2102 kex
= kex_setup(myproposal
);
2103 kex
->kex
[KEX_DH_GRP1_SHA1
] = kexdh_server
;
2104 kex
->kex
[KEX_DH_GRP14_SHA1
] = kexdh_server
;
2105 kex
->kex
[KEX_DH_GEX_SHA1
] = kexgex_server
;
2106 kex
->kex
[KEX_DH_GEX_SHA256
] = kexgex_server
;
2108 kex
->client_version_string
=client_version_string
;
2109 kex
->server_version_string
=server_version_string
;
2110 kex
->load_host_key
=&get_hostkey_by_type
;
2111 kex
->host_key_index
=&get_hostkey_index
;
2115 dispatch_run(DISPATCH_BLOCK
, &kex
->done
, kex
);
2117 session_id2
= kex
->session_id
;
2118 session_id2_len
= kex
->session_id_len
;
2121 /* send 1st encrypted/maced/compressed message */
2122 packet_start(SSH2_MSG_IGNORE
);
2123 packet_put_cstring("markus");
2125 packet_write_wait();
2130 /* server specific fatal cleanup */
2135 do_cleanup(the_authctxt
);