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