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