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