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