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