]> andersk Git - gssapi-openssh.git/blame - openssh/sshd.c
Initial revision
[gssapi-openssh.git] / openssh / sshd.c
CommitLineData
5262cbfb 1/* $OpenBSD: sshd.c,v 1.366 2009/01/22 10:02:34 djm Exp $ */
3c0ef626 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
6 * This program is the ssh daemon. It listens for connections from clients,
7 * and performs authentication, executes use commands or shell, and forwards
8 * information to/from the application to the user client over an encrypted
9 * connection. This can also handle forwarding of X11, TCP/IP, and
10 * authentication agent connections.
11 *
12 * As far as I am concerned, the code I have written for this software
13 * can be used freely for any purpose. Any derived versions of this
14 * software must be clearly marked as such, and if the derived work is
15 * incompatible with the protocol description in the RFC file, it must be
16 * called by a name other than "ssh" or "Secure Shell".
17 *
18 * SSH2 implementation:
510132b6 19 * Privilege Separation:
3c0ef626 20 *
510132b6 21 * Copyright (c) 2000, 2001, 2002 Markus Friedl. All rights reserved.
22 * Copyright (c) 2002 Niels Provos. All rights reserved.
3c0ef626 23 *
24 * Redistribution and use in source and binary forms, with or without
25 * modification, are permitted provided that the following conditions
26 * are met:
27 * 1. Redistributions of source code must retain the above copyright
28 * notice, this list of conditions and the following disclaimer.
29 * 2. Redistributions in binary form must reproduce the above copyright
30 * notice, this list of conditions and the following disclaimer in the
31 * documentation and/or other materials provided with the distribution.
32 *
33 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
34 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
35 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
36 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
37 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
38 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
39 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
40 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
41 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
42 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43 */
44
45#include "includes.h"
30460aeb 46
47#include <sys/types.h>
48#include <sys/ioctl.h>
49#include <sys/socket.h>
50#ifdef HAVE_SYS_STAT_H
51# include <sys/stat.h>
52#endif
53#ifdef HAVE_SYS_TIME_H
54# include <sys/time.h>
55#endif
56#include "openbsd-compat/sys-tree.h"
5156b1a1 57#include "openbsd-compat/sys-queue.h"
30460aeb 58#include <sys/wait.h>
59
60#include <errno.h>
61#include <fcntl.h>
62#include <netdb.h>
63#ifdef HAVE_PATHS_H
64#include <paths.h>
65#endif
66#include <grp.h>
67#include <pwd.h>
68#include <signal.h>
69#include <stdarg.h>
70#include <stdio.h>
71#include <stdlib.h>
72#include <string.h>
73#include <unistd.h>
3c0ef626 74
75#include <openssl/dh.h>
76#include <openssl/bn.h>
1e608e42 77#include <openssl/md5.h>
510132b6 78#include <openssl/rand.h>
e74dc197 79#include "openbsd-compat/openssl-compat.h"
80
510132b6 81#ifdef HAVE_SECUREWARE
82#include <sys/security.h>
83#include <prot.h>
84#endif
3c0ef626 85
30460aeb 86#include "xmalloc.h"
3c0ef626 87#include "ssh.h"
88#include "ssh1.h"
89#include "ssh2.h"
3c0ef626 90#include "rsa.h"
91#include "sshpty.h"
92#include "packet.h"
3c0ef626 93#include "log.h"
30460aeb 94#include "buffer.h"
3c0ef626 95#include "servconf.h"
96#include "uidswap.h"
97#include "compat.h"
3c0ef626 98#include "cipher.h"
3c0ef626 99#include "key.h"
30460aeb 100#include "kex.h"
3c0ef626 101#include "dh.h"
102#include "myproposal.h"
103#include "authfile.h"
104#include "pathnames.h"
105#include "atomicio.h"
106#include "canohost.h"
30460aeb 107#include "hostfile.h"
3c0ef626 108#include "auth.h"
109#include "misc.h"
7e82606e 110#include "msg.h"
3c0ef626 111#include "dispatch.h"
112#include "channels.h"
510132b6 113#include "session.h"
114#include "monitor_mm.h"
115#include "monitor.h"
30460aeb 116#ifdef GSSAPI
117#include "ssh-gss.h"
118#endif
510132b6 119#include "monitor_wrap.h"
30460aeb 120#include "version.h"
3c0ef626 121
fe4ad273 122#ifdef USE_SECURITY_SESSION_API
123#include <Security/AuthSession.h>
5598e598 124#endif
125
3c0ef626 126#ifdef LIBWRAP
127#include <tcpd.h>
128#include <syslog.h>
e74dc197 129int allow_severity;
130int deny_severity;
3c0ef626 131#endif /* LIBWRAP */
132
133#ifndef O_NOCTTY
134#define O_NOCTTY 0
135#endif
136
7e82606e 137/* Re-exec fds */
138#define REEXEC_DEVCRYPTO_RESERVED_FD (STDERR_FILENO + 1)
139#define REEXEC_STARTUP_PIPE_FD (STDERR_FILENO + 2)
140#define REEXEC_CONFIG_PASS_FD (STDERR_FILENO + 3)
141#define REEXEC_MIN_FREE_FD (STDERR_FILENO + 4)
142
6df46d40 143int myflag = 0;
144
145
3c0ef626 146extern char *__progname;
3c0ef626 147
148/* Server configuration options. */
149ServerOptions options;
150
151/* Name of the server configuration file. */
152char *config_file_name = _PATH_SERVER_CONFIG_FILE;
153
3c0ef626 154/*
155 * Debug mode flag. This can be set on the command line. If debug
156 * mode is enabled, extra debugging output will be sent to the system
157 * log, the daemon will not go to background, and will exit after processing
158 * the first connection.
159 */
160int debug_flag = 0;
161
162/* Flag indicating that the daemon should only test the configuration and keys. */
163int test_flag = 0;
164
165/* Flag indicating that the daemon is being started from inetd. */
166int inetd_flag = 0;
167
168/* Flag indicating that sshd should not detach and become a daemon. */
169int no_daemon_flag = 0;
170
171/* debug goes to stderr unless inetd_flag is set */
172int log_stderr = 0;
173
174/* Saved arguments to main(). */
175char **saved_argv;
176int saved_argc;
177
7e82606e 178/* re-exec */
179int rexeced_flag = 0;
180int rexec_flag = 1;
181int rexec_argc = 0;
182char **rexec_argv;
183
3c0ef626 184/*
185 * The sockets that the server is listening; this is used in the SIGHUP
186 * signal handler.
187 */
188#define MAX_LISTEN_SOCKS 16
189int listen_socks[MAX_LISTEN_SOCKS];
190int num_listen_socks = 0;
191
192/*
193 * the client's version string, passed by sshd2 in compat mode. if != NULL,
194 * sshd will skip the version-number exchange
195 */
196char *client_version_string = NULL;
197char *server_version_string = NULL;
198
199/* for rekeying XXX fixme */
200Kex *xxx_kex;
201
202/*
203 * Any really sensitive data in the application is contained in this
204 * structure. The idea is that this structure could be locked into memory so
205 * that the pages do not get written into swap. However, there are some
206 * problems. The private key contains BIGNUMs, and we do not (in principle)
207 * have access to the internals of them, and locking just the structure is
208 * not very useful. Currently, memory locking is not implemented.
209 */
210struct {
211 Key *server_key; /* ephemeral server key */
212 Key *ssh1_host_key; /* ssh1 host key */
213 Key **host_keys; /* all private host keys */
214 int have_ssh1_key;
215 int have_ssh2_key;
216 u_char ssh1_cookie[SSH_SESSION_KEY_LENGTH];
217} sensitive_data;
218
219/*
220 * Flag indicating whether the RSA server key needs to be regenerated.
221 * Is set in the SIGALRM handler and cleared when the key is regenerated.
222 */
1e608e42 223static volatile sig_atomic_t key_do_regen = 0;
3c0ef626 224
225/* This is set to true when a signal is received. */
1e608e42 226static volatile sig_atomic_t received_sighup = 0;
227static volatile sig_atomic_t received_sigterm = 0;
3c0ef626 228
229/* session identifier, used by RSA-auth */
230u_char session_id[16];
231
232/* same for ssh2 */
233u_char *session_id2 = NULL;
7cac2b65 234u_int session_id2_len = 0;
3c0ef626 235
236/* record remote hostname or ip */
237u_int utmp_len = MAXHOSTNAMELEN;
238
1e608e42 239/* options.max_startup sized array of fd ints */
240int *startup_pipes = NULL;
241int startup_pipe; /* in child */
242
510132b6 243/* variables used for privilege separation */
30460aeb 244int use_privsep = -1;
540d72c3 245struct monitor *pmonitor = NULL;
510132b6 246
540d72c3 247/* global authentication context */
248Authctxt *the_authctxt = NULL;
249
30460aeb 250/* sshd_config buffer */
251Buffer cfg;
252
7e82606e 253/* message to be displayed after login */
254Buffer loginmsg;
255
30460aeb 256/* Unprivileged user */
257struct passwd *privsep_pw = NULL;
258
3c0ef626 259/* Prototypes for various functions defined later in this file. */
260void destroy_sensitive_data(void);
510132b6 261void demote_sensitive_data(void);
3c0ef626 262
263static void do_ssh1_kex(void);
264static void do_ssh2_kex(void);
265
266/*
267 * Close all listening sockets
268 */
269static void
270close_listen_socks(void)
271{
272 int i;
276b07a3 273
3c0ef626 274 for (i = 0; i < num_listen_socks; i++)
275 close(listen_socks[i]);
276 num_listen_socks = -1;
277}
278
1e608e42 279static void
280close_startup_pipes(void)
281{
282 int i;
276b07a3 283
1e608e42 284 if (startup_pipes)
285 for (i = 0; i < options.max_startups; i++)
286 if (startup_pipes[i] != -1)
287 close(startup_pipes[i]);
288}
289
3c0ef626 290/*
291 * Signal handler for SIGHUP. Sshd execs itself when it receives SIGHUP;
292 * the effect is to reread the configuration file (and to regenerate
293 * the server key).
294 */
30460aeb 295
296/*ARGSUSED*/
3c0ef626 297static void
298sighup_handler(int sig)
299{
1e608e42 300 int save_errno = errno;
301
3c0ef626 302 received_sighup = 1;
303 signal(SIGHUP, sighup_handler);
1e608e42 304 errno = save_errno;
3c0ef626 305}
306
307/*
308 * Called from the main program after receiving SIGHUP.
309 * Restarts the server.
310 */
311static void
312sighup_restart(void)
313{
7cac2b65 314 logit("Received SIGHUP; restarting.");
3c0ef626 315 close_listen_socks();
1e608e42 316 close_startup_pipes();
0b90ac93 317 alarm(0); /* alarm timer persists across exec */
3c0ef626 318 execv(saved_argv[0], saved_argv);
7cac2b65 319 logit("RESTART FAILED: av[0]='%.100s', error: %.100s.", saved_argv[0],
276b07a3 320 strerror(errno));
3c0ef626 321 exit(1);
322}
323
324/*
325 * Generic signal handler for terminating signals in the master daemon.
326 */
30460aeb 327/*ARGSUSED*/
3c0ef626 328static void
329sigterm_handler(int sig)
330{
331 received_sigterm = sig;
332}
333
334/*
335 * SIGCHLD handler. This is called whenever a child dies. This will then
336 * reap any zombies left by exited children.
337 */
30460aeb 338/*ARGSUSED*/
3c0ef626 339static void
340main_sigchld_handler(int sig)
341{
342 int save_errno = errno;
276b07a3 343 pid_t pid;
3c0ef626 344 int status;
345
510132b6 346 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
347 (pid < 0 && errno == EINTR))
3c0ef626 348 ;
349
350 signal(SIGCHLD, main_sigchld_handler);
351 errno = save_errno;
352}
353
354/*
355 * Signal handler for the alarm after the login grace period has expired.
356 */
30460aeb 357/*ARGSUSED*/
3c0ef626 358static void
359grace_alarm_handler(int sig)
360{
540d72c3 361 if (use_privsep && pmonitor != NULL && pmonitor->m_pid > 0)
362 kill(pmonitor->m_pid, SIGALRM);
363
3c0ef626 364 /* Log error and exit. */
30460aeb 365 sigdie("Timeout before authentication for %s", get_remote_ipaddr());
3c0ef626 366}
367
368/*
369 * Signal handler for the key regeneration alarm. Note that this
370 * alarm only occurs in the daemon waiting for connections, and it does not
371 * do anything with the private key or random state before forking.
372 * Thus there should be no concurrency control/asynchronous execution
373 * problems.
374 */
375static void
376generate_ephemeral_server_key(void)
377{
3c0ef626 378 verbose("Generating %s%d bit RSA key.",
379 sensitive_data.server_key ? "new " : "", options.server_key_bits);
380 if (sensitive_data.server_key != NULL)
381 key_free(sensitive_data.server_key);
382 sensitive_data.server_key = key_generate(KEY_RSA1,
383 options.server_key_bits);
384 verbose("RSA key generation complete.");
385
5156b1a1 386 arc4random_buf(sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
3c0ef626 387 arc4random_stir();
388}
389
30460aeb 390/*ARGSUSED*/
3c0ef626 391static void
392key_regeneration_alarm(int sig)
393{
394 int save_errno = errno;
276b07a3 395
3c0ef626 396 signal(SIGALRM, SIG_DFL);
397 errno = save_errno;
398 key_do_regen = 1;
399}
400
401static void
402sshd_exchange_identification(int sock_in, int sock_out)
403{
2ce0bfe4 404 u_int i;
405 int mismatch;
3c0ef626 406 int remote_major, remote_minor;
407 int major, minor;
5156b1a1 408 char *s, *newline = "\n";
3c0ef626 409 char buf[256]; /* Must not be larger than remote_version. */
410 char remote_version[256]; /* Must be at least as big as buf. */
411
412 if ((options.protocol & SSH_PROTO_1) &&
413 (options.protocol & SSH_PROTO_2)) {
414 major = PROTOCOL_MAJOR_1;
415 minor = 99;
416 } else if (options.protocol & SSH_PROTO_2) {
417 major = PROTOCOL_MAJOR_2;
418 minor = PROTOCOL_MINOR_2;
5156b1a1 419 newline = "\r\n";
3c0ef626 420 } else {
421 major = PROTOCOL_MAJOR_1;
422 minor = PROTOCOL_MINOR_1;
423 }
5156b1a1 424 snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s%s", major, minor,
425 SSH_RELEASE, newline);
3c0ef626 426 server_version_string = xstrdup(buf);
427
7cac2b65 428 /* Send our protocol version identification. */
429 if (atomicio(vwrite, sock_out, server_version_string,
430 strlen(server_version_string))
431 != strlen(server_version_string)) {
432 logit("Could not write ident string to %s", get_remote_ipaddr());
540d72c3 433 cleanup_exit(255);
7cac2b65 434 }
435
436 /* Read other sides version identification. */
437 memset(buf, 0, sizeof(buf));
438 for (i = 0; i < sizeof(buf) - 1; i++) {
439 if (atomicio(read, sock_in, &buf[i], 1) != 1) {
440 logit("Did not receive identification string from %s",
441 get_remote_ipaddr());
540d72c3 442 cleanup_exit(255);
3c0ef626 443 }
7cac2b65 444 if (buf[i] == '\r') {
445 buf[i] = 0;
446 /* Kludge for F-Secure Macintosh < 1.0.2 */
447 if (i == 12 &&
448 strncmp(buf, "SSH-1.5-W1.0", 12) == 0)
3c0ef626 449 break;
7cac2b65 450 continue;
451 }
452 if (buf[i] == '\n') {
453 buf[i] = 0;
454 break;
3c0ef626 455 }
3c0ef626 456 }
7cac2b65 457 buf[sizeof(buf) - 1] = 0;
458 client_version_string = xstrdup(buf);
3c0ef626 459
460 /*
461 * Check that the versions match. In future this might accept
462 * several versions and set appropriate flags to handle them.
463 */
464 if (sscanf(client_version_string, "SSH-%d.%d-%[^\n]\n",
465 &remote_major, &remote_minor, remote_version) != 3) {
466 s = "Protocol mismatch.\n";
7cac2b65 467 (void) atomicio(vwrite, sock_out, s, strlen(s));
3c0ef626 468 close(sock_in);
469 close(sock_out);
7cac2b65 470 logit("Bad protocol version identification '%.100s' from %s",
3c0ef626 471 client_version_string, get_remote_ipaddr());
540d72c3 472 cleanup_exit(255);
3c0ef626 473 }
474 debug("Client protocol version %d.%d; client software version %.100s",
1e608e42 475 remote_major, remote_minor, remote_version);
fa7499cc 476 logit("SSH: Server;Ltype: Version;Remote: %s-%d;Protocol: %d.%d;Client: %.100s",
477 get_remote_ipaddr(), get_remote_port(),
478 remote_major, remote_minor, remote_version);
3c0ef626 479
480 compat_datafellows(remote_version);
481
d03f4262 482 if (datafellows & SSH_BUG_PROBE) {
7cac2b65 483 logit("probed from %s with %s. Don't panic.",
d03f4262 484 get_remote_ipaddr(), client_version_string);
540d72c3 485 cleanup_exit(255);
d03f4262 486 }
487
3c0ef626 488 if (datafellows & SSH_BUG_SCANNER) {
7cac2b65 489 logit("scanned from %s with %s. Don't panic.",
3c0ef626 490 get_remote_ipaddr(), client_version_string);
540d72c3 491 cleanup_exit(255);
3c0ef626 492 }
493
494 mismatch = 0;
1e608e42 495 switch (remote_major) {
3c0ef626 496 case 1:
497 if (remote_minor == 99) {
498 if (options.protocol & SSH_PROTO_2)
499 enable_compat20();
500 else
501 mismatch = 1;
502 break;
503 }
504 if (!(options.protocol & SSH_PROTO_1)) {
505 mismatch = 1;
506 break;
507 }
508 if (remote_minor < 3) {
509 packet_disconnect("Your ssh version is too old and "
510 "is no longer supported. Please install a newer version.");
511 } else if (remote_minor == 3) {
512 /* note that this disables agent-forwarding */
513 enable_compat13();
514 }
515 break;
516 case 2:
517 if (options.protocol & SSH_PROTO_2) {
518 enable_compat20();
519 break;
520 }
521 /* FALLTHROUGH */
522 default:
523 mismatch = 1;
524 break;
525 }
526 chop(server_version_string);
527 debug("Local version string %.200s", server_version_string);
528
529 if (mismatch) {
530 s = "Protocol major versions differ.\n";
7cac2b65 531 (void) atomicio(vwrite, sock_out, s, strlen(s));
3c0ef626 532 close(sock_in);
533 close(sock_out);
7cac2b65 534 logit("Protocol major versions differ for %s: %.200s vs. %.200s",
3c0ef626 535 get_remote_ipaddr(),
536 server_version_string, client_version_string);
540d72c3 537 cleanup_exit(255);
3c0ef626 538 }
539}
540
3c0ef626 541/* Destroy the host and server keys. They will no longer be needed. */
542void
543destroy_sensitive_data(void)
544{
545 int i;
546
547 if (sensitive_data.server_key) {
548 key_free(sensitive_data.server_key);
549 sensitive_data.server_key = NULL;
550 }
1e608e42 551 for (i = 0; i < options.num_host_key_files; i++) {
3c0ef626 552 if (sensitive_data.host_keys[i]) {
553 key_free(sensitive_data.host_keys[i]);
554 sensitive_data.host_keys[i] = NULL;
555 }
556 }
557 sensitive_data.ssh1_host_key = NULL;
558 memset(sensitive_data.ssh1_cookie, 0, SSH_SESSION_KEY_LENGTH);
559}
560
510132b6 561/* Demote private to public keys for network child */
562void
563demote_sensitive_data(void)
564{
565 Key *tmp;
566 int i;
567
568 if (sensitive_data.server_key) {
569 tmp = key_demote(sensitive_data.server_key);
570 key_free(sensitive_data.server_key);
571 sensitive_data.server_key = tmp;
572 }
573
574 for (i = 0; i < options.num_host_key_files; i++) {
575 if (sensitive_data.host_keys[i]) {
576 tmp = key_demote(sensitive_data.host_keys[i]);
577 key_free(sensitive_data.host_keys[i]);
578 sensitive_data.host_keys[i] = tmp;
579 if (tmp->type == KEY_RSA1)
580 sensitive_data.ssh1_host_key = tmp;
581 }
582 }
583
584 /* We do not clear ssh1_host key and cookie. XXX - Okay Niels? */
585}
586
587static void
588privsep_preauth_child(void)
589{
5156b1a1 590 u_int32_t rnd[256];
d03f4262 591 gid_t gidset[1];
510132b6 592
593 /* Enable challenge-response authentication for privilege separation */
594 privsep_challenge_enable();
595
e74dc197 596 arc4random_stir();
5156b1a1 597 arc4random_buf(rnd, sizeof(rnd));
d03f4262 598 RAND_seed(rnd, sizeof(rnd));
510132b6 599
600 /* Demote the private keys to public keys. */
601 demote_sensitive_data();
602
d03f4262 603 /* Change our root directory */
510132b6 604 if (chroot(_PATH_PRIVSEP_CHROOT_DIR) == -1)
605 fatal("chroot(\"%s\"): %s", _PATH_PRIVSEP_CHROOT_DIR,
606 strerror(errno));
607 if (chdir("/") == -1)
608 fatal("chdir(\"/\"): %s", strerror(errno));
609
610 /* Drop our privileges */
30460aeb 611 debug3("privsep user:group %u:%u", (u_int)privsep_pw->pw_uid,
612 (u_int)privsep_pw->pw_gid);
276b07a3 613#if 0
12a403af 614 /* XXX not ready, too heavy after chroot */
30460aeb 615 do_setusercontext(privsep_pw);
276b07a3 616#else
30460aeb 617 gidset[0] = privsep_pw->pw_gid;
276b07a3 618 if (setgroups(1, gidset) < 0)
619 fatal("setgroups: %.100s", strerror(errno));
30460aeb 620 permanently_set_uid(privsep_pw);
276b07a3 621#endif
510132b6 622}
623
540d72c3 624static int
625privsep_preauth(Authctxt *authctxt)
510132b6 626{
510132b6 627 int status;
628 pid_t pid;
629
630 /* Set up unprivileged child process to deal with network data */
631 pmonitor = monitor_init();
632 /* Store a pointer to the kex for later rekeying */
633 pmonitor->m_pkex = &xxx_kex;
634
635 pid = fork();
636 if (pid == -1) {
637 fatal("fork of unprivileged child failed");
638 } else if (pid != 0) {
44a053a3 639 debug2("Network child is on pid %ld", (long)pid);
510132b6 640
641 close(pmonitor->m_recvfd);
540d72c3 642 pmonitor->m_pid = pid;
643 monitor_child_preauth(authctxt, pmonitor);
510132b6 644 close(pmonitor->m_sendfd);
645
646 /* Sync memory */
647 monitor_sync(pmonitor);
648
649 /* Wait for the child's exit status */
650 while (waitpid(pid, &status, 0) < 0)
651 if (errno != EINTR)
652 break;
540d72c3 653 return (1);
510132b6 654 } else {
655 /* child */
656
657 close(pmonitor->m_sendfd);
658
659 /* Demote the child */
660 if (getuid() == 0 || geteuid() == 0)
661 privsep_preauth_child();
662 setproctitle("%s", "[net]");
663 }
540d72c3 664 return (0);
510132b6 665}
666
667static void
668privsep_postauth(Authctxt *authctxt)
669{
e74dc197 670 u_int32_t rnd[256];
e74dc197 671
d03f4262 672#ifdef DISABLE_FD_PASSING
276b07a3 673 if (1) {
674#else
510132b6 675 if (authctxt->pw->pw_uid == 0 || options.use_login) {
276b07a3 676#endif
510132b6 677 /* File descriptor passing is broken or root login */
510132b6 678 use_privsep = 0;
08822d99 679 goto skip;
510132b6 680 }
681
682 /* New socket pair */
683 monitor_reinit(pmonitor);
684
685 pmonitor->m_pid = fork();
686 if (pmonitor->m_pid == -1)
687 fatal("fork of unprivileged child failed");
688 else if (pmonitor->m_pid != 0) {
5156b1a1 689 verbose("User child is on pid %ld", (long)pmonitor->m_pid);
510132b6 690 close(pmonitor->m_recvfd);
7e82606e 691 buffer_clear(&loginmsg);
510132b6 692 monitor_child_postauth(pmonitor);
693
694 /* NEVERREACHED */
695 exit(0);
696 }
697
698 close(pmonitor->m_sendfd);
699
700 /* Demote the private keys to public keys. */
701 demote_sensitive_data();
702
e74dc197 703 arc4random_stir();
5156b1a1 704 arc4random_buf(rnd, sizeof(rnd));
e74dc197 705 RAND_seed(rnd, sizeof(rnd));
706
510132b6 707 /* Drop privileges */
708 do_setusercontext(authctxt->pw);
709
08822d99 710 skip:
510132b6 711 /* It is safe now to apply the key state */
712 monitor_apply_keystate(pmonitor);
2ce0bfe4 713
714 /*
715 * Tell the packet layer that authentication was successful, since
716 * this information is not part of the key state.
717 */
718 packet_set_authenticated();
510132b6 719}
720
3c0ef626 721static char *
722list_hostkey_types(void)
723{
1e608e42 724 Buffer b;
540d72c3 725 const char *p;
726 char *ret;
3c0ef626 727 int i;
1e608e42 728
729 buffer_init(&b);
730 for (i = 0; i < options.num_host_key_files; i++) {
3c0ef626 731 Key *key = sensitive_data.host_keys[i];
732 if (key == NULL)
733 continue;
1e608e42 734 switch (key->type) {
3c0ef626 735 case KEY_RSA:
736 case KEY_DSA:
1e608e42 737 if (buffer_len(&b) > 0)
738 buffer_append(&b, ",", 1);
739 p = key_ssh_name(key);
740 buffer_append(&b, p, strlen(p));
3c0ef626 741 break;
742 }
743 }
1e608e42 744 buffer_append(&b, "\0", 1);
540d72c3 745 ret = xstrdup(buffer_ptr(&b));
1e608e42 746 buffer_free(&b);
540d72c3 747 debug("list_hostkey_types: %s", ret);
748 return ret;
3c0ef626 749}
750
510132b6 751Key *
3c0ef626 752get_hostkey_by_type(int type)
753{
754 int i;
276b07a3 755
1e608e42 756 for (i = 0; i < options.num_host_key_files; i++) {
3c0ef626 757 Key *key = sensitive_data.host_keys[i];
758 if (key != NULL && key->type == type)
759 return key;
760 }
761 return NULL;
762}
763
510132b6 764Key *
765get_hostkey_by_index(int ind)
766{
767 if (ind < 0 || ind >= options.num_host_key_files)
768 return (NULL);
769 return (sensitive_data.host_keys[ind]);
770}
771
772int
773get_hostkey_index(Key *key)
774{
775 int i;
276b07a3 776
510132b6 777 for (i = 0; i < options.num_host_key_files; i++) {
778 if (key == sensitive_data.host_keys[i])
779 return (i);
780 }
781 return (-1);
782}
783
3c0ef626 784/*
785 * returns 1 if connection should be dropped, 0 otherwise.
786 * dropping starts at connection #max_startups_begin with a probability
787 * of (max_startups_rate/100). the probability increases linearly until
788 * all connections are dropped for startups > max_startups
789 */
790static int
791drop_connection(int startups)
792{
dfddba3d 793 int p, r;
3c0ef626 794
795 if (startups < options.max_startups_begin)
796 return 0;
797 if (startups >= options.max_startups)
798 return 1;
799 if (options.max_startups_rate == 100)
800 return 1;
801
802 p = 100 - options.max_startups_rate;
803 p *= startups - options.max_startups_begin;
dfddba3d 804 p /= options.max_startups - options.max_startups_begin;
3c0ef626 805 p += options.max_startups_rate;
5156b1a1 806 r = arc4random_uniform(100);
3c0ef626 807
dfddba3d 808 debug("drop_connection: p %d, r %d", p, r);
3c0ef626 809 return (r < p) ? 1 : 0;
810}
811
1e608e42 812static void
813usage(void)
814{
12a403af 815 fprintf(stderr, "%s, %s\n",
dfddba3d 816 SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
12a403af 817 fprintf(stderr,
5156b1a1 818"usage: sshd [-46DdeiqTt] [-b bits] [-C connection_spec] [-f config_file]\n"
819" [-g login_grace_time] [-h host_key_file] [-k key_gen_time]\n"
820" [-o option] [-p port] [-u len]\n"
12a403af 821 );
1e608e42 822 exit(1);
823}
3c0ef626 824
7e82606e 825static void
826send_rexec_state(int fd, Buffer *conf)
827{
828 Buffer m;
829
830 debug3("%s: entering fd = %d config len %d", __func__, fd,
831 buffer_len(conf));
832
833 /*
834 * Protocol from reexec master to child:
835 * string configuration
836 * u_int ephemeral_key_follows
837 * bignum e (only if ephemeral_key_follows == 1)
838 * bignum n "
839 * bignum d "
840 * bignum iqmp "
841 * bignum p "
842 * bignum q "
08822d99 843 * string rngseed (only if OpenSSL is not self-seeded)
7e82606e 844 */
845 buffer_init(&m);
846 buffer_put_cstring(&m, buffer_ptr(conf));
847
848 if (sensitive_data.server_key != NULL &&
849 sensitive_data.server_key->type == KEY_RSA1) {
850 buffer_put_int(&m, 1);
851 buffer_put_bignum(&m, sensitive_data.server_key->rsa->e);
852 buffer_put_bignum(&m, sensitive_data.server_key->rsa->n);
853 buffer_put_bignum(&m, sensitive_data.server_key->rsa->d);
854 buffer_put_bignum(&m, sensitive_data.server_key->rsa->iqmp);
855 buffer_put_bignum(&m, sensitive_data.server_key->rsa->p);
856 buffer_put_bignum(&m, sensitive_data.server_key->rsa->q);
857 } else
858 buffer_put_int(&m, 0);
859
08822d99 860#ifndef OPENSSL_PRNG_ONLY
861 rexec_send_rng_seed(&m);
862#endif
863
7e82606e 864 if (ssh_msg_send(fd, 0, &m) == -1)
865 fatal("%s: ssh_msg_send failed", __func__);
866
867 buffer_free(&m);
868
869 debug3("%s: done", __func__);
870}
871
872static void
873recv_rexec_state(int fd, Buffer *conf)
874{
875 Buffer m;
876 char *cp;
877 u_int len;
878
879 debug3("%s: entering fd = %d", __func__, fd);
880
881 buffer_init(&m);
882
883 if (ssh_msg_recv(fd, &m) == -1)
884 fatal("%s: ssh_msg_recv failed", __func__);
885 if (buffer_get_char(&m) != 0)
886 fatal("%s: rexec version mismatch", __func__);
887
888 cp = buffer_get_string(&m, &len);
889 if (conf != NULL)
890 buffer_append(conf, cp, len + 1);
891 xfree(cp);
892
893 if (buffer_get_int(&m)) {
894 if (sensitive_data.server_key != NULL)
895 key_free(sensitive_data.server_key);
896 sensitive_data.server_key = key_new_private(KEY_RSA1);
897 buffer_get_bignum(&m, sensitive_data.server_key->rsa->e);
898 buffer_get_bignum(&m, sensitive_data.server_key->rsa->n);
899 buffer_get_bignum(&m, sensitive_data.server_key->rsa->d);
900 buffer_get_bignum(&m, sensitive_data.server_key->rsa->iqmp);
901 buffer_get_bignum(&m, sensitive_data.server_key->rsa->p);
902 buffer_get_bignum(&m, sensitive_data.server_key->rsa->q);
903 rsa_generate_additional_parameters(
904 sensitive_data.server_key->rsa);
905 }
08822d99 906
907#ifndef OPENSSL_PRNG_ONLY
908 rexec_recv_rng_seed(&m);
909#endif
910
7e82606e 911 buffer_free(&m);
912
913 debug3("%s: done", __func__);
914}
915
30460aeb 916/* Accept a connection from inetd */
917static void
918server_accept_inetd(int *sock_in, int *sock_out)
919{
920 int fd;
921
922 startup_pipe = -1;
923 if (rexeced_flag) {
924 close(REEXEC_CONFIG_PASS_FD);
925 *sock_in = *sock_out = dup(STDIN_FILENO);
926 if (!debug_flag) {
927 startup_pipe = dup(REEXEC_STARTUP_PIPE_FD);
928 close(REEXEC_STARTUP_PIPE_FD);
929 }
930 } else {
931 *sock_in = dup(STDIN_FILENO);
932 *sock_out = dup(STDOUT_FILENO);
933 }
934 /*
935 * We intentionally do not close the descriptors 0, 1, and 2
936 * as our code for setting the descriptors won't work if
937 * ttyfd happens to be one of those.
938 */
939 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
940 dup2(fd, STDIN_FILENO);
941 dup2(fd, STDOUT_FILENO);
942 if (fd > STDOUT_FILENO)
943 close(fd);
944 }
945 debug("inetd sockets after dupping: %d, %d", *sock_in, *sock_out);
946}
947
948/*
949 * Listen for TCP connections
950 */
951static void
952server_listen(void)
953{
954 int ret, listen_sock, on = 1;
955 struct addrinfo *ai;
956 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
2d7c038e 957 int socksize;
958 int socksizelen = sizeof(int);
30460aeb 959
960 for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
961 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
962 continue;
963 if (num_listen_socks >= MAX_LISTEN_SOCKS)
964 fatal("Too many listen sockets. "
965 "Enlarge MAX_LISTEN_SOCKS");
966 if ((ret = getnameinfo(ai->ai_addr, ai->ai_addrlen,
967 ntop, sizeof(ntop), strport, sizeof(strport),
968 NI_NUMERICHOST|NI_NUMERICSERV)) != 0) {
969 error("getnameinfo failed: %.100s",
e74dc197 970 ssh_gai_strerror(ret));
30460aeb 971 continue;
972 }
973 /* Create socket for listening. */
974 listen_sock = socket(ai->ai_family, ai->ai_socktype,
975 ai->ai_protocol);
976 if (listen_sock < 0) {
977 /* kernel may not support ipv6 */
978 verbose("socket: %.100s", strerror(errno));
979 continue;
980 }
981 if (set_nonblock(listen_sock) == -1) {
982 close(listen_sock);
983 continue;
984 }
985 /*
986 * Set socket options.
987 * Allow local port reuse in TIME_WAIT.
988 */
989 if (setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
990 &on, sizeof(on)) == -1)
991 error("setsockopt SO_REUSEADDR: %s", strerror(errno));
992
e74dc197 993#ifdef IPV6_V6ONLY
994 /* Only communicate in IPv6 over AF_INET6 sockets. */
995 if (ai->ai_family == AF_INET6) {
996 if (setsockopt(listen_sock, IPPROTO_IPV6, IPV6_V6ONLY,
997 &on, sizeof(on)) == -1)
998 error("setsockopt IPV6_V6ONLY: %s",
999 strerror(errno));
1000 }
1001#endif
1002
30460aeb 1003 debug("Bind to port %s on %s.", strport, ntop);
6df46d40 1004
2d7c038e 1005 getsockopt(listen_sock, SOL_SOCKET, SO_RCVBUF,
1006 &socksize, &socksizelen);
1007 debug("Server TCP RWIN socket size: %d", socksize);
1008 debug("HPN Buffer Size: %d", options.hpn_buffer_size);
30460aeb 1009
1010 /* Bind the socket to the desired port. */
1011 if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1012 error("Bind to port %s on %s failed: %.200s.",
1013 strport, ntop, strerror(errno));
1014 close(listen_sock);
1015 continue;
1016 }
1017 listen_socks[num_listen_socks] = listen_sock;
1018 num_listen_socks++;
1019
1020 /* Start listening on the port. */
1021 if (listen(listen_sock, SSH_LISTEN_BACKLOG) < 0)
1022 fatal("listen on [%s]:%s: %.100s",
1023 ntop, strport, strerror(errno));
1024 logit("Server listening on %s port %s.", ntop, strport);
1025 }
1026 freeaddrinfo(options.listen_addrs);
1027
1028 if (!num_listen_socks)
1029 fatal("Cannot bind any address.");
1030}
1031
1032/*
1033 * The main TCP accept loop. Note that, for the non-debug case, returns
1034 * from this function are in a forked subprocess.
1035 */
1036static void
1037server_accept_loop(int *sock_in, int *sock_out, int *newsock, int *config_s)
1038{
1039 fd_set *fdset;
1040 int i, j, ret, maxfd;
1041 int key_used = 0, startups = 0;
1042 int startup_p[2] = { -1 , -1 };
1043 struct sockaddr_storage from;
1044 socklen_t fromlen;
1045 pid_t pid;
1046
1047 /* setup fd set for accept */
1048 fdset = NULL;
1049 maxfd = 0;
1050 for (i = 0; i < num_listen_socks; i++)
1051 if (listen_socks[i] > maxfd)
1052 maxfd = listen_socks[i];
1053 /* pipes connected to unauthenticated childs */
1054 startup_pipes = xcalloc(options.max_startups, sizeof(int));
1055 for (i = 0; i < options.max_startups; i++)
1056 startup_pipes[i] = -1;
1057
1058 /*
1059 * Stay listening for connections until the system crashes or
1060 * the daemon is killed with a signal.
1061 */
1062 for (;;) {
1063 if (received_sighup)
1064 sighup_restart();
1065 if (fdset != NULL)
1066 xfree(fdset);
1067 fdset = (fd_set *)xcalloc(howmany(maxfd + 1, NFDBITS),
1068 sizeof(fd_mask));
1069
1070 for (i = 0; i < num_listen_socks; i++)
1071 FD_SET(listen_socks[i], fdset);
1072 for (i = 0; i < options.max_startups; i++)
1073 if (startup_pipes[i] != -1)
1074 FD_SET(startup_pipes[i], fdset);
1075
1076 /* Wait in select until there is a connection. */
1077 ret = select(maxfd+1, fdset, NULL, NULL, NULL);
1078 if (ret < 0 && errno != EINTR)
1079 error("select: %.100s", strerror(errno));
1080 if (received_sigterm) {
1081 logit("Received signal %d; terminating.",
1082 (int) received_sigterm);
1083 close_listen_socks();
1084 unlink(options.pid_file);
1085 exit(255);
1086 }
1087 if (key_used && key_do_regen) {
1088 generate_ephemeral_server_key();
1089 key_used = 0;
1090 key_do_regen = 0;
1091 }
1092 if (ret < 0)
1093 continue;
1094
1095 for (i = 0; i < options.max_startups; i++)
1096 if (startup_pipes[i] != -1 &&
1097 FD_ISSET(startup_pipes[i], fdset)) {
1098 /*
1099 * the read end of the pipe is ready
1100 * if the child has closed the pipe
1101 * after successful authentication
1102 * or if the child has died
1103 */
1104 close(startup_pipes[i]);
1105 startup_pipes[i] = -1;
1106 startups--;
1107 }
1108 for (i = 0; i < num_listen_socks; i++) {
1109 if (!FD_ISSET(listen_socks[i], fdset))
1110 continue;
1111 fromlen = sizeof(from);
1112 *newsock = accept(listen_socks[i],
1113 (struct sockaddr *)&from, &fromlen);
1114 if (*newsock < 0) {
5156b1a1 1115 if (errno != EINTR && errno != EAGAIN &&
1116 errno != EWOULDBLOCK)
30460aeb 1117 error("accept: %.100s", strerror(errno));
1118 continue;
1119 }
1120 if (unset_nonblock(*newsock) == -1) {
1121 close(*newsock);
1122 continue;
1123 }
1124 if (drop_connection(startups) == 1) {
1125 debug("drop connection #%d", startups);
1126 close(*newsock);
1127 continue;
1128 }
1129 if (pipe(startup_p) == -1) {
1130 close(*newsock);
1131 continue;
1132 }
1133
1134 if (rexec_flag && socketpair(AF_UNIX,
1135 SOCK_STREAM, 0, config_s) == -1) {
1136 error("reexec socketpair: %s",
1137 strerror(errno));
1138 close(*newsock);
1139 close(startup_p[0]);
1140 close(startup_p[1]);
1141 continue;
1142 }
1143
1144 for (j = 0; j < options.max_startups; j++)
1145 if (startup_pipes[j] == -1) {
1146 startup_pipes[j] = startup_p[0];
1147 if (maxfd < startup_p[0])
1148 maxfd = startup_p[0];
1149 startups++;
1150 break;
1151 }
1152
1153 /*
1154 * Got connection. Fork a child to handle it, unless
1155 * we are in debugging mode.
1156 */
1157 if (debug_flag) {
1158 /*
1159 * In debugging mode. Close the listening
1160 * socket, and start processing the
1161 * connection without forking.
1162 */
1163 debug("Server will not fork when running in debugging mode.");
1164 close_listen_socks();
1165 *sock_in = *newsock;
1166 *sock_out = *newsock;
1167 close(startup_p[0]);
1168 close(startup_p[1]);
1169 startup_pipe = -1;
1170 pid = getpid();
1171 if (rexec_flag) {
1172 send_rexec_state(config_s[0],
1173 &cfg);
1174 close(config_s[0]);
1175 }
1176 break;
1177 }
1178
1179 /*
1180 * Normal production daemon. Fork, and have
1181 * the child process the connection. The
1182 * parent continues listening.
1183 */
1184 platform_pre_fork();
1185 if ((pid = fork()) == 0) {
1186 /*
1187 * Child. Close the listening and
1188 * max_startup sockets. Start using
1189 * the accepted socket. Reinitialize
1190 * logging (since our pid has changed).
1191 * We break out of the loop to handle
1192 * the connection.
1193 */
1194 platform_post_fork_child();
1195 startup_pipe = startup_p[1];
1196 close_startup_pipes();
1197 close_listen_socks();
1198 *sock_in = *newsock;
1199 *sock_out = *newsock;
1200 log_init(__progname,
1201 options.log_level,
1202 options.log_facility,
1203 log_stderr);
1204 if (rexec_flag)
1205 close(config_s[0]);
1206 break;
1207 }
1208
1209 /* Parent. Stay in the loop. */
1210 platform_post_fork_parent(pid);
1211 if (pid < 0)
1212 error("fork: %.100s", strerror(errno));
1213 else
1214 debug("Forked child %ld.", (long)pid);
1215
1216 close(startup_p[1]);
1217
1218 if (rexec_flag) {
1219 send_rexec_state(config_s[0], &cfg);
1220 close(config_s[0]);
1221 close(config_s[1]);
1222 }
1223
1224 /*
1225 * Mark that the key has been used (it
1226 * was "given" to the child).
1227 */
1228 if ((options.protocol & SSH_PROTO_1) &&
1229 key_used == 0) {
1230 /* Schedule server key regeneration alarm. */
1231 signal(SIGALRM, key_regeneration_alarm);
1232 alarm(options.key_regeneration_time);
1233 key_used = 1;
1234 }
1235
1236 close(*newsock);
1237
1238 /*
1239 * Ensure that our random state differs
1240 * from that of the child
1241 */
1242 arc4random_stir();
1243 }
1244
1245 /* child process check (or debug mode) */
1246 if (num_listen_socks < 0)
1247 break;
1248 }
1249}
1250
1251
3c0ef626 1252/*
1253 * Main program for the daemon.
1254 */
1255int
1256main(int ac, char **av)
1257{
1258 extern char *optarg;
1259 extern int optind;
30460aeb 1260 int opt, i, on = 1;
7e82606e 1261 int sock_in = -1, sock_out = -1, newsock = -1;
3c0ef626 1262 const char *remote_ip;
5156b1a1 1263 char *test_user = NULL, *test_host = NULL, *test_addr = NULL;
3c0ef626 1264 int remote_port;
5156b1a1 1265 char *line, *p, *cp;
30460aeb 1266 int config_s[2] = { -1 , -1 };
5156b1a1 1267 u_int64_t ibytes, obytes;
1268 mode_t new_umask;
3c0ef626 1269 Key *key;
540d72c3 1270 Authctxt *authctxt;
3c0ef626 1271
510132b6 1272#ifdef HAVE_SECUREWARE
1273 (void)set_auth_parameters(ac, av);
1274#endif
7cac2b65 1275 __progname = ssh_get_progname(av[0]);
3c0ef626 1276 init_rng();
1277
bfe49944 1278 /* Save argv. Duplicate so setproctitle emulation doesn't clobber it */
3c0ef626 1279 saved_argc = ac;
7e82606e 1280 rexec_argc = ac;
30460aeb 1281 saved_argv = xcalloc(ac + 1, sizeof(*saved_argv));
bfe49944 1282 for (i = 0; i < ac; i++)
1283 saved_argv[i] = xstrdup(av[i]);
7cac2b65 1284 saved_argv[i] = NULL;
bfe49944 1285
1286#ifndef HAVE_SETPROCTITLE
1287 /* Prepare for later setproctitle emulation */
1288 compat_init_setproctitle(ac, av);
7cac2b65 1289 av = saved_argv;
bfe49944 1290#endif
3c0ef626 1291
12a403af 1292 if (geteuid() == 0 && setgroups(0, NULL) == -1)
1293 debug("setgroups(): %.200s", strerror(errno));
1294
08822d99 1295 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1296 sanitise_stdfd();
1297
3c0ef626 1298 /* Initialize configuration options to their default values. */
1299 initialize_server_options(&options);
1300
1301 /* Parse command-line arguments. */
5156b1a1 1302 while ((opt = getopt(ac, av, "f:p:b:k:h:g:u:o:C:dDeiqrtQRT46")) != -1) {
3c0ef626 1303 switch (opt) {
1304 case '4':
dfddba3d 1305 options.address_family = AF_INET;
3c0ef626 1306 break;
1307 case '6':
dfddba3d 1308 options.address_family = AF_INET6;
3c0ef626 1309 break;
1310 case 'f':
1311 config_file_name = optarg;
1312 break;
1313 case 'd':
7cac2b65 1314 if (debug_flag == 0) {
3c0ef626 1315 debug_flag = 1;
1316 options.log_level = SYSLOG_LEVEL_DEBUG1;
7cac2b65 1317 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3)
3c0ef626 1318 options.log_level++;
3c0ef626 1319 break;
1320 case 'D':
1321 no_daemon_flag = 1;
1322 break;
1323 case 'e':
1324 log_stderr = 1;
1325 break;
1326 case 'i':
1327 inetd_flag = 1;
1328 break;
7e82606e 1329 case 'r':
1330 rexec_flag = 0;
1331 break;
1332 case 'R':
1333 rexeced_flag = 1;
1334 inetd_flag = 1;
1335 break;
3c0ef626 1336 case 'Q':
1337 /* ignored */
1338 break;
1339 case 'q':
1340 options.log_level = SYSLOG_LEVEL_QUIET;
1341 break;
1342 case 'b':
30460aeb 1343 options.server_key_bits = (int)strtonum(optarg, 256,
1344 32768, NULL);
3c0ef626 1345 break;
1346 case 'p':
1347 options.ports_from_cmdline = 1;
1348 if (options.num_ports >= MAX_PORTS) {
1349 fprintf(stderr, "too many ports.\n");
1350 exit(1);
1351 }
1352 options.ports[options.num_ports++] = a2port(optarg);
5262cbfb 1353 if (options.ports[options.num_ports-1] <= 0) {
3c0ef626 1354 fprintf(stderr, "Bad port number.\n");
1355 exit(1);
1356 }
1357 break;
1358 case 'g':
1359 if ((options.login_grace_time = convtime(optarg)) == -1) {
1360 fprintf(stderr, "Invalid login grace time.\n");
1361 exit(1);
1362 }
1363 break;
1364 case 'k':
1365 if ((options.key_regeneration_time = convtime(optarg)) == -1) {
1366 fprintf(stderr, "Invalid key regeneration interval.\n");
1367 exit(1);
1368 }
1369 break;
1370 case 'h':
1371 if (options.num_host_key_files >= MAX_HOSTKEYS) {
1372 fprintf(stderr, "too many host keys.\n");
1373 exit(1);
1374 }
1375 options.host_key_files[options.num_host_key_files++] = optarg;
1376 break;
3c0ef626 1377 case 't':
1378 test_flag = 1;
1379 break;
5156b1a1 1380 case 'T':
1381 test_flag = 2;
1382 break;
1383 case 'C':
1384 cp = optarg;
1385 while ((p = strsep(&cp, ",")) && *p != '\0') {
1386 if (strncmp(p, "addr=", 5) == 0)
1387 test_addr = xstrdup(p + 5);
1388 else if (strncmp(p, "host=", 5) == 0)
1389 test_host = xstrdup(p + 5);
1390 else if (strncmp(p, "user=", 5) == 0)
1391 test_user = xstrdup(p + 5);
1392 else {
1393 fprintf(stderr, "Invalid test "
1394 "mode specification %s\n", p);
1395 exit(1);
1396 }
1397 }
1398 break;
3c0ef626 1399 case 'u':
30460aeb 1400 utmp_len = (u_int)strtonum(optarg, 0, MAXHOSTNAMELEN+1, NULL);
d03f4262 1401 if (utmp_len > MAXHOSTNAMELEN) {
1402 fprintf(stderr, "Invalid utmp length.\n");
1403 exit(1);
1404 }
3c0ef626 1405 break;
1e608e42 1406 case 'o':
540d72c3 1407 line = xstrdup(optarg);
1408 if (process_server_config_line(&options, line,
30460aeb 1409 "command-line", 0, NULL, NULL, NULL, NULL) != 0)
1e608e42 1410 exit(1);
540d72c3 1411 xfree(line);
1e608e42 1412 break;
3c0ef626 1413 case '?':
1414 default:
1e608e42 1415 usage();
1416 break;
3c0ef626 1417 }
1418 }
7e82606e 1419 if (rexeced_flag || inetd_flag)
1420 rexec_flag = 0;
e74dc197 1421 if (!test_flag && (rexec_flag && (av[0] == NULL || *av[0] != '/')))
7e82606e 1422 fatal("sshd re-exec requires execution with an absolute path");
1423 if (rexeced_flag)
1424 closefrom(REEXEC_MIN_FREE_FD);
1425 else
1426 closefrom(REEXEC_DEVCRYPTO_RESERVED_FD);
1427
3c0ef626 1428 SSLeay_add_all_algorithms();
3c0ef626 1429
1430 /*
1431 * Force logging to stderr until we have loaded the private host
1432 * key (unless started from inetd)
1433 */
1434 log_init(__progname,
1e608e42 1435 options.log_level == SYSLOG_LEVEL_NOT_SET ?
1436 SYSLOG_LEVEL_INFO : options.log_level,
1437 options.log_facility == SYSLOG_FACILITY_NOT_SET ?
1438 SYSLOG_FACILITY_AUTH : options.log_facility,
bfe49944 1439 log_stderr || !inetd_flag);
3c0ef626 1440
12a403af 1441 /*
1442 * Unset KRB5CCNAME, otherwise the user's session may inherit it from
1443 * root's environment
2ce0bfe4 1444 */
dfddba3d 1445 if (getenv("KRB5CCNAME") != NULL)
1446 unsetenv("KRB5CCNAME");
1447
d03f4262 1448#ifdef _UNICOS
7e82606e 1449 /* Cray can define user privs drop all privs now!
3c0ef626 1450 * Not needed on PRIV_SU systems!
1451 */
1452 drop_cray_privs();
1453#endif
1454
7e82606e 1455 sensitive_data.server_key = NULL;
1456 sensitive_data.ssh1_host_key = NULL;
1457 sensitive_data.have_ssh1_key = 0;
1458 sensitive_data.have_ssh2_key = 0;
1459
5156b1a1 1460 /*
1461 * If we're doing an extended config test, make sure we have all of
1462 * the parameters we need. If we're not doing an extended test,
1463 * do not silently ignore connection test params.
1464 */
1465 if (test_flag >= 2 &&
1466 (test_user != NULL || test_host != NULL || test_addr != NULL)
1467 && (test_user == NULL || test_host == NULL || test_addr == NULL))
1468 fatal("user, host and addr are all required when testing "
1469 "Match configs");
1470 if (test_flag < 2 && (test_user != NULL || test_host != NULL ||
1471 test_addr != NULL))
1472 fatal("Config test connection parameter (-C) provided without "
1473 "test mode (-T)");
1474
7e82606e 1475 /* Fetch our configuration */
1476 buffer_init(&cfg);
1477 if (rexeced_flag)
1478 recv_rexec_state(REEXEC_CONFIG_PASS_FD, &cfg);
1479 else
1480 load_server_config(config_file_name, &cfg);
1481
30460aeb 1482 parse_server_config(&options, rexeced_flag ? "rexec" : config_file_name,
1483 &cfg, NULL, NULL, NULL);
3c0ef626 1484
08822d99 1485 seed_rng();
1486
3c0ef626 1487 /* Fill in default values for those options not explicitly set. */
1488 fill_default_server_options(&options);
1489
fa0f0f45 1490 /* challenge-response is implemented via keyboard interactive */
1491 if (options.challenge_response_authentication)
1492 options.kbd_interactive_authentication = 1;
1493
dfddba3d 1494 /* set default channel AF */
1495 channel_set_af(options.address_family);
1496
3c0ef626 1497 /* Check that there are no remaining arguments. */
1498 if (optind < ac) {
1499 fprintf(stderr, "Extra argument %s.\n", av[optind]);
1500 exit(1);
1501 }
1502
dfddba3d 1503 debug("sshd version %.100s", SSH_RELEASE);
3c0ef626 1504
240debe0 1505 /* Store privilege separation user for later use if required. */
1506 if ((privsep_pw = getpwnam(SSH_PRIVSEP_USER)) == NULL) {
1507 if (use_privsep || options.kerberos_authentication)
1508 fatal("Privilege separation user %s does not exist",
1509 SSH_PRIVSEP_USER);
1510 } else {
1511 memset(privsep_pw->pw_passwd, 0, strlen(privsep_pw->pw_passwd));
1512 privsep_pw = pwcopy(privsep_pw);
1513 xfree(privsep_pw->pw_passwd);
1514 privsep_pw->pw_passwd = xstrdup("*");
1515 }
30460aeb 1516 endpwent();
1517
3c0ef626 1518 /* load private host keys */
30460aeb 1519 sensitive_data.host_keys = xcalloc(options.num_host_key_files,
d03f4262 1520 sizeof(Key *));
1e608e42 1521 for (i = 0; i < options.num_host_key_files; i++)
3c0ef626 1522 sensitive_data.host_keys[i] = NULL;
3c0ef626 1523
1e608e42 1524 for (i = 0; i < options.num_host_key_files; i++) {
3c0ef626 1525 key = key_load_private(options.host_key_files[i], "", NULL);
1526 sensitive_data.host_keys[i] = key;
1527 if (key == NULL) {
1528 error("Could not load host key: %s",
1529 options.host_key_files[i]);
1530 sensitive_data.host_keys[i] = NULL;
1531 continue;
1532 }
1e608e42 1533 switch (key->type) {
3c0ef626 1534 case KEY_RSA1:
1535 sensitive_data.ssh1_host_key = key;
1536 sensitive_data.have_ssh1_key = 1;
1537 break;
1538 case KEY_RSA:
1539 case KEY_DSA:
1540 sensitive_data.have_ssh2_key = 1;
1541 break;
1542 }
1543 debug("private host key: #%d type %d %s", i, key->type,
1544 key_type(key));
1545 }
1546 if ((options.protocol & SSH_PROTO_1) && !sensitive_data.have_ssh1_key) {
7cac2b65 1547 logit("Disabling protocol version 1. Could not load host key");
3c0ef626 1548 options.protocol &= ~SSH_PROTO_1;
1549 }
5598e598 1550#ifndef GSSAPI
1551 /* The GSSAPI key exchange can run without a host key */
3c0ef626 1552 if ((options.protocol & SSH_PROTO_2) && !sensitive_data.have_ssh2_key) {
7cac2b65 1553 logit("Disabling protocol version 2. Could not load host key");
3c0ef626 1554 options.protocol &= ~SSH_PROTO_2;
1555 }
5598e598 1556#endif
3c0ef626 1557 if (!(options.protocol & (SSH_PROTO_1|SSH_PROTO_2))) {
7cac2b65 1558 logit("sshd: no hostkeys available -- exiting.");
3c0ef626 1559 exit(1);
1560 }
1561
1562 /* Check certain values for sanity. */
1563 if (options.protocol & SSH_PROTO_1) {
1564 if (options.server_key_bits < 512 ||
1565 options.server_key_bits > 32768) {
1566 fprintf(stderr, "Bad server key size.\n");
1567 exit(1);
1568 }
1569 /*
1570 * Check that server and host key lengths differ sufficiently. This
1571 * is necessary to make double encryption work with rsaref. Oh, I
1572 * hate software patents. I dont know if this can go? Niels
1573 */
1574 if (options.server_key_bits >
276b07a3 1575 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) -
1576 SSH_KEY_BITS_RESERVED && options.server_key_bits <
1577 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) +
1578 SSH_KEY_BITS_RESERVED) {
3c0ef626 1579 options.server_key_bits =
276b07a3 1580 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) +
1581 SSH_KEY_BITS_RESERVED;
3c0ef626 1582 debug("Forcing server key to %d bits to make it differ from host key.",
1583 options.server_key_bits);
1584 }
1585 }
1586
44a053a3 1587 if (use_privsep) {
44a053a3 1588 struct stat st;
1589
44a053a3 1590 if ((stat(_PATH_PRIVSEP_CHROOT_DIR, &st) == -1) ||
1591 (S_ISDIR(st.st_mode) == 0))
1592 fatal("Missing privilege separation directory: %s",
1593 _PATH_PRIVSEP_CHROOT_DIR);
d03f4262 1594
1595#ifdef HAVE_CYGWIN
1596 if (check_ntsec(_PATH_PRIVSEP_CHROOT_DIR) &&
1597 (st.st_uid != getuid () ||
1598 (st.st_mode & (S_IWGRP|S_IWOTH)) != 0))
1599#else
276b07a3 1600 if (st.st_uid != 0 || (st.st_mode & (S_IWGRP|S_IWOTH)) != 0)
d03f4262 1601#endif
bfe49944 1602 fatal("%s must be owned by root and not group or "
1603 "world-writable.", _PATH_PRIVSEP_CHROOT_DIR);
44a053a3 1604 }
1605
5156b1a1 1606 if (test_flag > 1) {
1607 if (test_user != NULL && test_addr != NULL && test_host != NULL)
1608 parse_server_match_config(&options, test_user,
1609 test_host, test_addr);
1610 dump_config(&options);
1611 }
1612
3c0ef626 1613 /* Configuration looks good, so exit if in test mode. */
1614 if (test_flag)
1615 exit(0);
1616
510132b6 1617 /*
1618 * Clear out any supplemental groups we may have inherited. This
1619 * prevents inadvertent creation of files with bad modes (in the
540d72c3 1620 * portable version at least, it's certainly possible for PAM
1621 * to create a file, and we can't control the code in every
510132b6 1622 * module which might be used).
1623 */
1624 if (setgroups(0, NULL) < 0)
1625 debug("setgroups() failed: %.200s", strerror(errno));
3c0ef626 1626
7e82606e 1627 if (rexec_flag) {
30460aeb 1628 rexec_argv = xcalloc(rexec_argc + 2, sizeof(char *));
7e82606e 1629 for (i = 0; i < rexec_argc; i++) {
1630 debug("rexec_argv[%d]='%s'", i, saved_argv[i]);
1631 rexec_argv[i] = saved_argv[i];
1632 }
1633 rexec_argv[rexec_argc] = "-R";
1634 rexec_argv[rexec_argc + 1] = NULL;
1635 }
1636
5156b1a1 1637 /* Ensure that umask disallows at least group and world write */
1638 new_umask = umask(0077) | 0022;
1639 (void) umask(new_umask);
1640
3c0ef626 1641 /* Initialize the log (it is reinitialized below in case we forked). */
dfddba3d 1642 if (debug_flag && (!inetd_flag || rexeced_flag))
3c0ef626 1643 log_stderr = 1;
1644 log_init(__progname, options.log_level, options.log_facility, log_stderr);
1645
1646 /*
1647 * If not in debugging mode, and not started from inetd, disconnect
1648 * from the controlling terminal, and fork. The original process
1649 * exits.
1650 */
1651 if (!(debug_flag || inetd_flag || no_daemon_flag)) {
1652#ifdef TIOCNOTTY
1653 int fd;
1654#endif /* TIOCNOTTY */
1655 if (daemon(0, 0) < 0)
1656 fatal("daemon() failed: %.200s", strerror(errno));
1657
1658 /* Disconnect from the controlling tty. */
1659#ifdef TIOCNOTTY
1660 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
1661 if (fd >= 0) {
1662 (void) ioctl(fd, TIOCNOTTY, NULL);
1663 close(fd);
1664 }
1665#endif /* TIOCNOTTY */
1666 }
1667 /* Reinitialize the log (because of the fork above). */
1668 log_init(__progname, options.log_level, options.log_facility, log_stderr);
1669
1670 /* Initialize the random number generator. */
1671 arc4random_stir();
1672
1673 /* Chdir to the root directory so that the current disk can be
1674 unmounted if desired. */
1675 chdir("/");
1e608e42 1676
3c0ef626 1677 /* ignore SIGPIPE */
1678 signal(SIGPIPE, SIG_IGN);
1679
30460aeb 1680 /* Get a connection, either from inetd or a listening TCP socket */
3c0ef626 1681 if (inetd_flag) {
30460aeb 1682 server_accept_inetd(&sock_in, &sock_out);
3c0ef626 1683 } else {
30460aeb 1684 server_listen();
3c0ef626 1685
1686 if (options.protocol & SSH_PROTO_1)
1687 generate_ephemeral_server_key();
1688
3c0ef626 1689 signal(SIGHUP, sighup_handler);
30460aeb 1690 signal(SIGCHLD, main_sigchld_handler);
3c0ef626 1691 signal(SIGTERM, sigterm_handler);
1692 signal(SIGQUIT, sigterm_handler);
1693
30460aeb 1694 /*
1695 * Write out the pid file after the sigterm handler
1696 * is setup and the listen sockets are bound
1697 */
3c0ef626 1698 if (!debug_flag) {
30460aeb 1699 FILE *f = fopen(options.pid_file, "w");
1700
7cac2b65 1701 if (f == NULL) {
1702 error("Couldn't create pid file \"%s\": %s",
1703 options.pid_file, strerror(errno));
1704 } else {
44a053a3 1705 fprintf(f, "%ld\n", (long) getpid());
3c0ef626 1706 fclose(f);
1707 }
1708 }
1709
30460aeb 1710 /* Accept a connection and return in a forked child */
1711 server_accept_loop(&sock_in, &sock_out,
1712 &newsock, config_s);
3c0ef626 1713 }
1714
1715 /* This is the child processing a new connection. */
12a403af 1716 setproctitle("%s", "[accepted]");
3c0ef626 1717
510132b6 1718 /*
1719 * Create a new session and process group since the 4.4BSD
1720 * setlogin() affects the entire process group. We don't
1721 * want the child to be able to affect the parent.
1722 */
7cac2b65 1723#if !defined(SSHD_ACQUIRES_CTTY)
bfe49944 1724 /*
7cac2b65 1725 * If setsid is called, on some platforms sshd will later acquire a
1726 * controlling terminal which will result in "could not set
1727 * controlling tty" errors.
bfe49944 1728 */
276b07a3 1729 if (!debug_flag && !inetd_flag && setsid() < 0)
510132b6 1730 error("setsid: %.100s", strerror(errno));
1731#endif
1732
7e82606e 1733 if (rexec_flag) {
1734 int fd;
1735
1736 debug("rexec start in %d out %d newsock %d pipe %d sock %d",
1737 sock_in, sock_out, newsock, startup_pipe, config_s[0]);
1738 dup2(newsock, STDIN_FILENO);
1739 dup2(STDIN_FILENO, STDOUT_FILENO);
1740 if (startup_pipe == -1)
1741 close(REEXEC_STARTUP_PIPE_FD);
1742 else
1743 dup2(startup_pipe, REEXEC_STARTUP_PIPE_FD);
1744
1745 dup2(config_s[1], REEXEC_CONFIG_PASS_FD);
1746 close(config_s[1]);
1747 if (startup_pipe != -1)
1748 close(startup_pipe);
1749
1750 execv(rexec_argv[0], rexec_argv);
1751
1752 /* Reexec has failed, fall back and continue */
1753 error("rexec of %s failed: %s", rexec_argv[0], strerror(errno));
1754 recv_rexec_state(REEXEC_CONFIG_PASS_FD, NULL);
1755 log_init(__progname, options.log_level,
1756 options.log_facility, log_stderr);
1757
1758 /* Clean up fds */
1759 startup_pipe = REEXEC_STARTUP_PIPE_FD;
1760 close(config_s[1]);
1761 close(REEXEC_CONFIG_PASS_FD);
1762 newsock = sock_out = sock_in = dup(STDIN_FILENO);
1763 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
1764 dup2(fd, STDIN_FILENO);
1765 dup2(fd, STDOUT_FILENO);
1766 if (fd > STDERR_FILENO)
1767 close(fd);
1768 }
1769 debug("rexec cleanup in %d out %d newsock %d pipe %d sock %d",
1770 sock_in, sock_out, newsock, startup_pipe, config_s[0]);
1771 }
1772
3c0ef626 1773 /*
1774 * Disable the key regeneration alarm. We will not regenerate the
1775 * key since we are no longer in a position to give it to anyone. We
1776 * will not restart on SIGHUP since it no longer makes sense.
1777 */
1778 alarm(0);
1779 signal(SIGALRM, SIG_DFL);
1780 signal(SIGHUP, SIG_DFL);
1781 signal(SIGTERM, SIG_DFL);
1782 signal(SIGQUIT, SIG_DFL);
1783 signal(SIGCHLD, SIG_DFL);
1784 signal(SIGINT, SIG_DFL);
1785
3c0ef626 1786 /*
1787 * Register our connection. This turns encryption off because we do
1788 * not have a key.
1789 */
1790 packet_set_connection(sock_in, sock_out);
2ce0bfe4 1791 packet_set_server();
3c0ef626 1792
2ce0bfe4 1793 /* Set SO_KEEPALIVE if requested. */
1794 if (options.tcp_keep_alive && packet_connection_is_on_socket() &&
1795 setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, &on, sizeof(on)) < 0)
1796 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
1797
1798 if ((remote_port = get_remote_port()) < 0) {
1799 debug("get_remote_port failed");
1800 cleanup_exit(255);
1801 }
08822d99 1802
76d45d2f 1803 /* set the HPN options for the child */
1804 channel_set_hpn(options.hpn_disabled, options.hpn_buffer_size);
1805
08822d99 1806 /*
1807 * We use get_canonical_hostname with usedns = 0 instead of
1808 * get_remote_ipaddr here so IP options will be checked.
1809 */
30460aeb 1810 (void) get_canonical_hostname(0);
1811 /*
1812 * The rest of the code depends on the fact that
1813 * get_remote_ipaddr() caches the remote ip, even if
1814 * the socket goes away.
1815 */
1816 remote_ip = get_remote_ipaddr();
3c0ef626 1817
dfddba3d 1818#ifdef SSH_AUDIT_EVENTS
1819 audit_connection_from(remote_ip, remote_port);
1820#endif
3c0ef626 1821#ifdef LIBWRAP
e74dc197 1822 allow_severity = options.log_facility|LOG_INFO;
1823 deny_severity = options.log_facility|LOG_WARNING;
3c0ef626 1824 /* Check whether logins are denied from this host. */
7e82606e 1825 if (packet_connection_is_on_socket()) {
3c0ef626 1826 struct request_info req;
1827
1828 request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, 0);
1829 fromhost(&req);
1830
1831 if (!hosts_access(&req)) {
1832 debug("Connection refused by tcp wrapper");
1833 refuse(&req);
1834 /* NOTREACHED */
1835 fatal("libwrap refuse returns");
1836 }
1837 }
1838#endif /* LIBWRAP */
1839
1840 /* Log the connection. */
1841 verbose("Connection from %.500s port %d", remote_ip, remote_port);
1842
fe4ad273 1843#ifdef USE_SECURITY_SESSION_API
1844 /*
1845 * Create a new security session for use by the new user login if
1846 * the current session is the root session or we are not launched
1847 * by inetd (eg: debugging mode or server mode). We do not
1848 * necessarily need to create a session if we are launched from
1849 * inetd because Panther xinetd will create a session for us.
1850 *
1851 * The only case where this logic will fail is if there is an
1852 * inetd running in a non-root session which is not creating
1853 * new sessions for us. Then all the users will end up in the
1854 * same session (bad).
1855 *
1856 * When the client exits, the session will be destroyed for us
1857 * automatically.
1858 *
1859 * We must create the session before any credentials are stored
1860 * (including AFS pags, which happens a few lines below).
1861 */
1862 {
1863 OSStatus err = 0;
1864 SecuritySessionId sid = 0;
1865 SessionAttributeBits sattrs = 0;
1866
1867 err = SessionGetInfo(callerSecuritySession, &sid, &sattrs);
1868 if (err)
1869 error("SessionGetInfo() failed with error %.8X",
1870 (unsigned) err);
1871 else
473db5ab 1872 debug("Current Session ID is %.8X / Session Attributes are %.8X",
fe4ad273 1873 (unsigned) sid, (unsigned) sattrs);
1874
1875 if (inetd_flag && !(sattrs & sessionIsRoot))
1876 debug("Running in inetd mode in a non-root session... "
1877 "assuming inetd created the session for us.");
1878 else {
1879 debug("Creating new security session...");
1880 err = SessionCreate(0, sessionHasTTY | sessionIsRemote);
1881 if (err)
1882 error("SessionCreate() failed with error %.8X",
1883 (unsigned) err);
1884
1885 err = SessionGetInfo(callerSecuritySession, &sid,
1886 &sattrs);
1887 if (err)
1888 error("SessionGetInfo() failed with error %.8X",
1889 (unsigned) err);
1890 else
473db5ab 1891 debug("New Session ID is %.8X / Session Attributes are %.8X",
fe4ad273 1892 (unsigned) sid, (unsigned) sattrs);
1893 }
1894 }
1895#endif
1896
3c0ef626 1897 /*
08822d99 1898 * We don't want to listen forever unless the other side
3c0ef626 1899 * successfully authenticates itself. So we set up an alarm which is
1900 * cleared after successful authentication. A limit of zero
08822d99 1901 * indicates no limit. Note that we don't set the alarm in debugging
3c0ef626 1902 * mode; it is just annoying to have the server exit just when you
1903 * are about to discover the bug.
1904 */
1905 signal(SIGALRM, grace_alarm_handler);
1906 if (!debug_flag)
1907 alarm(options.login_grace_time);
1908
1909 sshd_exchange_identification(sock_in, sock_out);
7cac2b65 1910#if defined(AFS_KRB5)
3c0ef626 1911 /* If machine has AFS, set process authentication group. */
1912 if (k_hasafs()) {
1913 k_setpag();
1914 k_unlog();
1915 }
62eb343a 1916#endif /* AFS || AFS_KRB5 */
3c0ef626 1917
e74dc197 1918 /* In inetd mode, generate ephemeral key only for proto 1 connections */
1919 if (!compat20 && inetd_flag && sensitive_data.server_key == NULL)
1920 generate_ephemeral_server_key();
1921
3c0ef626 1922 packet_set_nonblocking();
1923
540d72c3 1924 /* allocate authentication context */
30460aeb 1925 authctxt = xcalloc(1, sizeof(*authctxt));
540d72c3 1926
8b32eddc 1927 authctxt->loginmsg = &loginmsg;
1928
540d72c3 1929 /* XXX global for cleanup, access from other modules */
1930 the_authctxt = authctxt;
1931
dfddba3d 1932 /* prepare buffer to collect messages to display to user after login */
1933 buffer_init(&loginmsg);
1934
510132b6 1935 if (use_privsep)
540d72c3 1936 if (privsep_preauth(authctxt) == 1)
510132b6 1937 goto authenticated;
1938
3c0ef626 1939 /* perform the key exchange */
1940 /* authenticate user and start session */
1941 if (compat20) {
1942 do_ssh2_kex();
540d72c3 1943 do_authentication2(authctxt);
3c0ef626 1944 } else {
1945 do_ssh1_kex();
540d72c3 1946 do_authentication(authctxt);
510132b6 1947 }
1948 /*
1949 * If we use privilege separation, the unprivileged child transfers
1950 * the current keystate and exits
1951 */
1952 if (use_privsep) {
1953 mm_send_keystate(pmonitor);
1954 exit(0);
3c0ef626 1955 }
510132b6 1956
1957 authenticated:
08822d99 1958 /*
1959 * Cancel the alarm we set to limit the time taken for
1960 * authentication.
1961 */
1962 alarm(0);
1963 signal(SIGALRM, SIG_DFL);
30460aeb 1964 authctxt->authenticated = 1;
08822d99 1965 if (startup_pipe != -1) {
1966 close(startup_pipe);
1967 startup_pipe = -1;
1968 }
1969
dfddba3d 1970#ifdef SSH_AUDIT_EVENTS
1971 audit_event(SSH_AUTH_SUCCESS);
1972#endif
1973
e74dc197 1974#ifdef GSSAPI
05ed7e1e 1975 if (options.gss_authentication && options.gss_deleg_creds) {
e74dc197 1976 temporarily_use_uid(authctxt->pw);
1977 ssh_gssapi_storecreds();
1978 restore_uid();
1979 }
1980#endif
1981#ifdef USE_PAM
1982 if (options.use_pam) {
1983 do_pam_setcred(1);
1984 do_pam_session();
1985 }
1986#endif
1987
510132b6 1988 /*
1989 * In privilege separation, we fork another child and prepare
1990 * file descriptor passing.
1991 */
1992 if (use_privsep) {
1993 privsep_postauth(authctxt);
1994 /* the monitor process [priv] will not return */
1995 if (!compat20)
1996 destroy_sensitive_data();
1997 }
1998
5156b1a1 1999 packet_set_timeout(options.client_alive_interval,
2000 options.client_alive_count_max);
2001
540d72c3 2002 /* Start session. */
510132b6 2003 do_authenticated(authctxt);
2004
3c0ef626 2005 /* The connection has been terminated. */
5156b1a1 2006 packet_get_state(MODE_IN, NULL, NULL, NULL, &ibytes);
2007 packet_get_state(MODE_OUT, NULL, NULL, NULL, &obytes);
2008 verbose("Transferred: sent %llu, received %llu bytes", obytes, ibytes);
2009
2010 verbose("Closing connection to %.500s port %d", remote_ip, remote_port);
3c0ef626 2011
2012#ifdef USE_PAM
7cac2b65 2013 if (options.use_pam)
2014 finish_pam();
3c0ef626 2015#endif /* USE_PAM */
2016
dfddba3d 2017#ifdef SSH_AUDIT_EVENTS
2018 PRIVSEP(audit_event(SSH_CONNECTION_CLOSE));
2019#endif
2020
3c0ef626 2021 packet_close();
510132b6 2022
2023 if (use_privsep)
2024 mm_terminate();
2025
3c0ef626 2026 exit(0);
2027}
2028
510132b6 2029/*
2030 * Decrypt session_key_int using our private server key and private host key
2031 * (key with larger modulus first).
2032 */
2033int
2034ssh1_session_key(BIGNUM *session_key_int)
2035{
2036 int rsafail = 0;
2037
30460aeb 2038 if (BN_cmp(sensitive_data.server_key->rsa->n,
2039 sensitive_data.ssh1_host_key->rsa->n) > 0) {
510132b6 2040 /* Server key has bigger modulus. */
2041 if (BN_num_bits(sensitive_data.server_key->rsa->n) <
30460aeb 2042 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) +
2043 SSH_KEY_BITS_RESERVED) {
2044 fatal("do_connection: %s: "
2045 "server_key %d < host_key %d + SSH_KEY_BITS_RESERVED %d",
510132b6 2046 get_remote_ipaddr(),
2047 BN_num_bits(sensitive_data.server_key->rsa->n),
2048 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
2049 SSH_KEY_BITS_RESERVED);
2050 }
2051 if (rsa_private_decrypt(session_key_int, session_key_int,
2052 sensitive_data.server_key->rsa) <= 0)
2053 rsafail++;
2054 if (rsa_private_decrypt(session_key_int, session_key_int,
2055 sensitive_data.ssh1_host_key->rsa) <= 0)
2056 rsafail++;
2057 } else {
2058 /* Host key has bigger modulus (or they are equal). */
2059 if (BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) <
30460aeb 2060 BN_num_bits(sensitive_data.server_key->rsa->n) +
2061 SSH_KEY_BITS_RESERVED) {
2062 fatal("do_connection: %s: "
2063 "host_key %d < server_key %d + SSH_KEY_BITS_RESERVED %d",
510132b6 2064 get_remote_ipaddr(),
2065 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
2066 BN_num_bits(sensitive_data.server_key->rsa->n),
2067 SSH_KEY_BITS_RESERVED);
2068 }
2069 if (rsa_private_decrypt(session_key_int, session_key_int,
2070 sensitive_data.ssh1_host_key->rsa) < 0)
2071 rsafail++;
2072 if (rsa_private_decrypt(session_key_int, session_key_int,
2073 sensitive_data.server_key->rsa) < 0)
2074 rsafail++;
2075 }
2076 return (rsafail);
2077}
3c0ef626 2078/*
2079 * SSH1 key exchange
2080 */
2081static void
2082do_ssh1_kex(void)
2083{
2084 int i, len;
3c0ef626 2085 int rsafail = 0;
2086 BIGNUM *session_key_int;
2087 u_char session_key[SSH_SESSION_KEY_LENGTH];
2088 u_char cookie[8];
2089 u_int cipher_type, auth_mask, protocol_flags;
3c0ef626 2090
2091 /*
2092 * Generate check bytes that the client must send back in the user
2093 * packet in order for it to be accepted; this is used to defy ip
2094 * spoofing attacks. Note that this only works against somebody
2095 * doing IP spoofing from a remote machine; any machine on the local
2096 * network can still see outgoing packets and catch the random
2097 * cookie. This only affects rhosts authentication, and this is one
2098 * of the reasons why it is inherently insecure.
2099 */
5156b1a1 2100 arc4random_buf(cookie, sizeof(cookie));
3c0ef626 2101
2102 /*
2103 * Send our public key. We include in the packet 64 bits of random
2104 * data that must be matched in the reply in order to prevent IP
2105 * spoofing.
2106 */
2107 packet_start(SSH_SMSG_PUBLIC_KEY);
2108 for (i = 0; i < 8; i++)
2109 packet_put_char(cookie[i]);
2110
2111 /* Store our public server RSA key. */
2112 packet_put_int(BN_num_bits(sensitive_data.server_key->rsa->n));
2113 packet_put_bignum(sensitive_data.server_key->rsa->e);
2114 packet_put_bignum(sensitive_data.server_key->rsa->n);
2115
2116 /* Store our public host RSA key. */
2117 packet_put_int(BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
2118 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->e);
2119 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->n);
2120
2121 /* Put protocol flags. */
2122 packet_put_int(SSH_PROTOFLAG_HOST_IN_FWD_OPEN);
2123
2124 /* Declare which ciphers we support. */
2125 packet_put_int(cipher_mask_ssh1(0));
2126
2127 /* Declare supported authentication types. */
2128 auth_mask = 0;
3c0ef626 2129 if (options.rhosts_rsa_authentication)
2130 auth_mask |= 1 << SSH_AUTH_RHOSTS_RSA;
2131 if (options.rsa_authentication)
2132 auth_mask |= 1 << SSH_AUTH_RSA;
b59afbfe 2133 if (options.challenge_response_authentication == 1)
2134 auth_mask |= 1 << SSH_AUTH_TIS;
3c0ef626 2135 if (options.password_authentication)
2136 auth_mask |= 1 << SSH_AUTH_PASSWORD;
2137 packet_put_int(auth_mask);
2138
2139 /* Send the packet and wait for it to be sent. */
2140 packet_send();
2141 packet_write_wait();
2142
2143 debug("Sent %d bit server key and %d bit host key.",
2144 BN_num_bits(sensitive_data.server_key->rsa->n),
2145 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
2146
2147 /* Read clients reply (cipher type and session key). */
1e608e42 2148 packet_read_expect(SSH_CMSG_SESSION_KEY);
3c0ef626 2149
2150 /* Get cipher type and check whether we accept this. */
2151 cipher_type = packet_get_char();
2152
2153 if (!(cipher_mask_ssh1(0) & (1 << cipher_type)))
2154 packet_disconnect("Warning: client selects unsupported cipher.");
2155
2156 /* Get check bytes from the packet. These must match those we
2157 sent earlier with the public key packet. */
2158 for (i = 0; i < 8; i++)
2159 if (cookie[i] != packet_get_char())
2160 packet_disconnect("IP Spoofing check bytes do not match.");
2161
2162 debug("Encryption type: %.200s", cipher_name(cipher_type));
2163
2164 /* Get the encrypted integer. */
1e608e42 2165 if ((session_key_int = BN_new()) == NULL)
2166 fatal("do_ssh1_kex: BN_new failed");
2167 packet_get_bignum(session_key_int);
3c0ef626 2168
2169 protocol_flags = packet_get_int();
2170 packet_set_protocol_flags(protocol_flags);
1e608e42 2171 packet_check_eom();
3c0ef626 2172
510132b6 2173 /* Decrypt session_key_int using host/server keys */
2174 rsafail = PRIVSEP(ssh1_session_key(session_key_int));
2175
3c0ef626 2176 /*
2177 * Extract session key from the decrypted integer. The key is in the
2178 * least significant 256 bits of the integer; the first byte of the
2179 * key is in the highest bits.
2180 */
2181 if (!rsafail) {
240debe0 2182 (void) BN_mask_bits(session_key_int, sizeof(session_key) * 8);
3c0ef626 2183 len = BN_num_bytes(session_key_int);
2ce0bfe4 2184 if (len < 0 || (u_int)len > sizeof(session_key)) {
240debe0 2185 error("do_ssh1_kex: bad session key len from %s: "
3c0ef626 2186 "session_key_int %d > sizeof(session_key) %lu",
2187 get_remote_ipaddr(), len, (u_long)sizeof(session_key));
2188 rsafail++;
2189 } else {
2190 memset(session_key, 0, sizeof(session_key));
2191 BN_bn2bin(session_key_int,
2192 session_key + sizeof(session_key) - len);
2193
7e82606e 2194 derive_ssh1_session_id(
3c0ef626 2195 sensitive_data.ssh1_host_key->rsa->n,
7e82606e 2196 sensitive_data.server_key->rsa->n,
2197 cookie, session_id);
3c0ef626 2198 /*
2199 * Xor the first 16 bytes of the session key with the
2200 * session id.
2201 */
2202 for (i = 0; i < 16; i++)
2203 session_key[i] ^= session_id[i];
2204 }
2205 }
2206 if (rsafail) {
2207 int bytes = BN_num_bytes(session_key_int);
1e608e42 2208 u_char *buf = xmalloc(bytes);
3c0ef626 2209 MD5_CTX md;
2210
7cac2b65 2211 logit("do_connection: generating a fake encryption key");
3c0ef626 2212 BN_bn2bin(session_key_int, buf);
2213 MD5_Init(&md);
2214 MD5_Update(&md, buf, bytes);
2215 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
2216 MD5_Final(session_key, &md);
2217 MD5_Init(&md);
2218 MD5_Update(&md, session_key, 16);
2219 MD5_Update(&md, buf, bytes);
2220 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
2221 MD5_Final(session_key + 16, &md);
2222 memset(buf, 0, bytes);
2223 xfree(buf);
2224 for (i = 0; i < 16; i++)
2225 session_id[i] = session_key[i] ^ session_key[i + 16];
2226 }
510132b6 2227 /* Destroy the private and public keys. No longer. */
3c0ef626 2228 destroy_sensitive_data();
2229
510132b6 2230 if (use_privsep)
2231 mm_ssh1_session_id(session_id);
2232
3c0ef626 2233 /* Destroy the decrypted integer. It is no longer needed. */
2234 BN_clear_free(session_key_int);
2235
2236 /* Set the session key. From this on all communications will be encrypted. */
2237 packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, cipher_type);
2238
2239 /* Destroy our copy of the session key. It is no longer needed. */
2240 memset(session_key, 0, sizeof(session_key));
2241
2242 debug("Received session key; encryption turned on.");
2243
44a053a3 2244 /* Send an acknowledgment packet. Note that this packet is sent encrypted. */
3c0ef626 2245 packet_start(SSH_SMSG_SUCCESS);
2246 packet_send();
2247 packet_write_wait();
2248}
2249
2250/*
2251 * SSH2 key exchange: diffie-hellman-group1-sha1
2252 */
2253static void
2254do_ssh2_kex(void)
2255{
2256 Kex *kex;
2257
6df46d40 2258 myflag++;
2259 debug ("MYFLAG IS %d", myflag);
3c0ef626 2260 if (options.ciphers != NULL) {
2261 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
2262 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
a7213e65 2263 } else if (options.none_enabled == 1) {
2264 debug ("WARNING: None cipher enabled");
2265 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
2266 myproposal[PROPOSAL_ENC_ALGS_STOC] = KEX_ENCRYPT_INCLUDE_NONE;
3c0ef626 2267 }
2268 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
2269 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
2270 myproposal[PROPOSAL_ENC_ALGS_STOC] =
2271 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
2272
2273 if (options.macs != NULL) {
2274 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
2275 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
2276 }
2ce0bfe4 2277 if (options.compression == COMP_NONE) {
44a053a3 2278 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
2279 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none";
2ce0bfe4 2280 } else if (options.compression == COMP_DELAYED) {
2281 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
2282 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none,zlib@openssh.com";
44a053a3 2283 }
30460aeb 2284
3c0ef626 2285 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = list_hostkey_types();
2286
5598e598 2287#ifdef GSSAPI
fe4ad273 2288 {
5598e598 2289 char *orig;
2290 char *gss = NULL;
2291 char *newstr = NULL;
fe4ad273 2292 orig = myproposal[PROPOSAL_KEX_ALGS];
2293
2294 /*
2d7c038e 2295 * If we don't have a host key, then there's no point advertising
2296 * the other key exchange algorithms
fe4ad273 2297 */
2298
2299 if (strlen(myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS]) == 0)
2300 orig = NULL;
2301
2302 if (options.gss_keyex)
2303 gss = ssh_gssapi_server_mechanisms();
2304 else
2305 gss = NULL;
2306
f713db99 2307 if (gss && orig)
2308 xasprintf(&newstr, "%s,%s", gss, orig);
2309 else if (gss)
fe4ad273 2310 newstr = gss;
f713db99 2311 else if (orig)
fe4ad273 2312 newstr = orig;
f713db99 2313
fe4ad273 2314 /*
2315 * If we've got GSSAPI mechanisms, then we've got the 'null' host
2316 * key alg, but we can't tell people about it unless its the only
2317 * host key algorithm we support
2318 */
2319 if (gss && (strlen(myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS])) == 0)
2320 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = "null";
2321
5598e598 2322 if (newstr)
fe4ad273 2323 myproposal[PROPOSAL_KEX_ALGS] = newstr;
5598e598 2324 else
2325 fatal("No supported key exchange algorithms");
fe4ad273 2326 }
5598e598 2327#endif
2328
f713db99 2329 /* start key exchange */
2330 kex = kex_setup(myproposal);
2331 kex->kex[KEX_DH_GRP1_SHA1] = kexdh_server;
7e82606e 2332 kex->kex[KEX_DH_GRP14_SHA1] = kexdh_server;
bfe49944 2333 kex->kex[KEX_DH_GEX_SHA1] = kexgex_server;
f713db99 2334 kex->kex[KEX_DH_GEX_SHA256] = kexgex_server;
bfe49944 2335#ifdef GSSAPI
f97edba6 2336 if (options.gss_keyex) {
2337 kex->kex[KEX_GSS_GRP1_SHA1] = kexgss_server;
2338 kex->kex[KEX_GSS_GRP14_SHA1] = kexgss_server;
2339 kex->kex[KEX_GSS_GEX_SHA1] = kexgss_server;
2340 }
bfe49944 2341#endif
30460aeb 2342 kex->server = 1;
2343 kex->client_version_string=client_version_string;
2344 kex->server_version_string=server_version_string;
3c0ef626 2345 kex->load_host_key=&get_hostkey_by_type;
510132b6 2346 kex->host_key_index=&get_hostkey_index;
3c0ef626 2347
2348 xxx_kex = kex;
2349
2350 dispatch_run(DISPATCH_BLOCK, &kex->done, kex);
2351
2352 session_id2 = kex->session_id;
2353 session_id2_len = kex->session_id_len;
2354
2355#ifdef DEBUG_KEXDH
2356 /* send 1st encrypted/maced/compressed message */
2357 packet_start(SSH2_MSG_IGNORE);
2358 packet_put_cstring("markus");
2359 packet_send();
2360 packet_write_wait();
2361#endif
2362 debug("KEX done");
2363}
540d72c3 2364
2365/* server specific fatal cleanup */
2366void
2367cleanup_exit(int i)
2368{
2369 if (the_authctxt)
2370 do_cleanup(the_authctxt);
dfddba3d 2371#ifdef SSH_AUDIT_EVENTS
2372 /* done after do_cleanup so it can cancel the PAM auth 'thread' */
2373 if (!use_privsep || mm_is_monitor())
2374 audit_event(SSH_CONNECTION_ABANDON);
2375#endif
540d72c3 2376 _exit(i);
2377}
This page took 1.219819 seconds and 5 git commands to generate.