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