2016-05-17 18:52:22 +00:00
|
|
|
/*
|
2017-07-18 13:39:21 +00:00
|
|
|
* Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved.
|
2000-05-31 12:48:35 +00:00
|
|
|
*
|
2016-05-17 18:52:22 +00:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
2000-05-31 12:48:35 +00:00
|
|
|
*/
|
|
|
|
|
2015-05-14 14:56:48 +00:00
|
|
|
#include "internal/cryptlib.h"
|
2000-07-19 21:35:35 +00:00
|
|
|
#include <openssl/rand.h>
|
|
|
|
#include "rand_lcl.h"
|
2005-03-24 00:14:59 +00:00
|
|
|
#if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_WIN32)
|
2017-07-18 13:39:21 +00:00
|
|
|
|
|
|
|
# ifndef OPENSSL_RAND_SEED_OS
|
|
|
|
# error "Unsupported seeding method configured; must be os"
|
|
|
|
# endif
|
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
# include <windows.h>
|
2016-05-29 18:38:37 +00:00
|
|
|
/* On Windows 7 or higher use BCrypt instead of the legacy CryptoAPI */
|
2017-07-18 13:39:21 +00:00
|
|
|
# if defined(_MSC_VER) && defined(_WIN32_WINNT) && _WIN32_WINNT >= 0x0601
|
|
|
|
# define USE_BCRYPTGENRANDOM
|
2016-05-29 18:38:37 +00:00
|
|
|
# endif
|
|
|
|
|
2017-07-18 13:39:21 +00:00
|
|
|
# ifdef USE_BCRYPTGENRANDOM
|
2016-05-29 18:23:22 +00:00
|
|
|
# include <bcrypt.h>
|
|
|
|
# pragma comment(lib, "bcrypt.lib")
|
2016-06-02 21:38:56 +00:00
|
|
|
# ifndef STATUS_SUCCESS
|
|
|
|
# define STATUS_SUCCESS ((NTSTATUS)0x00000000L)
|
|
|
|
# endif
|
2016-05-29 18:23:22 +00:00
|
|
|
# else
|
|
|
|
# include <wincrypt.h>
|
2015-01-22 03:40:55 +00:00
|
|
|
/*
|
|
|
|
* Intel hardware RNG CSP -- available from
|
2000-07-19 21:35:35 +00:00
|
|
|
* http://developer.intel.com/design/security/rng/redist_license.htm
|
|
|
|
*/
|
2016-05-29 18:23:22 +00:00
|
|
|
# define PROV_INTEL_SEC 22
|
|
|
|
# define INTEL_DEF_PROV L"Intel Hardware Cryptographic Service Provider"
|
|
|
|
# endif
|
2000-07-19 21:35:35 +00:00
|
|
|
|
2017-08-31 21:16:22 +00:00
|
|
|
size_t RAND_POOL_acquire_entropy(RAND_POOL *pool)
|
2000-07-19 21:35:35 +00:00
|
|
|
{
|
2017-07-18 13:39:21 +00:00
|
|
|
# ifndef USE_BCRYPTGENRANDOM
|
2016-05-29 18:44:27 +00:00
|
|
|
HCRYPTPROV hProvider;
|
2016-05-29 18:23:22 +00:00
|
|
|
# endif
|
2017-08-31 21:16:22 +00:00
|
|
|
unsigned char *buffer;
|
|
|
|
size_t bytes_needed;
|
|
|
|
size_t entropy_available = 0;
|
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
|
2017-07-18 13:39:21 +00:00
|
|
|
# ifdef OPENSSL_RAND_SEED_RDTSC
|
2017-08-31 21:16:22 +00:00
|
|
|
entropy_available = rand_acquire_entropy_from_tsc(pool);
|
|
|
|
if (entropy_available > 0)
|
|
|
|
return entropy_available;
|
2017-07-18 13:39:21 +00:00
|
|
|
# endif
|
2017-08-31 21:16:22 +00:00
|
|
|
|
2017-07-18 13:39:21 +00:00
|
|
|
# ifdef OPENSSL_RAND_SEED_RDCPU
|
2017-08-31 21:16:22 +00:00
|
|
|
entropy_available = rand_acquire_entropy_from_cpu(pool);
|
|
|
|
if (entropy_available > 0)
|
|
|
|
return entropy_available;
|
2017-07-18 13:39:21 +00:00
|
|
|
# endif
|
|
|
|
|
|
|
|
# ifdef USE_BCRYPTGENRANDOM
|
2017-08-31 21:16:22 +00:00
|
|
|
bytes_needed = RAND_POOL_bytes_needed(pool, 8 /*entropy_per_byte*/);
|
|
|
|
buffer = RAND_POOL_add_begin(pool, bytes_needed);
|
|
|
|
if (buffer != NULL) {
|
|
|
|
size_t bytes = 0;
|
|
|
|
if (BCryptGenRandom(NULL, buffer, bytes_needed,
|
|
|
|
BCRYPT_USE_SYSTEM_PREFERRED_RNG) == STATUS_SUCCESS)
|
|
|
|
bytes = bytes_needed;
|
|
|
|
|
|
|
|
entropy_available = RAND_POOL_add_end(pool, bytes, 8 * bytes);
|
2017-08-07 23:21:36 +00:00
|
|
|
}
|
2017-08-31 21:16:22 +00:00
|
|
|
if (entropy_available > 0)
|
|
|
|
return entropy_available;
|
2016-05-29 18:23:22 +00:00
|
|
|
# else
|
2017-08-31 21:16:22 +00:00
|
|
|
bytes_needed = RAND_POOL_bytes_needed(pool, 8 /*entropy_per_byte*/);
|
|
|
|
buffer = RAND_POOL_add_begin(pool, bytes_needed);
|
|
|
|
if (buffer != NULL) {
|
|
|
|
size_t bytes = 0;
|
|
|
|
/* poll the CryptoAPI PRNG */
|
|
|
|
if (CryptAcquireContextW(&hProvider, NULL, NULL, PROV_RSA_FULL,
|
|
|
|
CRYPT_VERIFYCONTEXT | CRYPT_SILENT) != 0) {
|
|
|
|
if (CryptGenRandom(hProvider, bytes_needed, buffer) != 0)
|
|
|
|
bytes = bytes_needed;
|
|
|
|
|
|
|
|
CryptReleaseContext(hProvider, 0);
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2017-08-31 21:16:22 +00:00
|
|
|
|
|
|
|
entropy_available = RAND_POOL_add_end(pool, bytes, 8 * bytes);
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2017-08-31 21:16:22 +00:00
|
|
|
if (entropy_available > 0)
|
|
|
|
return entropy_available;
|
|
|
|
|
|
|
|
bytes_needed = RAND_POOL_bytes_needed(pool, 8 /*entropy_per_byte*/);
|
|
|
|
buffer = RAND_POOL_add_begin(pool, bytes_needed);
|
|
|
|
if (buffer != NULL) {
|
|
|
|
size_t bytes = 0;
|
|
|
|
/* poll the Pentium PRG with CryptoAPI */
|
|
|
|
if (CryptAcquireContextW(&hProvider, NULL,
|
|
|
|
INTEL_DEF_PROV, PROV_INTEL_SEC,
|
|
|
|
CRYPT_VERIFYCONTEXT | CRYPT_SILENT) != 0) {
|
|
|
|
if (CryptGenRandom(hProvider, bytes_needed, buffer) != 0)
|
|
|
|
bytes = bytes_needed;
|
2015-01-22 03:40:55 +00:00
|
|
|
|
2017-08-31 21:16:22 +00:00
|
|
|
CryptReleaseContext(hProvider, 0);
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2017-08-31 21:16:22 +00:00
|
|
|
entropy_available = RAND_POOL_add_end(pool, bytes, 8 * bytes);
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2017-08-31 21:16:22 +00:00
|
|
|
if (entropy_available > 0)
|
|
|
|
return entropy_available;
|
2016-05-29 18:23:22 +00:00
|
|
|
# endif
|
2015-01-22 03:40:55 +00:00
|
|
|
|
2017-08-31 21:16:22 +00:00
|
|
|
return RAND_POOL_entropy_available(pool);
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2000-05-31 12:48:35 +00:00
|
|
|
|
2017-08-07 23:21:36 +00:00
|
|
|
# if OPENSSL_API_COMPAT < 0x10100000L
|
2016-05-16 19:30:41 +00:00
|
|
|
int RAND_event(UINT iMsg, WPARAM wParam, LPARAM lParam)
|
|
|
|
{
|
|
|
|
RAND_poll();
|
|
|
|
return RAND_status();
|
|
|
|
}
|
|
|
|
|
|
|
|
void RAND_screen(void)
|
|
|
|
{
|
|
|
|
RAND_poll();
|
|
|
|
}
|
2017-08-07 23:21:36 +00:00
|
|
|
# endif
|
2016-05-16 19:30:41 +00:00
|
|
|
|
2000-05-31 12:48:35 +00:00
|
|
|
#endif
|