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