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