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