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