2000-04-03 04:50:43 +00:00
|
|
|
/*
|
2001-12-23 14:41:47 +00:00
|
|
|
* Copyright (c) 2001 Damien Miller. All rights reserved.
|
2000-04-03 04:50:43 +00:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "includes.h"
|
|
|
|
|
2018-11-23 03:11:20 +00:00
|
|
|
#define RANDOM_SEED_SIZE 48
|
|
|
|
|
2015-01-14 15:21:31 +00:00
|
|
|
#ifdef WITH_OPENSSL
|
|
|
|
|
2006-03-15 20:21:35 +00:00
|
|
|
#include <sys/types.h>
|
2011-05-05 03:48:37 +00:00
|
|
|
|
|
|
|
#include <errno.h>
|
2006-09-28 09:40:20 +00:00
|
|
|
#include <signal.h>
|
2019-07-23 12:25:44 +00:00
|
|
|
#include <stdlib.h>
|
2011-05-05 03:48:37 +00:00
|
|
|
#include <string.h>
|
2007-03-12 20:35:38 +00:00
|
|
|
#include <unistd.h>
|
2006-07-11 09:01:51 +00:00
|
|
|
|
2000-04-16 02:31:48 +00:00
|
|
|
#include <openssl/rand.h>
|
2001-02-26 22:20:57 +00:00
|
|
|
#include <openssl/crypto.h>
|
2005-09-27 12:46:32 +00:00
|
|
|
#include <openssl/err.h>
|
2000-04-03 04:50:43 +00:00
|
|
|
|
2014-07-02 05:28:02 +00:00
|
|
|
#include "openbsd-compat/openssl-compat.h"
|
|
|
|
|
2001-01-22 05:34:40 +00:00
|
|
|
#include "ssh.h"
|
2001-02-18 04:28:11 +00:00
|
|
|
#include "misc.h"
|
2001-01-22 05:34:40 +00:00
|
|
|
#include "xmalloc.h"
|
|
|
|
#include "atomicio.h"
|
2001-01-22 21:06:19 +00:00
|
|
|
#include "pathnames.h"
|
2001-01-22 05:34:40 +00:00
|
|
|
#include "log.h"
|
2018-07-10 09:39:52 +00:00
|
|
|
#include "sshbuf.h"
|
|
|
|
#include "ssherr.h"
|
2001-01-22 05:34:40 +00:00
|
|
|
|
2000-06-07 12:20:23 +00:00
|
|
|
/*
|
2001-12-23 14:41:47 +00:00
|
|
|
* Portable OpenSSH PRNG seeding:
|
2003-11-21 12:48:55 +00:00
|
|
|
* If OpenSSL has not "internally seeded" itself (e.g. pulled data from
|
2011-05-05 03:48:37 +00:00
|
|
|
* /dev/random), then collect RANDOM_SEED_SIZE bytes of randomness from
|
|
|
|
* PRNGd.
|
2000-06-07 12:20:23 +00:00
|
|
|
*/
|
2002-01-22 10:57:53 +00:00
|
|
|
#ifndef OPENSSL_PRNG_ONLY
|
2011-05-05 03:48:37 +00:00
|
|
|
|
2005-09-27 12:46:32 +00:00
|
|
|
void
|
2018-07-10 09:39:52 +00:00
|
|
|
rexec_send_rng_seed(struct sshbuf *m)
|
2005-09-27 12:46:32 +00:00
|
|
|
{
|
|
|
|
u_char buf[RANDOM_SEED_SIZE];
|
2018-07-10 09:39:52 +00:00
|
|
|
size_t len = sizeof(buf);
|
|
|
|
int r;
|
2005-09-27 12:46:32 +00:00
|
|
|
|
|
|
|
if (RAND_bytes(buf, sizeof(buf)) <= 0) {
|
|
|
|
error("Couldn't obtain random bytes (error %ld)",
|
|
|
|
ERR_get_error());
|
2018-07-10 09:39:52 +00:00
|
|
|
len = 0;
|
|
|
|
}
|
|
|
|
if ((r = sshbuf_put_string(m, buf, len)) != 0)
|
|
|
|
fatal("%s: buffer error: %s", __func__, ssh_err(r));
|
|
|
|
explicit_bzero(buf, sizeof(buf));
|
2005-09-27 12:46:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2018-07-10 09:39:52 +00:00
|
|
|
rexec_recv_rng_seed(struct sshbuf *m)
|
2005-09-27 12:46:32 +00:00
|
|
|
{
|
2019-07-06 02:00:41 +00:00
|
|
|
const u_char *buf = NULL;
|
2018-07-10 09:39:52 +00:00
|
|
|
size_t len = 0;
|
|
|
|
int r;
|
2005-09-27 12:46:32 +00:00
|
|
|
|
2019-07-06 02:00:41 +00:00
|
|
|
if ((r = sshbuf_get_string_direct(m, &buf, &len)) != 0)
|
2018-07-10 09:39:52 +00:00
|
|
|
fatal("%s: buffer error: %s", __func__, ssh_err(r));
|
|
|
|
|
2019-07-06 02:00:41 +00:00
|
|
|
debug3("rexec_recv_rng_seed: seeding rng with %lu bytes",
|
|
|
|
(unsigned long)len);
|
2018-07-10 09:39:52 +00:00
|
|
|
RAND_add(buf, len, len);
|
2005-09-27 12:46:32 +00:00
|
|
|
}
|
2011-05-05 03:48:37 +00:00
|
|
|
#endif /* OPENSSL_PRNG_ONLY */
|
|
|
|
|
|
|
|
void
|
|
|
|
seed_rng(void)
|
|
|
|
{
|
|
|
|
unsigned char buf[RANDOM_SEED_SIZE];
|
2018-11-22 23:40:06 +00:00
|
|
|
|
|
|
|
/* Initialise libcrypto */
|
|
|
|
ssh_libcrypto_init();
|
|
|
|
|
2018-10-23 06:10:41 +00:00
|
|
|
if (!ssh_compatible_openssl(OPENSSL_VERSION_NUMBER,
|
|
|
|
OpenSSL_version_num()))
|
2011-05-05 03:48:37 +00:00
|
|
|
fatal("OpenSSL version mismatch. Built against %lx, you "
|
2018-10-23 06:10:41 +00:00
|
|
|
"have %lx", (u_long)OPENSSL_VERSION_NUMBER,
|
|
|
|
OpenSSL_version_num());
|
2011-05-05 03:48:37 +00:00
|
|
|
|
|
|
|
#ifndef OPENSSL_PRNG_ONLY
|
2018-11-22 23:40:06 +00:00
|
|
|
if (RAND_status() == 1)
|
2011-05-05 03:48:37 +00:00
|
|
|
debug3("RNG is ready, skipping seeding");
|
2018-11-22 23:40:06 +00:00
|
|
|
else {
|
|
|
|
if (seed_from_prngd(buf, sizeof(buf)) == -1)
|
|
|
|
fatal("Could not obtain seed from PRNGd");
|
|
|
|
RAND_add(buf, sizeof(buf), sizeof(buf));
|
2011-05-05 03:48:37 +00:00
|
|
|
}
|
|
|
|
#endif /* OPENSSL_PRNG_ONLY */
|
2018-11-22 23:40:06 +00:00
|
|
|
|
2011-05-05 03:48:37 +00:00
|
|
|
if (RAND_status() != 1)
|
|
|
|
fatal("PRNG is not seeded");
|
2018-11-22 23:40:06 +00:00
|
|
|
|
|
|
|
/* Ensure arc4random() is primed */
|
|
|
|
arc4random_buf(buf, sizeof(buf));
|
|
|
|
explicit_bzero(buf, sizeof(buf));
|
2011-05-05 03:48:37 +00:00
|
|
|
}
|
2015-01-14 15:21:31 +00:00
|
|
|
|
|
|
|
#else /* WITH_OPENSSL */
|
|
|
|
|
2019-07-23 12:25:44 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2019-10-02 00:51:15 +00:00
|
|
|
/* Actual initialisation is handled in arc4random() */
|
2015-01-14 15:21:31 +00:00
|
|
|
void
|
|
|
|
seed_rng(void)
|
|
|
|
{
|
2018-11-22 23:40:06 +00:00
|
|
|
unsigned char buf[RANDOM_SEED_SIZE];
|
|
|
|
|
|
|
|
/* Ensure arc4random() is primed */
|
|
|
|
arc4random_buf(buf, sizeof(buf));
|
|
|
|
explicit_bzero(buf, sizeof(buf));
|
2015-01-14 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* WITH_OPENSSL */
|