]> andersk Git - openssh.git/blame - sshd.c
- stevesk@cvs.openbsd.org 2001/05/19 19:43:57
[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"
e2b1fb42 43RCSID("$OpenBSD: sshd.c,v 1.197 2001/05/19 19:43:57 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
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
170/* This is set to true when SIGHUP is received. */
171int received_sighup = 0;
172
7368a6c8 173/* session identifier, used by RSA-auth */
1e3b8b07 174u_char session_id[16];
e7c0f9d5 175
a306f2dd 176/* same for ssh2 */
1e3b8b07 177u_char *session_id2 = NULL;
a306f2dd 178int session_id2_len = 0;
179
c345cf9d 180/* record remote hostname or ip */
1e3b8b07 181u_int utmp_len = MAXHOSTNAMELEN;
c345cf9d 182
7368a6c8 183/* Prototypes for various functions defined later in this file. */
1e3b8b07 184void do_ssh1_kex(void);
185void do_ssh2_kex(void);
c8d54615 186
94ec8c6b 187void ssh_dh1_server(Kex *, Buffer *_kexinit, Buffer *);
188void ssh_dhgex_server(Kex *, Buffer *_kexinit, Buffer *);
189
48e671d5 190/*
191 * Close all listening sockets
192 */
193void
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 */
6ae2364d 207void
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 */
6ae2364d 218void
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.
230 * These close the listen socket; not closing it seems to cause "Address
231 * already in use" problems on some machines, which is inconvenient.
232 */
6ae2364d 233void
5260325f 234sigterm_handler(int sig)
8efc0c15 235{
5260325f 236 log("Received signal %d; terminating.", sig);
48e671d5 237 close_listen_socks();
0fbe8c74 238 unlink(options.pid_file);
5260325f 239 exit(255);
8efc0c15 240}
241
5260325f 242/*
243 * SIGCHLD handler. This is called whenever a child dies. This will then
244 * reap any zombies left by exited c.
245 */
6ae2364d 246void
5260325f 247main_sigchld_handler(int sig)
8efc0c15 248{
5260325f 249 int save_errno = errno;
250 int status;
5ad13cd7 251
5260325f 252 while (waitpid(-1, &status, WNOHANG) > 0)
253 ;
5ad13cd7 254
5260325f 255 signal(SIGCHLD, main_sigchld_handler);
256 errno = save_errno;
8efc0c15 257}
258
5260325f 259/*
260 * Signal handler for the alarm after the login grace period has expired.
261 */
6ae2364d 262void
5260325f 263grace_alarm_handler(int sig)
8efc0c15 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 */
6ae2364d 279void
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
fa08c86b 302void
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
7368a6c8 311void
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 if (compat20)
439 packet_set_ssh2_format();
440}
441
442
fa08c86b 443/* Destroy the host and server keys. They will no longer be needed. */
a306f2dd 444void
445destroy_sensitive_data(void)
446{
fa08c86b 447 int i;
448
449 if (sensitive_data.server_key) {
450 key_free(sensitive_data.server_key);
451 sensitive_data.server_key = NULL;
452 }
2b87da3b 453 for(i = 0; i < options.num_host_key_files; i++) {
fa08c86b 454 if (sensitive_data.host_keys[i]) {
455 key_free(sensitive_data.host_keys[i]);
456 sensitive_data.host_keys[i] = NULL;
457 }
458 }
459 sensitive_data.ssh1_host_key = NULL;
00be5382 460 memset(sensitive_data.ssh1_cookie, 0, SSH_SESSION_KEY_LENGTH);
fa08c86b 461}
fa08c86b 462
463char *
464list_hostkey_types(void)
465{
466 static char buf[1024];
467 int i;
468 buf[0] = '\0';
469 for(i = 0; i < options.num_host_key_files; i++) {
470 Key *key = sensitive_data.host_keys[i];
471 if (key == NULL)
472 continue;
473 switch(key->type) {
474 case KEY_RSA:
475 case KEY_DSA:
476 strlcat(buf, key_ssh_name(key), sizeof buf);
477 strlcat(buf, ",", sizeof buf);
478 break;
479 }
480 }
481 i = strlen(buf);
482 if (i > 0 && buf[i-1] == ',')
483 buf[i-1] = '\0';
484 debug("list_hostkey_types: %s", buf);
485 return buf;
486}
487
488Key *
489get_hostkey_by_type(int type)
490{
491 int i;
492 for(i = 0; i < options.num_host_key_files; i++) {
493 Key *key = sensitive_data.host_keys[i];
494 if (key != NULL && key->type == type)
495 return key;
496 }
497 return NULL;
7368a6c8 498}
499
c345cf9d 500/*
501 * returns 1 if connection should be dropped, 0 otherwise.
502 * dropping starts at connection #max_startups_begin with a probability
503 * of (max_startups_rate/100). the probability increases linearly until
504 * all connections are dropped for startups > max_startups
505 */
506int
507drop_connection(int startups)
508{
509 double p, r;
510
511 if (startups < options.max_startups_begin)
512 return 0;
513 if (startups >= options.max_startups)
514 return 1;
515 if (options.max_startups_rate == 100)
516 return 1;
517
518 p = 100 - options.max_startups_rate;
519 p *= startups - options.max_startups_begin;
520 p /= (double) (options.max_startups - options.max_startups_begin);
521 p += options.max_startups_rate;
522 p /= 100.0;
523 r = arc4random() / (double) UINT_MAX;
524
525 debug("drop_connection: p %g, r %g", p, r);
526 return (r < p) ? 1 : 0;
527}
528
089fbbd2 529int *startup_pipes = NULL; /* options.max_startup sized array of fd ints */
530int startup_pipe; /* in child */
531
5260325f 532/*
533 * Main program for the daemon.
534 */
8efc0c15 535int
536main(int ac, char **av)
537{
5260325f 538 extern char *optarg;
539 extern int optind;
089fbbd2 540 int opt, sock_in = 0, sock_out = 0, newsock, j, i, fdsetsz, on = 1;
9da5c3c9 541 pid_t pid;
48e671d5 542 socklen_t fromlen;
48e671d5 543 fd_set *fdset;
544 struct sockaddr_storage from;
5260325f 545 const char *remote_ip;
546 int remote_port;
5260325f 547 FILE *f;
548 struct linger linger;
48e671d5 549 struct addrinfo *ai;
550 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
551 int listen_sock, maxfd;
089fbbd2 552 int startup_p[2];
553 int startups = 0;
aeaa3d9e 554 Key *key;
59c97189 555 int ret, key_used = 0;
5260325f 556
260d427b 557 __progname = get_progname(av[0]);
264dce47 558 init_rng();
559
1fe6a48f 560 /* Save argv. */
4d33e531 561 saved_argc = ac;
5260325f 562 saved_argv = av;
5260325f 563
564 /* Initialize configuration options to their default values. */
565 initialize_server_options(&options);
566
567 /* Parse command-line arguments. */
ff14faf1 568 while ((opt = getopt(ac, av, "f:p:b:k:h:g:V:u:dDeiqQ46")) != -1) {
5260325f 569 switch (opt) {
48e671d5 570 case '4':
571 IPv4or6 = AF_INET;
572 break;
573 case '6':
574 IPv4or6 = AF_INET6;
575 break;
5260325f 576 case 'f':
577 config_file_name = optarg;
578 break;
579 case 'd':
bcbf86ec 580 if (0 == debug_flag) {
581 debug_flag = 1;
582 options.log_level = SYSLOG_LEVEL_DEBUG1;
583 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
584 options.log_level++;
585 } else {
586 fprintf(stderr, "Too high debugging level.\n");
587 exit(1);
588 }
5260325f 589 break;
0b6fbf03 590 case 'D':
591 no_daemon_flag = 1;
592 break;
ff14faf1 593 case 'e':
594 log_stderr = 1;
595 break;
5260325f 596 case 'i':
597 inetd_flag = 1;
598 break;
599 case 'Q':
9bd5b720 600 /* ignored */
5260325f 601 break;
602 case 'q':
603 options.log_level = SYSLOG_LEVEL_QUIET;
604 break;
605 case 'b':
606 options.server_key_bits = atoi(optarg);
607 break;
608 case 'p':
48e671d5 609 options.ports_from_cmdline = 1;
bcbf86ec 610 if (options.num_ports >= MAX_PORTS) {
611 fprintf(stderr, "too many ports.\n");
612 exit(1);
613 }
2d2a2c65 614 options.ports[options.num_ports++] = a2port(optarg);
615 if (options.ports[options.num_ports-1] == 0) {
616 fprintf(stderr, "Bad port number.\n");
617 exit(1);
618 }
5260325f 619 break;
620 case 'g':
e2b1fb42 621 if ((options.login_grace_time = convtime(optarg)) == -1) {
622 fprintf(stderr, "Invalid login grace time.\n");
623 exit(1);
624 }
5260325f 625 break;
626 case 'k':
e2b1fb42 627 if ((options.key_regeneration_time = convtime(optarg)) == -1) {
628 fprintf(stderr, "Invalid key regeneration interval.\n");
629 exit(1);
630 }
5260325f 631 break;
632 case 'h':
fa08c86b 633 if (options.num_host_key_files >= MAX_HOSTKEYS) {
634 fprintf(stderr, "too many host keys.\n");
635 exit(1);
636 }
637 options.host_key_files[options.num_host_key_files++] = optarg;
5260325f 638 break;
639 case 'V':
640 client_version_string = optarg;
641 /* only makes sense with inetd_flag, i.e. no listen() */
642 inetd_flag = 1;
643 break;
c345cf9d 644 case 'u':
645 utmp_len = atoi(optarg);
646 break;
5260325f 647 case '?':
648 default:
649 fprintf(stderr, "sshd version %s\n", SSH_VERSION);
1fe6a48f 650 fprintf(stderr, "Usage: %s [options]\n", __progname);
5260325f 651 fprintf(stderr, "Options:\n");
42f11eb2 652 fprintf(stderr, " -f file Configuration file (default %s)\n", _PATH_SERVER_CONFIG_FILE);
bcbf86ec 653 fprintf(stderr, " -d Debugging mode (multiple -d means more debugging)\n");
5260325f 654 fprintf(stderr, " -i Started from inetd\n");
8abcdba4 655 fprintf(stderr, " -D Do not fork into daemon mode\n");
5260325f 656 fprintf(stderr, " -q Quiet (no logging)\n");
657 fprintf(stderr, " -p port Listen on the specified port (default: 22)\n");
658 fprintf(stderr, " -k seconds Regenerate server key every this many seconds (default: 3600)\n");
9616313f 659 fprintf(stderr, " -g seconds Grace period for authentication (default: 600)\n");
5260325f 660 fprintf(stderr, " -b bits Size of server RSA key (default: 768 bits)\n");
661 fprintf(stderr, " -h file File from which to read host key (default: %s)\n",
42f11eb2 662 _PATH_HOST_KEY_FILE);
c345cf9d 663 fprintf(stderr, " -u len Maximum hostname length for utmp recording\n");
48e671d5 664 fprintf(stderr, " -4 Use IPv4 only\n");
665 fprintf(stderr, " -6 Use IPv6 only\n");
5260325f 666 exit(1);
667 }
668 }
1a92bd7e 669 SSLeay_add_all_algorithms();
5260325f 670
48e671d5 671 /*
672 * Force logging to stderr until we have loaded the private host
673 * key (unless started from inetd)
674 */
1fe6a48f 675 log_init(__progname,
59c97189 676 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
48e671d5 677 options.log_facility == -1 ? SYSLOG_FACILITY_AUTH : options.log_facility,
9bd5b720 678 !inetd_flag);
48e671d5 679
e339aa53 680 seed_rng();
681
5260325f 682 /* Read server configuration options from the configuration file. */
683 read_server_config(&options, config_file_name);
684
685 /* Fill in default values for those options not explicitly set. */
686 fill_default_server_options(&options);
687
5260325f 688 /* Check that there are no remaining arguments. */
689 if (optind < ac) {
690 fprintf(stderr, "Extra argument %s.\n", av[optind]);
691 exit(1);
8efc0c15 692 }
5260325f 693
694 debug("sshd version %.100s", SSH_VERSION);
695
fa08c86b 696 /* load private host keys */
697 sensitive_data.host_keys = xmalloc(options.num_host_key_files*sizeof(Key*));
1e3b8b07 698 for(i = 0; i < options.num_host_key_files; i++)
699 sensitive_data.host_keys[i] = NULL;
fa08c86b 700 sensitive_data.server_key = NULL;
701 sensitive_data.ssh1_host_key = NULL;
702 sensitive_data.have_ssh1_key = 0;
703 sensitive_data.have_ssh2_key = 0;
a306f2dd 704
fa08c86b 705 for(i = 0; i < options.num_host_key_files; i++) {
aeaa3d9e 706 key = key_load_private(options.host_key_files[i], "", NULL);
707 sensitive_data.host_keys[i] = key;
fa08c86b 708 if (key == NULL) {
58cfa257 709 error("Could not load host key: %s",
710 options.host_key_files[i]);
aeaa3d9e 711 sensitive_data.host_keys[i] = NULL;
fa08c86b 712 continue;
a306f2dd 713 }
fa08c86b 714 switch(key->type){
715 case KEY_RSA1:
716 sensitive_data.ssh1_host_key = key;
717 sensitive_data.have_ssh1_key = 1;
718 break;
719 case KEY_RSA:
720 case KEY_DSA:
721 sensitive_data.have_ssh2_key = 1;
722 break;
a306f2dd 723 }
aeaa3d9e 724 debug("private host key: #%d type %d %s", i, key->type,
725 key_type(key));
fa08c86b 726 }
727 if ((options.protocol & SSH_PROTO_1) && !sensitive_data.have_ssh1_key) {
728 log("Disabling protocol version 1. Could not load host key");
729 options.protocol &= ~SSH_PROTO_1;
730 }
731 if ((options.protocol & SSH_PROTO_2) && !sensitive_data.have_ssh2_key) {
732 log("Disabling protocol version 2. Could not load host key");
733 options.protocol &= ~SSH_PROTO_2;
a306f2dd 734 }
6a416424 735 if (!(options.protocol & (SSH_PROTO_1|SSH_PROTO_2))) {
54b974dc 736 log("sshd: no hostkeys available -- exiting.");
5260325f 737 exit(1);
738 }
5260325f 739
a306f2dd 740 /* Check certain values for sanity. */
741 if (options.protocol & SSH_PROTO_1) {
742 if (options.server_key_bits < 512 ||
743 options.server_key_bits > 32768) {
744 fprintf(stderr, "Bad server key size.\n");
745 exit(1);
746 }
747 /*
748 * Check that server and host key lengths differ sufficiently. This
749 * is necessary to make double encryption work with rsaref. Oh, I
750 * hate software patents. I dont know if this can go? Niels
751 */
752 if (options.server_key_bits >
fa08c86b 753 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) - SSH_KEY_BITS_RESERVED &&
a306f2dd 754 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 debug("Forcing server key to %d bits to make it differ from host key.",
759 options.server_key_bits);
760 }
761 }
762
77bb0bca 763#ifdef HAVE_SCO_PROTECTED_PW
764 (void) set_auth_parameters(ac, av);
765#endif
766
a306f2dd 767 /* Initialize the log (it is reinitialized below in case we forked). */
5260325f 768 if (debug_flag && !inetd_flag)
769 log_stderr = 1;
1fe6a48f 770 log_init(__progname, options.log_level, options.log_facility, log_stderr);
5260325f 771
a306f2dd 772 /*
773 * If not in debugging mode, and not started from inetd, disconnect
774 * from the controlling terminal, and fork. The original process
775 * exits.
776 */
0b6fbf03 777 if (!(debug_flag || inetd_flag || no_daemon_flag)) {
8efc0c15 778#ifdef TIOCNOTTY
5260325f 779 int fd;
8efc0c15 780#endif /* TIOCNOTTY */
5260325f 781 if (daemon(0, 0) < 0)
782 fatal("daemon() failed: %.200s", strerror(errno));
783
784 /* Disconnect from the controlling tty. */
8efc0c15 785#ifdef TIOCNOTTY
5ca51e19 786 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
5260325f 787 if (fd >= 0) {
788 (void) ioctl(fd, TIOCNOTTY, NULL);
789 close(fd);
790 }
8efc0c15 791#endif /* TIOCNOTTY */
8efc0c15 792 }
5260325f 793 /* Reinitialize the log (because of the fork above). */
1fe6a48f 794 log_init(__progname, options.log_level, options.log_facility, log_stderr);
5260325f 795
5260325f 796 /* Initialize the random number generator. */
797 arc4random_stir();
798
799 /* Chdir to the root directory so that the current disk can be
800 unmounted if desired. */
801 chdir("/");
1d3c30db 802
803 /* ignore SIGPIPE */
804 signal(SIGPIPE, SIG_IGN);
5260325f 805
5260325f 806 /* Start listening for a socket, unless started from inetd. */
807 if (inetd_flag) {
ec1f12d3 808 int s1;
5260325f 809 s1 = dup(0); /* Make sure descriptors 0, 1, and 2 are in use. */
ec1f12d3 810 dup(s1);
5260325f 811 sock_in = dup(0);
812 sock_out = dup(1);
4c8722d9 813 startup_pipe = -1;
a306f2dd 814 /*
815 * We intentionally do not close the descriptors 0, 1, and 2
816 * as our code for setting the descriptors won\'t work if
817 * ttyfd happens to be one of those.
818 */
5260325f 819 debug("inetd sockets after dupping: %d, %d", sock_in, sock_out);
fa08c86b 820 if (options.protocol & SSH_PROTO_1)
cb7bd922 821 generate_ephemeral_server_key();
5260325f 822 } else {
48e671d5 823 for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
824 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
825 continue;
826 if (num_listen_socks >= MAX_LISTEN_SOCKS)
827 fatal("Too many listen sockets. "
828 "Enlarge MAX_LISTEN_SOCKS");
829 if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
830 ntop, sizeof(ntop), strport, sizeof(strport),
831 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
832 error("getnameinfo failed");
833 continue;
834 }
835 /* Create socket for listening. */
836 listen_sock = socket(ai->ai_family, SOCK_STREAM, 0);
837 if (listen_sock < 0) {
838 /* kernel may not support ipv6 */
839 verbose("socket: %.100s", strerror(errno));
840 continue;
841 }
842 if (fcntl(listen_sock, F_SETFL, O_NONBLOCK) < 0) {
843 error("listen_sock O_NONBLOCK: %s", strerror(errno));
844 close(listen_sock);
845 continue;
846 }
847 /*
848 * Set socket options. We try to make the port
849 * reusable and have it close as fast as possible
850 * without waiting in unnecessary wait states on
851 * close.
852 */
853 setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
854 (void *) &on, sizeof(on));
855 linger.l_onoff = 1;
856 linger.l_linger = 5;
857 setsockopt(listen_sock, SOL_SOCKET, SO_LINGER,
858 (void *) &linger, sizeof(linger));
859
860 debug("Bind to port %s on %s.", strport, ntop);
861
862 /* Bind the socket to the desired port. */
32ced054 863 if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) {
864 if (!ai->ai_next)
865 error("Bind to port %s on %s failed: %.200s.",
866 strport, ntop, strerror(errno));
48e671d5 867 close(listen_sock);
868 continue;
869 }
870 listen_socks[num_listen_socks] = listen_sock;
871 num_listen_socks++;
872
873 /* Start listening on the port. */
874 log("Server listening on %s port %s.", ntop, strport);
875 if (listen(listen_sock, 5) < 0)
876 fatal("listen: %.100s", strerror(errno));
877
5260325f 878 }
48e671d5 879 freeaddrinfo(options.listen_addrs);
880
881 if (!num_listen_socks)
882 fatal("Cannot bind any address.");
883
5260325f 884 if (!debug_flag) {
aa3378df 885 /*
97fb6912 886 * Record our pid in /var/run/sshd.pid to make it
887 * easier to kill the correct sshd. We don't want to
888 * do this before the bind above because the bind will
aa3378df 889 * fail if there already is a daemon, and this will
890 * overwrite any old pid in the file.
891 */
3c62e7eb 892 f = fopen(options.pid_file, "wb");
5260325f 893 if (f) {
1e3b8b07 894 fprintf(f, "%u\n", (u_int) getpid());
5260325f 895 fclose(f);
896 }
8efc0c15 897 }
59c97189 898 if (options.protocol & SSH_PROTO_1)
cb7bd922 899 generate_ephemeral_server_key();
5260325f 900
5260325f 901 /* Arrange to restart on SIGHUP. The handler needs listen_sock. */
902 signal(SIGHUP, sighup_handler);
089fbbd2 903
5260325f 904 signal(SIGTERM, sigterm_handler);
905 signal(SIGQUIT, sigterm_handler);
906
907 /* Arrange SIGCHLD to be caught. */
908 signal(SIGCHLD, main_sigchld_handler);
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));
944 if (key_used && key_do_regen) {
cb7bd922 945 generate_ephemeral_server_key();
59c97189 946 key_used = 0;
947 key_do_regen = 0;
48e671d5 948 }
59c97189 949 if (ret < 0)
950 continue;
951
089fbbd2 952 for (i = 0; i < options.max_startups; i++)
953 if (startup_pipes[i] != -1 &&
954 FD_ISSET(startup_pipes[i], fdset)) {
955 /*
956 * the read end of the pipe is ready
957 * if the child has closed the pipe
8abcdba4 958 * after successful authentication
089fbbd2 959 * or if the child has died
960 */
961 close(startup_pipes[i]);
962 startup_pipes[i] = -1;
963 startups--;
964 }
48e671d5 965 for (i = 0; i < num_listen_socks; i++) {
966 if (!FD_ISSET(listen_socks[i], fdset))
5260325f 967 continue;
089fbbd2 968 fromlen = sizeof(from);
969 newsock = accept(listen_socks[i], (struct sockaddr *)&from,
970 &fromlen);
971 if (newsock < 0) {
972 if (errno != EINTR && errno != EWOULDBLOCK)
973 error("accept: %.100s", strerror(errno));
974 continue;
975 }
976 if (fcntl(newsock, F_SETFL, 0) < 0) {
977 error("newsock del O_NONBLOCK: %s", strerror(errno));
978 continue;
979 }
c345cf9d 980 if (drop_connection(startups) == 1) {
981 debug("drop connection #%d", startups);
089fbbd2 982 close(newsock);
983 continue;
984 }
985 if (pipe(startup_p) == -1) {
986 close(newsock);
987 continue;
988 }
989
990 for (j = 0; j < options.max_startups; j++)
991 if (startup_pipes[j] == -1) {
992 startup_pipes[j] = startup_p[0];
993 if (maxfd < startup_p[0])
994 maxfd = startup_p[0];
995 startups++;
996 break;
997 }
2b87da3b 998
aa3378df 999 /*
089fbbd2 1000 * Got connection. Fork a child to handle it, unless
1001 * we are in debugging mode.
aa3378df 1002 */
089fbbd2 1003 if (debug_flag) {
aa3378df 1004 /*
089fbbd2 1005 * In debugging mode. Close the listening
1006 * socket, and start processing the
1007 * connection without forking.
aa3378df 1008 */
089fbbd2 1009 debug("Server will not fork when running in debugging mode.");
48e671d5 1010 close_listen_socks();
5260325f 1011 sock_in = newsock;
1012 sock_out = newsock;
5540ea9b 1013 startup_pipe = -1;
3f7a7e4a 1014 pid = getpid();
5260325f 1015 break;
089fbbd2 1016 } else {
1017 /*
1018 * Normal production daemon. Fork, and have
1019 * the child process the connection. The
1020 * parent continues listening.
1021 */
1022 if ((pid = fork()) == 0) {
1023 /*
1024 * Child. Close the listening and max_startup
1025 * sockets. Start using the accepted socket.
1026 * Reinitialize logging (since our pid has
1027 * changed). We break out of the loop to handle
1028 * the connection.
1029 */
1030 startup_pipe = startup_p[1];
1031 for (j = 0; j < options.max_startups; j++)
1032 if (startup_pipes[j] != -1)
1033 close(startup_pipes[j]);
1034 close_listen_socks();
1035 sock_in = newsock;
1036 sock_out = newsock;
1fe6a48f 1037 log_init(__progname, options.log_level, options.log_facility, log_stderr);
089fbbd2 1038 break;
1039 }
5260325f 1040 }
5260325f 1041
089fbbd2 1042 /* Parent. Stay in the loop. */
1043 if (pid < 0)
1044 error("fork: %.100s", strerror(errno));
1045 else
1046 debug("Forked child %d.", pid);
5260325f 1047
089fbbd2 1048 close(startup_p[1]);
5260325f 1049
089fbbd2 1050 /* Mark that the key has been used (it was "given" to the child). */
59c97189 1051 if ((options.protocol & SSH_PROTO_1) &&
1052 key_used == 0) {
1053 /* Schedule server key regeneration alarm. */
1054 signal(SIGALRM, key_regeneration_alarm);
1055 alarm(options.key_regeneration_time);
1056 key_used = 1;
1057 }
5260325f 1058
089fbbd2 1059 arc4random_stir();
1060
1061 /* Close the new socket (the child is now taking care of it). */
1062 close(newsock);
1063 }
48e671d5 1064 /* child process check (or debug mode) */
1065 if (num_listen_socks < 0)
1066 break;
5260325f 1067 }
1068 }
8efc0c15 1069
5260325f 1070 /* This is the child processing a new connection. */
1071
aa3378df 1072 /*
1073 * Disable the key regeneration alarm. We will not regenerate the
1074 * key since we are no longer in a position to give it to anyone. We
1075 * will not restart on SIGHUP since it no longer makes sense.
1076 */
5260325f 1077 alarm(0);
1078 signal(SIGALRM, SIG_DFL);
1079 signal(SIGHUP, SIG_DFL);
1080 signal(SIGTERM, SIG_DFL);
1081 signal(SIGQUIT, SIG_DFL);
1082 signal(SIGCHLD, SIG_DFL);
9aaf9be4 1083 signal(SIGINT, SIG_DFL);
5260325f 1084
aa3378df 1085 /*
1086 * Set socket options for the connection. We want the socket to
1087 * close as fast as possible without waiting for anything. If the
1088 * connection is not a socket, these will do nothing.
1089 */
1090 /* setsockopt(sock_in, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on)); */
5260325f 1091 linger.l_onoff = 1;
1092 linger.l_linger = 5;
1093 setsockopt(sock_in, SOL_SOCKET, SO_LINGER, (void *) &linger, sizeof(linger));
1094
b5c334cc 1095 /* Set keepalives if requested. */
1096 if (options.keepalives &&
1097 setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, (void *)&on,
1098 sizeof(on)) < 0)
1099 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
1100
aa3378df 1101 /*
1102 * Register our connection. This turns encryption off because we do
1103 * not have a key.
1104 */
5260325f 1105 packet_set_connection(sock_in, sock_out);
1106
1107 remote_port = get_remote_port();
1108 remote_ip = get_remote_ipaddr();
1109
1110 /* Check whether logins are denied from this host. */
1111#ifdef LIBWRAP
48e671d5 1112 /* XXX LIBWRAP noes not know about IPv6 */
5260325f 1113 {
1114 struct request_info req;
8efc0c15 1115
1fe6a48f 1116 request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, NULL);
5260325f 1117 fromhost(&req);
8efc0c15 1118
5260325f 1119 if (!hosts_access(&req)) {
563834bb 1120 refuse(&req);
5260325f 1121 close(sock_in);
1122 close(sock_out);
5260325f 1123 }
48e671d5 1124/*XXX IPv6 verbose("Connection from %.500s port %d", eval_client(&req), remote_port); */
8efc0c15 1125 }
48e671d5 1126#endif /* LIBWRAP */
5260325f 1127 /* Log the connection. */
1128 verbose("Connection from %.500s port %d", remote_ip, remote_port);
8efc0c15 1129
aa3378df 1130 /*
1131 * We don\'t want to listen forever unless the other side
1132 * successfully authenticates itself. So we set up an alarm which is
1133 * cleared after successful authentication. A limit of zero
1134 * indicates no limit. Note that we don\'t set the alarm in debugging
1135 * mode; it is just annoying to have the server exit just when you
1136 * are about to discover the bug.
1137 */
5260325f 1138 signal(SIGALRM, grace_alarm_handler);
1139 if (!debug_flag)
1140 alarm(options.login_grace_time);
1141
7368a6c8 1142 sshd_exchange_identification(sock_in, sock_out);
aa3378df 1143 /*
6ffc9c88 1144 * Check that the connection comes from a privileged port.
1145 * Rhosts-Authentication only makes sense from priviledged
aa3378df 1146 * programs. Of course, if the intruder has root access on his local
1147 * machine, he can connect from any port. So do not use these
1148 * authentication methods from machines that you do not trust.
1149 */
5260325f 1150 if (remote_port >= IPPORT_RESERVED ||
1151 remote_port < IPPORT_RESERVED / 2) {
6ffc9c88 1152 debug("Rhosts Authentication disabled, "
fa08c86b 1153 "originating port not trusted.");
5260325f 1154 options.rhosts_authentication = 0;
5260325f 1155 }
48e671d5 1156#ifdef KRB4
1157 if (!packet_connection_is_ipv4() &&
1158 options.kerberos_authentication) {
1159 debug("Kerberos Authentication disabled, only available for IPv4.");
1160 options.kerberos_authentication = 0;
1161 }
1162#endif /* KRB4 */
abf1f107 1163#ifdef AFS
1164 /* If machine has AFS, set process authentication group. */
1165 if (k_hasafs()) {
1166 k_setpag();
1167 k_unlog();
1168 }
1169#endif /* AFS */
48e671d5 1170
5260325f 1171 packet_set_nonblocking();
1172
7b2ea3a1 1173 /* perform the key exchange */
7b2ea3a1 1174 /* authenticate user and start session */
e78a59f5 1175 if (compat20) {
1176 do_ssh2_kex();
1177 do_authentication2();
1178 } else {
1179 do_ssh1_kex();
1180 do_authentication();
1181 }
8efc0c15 1182
1183#ifdef KRB4
5260325f 1184 /* Cleanup user's ticket cache file. */
1185 if (options.kerberos_ticket_cleanup)
1186 (void) dest_tkt();
8efc0c15 1187#endif /* KRB4 */
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 */
e7c0f9d5 1203void
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;
8efc0c15 1264#ifdef KRB4
5260325f 1265 if (options.kerberos_authentication)
1266 auth_mask |= 1 << SSH_AUTH_KERBEROS;
8efc0c15 1267#endif
1268#ifdef AFS
5260325f 1269 if (options.kerberos_tgt_passing)
1270 auth_mask |= 1 << SSH_PASS_KERBEROS_TGT;
1271 if (options.afs_token_passing)
1272 auth_mask |= 1 << SSH_PASS_AFS_TOKEN;
8efc0c15 1273#endif
5ba55ada 1274 if (options.challenge_response_authentication == 1)
5260325f 1275 auth_mask |= 1 << SSH_AUTH_TIS;
5260325f 1276 if (options.password_authentication)
1277 auth_mask |= 1 << SSH_AUTH_PASSWORD;
1278 packet_put_int(auth_mask);
1279
1280 /* Send the packet and wait for it to be sent. */
1281 packet_send();
1282 packet_write_wait();
1283
fa08c86b 1284 debug("Sent %d bit server key and %d bit host key.",
1285 BN_num_bits(sensitive_data.server_key->rsa->n),
1286 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
5260325f 1287
1288 /* Read clients reply (cipher type and session key). */
1289 packet_read_expect(&plen, SSH_CMSG_SESSION_KEY);
1290
2d86a6cc 1291 /* Get cipher type and check whether we accept this. */
5260325f 1292 cipher_type = packet_get_char();
1293
94ec8c6b 1294 if (!(cipher_mask_ssh1(0) & (1 << cipher_type)))
2d86a6cc 1295 packet_disconnect("Warning: client selects unsupported cipher.");
1296
5260325f 1297 /* Get check bytes from the packet. These must match those we
1298 sent earlier with the public key packet. */
1299 for (i = 0; i < 8; i++)
7b2ea3a1 1300 if (cookie[i] != packet_get_char())
5260325f 1301 packet_disconnect("IP Spoofing check bytes do not match.");
1302
1303 debug("Encryption type: %.200s", cipher_name(cipher_type));
1304
1305 /* Get the encrypted integer. */
1306 session_key_int = BN_new();
1307 packet_get_bignum(session_key_int, &slen);
1308
5260325f 1309 protocol_flags = packet_get_int();
1310 packet_set_protocol_flags(protocol_flags);
1311
1312 packet_integrity_check(plen, 1 + 8 + slen + 4, SSH_CMSG_SESSION_KEY);
1313
aa3378df 1314 /*
1315 * Decrypt it using our private server key and private host key (key
1316 * with larger modulus first).
1317 */
fa08c86b 1318 if (BN_cmp(sensitive_data.server_key->rsa->n, sensitive_data.ssh1_host_key->rsa->n) > 0) {
46aa2d1f 1319 /* Server key has bigger modulus. */
fa08c86b 1320 if (BN_num_bits(sensitive_data.server_key->rsa->n) <
1321 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1322 fatal("do_connection: %s: server_key %d < host_key %d + SSH_KEY_BITS_RESERVED %d",
1323 get_remote_ipaddr(),
1324 BN_num_bits(sensitive_data.server_key->rsa->n),
1325 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1326 SSH_KEY_BITS_RESERVED);
5260325f 1327 }
46aa2d1f 1328 if (rsa_private_decrypt(session_key_int, session_key_int,
1329 sensitive_data.server_key->rsa) <= 0)
1330 rsafail++;
1331 if (rsa_private_decrypt(session_key_int, session_key_int,
1332 sensitive_data.ssh1_host_key->rsa) <= 0)
1333 rsafail++;
5260325f 1334 } else {
1335 /* Host key has bigger modulus (or they are equal). */
fa08c86b 1336 if (BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) <
1337 BN_num_bits(sensitive_data.server_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1338 fatal("do_connection: %s: host_key %d < server_key %d + SSH_KEY_BITS_RESERVED %d",
1339 get_remote_ipaddr(),
1340 BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1341 BN_num_bits(sensitive_data.server_key->rsa->n),
1342 SSH_KEY_BITS_RESERVED);
5260325f 1343 }
46aa2d1f 1344 if (rsa_private_decrypt(session_key_int, session_key_int,
1345 sensitive_data.ssh1_host_key->rsa) < 0)
1346 rsafail++;
1347 if (rsa_private_decrypt(session_key_int, session_key_int,
1348 sensitive_data.server_key->rsa) < 0)
1349 rsafail++;
5260325f 1350 }
aa3378df 1351 /*
1352 * Extract session key from the decrypted integer. The key is in the
1353 * least significant 256 bits of the integer; the first byte of the
1354 * key is in the highest bits.
1355 */
46aa2d1f 1356 if (!rsafail) {
1357 BN_mask_bits(session_key_int, sizeof(session_key) * 8);
1358 len = BN_num_bytes(session_key_int);
1359 if (len < 0 || len > sizeof(session_key)) {
1360 error("do_connection: bad session key len from %s: "
5ca51e19 1361 "session_key_int %d > sizeof(session_key) %lu",
1362 get_remote_ipaddr(), len, (u_long)sizeof(session_key));
46aa2d1f 1363 rsafail++;
1364 } else {
1365 memset(session_key, 0, sizeof(session_key));
1366 BN_bn2bin(session_key_int,
1367 session_key + sizeof(session_key) - len);
00be5382 1368
1369 compute_session_id(session_id, cookie,
1370 sensitive_data.ssh1_host_key->rsa->n,
1371 sensitive_data.server_key->rsa->n);
1372 /*
1373 * Xor the first 16 bytes of the session key with the
1374 * session id.
1375 */
1376 for (i = 0; i < 16; i++)
1377 session_key[i] ^= session_id[i];
46aa2d1f 1378 }
1379 }
1380 if (rsafail) {
00be5382 1381 int bytes = BN_num_bytes(session_key_int);
1382 char *buf = xmalloc(bytes);
1383 MD5_CTX md;
1384
46aa2d1f 1385 log("do_connection: generating a fake encryption key");
00be5382 1386 BN_bn2bin(session_key_int, buf);
1387 MD5_Init(&md);
1388 MD5_Update(&md, buf, bytes);
1389 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1390 MD5_Final(session_key, &md);
1391 MD5_Init(&md);
1392 MD5_Update(&md, session_key, 16);
1393 MD5_Update(&md, buf, bytes);
1394 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1395 MD5_Final(session_key + 16, &md);
1396 memset(buf, 0, bytes);
1397 xfree(buf);
0572fe75 1398 for (i = 0; i < 16; i++)
1399 session_id[i] = session_key[i] ^ session_key[i + 16];
46aa2d1f 1400 }
00be5382 1401 /* Destroy the private and public keys. They will no longer be needed. */
1402 destroy_sensitive_data();
1403
7b2ea3a1 1404 /* Destroy the decrypted integer. It is no longer needed. */
1405 BN_clear_free(session_key_int);
1406
5260325f 1407 /* Set the session key. From this on all communications will be encrypted. */
1408 packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, cipher_type);
1409
1410 /* Destroy our copy of the session key. It is no longer needed. */
1411 memset(session_key, 0, sizeof(session_key));
1412
1413 debug("Received session key; encryption turned on.");
1414
1415 /* Send an acknowledgement packet. Note that this packet is sent encrypted. */
1416 packet_start(SSH_SMSG_SUCCESS);
1417 packet_send();
1418 packet_write_wait();
5260325f 1419}
e78a59f5 1420
1421/*
1422 * SSH2 key exchange: diffie-hellman-group1-sha1
1423 */
1424void
1e3b8b07 1425do_ssh2_kex(void)
e78a59f5 1426{
e78a59f5 1427 Kex *kex;
e78a59f5 1428
a8be9f80 1429 if (options.ciphers != NULL) {
6ae2364d 1430 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
a8be9f80 1431 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
1432 }
1ad64a93 1433 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
1434 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
1435 myproposal[PROPOSAL_ENC_ALGS_STOC] =
1436 compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
1437
b2552997 1438 if (options.macs != NULL) {
1439 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
1440 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
1441 }
fa08c86b 1442 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = list_hostkey_types();
1443
7a37c112 1444 /* start key exchange */
d8ee838b 1445 kex = kex_setup(myproposal);
a5c9ffdb 1446 kex->server = 1;
1447 kex->client_version_string=client_version_string;
1448 kex->server_version_string=server_version_string;
1449 kex->load_host_key=&get_hostkey_by_type;
94ec8c6b 1450
7a37c112 1451 xxx_kex = kex;
1452
c422989b 1453 dispatch_run(DISPATCH_BLOCK, &kex->done, kex);
94ec8c6b 1454
d1ac6175 1455 session_id2 = kex->session_id;
1456 session_id2_len = kex->session_id_len;
1457
94ec8c6b 1458#ifdef DEBUG_KEXDH
1459 /* send 1st encrypted/maced/compressed message */
1460 packet_start(SSH2_MSG_IGNORE);
1461 packet_put_cstring("markus");
1462 packet_send();
1463 packet_write_wait();
1464#endif
a5c9ffdb 1465 debug("KEX done");
e78a59f5 1466}
This page took 0.399502 seconds and 5 git commands to generate.