2000-04-03 12:50:43 +08:00
|
|
|
/*
|
2001-12-23 22:41:47 +08:00
|
|
|
* Copyright (c) 2001 Damien Miller. All rights reserved.
|
2000-04-03 12:50:43 +08: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 11:11:20 +08:00
|
|
|
#define RANDOM_SEED_SIZE 48
|
|
|
|
|
2015-01-14 23:21:31 +08:00
|
|
|
#ifdef WITH_OPENSSL
|
|
|
|
|
2006-03-16 04:21:35 +08:00
|
|
|
#include <sys/types.h>
|
2011-05-05 11:48:37 +08:00
|
|
|
|
|
|
|
#include <errno.h>
|
2006-09-28 17:40:20 +08:00
|
|
|
#include <signal.h>
|
2019-07-23 20:25:44 +08:00
|
|
|
#include <stdlib.h>
|
2011-05-05 11:48:37 +08:00
|
|
|
#include <string.h>
|
2007-03-13 04:35:38 +08:00
|
|
|
#include <unistd.h>
|
2006-07-11 17:01:51 +08:00
|
|
|
|
2000-04-16 10:31:48 +08:00
|
|
|
#include <openssl/rand.h>
|
2001-02-27 06:20:57 +08:00
|
|
|
#include <openssl/crypto.h>
|
2005-09-27 20:46:32 +08:00
|
|
|
#include <openssl/err.h>
|
2000-04-03 12:50:43 +08:00
|
|
|
|
2014-07-02 13:28:02 +08:00
|
|
|
#include "openbsd-compat/openssl-compat.h"
|
|
|
|
|
2001-01-22 13:34:40 +08:00
|
|
|
#include "ssh.h"
|
2001-02-18 12:28:11 +08:00
|
|
|
#include "misc.h"
|
2001-01-22 13:34:40 +08:00
|
|
|
#include "xmalloc.h"
|
|
|
|
#include "atomicio.h"
|
2001-01-23 05:06:19 +08:00
|
|
|
#include "pathnames.h"
|
2001-01-22 13:34:40 +08:00
|
|
|
#include "log.h"
|
2018-07-10 17:39:52 +08:00
|
|
|
#include "sshbuf.h"
|
|
|
|
#include "ssherr.h"
|
2001-01-22 13:34:40 +08:00
|
|
|
|
2000-06-07 20:20:23 +08:00
|
|
|
/*
|
2001-12-23 22:41:47 +08:00
|
|
|
* Portable OpenSSH PRNG seeding:
|
2003-11-21 20:48:55 +08:00
|
|
|
* If OpenSSL has not "internally seeded" itself (e.g. pulled data from
|
2011-05-05 11:48:37 +08:00
|
|
|
* /dev/random), then collect RANDOM_SEED_SIZE bytes of randomness from
|
|
|
|
* PRNGd.
|
2000-06-07 20:20:23 +08:00
|
|
|
*/
|
2011-05-05 11:48:37 +08:00
|
|
|
|
|
|
|
void
|
|
|
|
seed_rng(void)
|
|
|
|
{
|
|
|
|
unsigned char buf[RANDOM_SEED_SIZE];
|
2018-11-23 07:40:06 +08:00
|
|
|
|
|
|
|
/* Initialise libcrypto */
|
|
|
|
ssh_libcrypto_init();
|
|
|
|
|
2018-10-23 14:10:41 +08:00
|
|
|
if (!ssh_compatible_openssl(OPENSSL_VERSION_NUMBER,
|
|
|
|
OpenSSL_version_num()))
|
2011-05-05 11:48:37 +08:00
|
|
|
fatal("OpenSSL version mismatch. Built against %lx, you "
|
2018-10-23 14:10:41 +08:00
|
|
|
"have %lx", (u_long)OPENSSL_VERSION_NUMBER,
|
|
|
|
OpenSSL_version_num());
|
2011-05-05 11:48:37 +08:00
|
|
|
|
|
|
|
#ifndef OPENSSL_PRNG_ONLY
|
2018-11-23 07:40:06 +08:00
|
|
|
if (RAND_status() == 1)
|
2011-05-05 11:48:37 +08:00
|
|
|
debug3("RNG is ready, skipping seeding");
|
2018-11-23 07:40:06 +08: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 11:48:37 +08:00
|
|
|
}
|
|
|
|
#endif /* OPENSSL_PRNG_ONLY */
|
2018-11-23 07:40:06 +08:00
|
|
|
|
2011-05-05 11:48:37 +08:00
|
|
|
if (RAND_status() != 1)
|
|
|
|
fatal("PRNG is not seeded");
|
2018-11-23 07:40:06 +08:00
|
|
|
|
|
|
|
/* Ensure arc4random() is primed */
|
|
|
|
arc4random_buf(buf, sizeof(buf));
|
|
|
|
explicit_bzero(buf, sizeof(buf));
|
2011-05-05 11:48:37 +08:00
|
|
|
}
|
2015-01-14 23:21:31 +08:00
|
|
|
|
|
|
|
#else /* WITH_OPENSSL */
|
|
|
|
|
2019-07-23 20:25:44 +08:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2019-10-02 08:51:15 +08:00
|
|
|
/* Actual initialisation is handled in arc4random() */
|
2015-01-14 23:21:31 +08:00
|
|
|
void
|
|
|
|
seed_rng(void)
|
|
|
|
{
|
2018-11-23 07:40:06 +08:00
|
|
|
unsigned char buf[RANDOM_SEED_SIZE];
|
|
|
|
|
|
|
|
/* Ensure arc4random() is primed */
|
|
|
|
arc4random_buf(buf, sizeof(buf));
|
|
|
|
explicit_bzero(buf, sizeof(buf));
|
2015-01-14 23:21:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* WITH_OPENSSL */
|