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