]> andersk Git - openssh.git/blame - sshd.c
- (bal) ssh-keyscan double -lssh hack due to seed_rng().
[openssh.git] / sshd.c
CommitLineData
8efc0c15 1/*
5260325f 2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
bcbf86ec 5 * This program is the ssh daemon. It listens for connections from clients,
6 * and performs authentication, executes use commands or shell, and forwards
5260325f 7 * information to/from the application to the user client over an encrypted
bcbf86ec 8 * connection. This can also handle forwarding of X11, TCP/IP, and
9 * authentication agent connections.
e78a59f5 10 *
bcbf86ec 11 * As far as I am concerned, the code I have written for this software
12 * can be used freely for any purpose. Any derived versions of this
13 * software must be clearly marked as such, and if the derived work is
14 * incompatible with the protocol description in the RFC file, it must be
15 * called by a name other than "ssh" or "Secure Shell".
16 *
17 * SSH2 implementation:
18 *
19 * Copyright (c) 2000 Markus Friedl. All rights reserved.
20 *
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
23 * are met:
24 * 1. Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the distribution.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5260325f 40 */
8efc0c15 41
42#include "includes.h"
f87f09aa 43RCSID("$OpenBSD: sshd.c,v 1.203 2001/07/26 17:18:22 stevesk Exp $");
8efc0c15 44
42f11eb2 45#include <openssl/dh.h>
46#include <openssl/bn.h>
47#include <openssl/hmac.h>
48
49#include "ssh.h"
50#include "ssh1.h"
51#include "ssh2.h"
8efc0c15 52#include "xmalloc.h"
53#include "rsa.h"
1729c161 54#include "sshpty.h"
8efc0c15 55#include "packet.h"
8efc0c15 56#include "mpaux.h"
42f11eb2 57#include "log.h"
8efc0c15 58#include "servconf.h"
59#include "uidswap.h"
60#include "compat.h"
7368a6c8 61#include "buffer.h"
42f11eb2 62#include "cipher.h"
e78a59f5 63#include "kex.h"
7368a6c8 64#include "key.h"
94ec8c6b 65#include "dh.h"
e78a59f5 66#include "myproposal.h"
a306f2dd 67#include "authfile.h"
42f11eb2 68#include "pathnames.h"
69#include "atomicio.h"
70#include "canohost.h"
71#include "auth.h"
72#include "misc.h"
a5c9ffdb 73#include "dispatch.h"
8efc0c15 74
75#ifdef LIBWRAP
76#include <tcpd.h>
77#include <syslog.h>
78int allow_severity = LOG_INFO;
79int deny_severity = LOG_WARNING;
80#endif /* LIBWRAP */
81
82#ifndef O_NOCTTY
83#define O_NOCTTY 0
84#endif
85
260d427b 86#ifdef HAVE___PROGNAME
87extern char *__progname;
88#else
89char *__progname;
90#endif
91
8efc0c15 92/* Server configuration options. */
93ServerOptions options;
94
95/* Name of the server configuration file. */
42f11eb2 96char *config_file_name = _PATH_SERVER_CONFIG_FILE;
8efc0c15 97
6ae2364d 98/*
48e671d5 99 * Flag indicating whether IPv4 or IPv6. This can be set on the command line.
100 * Default value is AF_UNSPEC means both IPv4 and IPv6.
101 */
59e76f33 102#ifdef IPV4_DEFAULT
103int IPv4or6 = AF_INET;
104#else
48e671d5 105int IPv4or6 = AF_UNSPEC;
59e76f33 106#endif
48e671d5 107
5260325f 108/*
109 * Debug mode flag. This can be set on the command line. If debug
110 * mode is enabled, extra debugging output will be sent to the system
111 * log, the daemon will not go to background, and will exit after processing
112 * the first connection.
113 */
8efc0c15 114int debug_flag = 0;
115
f87f09aa 116/* Flag indicating that the daemon should only test the configuration and keys. */
117int test_flag = 0;
118
8efc0c15 119/* Flag indicating that the daemon is being started from inetd. */
120int inetd_flag = 0;
121
0b6fbf03 122/* Flag indicating that sshd should not detach and become a daemon. */
123int no_daemon_flag = 0;
124
6a17f9c2 125/* debug goes to stderr unless inetd_flag is set */
126int log_stderr = 0;
127
8efc0c15 128/* Saved arguments to main(). */
129char **saved_argv;
4d33e531 130int saved_argc;
8efc0c15 131
aa3378df 132/*
48e671d5 133 * The sockets that the server is listening; this is used in the SIGHUP
134 * signal handler.
aa3378df 135 */
48e671d5 136#define MAX_LISTEN_SOCKS 16
137int listen_socks[MAX_LISTEN_SOCKS];
138int num_listen_socks = 0;
8efc0c15 139
aa3378df 140/*
141 * the client's version string, passed by sshd2 in compat mode. if != NULL,
142 * sshd will skip the version-number exchange
143 */
5260325f 144char *client_version_string = NULL;
7368a6c8 145char *server_version_string = NULL;
8efc0c15 146
7a37c112 147/* for rekeying XXX fixme */
148Kex *xxx_kex;
149
aa3378df 150/*
151 * Any really sensitive data in the application is contained in this
152 * structure. The idea is that this structure could be locked into memory so
153 * that the pages do not get written into swap. However, there are some
154 * problems. The private key contains BIGNUMs, and we do not (in principle)
155 * have access to the internals of them, and locking just the structure is
156 * not very useful. Currently, memory locking is not implemented.
157 */
5260325f 158struct {
cb7bd922 159 Key *server_key; /* ephemeral server key */
fa08c86b 160 Key *ssh1_host_key; /* ssh1 host key */
161 Key **host_keys; /* all private host keys */
162 int have_ssh1_key;
163 int have_ssh2_key;
00be5382 164 u_char ssh1_cookie[SSH_SESSION_KEY_LENGTH];
8efc0c15 165} sensitive_data;
166
aa3378df 167/*
59c97189 168 * Flag indicating whether the RSA server key needs to be regenerated.
169 * Is set in the SIGALRM handler and cleared when the key is regenerated.
aa3378df 170 */
59c97189 171int key_do_regen = 0;
8efc0c15 172
c9130033 173/* This is set to true when a signal is received. */
8efc0c15 174int received_sighup = 0;
c9130033 175int received_sigterm = 0;
8efc0c15 176
7368a6c8 177/* session identifier, used by RSA-auth */
1e3b8b07 178u_char session_id[16];
e7c0f9d5 179
a306f2dd 180/* same for ssh2 */
1e3b8b07 181u_char *session_id2 = NULL;
a306f2dd 182int session_id2_len = 0;
183
c345cf9d 184/* record remote hostname or ip */
1e3b8b07 185u_int utmp_len = MAXHOSTNAMELEN;
c345cf9d 186
7368a6c8 187/* Prototypes for various functions defined later in this file. */
396c147e 188void destroy_sensitive_data(void);
c8d54615 189
396c147e 190static void do_ssh1_kex(void);
191static void do_ssh2_kex(void);
94ec8c6b 192
48e671d5 193/*
194 * Close all listening sockets
195 */
396c147e 196static void
48e671d5 197close_listen_socks(void)
198{
199 int i;
200 for (i = 0; i < num_listen_socks; i++)
201 close(listen_socks[i]);
202 num_listen_socks = -1;
203}
204
5260325f 205/*
206 * Signal handler for SIGHUP. Sshd execs itself when it receives SIGHUP;
207 * the effect is to reread the configuration file (and to regenerate
208 * the server key).
209 */
396c147e 210static void
5260325f 211sighup_handler(int sig)
8efc0c15 212{
5260325f 213 received_sighup = 1;
214 signal(SIGHUP, sighup_handler);
8efc0c15 215}
216
5260325f 217/*
218 * Called from the main program after receiving SIGHUP.
219 * Restarts the server.
220 */
396c147e 221static void
5ca51e19 222sighup_restart(void)
8efc0c15 223{
5260325f 224 log("Received SIGHUP; restarting.");
48e671d5 225 close_listen_socks();
5260325f 226 execv(saved_argv[0], saved_argv);
1fe6a48f 227 log("RESTART FAILED: av[0]='%.100s', error: %.100s.", saved_argv[0], strerror(errno));
5260325f 228 exit(1);
8efc0c15 229}
230
5260325f 231/*
232 * Generic signal handler for terminating signals in the master daemon.
5260325f 233 */
396c147e 234static void
5260325f 235sigterm_handler(int sig)
8efc0c15 236{
c9130033 237 received_sigterm = sig;
8efc0c15 238}
239
5260325f 240/*
241 * SIGCHLD handler. This is called whenever a child dies. This will then
c9130033 242 * reap any zombies left by exited children.
5260325f 243 */
396c147e 244static void
5260325f 245main_sigchld_handler(int sig)
8efc0c15 246{
5260325f 247 int save_errno = errno;
248 int status;
5ad13cd7 249
5260325f 250 while (waitpid(-1, &status, WNOHANG) > 0)
251 ;
5ad13cd7 252
5260325f 253 signal(SIGCHLD, main_sigchld_handler);
254 errno = save_errno;
8efc0c15 255}
256
5260325f 257/*
258 * Signal handler for the alarm after the login grace period has expired.
259 */
396c147e 260static void
5260325f 261grace_alarm_handler(int sig)
8efc0c15 262{
c9130033 263 /* XXX no idea how fix this signal handler */
264
5260325f 265 /* Close the connection. */
266 packet_close();
8efc0c15 267
5260325f 268 /* Log error and exit. */
269 fatal("Timeout before authentication for %s.", get_remote_ipaddr());
270}
8efc0c15 271
5260325f 272/*
273 * Signal handler for the key regeneration alarm. Note that this
274 * alarm only occurs in the daemon waiting for connections, and it does not
275 * do anything with the private key or random state before forking.
276 * Thus there should be no concurrency control/asynchronous execution
277 * problems.
278 */
396c147e 279static void
cb7bd922 280generate_ephemeral_server_key(void)
fa08c86b 281{
00be5382 282 u_int32_t rand = 0;
283 int i;
284
cd332296 285 verbose("Generating %s%d bit RSA key.",
76ca7b01 286 sensitive_data.server_key ? "new " : "", options.server_key_bits);
fa08c86b 287 if (sensitive_data.server_key != NULL)
288 key_free(sensitive_data.server_key);
cd332296 289 sensitive_data.server_key = key_generate(KEY_RSA1,
76ca7b01 290 options.server_key_bits);
291 verbose("RSA key generation complete.");
00be5382 292
293 for (i = 0; i < SSH_SESSION_KEY_LENGTH; i++) {
294 if (i % 4 == 0)
295 rand = arc4random();
296 sensitive_data.ssh1_cookie[i] = rand & 0xff;
297 rand >>= 8;
298 }
299 arc4random_stir();
fa08c86b 300}
f546c780 301
396c147e 302static void
5260325f 303key_regeneration_alarm(int sig)
304{
305 int save_errno = errno;
59c97189 306 signal(SIGALRM, SIG_DFL);
5260325f 307 errno = save_errno;
59c97189 308 key_do_regen = 1;
5260325f 309}
8efc0c15 310
396c147e 311static void
7368a6c8 312sshd_exchange_identification(int sock_in, int sock_out)
313{
a8be9f80 314 int i, mismatch;
7368a6c8 315 int remote_major, remote_minor;
a8be9f80 316 int major, minor;
7368a6c8 317 char *s;
318 char buf[256]; /* Must not be larger than remote_version. */
319 char remote_version[256]; /* Must be at least as big as buf. */
320
a8be9f80 321 if ((options.protocol & SSH_PROTO_1) &&
322 (options.protocol & SSH_PROTO_2)) {
323 major = PROTOCOL_MAJOR_1;
324 minor = 99;
325 } else if (options.protocol & SSH_PROTO_2) {
326 major = PROTOCOL_MAJOR_2;
327 minor = PROTOCOL_MINOR_2;
328 } else {
329 major = PROTOCOL_MAJOR_1;
330 minor = PROTOCOL_MINOR_1;
331 }
332 snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n", major, minor, SSH_VERSION);
7368a6c8 333 server_version_string = xstrdup(buf);
334
335 if (client_version_string == NULL) {
336 /* Send our protocol version identification. */
337 if (atomicio(write, sock_out, server_version_string, strlen(server_version_string))
338 != strlen(server_version_string)) {
339 log("Could not write ident string to %s.", get_remote_ipaddr());
340 fatal_cleanup();
341 }
342
2ce1adf9 343 /* Read other side's version identification. */
cd332296 344 memset(buf, 0, sizeof(buf));
7368a6c8 345 for (i = 0; i < sizeof(buf) - 1; i++) {
e5a0294f 346 if (atomicio(read, sock_in, &buf[i], 1) != 1) {
c2b544a5 347 log("Did not receive identification string from %s.",
348 get_remote_ipaddr());
7368a6c8 349 fatal_cleanup();
350 }
351 if (buf[i] == '\r') {
8a169574 352 buf[i] = 0;
94ec8c6b 353 /* Kludge for F-Secure Macintosh < 1.0.2 */
354 if (i == 12 &&
355 strncmp(buf, "SSH-1.5-W1.0", 12) == 0)
356 break;
7368a6c8 357 continue;
7368a6c8 358 }
359 if (buf[i] == '\n') {
8a169574 360 buf[i] = 0;
7368a6c8 361 break;
362 }
363 }
364 buf[sizeof(buf) - 1] = 0;
365 client_version_string = xstrdup(buf);
366 }
367
368 /*
369 * Check that the versions match. In future this might accept
370 * several versions and set appropriate flags to handle them.
371 */
372 if (sscanf(client_version_string, "SSH-%d.%d-%[^\n]\n",
373 &remote_major, &remote_minor, remote_version) != 3) {
6ae2364d 374 s = "Protocol mismatch.\n";
7368a6c8 375 (void) atomicio(write, sock_out, s, strlen(s));
376 close(sock_in);
377 close(sock_out);
378 log("Bad protocol version identification '%.100s' from %s",
379 client_version_string, get_remote_ipaddr());
380 fatal_cleanup();
381 }
382 debug("Client protocol version %d.%d; client software version %.100s",
383 remote_major, remote_minor, remote_version);
384
e78a59f5 385 compat_datafellows(remote_version);
386
3a1c54d4 387 if (datafellows & SSH_BUG_SCANNER) {
388 log("scanned from %s with %s. Don't panic.",
389 get_remote_ipaddr(), client_version_string);
390 fatal_cleanup();
391 }
392
a8be9f80 393 mismatch = 0;
7368a6c8 394 switch(remote_major) {
395 case 1:
a306f2dd 396 if (remote_minor == 99) {
397 if (options.protocol & SSH_PROTO_2)
398 enable_compat20();
399 else
400 mismatch = 1;
401 break;
402 }
a8be9f80 403 if (!(options.protocol & SSH_PROTO_1)) {
404 mismatch = 1;
405 break;
406 }
7368a6c8 407 if (remote_minor < 3) {
089fbbd2 408 packet_disconnect("Your ssh version is too old and "
7368a6c8 409 "is no longer supported. Please install a newer version.");
410 } else if (remote_minor == 3) {
411 /* note that this disables agent-forwarding */
412 enable_compat13();
413 }
a8be9f80 414 break;
e78a59f5 415 case 2:
a8be9f80 416 if (options.protocol & SSH_PROTO_2) {
e78a59f5 417 enable_compat20();
418 break;
419 }
420 /* FALLTHROUGH */
6ae2364d 421 default:
a8be9f80 422 mismatch = 1;
423 break;
424 }
425 chop(server_version_string);
a8be9f80 426 debug("Local version string %.200s", server_version_string);
427
428 if (mismatch) {
7368a6c8 429 s = "Protocol major versions differ.\n";
430 (void) atomicio(write, sock_out, s, strlen(s));
431 close(sock_in);
432 close(sock_out);
a8be9f80 433 log("Protocol major versions differ for %s: %.200s vs. %.200s",
434 get_remote_ipaddr(),
435 server_version_string, client_version_string);
7368a6c8 436 fatal_cleanup();
7368a6c8 437 }
a306f2dd 438}
439
440
fa08c86b 441/* Destroy the host and server keys. They will no longer be needed. */
a306f2dd 442void
443destroy_sensitive_data(void)
444{
fa08c86b 445 int i;
446
447 if (sensitive_data.server_key) {
448 key_free(sensitive_data.server_key);
449 sensitive_data.server_key = NULL;
450 }
2b87da3b 451 for(i = 0; i < options.num_host_key_files; i++) {
fa08c86b 452 if (sensitive_data.host_keys[i]) {
453 key_free(sensitive_data.host_keys[i]);
454 sensitive_data.host_keys[i] = NULL;
455 }
456 }
457 sensitive_data.ssh1_host_key = NULL;
00be5382 458 memset(sensitive_data.ssh1_cookie, 0, SSH_SESSION_KEY_LENGTH);
fa08c86b 459}
fa08c86b 460
396c147e 461static char *
fa08c86b 462list_hostkey_types(void)
463{
464 static char buf[1024];
465 int i;
466 buf[0] = '\0';
467 for(i = 0; i < options.num_host_key_files; i++) {
468 Key *key = sensitive_data.host_keys[i];
469 if (key == NULL)
470 continue;
471 switch(key->type) {
472 case KEY_RSA:
473 case KEY_DSA:
474 strlcat(buf, key_ssh_name(key), sizeof buf);
475 strlcat(buf, ",", sizeof buf);
476 break;
477 }
478 }
479 i = strlen(buf);
480 if (i > 0 && buf[i-1] == ',')
481 buf[i-1] = '\0';
482 debug("list_hostkey_types: %s", buf);
483 return buf;
484}
485
396c147e 486static Key *
fa08c86b 487get_hostkey_by_type(int type)
488{
489 int i;
490 for(i = 0; i < options.num_host_key_files; i++) {
491 Key *key = sensitive_data.host_keys[i];
492 if (key != NULL && key->type == type)
493 return key;
494 }
495 return NULL;
7368a6c8 496}
497
c345cf9d 498/*
499 * returns 1 if connection should be dropped, 0 otherwise.
500 * dropping starts at connection #max_startups_begin with a probability
501 * of (max_startups_rate/100). the probability increases linearly until
502 * all connections are dropped for startups > max_startups
503 */
396c147e 504static int
c345cf9d 505drop_connection(int startups)
506{
507 double p, r;
508
509 if (startups < options.max_startups_begin)
510 return 0;
511 if (startups >= options.max_startups)
512 return 1;
513 if (options.max_startups_rate == 100)
514 return 1;
515
516 p = 100 - options.max_startups_rate;
517 p *= startups - options.max_startups_begin;
518 p /= (double) (options.max_startups - options.max_startups_begin);
519 p += options.max_startups_rate;
520 p /= 100.0;
521 r = arc4random() / (double) UINT_MAX;
522
523 debug("drop_connection: p %g, r %g", p, r);
524 return (r < p) ? 1 : 0;
525}
526
089fbbd2 527int *startup_pipes = NULL; /* options.max_startup sized array of fd ints */
528int startup_pipe; /* in child */
529
5260325f 530/*
531 * Main program for the daemon.
532 */
8efc0c15 533int
534main(int ac, char **av)
535{
5260325f 536 extern char *optarg;
537 extern int optind;
089fbbd2 538 int opt, sock_in = 0, sock_out = 0, newsock, j, i, fdsetsz, on = 1;
9da5c3c9 539 pid_t pid;
48e671d5 540 socklen_t fromlen;
48e671d5 541 fd_set *fdset;
542 struct sockaddr_storage from;
5260325f 543 const char *remote_ip;
544 int remote_port;
5260325f 545 FILE *f;
546 struct linger linger;
48e671d5 547 struct addrinfo *ai;
548 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
549 int listen_sock, maxfd;
089fbbd2 550 int startup_p[2];
551 int startups = 0;
aeaa3d9e 552 Key *key;
59c97189 553 int ret, key_used = 0;
5260325f 554
260d427b 555 __progname = get_progname(av[0]);
264dce47 556 init_rng();
557
1fe6a48f 558 /* Save argv. */
4d33e531 559 saved_argc = ac;
5260325f 560 saved_argv = av;
5260325f 561
562 /* Initialize configuration options to their default values. */
563 initialize_server_options(&options);
564
565 /* Parse command-line arguments. */
f87f09aa 566 while ((opt = getopt(ac, av, "f:p:b:k:h:g:V:u:dDeiqtQ46")) != -1) {
5260325f 567 switch (opt) {
48e671d5 568 case '4':
569 IPv4or6 = AF_INET;
570 break;
571 case '6':
572 IPv4or6 = AF_INET6;
573 break;
5260325f 574 case 'f':
575 config_file_name = optarg;
576 break;
577 case 'd':
bcbf86ec 578 if (0 == debug_flag) {
579 debug_flag = 1;
580 options.log_level = SYSLOG_LEVEL_DEBUG1;
581 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
582 options.log_level++;
583 } else {
584 fprintf(stderr, "Too high debugging level.\n");
585 exit(1);
586 }
5260325f 587 break;
0b6fbf03 588 case 'D':
589 no_daemon_flag = 1;
590 break;
ff14faf1 591 case 'e':
592 log_stderr = 1;
593 break;
5260325f 594 case 'i':
595 inetd_flag = 1;
596 break;
597 case 'Q':
9bd5b720 598 /* ignored */
5260325f 599 break;
600 case 'q':
601 options.log_level = SYSLOG_LEVEL_QUIET;
602 break;
603 case 'b':
604 options.server_key_bits = atoi(optarg);
605 break;
606 case 'p':
48e671d5 607 options.ports_from_cmdline = 1;
bcbf86ec 608 if (options.num_ports >= MAX_PORTS) {
609 fprintf(stderr, "too many ports.\n");
610 exit(1);
611 }
2d2a2c65 612 options.ports[options.num_ports++] = a2port(optarg);
613 if (options.ports[options.num_ports-1] == 0) {
614 fprintf(stderr, "Bad port number.\n");
615 exit(1);
616 }
5260325f 617 break;
618 case 'g':
e2b1fb42 619 if ((options.login_grace_time = convtime(optarg)) == -1) {
620 fprintf(stderr, "Invalid login grace time.\n");
621 exit(1);
622 }
5260325f 623 break;
624 case 'k':
e2b1fb42 625 if ((options.key_regeneration_time = convtime(optarg)) == -1) {
626 fprintf(stderr, "Invalid key regeneration interval.\n");
627 exit(1);
628 }
5260325f 629 break;
630 case 'h':
fa08c86b 631 if (options.num_host_key_files >= MAX_HOSTKEYS) {
632 fprintf(stderr, "too many host keys.\n");
633 exit(1);
634 }
635 options.host_key_files[options.num_host_key_files++] = optarg;
5260325f 636 break;
637 case 'V':
638 client_version_string = optarg;
639 /* only makes sense with inetd_flag, i.e. no listen() */
640 inetd_flag = 1;
641 break;
f87f09aa 642 case 't':
643 test_flag = 1;
644 break;
c345cf9d 645 case 'u':
646 utmp_len = atoi(optarg);
647 break;
5260325f 648 case '?':
649 default:
650 fprintf(stderr, "sshd version %s\n", SSH_VERSION);
1fe6a48f 651 fprintf(stderr, "Usage: %s [options]\n", __progname);
5260325f 652 fprintf(stderr, "Options:\n");
42f11eb2 653 fprintf(stderr, " -f file Configuration file (default %s)\n", _PATH_SERVER_CONFIG_FILE);
bcbf86ec 654 fprintf(stderr, " -d Debugging mode (multiple -d means more debugging)\n");
5260325f 655 fprintf(stderr, " -i Started from inetd\n");
8abcdba4 656 fprintf(stderr, " -D Do not fork into daemon mode\n");
f87f09aa 657 fprintf(stderr, " -t Only test configuration file and keys\n");
5260325f 658 fprintf(stderr, " -q Quiet (no logging)\n");
659 fprintf(stderr, " -p port Listen on the specified port (default: 22)\n");
660 fprintf(stderr, " -k seconds Regenerate server key every this many seconds (default: 3600)\n");
9616313f 661 fprintf(stderr, " -g seconds Grace period for authentication (default: 600)\n");
5260325f 662 fprintf(stderr, " -b bits Size of server RSA key (default: 768 bits)\n");
663 fprintf(stderr, " -h file File from which to read host key (default: %s)\n",
42f11eb2 664 _PATH_HOST_KEY_FILE);
c345cf9d 665 fprintf(stderr, " -u len Maximum hostname length for utmp recording\n");
48e671d5 666 fprintf(stderr, " -4 Use IPv4 only\n");
667 fprintf(stderr, " -6 Use IPv6 only\n");
5260325f 668 exit(1);
669 }
670 }
1a92bd7e 671 SSLeay_add_all_algorithms();
5260325f 672
48e671d5 673 /*
674 * Force logging to stderr until we have loaded the private host
675 * key (unless started from inetd)
676 */
1fe6a48f 677 log_init(__progname,
59c97189 678 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
48e671d5 679 options.log_facility == -1 ? SYSLOG_FACILITY_AUTH : options.log_facility,
9bd5b720 680 !inetd_flag);
48e671d5 681
e339aa53 682 seed_rng();
683
5260325f 684 /* Read server configuration options from the configuration file. */
685 read_server_config(&options, config_file_name);
686
687 /* Fill in default values for those options not explicitly set. */
688 fill_default_server_options(&options);
689
5260325f 690 /* Check that there are no remaining arguments. */
691 if (optind < ac) {
692 fprintf(stderr, "Extra argument %s.\n", av[optind]);
693 exit(1);
8efc0c15 694 }
5260325f 695
696 debug("sshd version %.100s", SSH_VERSION);
697
fa08c86b 698 /* load private host keys */
699 sensitive_data.host_keys = xmalloc(options.num_host_key_files*sizeof(Key*));
1e3b8b07 700 for(i = 0; i < options.num_host_key_files; i++)
701 sensitive_data.host_keys[i] = NULL;
fa08c86b 702 sensitive_data.server_key = NULL;
703 sensitive_data.ssh1_host_key = NULL;
704 sensitive_data.have_ssh1_key = 0;
705 sensitive_data.have_ssh2_key = 0;
a306f2dd 706
fa08c86b 707 for(i = 0; i < options.num_host_key_files; i++) {
aeaa3d9e 708 key = key_load_private(options.host_key_files[i], "", NULL);
709 sensitive_data.host_keys[i] = key;
fa08c86b 710 if (key == NULL) {
58cfa257 711 error("Could not load host key: %s",
712 options.host_key_files[i]);
aeaa3d9e 713 sensitive_data.host_keys[i] = NULL;
fa08c86b 714 continue;
a306f2dd 715 }
fa08c86b 716 switch(key->type){
717 case KEY_RSA1:
718 sensitive_data.ssh1_host_key = key;
719 sensitive_data.have_ssh1_key = 1;
720 break;
721 case KEY_RSA:
722 case KEY_DSA:
723 sensitive_data.have_ssh2_key = 1;
724 break;
a306f2dd 725 }
aeaa3d9e 726 debug("private host key: #%d type %d %s", i, key->type,
727 key_type(key));
fa08c86b 728 }
729 if ((options.protocol & SSH_PROTO_1) && !sensitive_data.have_ssh1_key) {
730 log("Disabling protocol version 1. Could not load host key");
731 options.protocol &= ~SSH_PROTO_1;
732 }
733 if ((options.protocol & SSH_PROTO_2) && !sensitive_data.have_ssh2_key) {
734 log("Disabling protocol version 2. Could not load host key");
735 options.protocol &= ~SSH_PROTO_2;
a306f2dd 736 }
6a416424 737 if (!(options.protocol & (SSH_PROTO_1|SSH_PROTO_2))) {
54b974dc 738 log("sshd: no hostkeys available -- exiting.");
5260325f 739 exit(1);
740 }
5260325f 741
a306f2dd 742 /* Check certain values for sanity. */
743 if (options.protocol & SSH_PROTO_1) {
744 if (options.server_key_bits < 512 ||
745 options.server_key_bits > 32768) {
746 fprintf(stderr, "Bad server key size.\n");
747 exit(1);
748 }
749 /*
750 * Check that server and host key lengths differ sufficiently. This
751 * is necessary to make double encryption work with rsaref. Oh, I
752 * hate software patents. I dont know if this can go? Niels
753 */
754 if (options.server_key_bits >
fa08c86b 755 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) - SSH_KEY_BITS_RESERVED &&
a306f2dd 756 options.server_key_bits <
fa08c86b 757 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
a306f2dd 758 options.server_key_bits =
fa08c86b 759 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED;
a306f2dd 760 debug("Forcing server key to %d bits to make it differ from host key.",
761 options.server_key_bits);
762 }
763 }
764
f87f09aa 765 /* Configuration looks good, so exit if in test mode. */
766 if (test_flag)
767 exit(0);
768
77bb0bca 769#ifdef HAVE_SCO_PROTECTED_PW
770 (void) set_auth_parameters(ac, av);
771#endif
772
a306f2dd 773 /* Initialize the log (it is reinitialized below in case we forked). */
5260325f 774 if (debug_flag && !inetd_flag)
775 log_stderr = 1;
1fe6a48f 776 log_init(__progname, options.log_level, options.log_facility, log_stderr);
5260325f 777
a306f2dd 778 /*
779 * If not in debugging mode, and not started from inetd, disconnect
780 * from the controlling terminal, and fork. The original process
781 * exits.
782 */
0b6fbf03 783 if (!(debug_flag || inetd_flag || no_daemon_flag)) {
8efc0c15 784#ifdef TIOCNOTTY
5260325f 785 int fd;
8efc0c15 786#endif /* TIOCNOTTY */
5260325f 787 if (daemon(0, 0) < 0)
788 fatal("daemon() failed: %.200s", strerror(errno));
789
790 /* Disconnect from the controlling tty. */
8efc0c15 791#ifdef TIOCNOTTY
5ca51e19 792 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
5260325f 793 if (fd >= 0) {
794 (void) ioctl(fd, TIOCNOTTY, NULL);
795 close(fd);
796 }
8efc0c15 797#endif /* TIOCNOTTY */
8efc0c15 798 }
5260325f 799 /* Reinitialize the log (because of the fork above). */
1fe6a48f 800 log_init(__progname, options.log_level, options.log_facility, log_stderr);
5260325f 801
5260325f 802 /* Initialize the random number generator. */
803 arc4random_stir();
804
805 /* Chdir to the root directory so that the current disk can be
806 unmounted if desired. */
807 chdir("/");
1d3c30db 808
809 /* ignore SIGPIPE */
810 signal(SIGPIPE, SIG_IGN);
5260325f 811
5260325f 812 /* Start listening for a socket, unless started from inetd. */
813 if (inetd_flag) {
ec1f12d3 814 int s1;
5260325f 815 s1 = dup(0); /* Make sure descriptors 0, 1, and 2 are in use. */
ec1f12d3 816 dup(s1);
5260325f 817 sock_in = dup(0);
818 sock_out = dup(1);
4c8722d9 819 startup_pipe = -1;
a306f2dd 820 /*
821 * We intentionally do not close the descriptors 0, 1, and 2
822 * as our code for setting the descriptors won\'t work if
823 * ttyfd happens to be one of those.
824 */
5260325f 825 debug("inetd sockets after dupping: %d, %d", sock_in, sock_out);
fa08c86b 826 if (options.protocol & SSH_PROTO_1)
cb7bd922 827 generate_ephemeral_server_key();
5260325f 828 } else {
48e671d5 829 for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
830 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
831 continue;
832 if (num_listen_socks >= MAX_LISTEN_SOCKS)
833 fatal("Too many listen sockets. "
834 "Enlarge MAX_LISTEN_SOCKS");
835 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
836 ntop, sizeof(ntop), strport, sizeof(strport),
837 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
838 error("getnameinfo failed");
839 continue;
840 }
841 /* Create socket for listening. */
842 listen_sock = socket(ai->ai_family, SOCK_STREAM, 0);
843 if (listen_sock < 0) {
844 /* kernel may not support ipv6 */
845 verbose("socket: %.100s", strerror(errno));
846 continue;
847 }
848 if (fcntl(listen_sock, F_SETFL, O_NONBLOCK) < 0) {
849 error("listen_sock O_NONBLOCK: %s", strerror(errno));
850 close(listen_sock);
851 continue;
852 }
853 /*
854 * Set socket options. We try to make the port
855 * reusable and have it close as fast as possible
856 * without waiting in unnecessary wait states on
857 * close.
858 */
859 setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
860 (void *) &on, sizeof(on));
861 linger.l_onoff = 1;
862 linger.l_linger = 5;
863 setsockopt(listen_sock, SOL_SOCKET, SO_LINGER,
864 (void *) &linger, sizeof(linger));
865
866 debug("Bind to port %s on %s.", strport, ntop);
867
868 /* Bind the socket to the desired port. */
32ced054 869 if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) {
870 if (!ai->ai_next)
871 error("Bind to port %s on %s failed: %.200s.",
872 strport, ntop, strerror(errno));
48e671d5 873 close(listen_sock);
874 continue;
875 }
876 listen_socks[num_listen_socks] = listen_sock;
877 num_listen_socks++;
878
879 /* Start listening on the port. */
880 log("Server listening on %s port %s.", ntop, strport);
881 if (listen(listen_sock, 5) < 0)
882 fatal("listen: %.100s", strerror(errno));
883
5260325f 884 }
48e671d5 885 freeaddrinfo(options.listen_addrs);
886
887 if (!num_listen_socks)
888 fatal("Cannot bind any address.");
889
3aca00a3 890 if (options.protocol & SSH_PROTO_1)
891 generate_ephemeral_server_key();
892
893 /*
894 * Arrange to restart on SIGHUP. The handler needs
895 * listen_sock.
896 */
897 signal(SIGHUP, sighup_handler);
898
899 signal(SIGTERM, sigterm_handler);
900 signal(SIGQUIT, sigterm_handler);
901
902 /* Arrange SIGCHLD to be caught. */
903 signal(SIGCHLD, main_sigchld_handler);
904
905 /* Write out the pid file after the sigterm handler is setup */
5260325f 906 if (!debug_flag) {
aa3378df 907 /*
97fb6912 908 * Record our pid in /var/run/sshd.pid to make it
909 * easier to kill the correct sshd. We don't want to
910 * do this before the bind above because the bind will
aa3378df 911 * fail if there already is a daemon, and this will
912 * overwrite any old pid in the file.
913 */
3c62e7eb 914 f = fopen(options.pid_file, "wb");
5260325f 915 if (f) {
1e3b8b07 916 fprintf(f, "%u\n", (u_int) getpid());
5260325f 917 fclose(f);
918 }
8efc0c15 919 }
5260325f 920
48e671d5 921 /* setup fd set for listen */
089fbbd2 922 fdset = NULL;
48e671d5 923 maxfd = 0;
924 for (i = 0; i < num_listen_socks; i++)
925 if (listen_socks[i] > maxfd)
926 maxfd = listen_socks[i];
089fbbd2 927 /* pipes connected to unauthenticated childs */
928 startup_pipes = xmalloc(options.max_startups * sizeof(int));
929 for (i = 0; i < options.max_startups; i++)
930 startup_pipes[i] = -1;
48e671d5 931
aa3378df 932 /*
933 * Stay listening for connections until the system crashes or
934 * the daemon is killed with a signal.
935 */
5260325f 936 for (;;) {
937 if (received_sighup)
938 sighup_restart();
089fbbd2 939 if (fdset != NULL)
940 xfree(fdset);
b5c334cc 941 fdsetsz = howmany(maxfd+1, NFDBITS) * sizeof(fd_mask);
089fbbd2 942 fdset = (fd_set *)xmalloc(fdsetsz);
48e671d5 943 memset(fdset, 0, fdsetsz);
089fbbd2 944
48e671d5 945 for (i = 0; i < num_listen_socks; i++)
946 FD_SET(listen_socks[i], fdset);
089fbbd2 947 for (i = 0; i < options.max_startups; i++)
948 if (startup_pipes[i] != -1)
949 FD_SET(startup_pipes[i], fdset);
950
951 /* Wait in select until there is a connection. */
59c97189 952 ret = select(maxfd+1, fdset, NULL, NULL, NULL);
953 if (ret < 0 && errno != EINTR)
954 error("select: %.100s", strerror(errno));
c9130033 955 if (received_sigterm) {
956 log("Received signal %d; terminating.",
957 received_sigterm);
958 close_listen_socks();
959 unlink(options.pid_file);
960 exit(255);
961 }
59c97189 962 if (key_used && key_do_regen) {
cb7bd922 963 generate_ephemeral_server_key();
59c97189 964 key_used = 0;
965 key_do_regen = 0;
48e671d5 966 }
59c97189 967 if (ret < 0)
968 continue;
969
089fbbd2 970 for (i = 0; i < options.max_startups; i++)
971 if (startup_pipes[i] != -1 &&
972 FD_ISSET(startup_pipes[i], fdset)) {
973 /*
974 * the read end of the pipe is ready
975 * if the child has closed the pipe
8abcdba4 976 * after successful authentication
089fbbd2 977 * or if the child has died
978 */
979 close(startup_pipes[i]);
980 startup_pipes[i] = -1;
981 startups--;
982 }
48e671d5 983 for (i = 0; i < num_listen_socks; i++) {
984 if (!FD_ISSET(listen_socks[i], fdset))
5260325f 985 continue;
089fbbd2 986 fromlen = sizeof(from);
987 newsock = accept(listen_socks[i], (struct sockaddr *)&from,
988 &fromlen);
989 if (newsock < 0) {
990 if (errno != EINTR && errno != EWOULDBLOCK)
991 error("accept: %.100s", strerror(errno));
992 continue;
993 }
994 if (fcntl(newsock, F_SETFL, 0) < 0) {
995 error("newsock del O_NONBLOCK: %s", strerror(errno));
996 continue;
997 }
c345cf9d 998 if (drop_connection(startups) == 1) {
999 debug("drop connection #%d", startups);
089fbbd2 1000 close(newsock);
1001 continue;
1002 }
1003 if (pipe(startup_p) == -1) {
1004 close(newsock);
1005 continue;
1006 }
1007
1008 for (j = 0; j < options.max_startups; j++)
1009 if (startup_pipes[j] == -1) {
1010 startup_pipes[j] = startup_p[0];
1011 if (maxfd < startup_p[0])
1012 maxfd = startup_p[0];
1013 startups++;
1014 break;
1015 }
2b87da3b 1016
aa3378df 1017 /*
089fbbd2 1018 * Got connection. Fork a child to handle it, unless
1019 * we are in debugging mode.
aa3378df 1020 */
089fbbd2 1021 if (debug_flag) {
aa3378df 1022 /*
089fbbd2 1023 * In debugging mode. Close the listening
1024 * socket, and start processing the
1025 * connection without forking.
aa3378df 1026 */
089fbbd2 1027 debug("Server will not fork when running in debugging mode.");
48e671d5 1028 close_listen_socks();
5260325f 1029 sock_in = newsock;
1030 sock_out = newsock;
5540ea9b 1031 startup_pipe = -1;
3f7a7e4a 1032 pid = getpid();
5260325f 1033 break;
089fbbd2 1034 } else {
1035 /*
1036 * Normal production daemon. Fork, and have
1037 * the child process the connection. The
1038 * parent continues listening.
1039 */
1040 if ((pid = fork()) == 0) {
1041 /*
1042 * Child. Close the listening and max_startup
1043 * sockets. Start using the accepted socket.
1044 * Reinitialize logging (since our pid has
1045 * changed). We break out of the loop to handle
1046 * the connection.
1047 */
1048 startup_pipe = startup_p[1];
1049 for (j = 0; j < options.max_startups; j++)
1050 if (startup_pipes[j] != -1)
1051 close(startup_pipes[j]);
1052 close_listen_socks();
1053 sock_in = newsock;
1054 sock_out = newsock;
1fe6a48f 1055 log_init(__progname, options.log_level, options.log_facility, log_stderr);
089fbbd2 1056 break;
1057 }
5260325f 1058 }
5260325f 1059
089fbbd2 1060 /* Parent. Stay in the loop. */
1061 if (pid < 0)
1062 error("fork: %.100s", strerror(errno));
1063 else
1064 debug("Forked child %d.", pid);
5260325f 1065
089fbbd2 1066 close(startup_p[1]);
5260325f 1067
089fbbd2 1068 /* Mark that the key has been used (it was "given" to the child). */
59c97189 1069 if ((options.protocol & SSH_PROTO_1) &&
1070 key_used == 0) {
1071 /* Schedule server key regeneration alarm. */
1072 signal(SIGALRM, key_regeneration_alarm);
1073 alarm(options.key_regeneration_time);
1074 key_used = 1;
1075 }
5260325f 1076
089fbbd2 1077 arc4random_stir();
1078
1079 /* Close the new socket (the child is now taking care of it). */
1080 close(newsock);
1081 }
48e671d5 1082 /* child process check (or debug mode) */
1083 if (num_listen_socks < 0)
1084 break;
5260325f 1085 }
1086 }
8efc0c15 1087
5260325f 1088 /* This is the child processing a new connection. */
1089
aa3378df 1090 /*
1091 * Disable the key regeneration alarm. We will not regenerate the
1092 * key since we are no longer in a position to give it to anyone. We
1093 * will not restart on SIGHUP since it no longer makes sense.
1094 */
5260325f 1095 alarm(0);
1096 signal(SIGALRM, SIG_DFL);
1097 signal(SIGHUP, SIG_DFL);
1098 signal(SIGTERM, SIG_DFL);
1099 signal(SIGQUIT, SIG_DFL);
1100 signal(SIGCHLD, SIG_DFL);
9aaf9be4 1101 signal(SIGINT, SIG_DFL);
5260325f 1102
aa3378df 1103 /*
1104 * Set socket options for the connection. We want the socket to
1105 * close as fast as possible without waiting for anything. If the
1106 * connection is not a socket, these will do nothing.
1107 */
1108 /* setsockopt(sock_in, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on)); */
5260325f 1109 linger.l_onoff = 1;
1110 linger.l_linger = 5;
1111 setsockopt(sock_in, SOL_SOCKET, SO_LINGER, (void *) &linger, sizeof(linger));
1112
b5c334cc 1113 /* Set keepalives if requested. */
1114 if (options.keepalives &&
1115 setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, (void *)&on,
1116 sizeof(on)) < 0)
1117 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
1118
aa3378df 1119 /*
1120 * Register our connection. This turns encryption off because we do
1121 * not have a key.
1122 */
5260325f 1123 packet_set_connection(sock_in, sock_out);
1124
1125 remote_port = get_remote_port();
1126 remote_ip = get_remote_ipaddr();
1127
1128 /* Check whether logins are denied from this host. */
1129#ifdef LIBWRAP
48e671d5 1130 /* XXX LIBWRAP noes not know about IPv6 */
5260325f 1131 {
1132 struct request_info req;
8efc0c15 1133
1fe6a48f 1134 request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, NULL);
5260325f 1135 fromhost(&req);
8efc0c15 1136
5260325f 1137 if (!hosts_access(&req)) {
563834bb 1138 refuse(&req);
5260325f 1139 close(sock_in);
1140 close(sock_out);
5260325f 1141 }
48e671d5 1142/*XXX IPv6 verbose("Connection from %.500s port %d", eval_client(&req), remote_port); */
8efc0c15 1143 }
48e671d5 1144#endif /* LIBWRAP */
5260325f 1145 /* Log the connection. */
1146 verbose("Connection from %.500s port %d", remote_ip, remote_port);
8efc0c15 1147
aa3378df 1148 /*
1149 * We don\'t want to listen forever unless the other side
1150 * successfully authenticates itself. So we set up an alarm which is
1151 * cleared after successful authentication. A limit of zero
1152 * indicates no limit. Note that we don\'t set the alarm in debugging
1153 * mode; it is just annoying to have the server exit just when you
1154 * are about to discover the bug.
1155 */
5260325f 1156 signal(SIGALRM, grace_alarm_handler);
1157 if (!debug_flag)
1158 alarm(options.login_grace_time);
1159
7368a6c8 1160 sshd_exchange_identification(sock_in, sock_out);
aa3378df 1161 /*
6ffc9c88 1162 * Check that the connection comes from a privileged port.
1163 * Rhosts-Authentication only makes sense from priviledged
aa3378df 1164 * programs. Of course, if the intruder has root access on his local
1165 * machine, he can connect from any port. So do not use these
1166 * authentication methods from machines that you do not trust.
1167 */
5260325f 1168 if (remote_port >= IPPORT_RESERVED ||
1169 remote_port < IPPORT_RESERVED / 2) {
6ffc9c88 1170 debug("Rhosts Authentication disabled, "
fa08c86b 1171 "originating port not trusted.");
5260325f 1172 options.rhosts_authentication = 0;
5260325f 1173 }
ced49be2 1174#if defined(KRB4) && !defined(KRB5)
48e671d5 1175 if (!packet_connection_is_ipv4() &&
1176 options.kerberos_authentication) {
1177 debug("Kerberos Authentication disabled, only available for IPv4.");
1178 options.kerberos_authentication = 0;
1179 }
ced49be2 1180#endif /* KRB4 && !KRB5 */
abf1f107 1181#ifdef AFS
1182 /* If machine has AFS, set process authentication group. */
1183 if (k_hasafs()) {
1184 k_setpag();
1185 k_unlog();
1186 }
1187#endif /* AFS */
48e671d5 1188
5260325f 1189 packet_set_nonblocking();
1190
7b2ea3a1 1191 /* perform the key exchange */
7b2ea3a1 1192 /* authenticate user and start session */
e78a59f5 1193 if (compat20) {
1194 do_ssh2_kex();
1195 do_authentication2();
1196 } else {
1197 do_ssh1_kex();
1198 do_authentication();
1199 }
5260325f 1200 /* The connection has been terminated. */
1201 verbose("Closing connection to %.100s", remote_ip);
8efc0c15 1202
d94aa2ae 1203#ifdef USE_PAM
a5c9cd31 1204 finish_pam();
d94aa2ae 1205#endif /* USE_PAM */
8efc0c15 1206
5260325f 1207 packet_close();
1208 exit(0);
1209}
8efc0c15 1210
5260325f 1211/*
7b2ea3a1 1212 * SSH1 key exchange
5260325f 1213 */
396c147e 1214static void
1e3b8b07 1215do_ssh1_kex(void)
8efc0c15 1216{
5260325f 1217 int i, len;
7b2ea3a1 1218 int plen, slen;
46aa2d1f 1219 int rsafail = 0;
5260325f 1220 BIGNUM *session_key_int;
1e3b8b07 1221 u_char session_key[SSH_SESSION_KEY_LENGTH];
1222 u_char cookie[8];
1223 u_int cipher_type, auth_mask, protocol_flags;
5260325f 1224 u_int32_t rand = 0;
1225
aa3378df 1226 /*
1227 * Generate check bytes that the client must send back in the user
1228 * packet in order for it to be accepted; this is used to defy ip
1229 * spoofing attacks. Note that this only works against somebody
1230 * doing IP spoofing from a remote machine; any machine on the local
1231 * network can still see outgoing packets and catch the random
1232 * cookie. This only affects rhosts authentication, and this is one
1233 * of the reasons why it is inherently insecure.
1234 */
5260325f 1235 for (i = 0; i < 8; i++) {
1236 if (i % 4 == 0)
1237 rand = arc4random();
7b2ea3a1 1238 cookie[i] = rand & 0xff;
5260325f 1239 rand >>= 8;
1240 }
1241
aa3378df 1242 /*
1243 * Send our public key. We include in the packet 64 bits of random
1244 * data that must be matched in the reply in order to prevent IP
1245 * spoofing.
1246 */
5260325f 1247 packet_start(SSH_SMSG_PUBLIC_KEY);
1248 for (i = 0; i < 8; i++)
7b2ea3a1 1249 packet_put_char(cookie[i]);
5260325f 1250
1251 /* Store our public server RSA key. */
fa08c86b 1252 packet_put_int(BN_num_bits(sensitive_data.server_key->rsa->n));
1253 packet_put_bignum(sensitive_data.server_key->rsa->e);
1254 packet_put_bignum(sensitive_data.server_key->rsa->n);
5260325f 1255
1256 /* Store our public host RSA key. */
fa08c86b 1257 packet_put_int(BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
1258 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->e);
1259 packet_put_bignum(sensitive_data.ssh1_host_key->rsa->n);
5260325f 1260
1261 /* Put protocol flags. */
1262 packet_put_int(SSH_PROTOFLAG_HOST_IN_FWD_OPEN);
1263
1264 /* Declare which ciphers we support. */
94ec8c6b 1265 packet_put_int(cipher_mask_ssh1(0));
5260325f 1266
1267 /* Declare supported authentication types. */
1268 auth_mask = 0;
1269 if (options.rhosts_authentication)
1270 auth_mask |= 1 << SSH_AUTH_RHOSTS;
1271 if (options.rhosts_rsa_authentication)
1272 auth_mask |= 1 << SSH_AUTH_RHOSTS_RSA;
1273 if (options.rsa_authentication)
1274 auth_mask |= 1 << SSH_AUTH_RSA;
ced49be2 1275#if defined(KRB4) || defined(KRB5)
5260325f 1276 if (options.kerberos_authentication)
1277 auth_mask |= 1 << SSH_AUTH_KERBEROS;
8efc0c15 1278#endif
ced49be2 1279#if defined(AFS) || defined(KRB5)
5260325f 1280 if (options.kerberos_tgt_passing)
1281 auth_mask |= 1 << SSH_PASS_KERBEROS_TGT;
ced49be2 1282#endif
1283#ifdef AFS
5260325f 1284 if (options.afs_token_passing)
1285 auth_mask |= 1 << SSH_PASS_AFS_TOKEN;
8efc0c15 1286#endif
5ba55ada 1287 if (options.challenge_response_authentication == 1)
5260325f 1288 auth_mask |= 1 << SSH_AUTH_TIS;
5260325f 1289 if (options.password_authentication)
1290 auth_mask |= 1 << SSH_AUTH_PASSWORD;
1291 packet_put_int(auth_mask);
1292
1293 /* Send the packet and wait for it to be sent. */
1294 packet_send();
1295 packet_write_wait();
1296
fa08c86b 1297 debug("Sent %d bit server key and %d bit host key.",
1298 BN_num_bits(sensitive_data.server_key->rsa->n),
1299 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
5260325f 1300
1301 /* Read clients reply (cipher type and session key). */
1302 packet_read_expect(&plen, SSH_CMSG_SESSION_KEY);
1303
2d86a6cc 1304 /* Get cipher type and check whether we accept this. */
5260325f 1305 cipher_type = packet_get_char();
1306
94ec8c6b 1307 if (!(cipher_mask_ssh1(0) & (1 << cipher_type)))
2d86a6cc 1308 packet_disconnect("Warning: client selects unsupported cipher.");
1309
5260325f 1310 /* Get check bytes from the packet. These must match those we
1311 sent earlier with the public key packet. */
1312 for (i = 0; i < 8; i++)
7b2ea3a1 1313 if (cookie[i] != packet_get_char())
5260325f 1314 packet_disconnect("IP Spoofing check bytes do not match.");
1315
1316 debug("Encryption type: %.200s", cipher_name(cipher_type));
1317
1318 /* Get the encrypted integer. */
1319 session_key_int = BN_new();
1320 packet_get_bignum(session_key_int, &slen);
1321
5260325f 1322 protocol_flags = packet_get_int();
1323 packet_set_protocol_flags(protocol_flags);
1324
1325 packet_integrity_check(plen, 1 + 8 + slen + 4, SSH_CMSG_SESSION_KEY);
1326
aa3378df 1327 /*
1328 * Decrypt it using our private server key and private host key (key
1329 * with larger modulus first).
1330 */
fa08c86b 1331 if (BN_cmp(sensitive_data.server_key->rsa->n, sensitive_data.ssh1_host_key->rsa->n) > 0) {
46aa2d1f 1332 /* Server key has bigger modulus. */
fa08c86b 1333 if (BN_num_bits(sensitive_data.server_key->rsa->n) <
1334 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1335 fatal("do_connection: %s: server_key %d < host_key %d + SSH_KEY_BITS_RESERVED %d",
1336 get_remote_ipaddr(),
1337 BN_num_bits(sensitive_data.server_key->rsa->n),
1338 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1339 SSH_KEY_BITS_RESERVED);
5260325f 1340 }
46aa2d1f 1341 if (rsa_private_decrypt(session_key_int, session_key_int,
1342 sensitive_data.server_key->rsa) <= 0)
1343 rsafail++;
1344 if (rsa_private_decrypt(session_key_int, session_key_int,
1345 sensitive_data.ssh1_host_key->rsa) <= 0)
1346 rsafail++;
5260325f 1347 } else {
1348 /* Host key has bigger modulus (or they are equal). */
fa08c86b 1349 if (BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) <
1350 BN_num_bits(sensitive_data.server_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1351 fatal("do_connection: %s: host_key %d < server_key %d + SSH_KEY_BITS_RESERVED %d",
1352 get_remote_ipaddr(),
1353 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1354 BN_num_bits(sensitive_data.server_key->rsa->n),
1355 SSH_KEY_BITS_RESERVED);
5260325f 1356 }
46aa2d1f 1357 if (rsa_private_decrypt(session_key_int, session_key_int,
1358 sensitive_data.ssh1_host_key->rsa) < 0)
1359 rsafail++;
1360 if (rsa_private_decrypt(session_key_int, session_key_int,
1361 sensitive_data.server_key->rsa) < 0)
1362 rsafail++;
5260325f 1363 }
aa3378df 1364 /*
1365 * Extract session key from the decrypted integer. The key is in the
1366 * least significant 256 bits of the integer; the first byte of the
1367 * key is in the highest bits.
1368 */
46aa2d1f 1369 if (!rsafail) {
1370 BN_mask_bits(session_key_int, sizeof(session_key) * 8);
1371 len = BN_num_bytes(session_key_int);
1372 if (len < 0 || len > sizeof(session_key)) {
1373 error("do_connection: bad session key len from %s: "
5ca51e19 1374 "session_key_int %d > sizeof(session_key) %lu",
1375 get_remote_ipaddr(), len, (u_long)sizeof(session_key));
46aa2d1f 1376 rsafail++;
1377 } else {
1378 memset(session_key, 0, sizeof(session_key));
1379 BN_bn2bin(session_key_int,
1380 session_key + sizeof(session_key) - len);
00be5382 1381
1382 compute_session_id(session_id, cookie,
1383 sensitive_data.ssh1_host_key->rsa->n,
1384 sensitive_data.server_key->rsa->n);
1385 /*
1386 * Xor the first 16 bytes of the session key with the
1387 * session id.
1388 */
1389 for (i = 0; i < 16; i++)
1390 session_key[i] ^= session_id[i];
46aa2d1f 1391 }
1392 }
1393 if (rsafail) {
00be5382 1394 int bytes = BN_num_bytes(session_key_int);
1395 char *buf = xmalloc(bytes);
1396 MD5_CTX md;
1397
46aa2d1f 1398 log("do_connection: generating a fake encryption key");
00be5382 1399 BN_bn2bin(session_key_int, buf);
1400 MD5_Init(&md);
1401 MD5_Update(&md, buf, bytes);
1402 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1403 MD5_Final(session_key, &md);
1404 MD5_Init(&md);
1405 MD5_Update(&md, session_key, 16);
1406 MD5_Update(&md, buf, bytes);
1407 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1408 MD5_Final(session_key + 16, &md);
1409 memset(buf, 0, bytes);
1410 xfree(buf);
0572fe75 1411 for (i = 0; i < 16; i++)
1412 session_id[i] = session_key[i] ^ session_key[i + 16];
46aa2d1f 1413 }
00be5382 1414 /* Destroy the private and public keys. They will no longer be needed. */
1415 destroy_sensitive_data();
1416
7b2ea3a1 1417 /* Destroy the decrypted integer. It is no longer needed. */
1418 BN_clear_free(session_key_int);
1419
5260325f 1420 /* Set the session key. From this on all communications will be encrypted. */
1421 packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, cipher_type);
1422
1423 /* Destroy our copy of the session key. It is no longer needed. */
1424 memset(session_key, 0, sizeof(session_key));
1425
1426 debug("Received session key; encryption turned on.");
1427
1428 /* Send an acknowledgement packet. Note that this packet is sent encrypted. */
1429 packet_start(SSH_SMSG_SUCCESS);
1430 packet_send();
1431 packet_write_wait();
5260325f 1432}
e78a59f5 1433
1434/*
1435 * SSH2 key exchange: diffie-hellman-group1-sha1
1436 */
396c147e 1437static void
1e3b8b07 1438do_ssh2_kex(void)
e78a59f5 1439{
e78a59f5 1440 Kex *kex;
e78a59f5 1441
a8be9f80 1442 if (options.ciphers != NULL) {
6ae2364d 1443 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
a8be9f80 1444 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
1445 }
1ad64a93 1446 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
1447 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
1448 myproposal[PROPOSAL_ENC_ALGS_STOC] =
1449 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
1450
b2552997 1451 if (options.macs != NULL) {
1452 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
1453 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
1454 }
fa08c86b 1455 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = list_hostkey_types();
1456
7a37c112 1457 /* start key exchange */
d8ee838b 1458 kex = kex_setup(myproposal);
a5c9ffdb 1459 kex->server = 1;
1460 kex->client_version_string=client_version_string;
1461 kex->server_version_string=server_version_string;
1462 kex->load_host_key=&get_hostkey_by_type;
94ec8c6b 1463
7a37c112 1464 xxx_kex = kex;
1465
c422989b 1466 dispatch_run(DISPATCH_BLOCK, &kex->done, kex);
94ec8c6b 1467
d1ac6175 1468 session_id2 = kex->session_id;
1469 session_id2_len = kex->session_id_len;
1470
94ec8c6b 1471#ifdef DEBUG_KEXDH
1472 /* send 1st encrypted/maced/compressed message */
1473 packet_start(SSH2_MSG_IGNORE);
1474 packet_put_cstring("markus");
1475 packet_send();
1476 packet_write_wait();
1477#endif
a5c9ffdb 1478 debug("KEX done");
e78a59f5 1479}
This page took 5.701849 seconds and 5 git commands to generate.