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