2016-05-17 18:52:22 +00:00
|
|
|
/*
|
|
|
|
* Copyright 1995-2016 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"
|
2000-05-31 12:48:35 +00:00
|
|
|
|
2005-03-24 00:14:59 +00:00
|
|
|
#if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_WIN32)
|
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 */
|
2016-05-29 18:23:22 +00:00
|
|
|
# if defined(_MSC_VER) && defined(_WIN32_WINNT) && _WIN32_WINNT>=0x0601
|
2016-06-02 21:38:56 +00:00
|
|
|
# define RAND_WINDOWS_USE_BCRYPT
|
2016-05-29 18:38:37 +00:00
|
|
|
# endif
|
|
|
|
|
2016-06-02 21:38:56 +00:00
|
|
|
# ifdef RAND_WINDOWS_USE_BCRYPT
|
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
|
|
|
|
|
|
|
static void readtimer(void);
|
|
|
|
|
|
|
|
int RAND_poll(void)
|
|
|
|
{
|
2015-09-28 14:05:32 +00:00
|
|
|
MEMORYSTATUS mst;
|
2016-06-02 21:38:56 +00:00
|
|
|
# ifndef RAND_WINDOWS_USE_BCRYPT
|
2016-05-29 18:44:27 +00:00
|
|
|
HCRYPTPROV hProvider;
|
2016-05-29 18:23:22 +00:00
|
|
|
# endif
|
2015-01-22 03:40:55 +00:00
|
|
|
DWORD w;
|
2015-12-12 01:53:03 +00:00
|
|
|
BYTE buf[64];
|
2015-01-22 03:40:55 +00:00
|
|
|
|
2016-06-02 21:38:56 +00:00
|
|
|
# ifdef RAND_WINDOWS_USE_BCRYPT
|
|
|
|
if (BCryptGenRandom(NULL, buf, (ULONG)sizeof(buf), BCRYPT_USE_SYSTEM_PREFERRED_RNG) == STATUS_SUCCESS) {
|
2016-05-29 18:23:22 +00:00
|
|
|
RAND_add(buf, sizeof(buf), sizeof(buf));
|
|
|
|
}
|
|
|
|
# else
|
2015-12-12 01:53:03 +00:00
|
|
|
/* poll the CryptoAPI PRNG */
|
|
|
|
/* The CryptoAPI returns sizeof(buf) bytes of randomness */
|
2015-12-23 18:39:09 +00:00
|
|
|
if (CryptAcquireContextW(&hProvider, NULL, NULL, PROV_RSA_FULL, CRYPT_VERIFYCONTEXT | CRYPT_SILENT)) {
|
2016-05-29 18:44:27 +00:00
|
|
|
if (CryptGenRandom(hProvider, (DWORD)sizeof(buf), buf) != 0) {
|
2015-12-12 01:53:03 +00:00
|
|
|
RAND_add(buf, sizeof(buf), sizeof(buf));
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2015-12-12 01:53:03 +00:00
|
|
|
CryptReleaseContext(hProvider, 0);
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
|
|
|
|
2015-12-12 01:53:03 +00:00
|
|
|
/* poll the Pentium PRG with CryptoAPI */
|
2015-12-23 18:39:09 +00:00
|
|
|
if (CryptAcquireContextW(&hProvider, NULL, INTEL_DEF_PROV, PROV_INTEL_SEC, CRYPT_VERIFYCONTEXT | CRYPT_SILENT)) {
|
2016-05-29 18:44:27 +00:00
|
|
|
if (CryptGenRandom(hProvider, (DWORD)sizeof(buf), buf) != 0) {
|
2015-12-12 01:53:03 +00:00
|
|
|
RAND_add(buf, sizeof(buf), sizeof(buf));
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2015-12-12 01:53:03 +00:00
|
|
|
CryptReleaseContext(hProvider, 0);
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2016-05-29 18:23:22 +00:00
|
|
|
# endif
|
2015-01-22 03:40:55 +00:00
|
|
|
|
|
|
|
/* timer data */
|
|
|
|
readtimer();
|
|
|
|
|
|
|
|
/* memory usage statistics */
|
2015-09-28 14:05:32 +00:00
|
|
|
GlobalMemoryStatus(&mst);
|
|
|
|
RAND_add(&mst, sizeof(mst), 1);
|
2015-01-22 03:40:55 +00:00
|
|
|
|
|
|
|
/* process ID */
|
|
|
|
w = GetCurrentProcessId();
|
|
|
|
RAND_add(&w, sizeof(w), 1);
|
|
|
|
|
|
|
|
return (1);
|
|
|
|
}
|
2000-05-31 12:48:35 +00:00
|
|
|
|
2016-06-27 10:51:50 +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();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2000-07-19 21:35:35 +00:00
|
|
|
/* feed timing information to the PRNG */
|
|
|
|
static void readtimer(void)
|
|
|
|
{
|
2015-01-22 03:40:55 +00:00
|
|
|
DWORD w;
|
|
|
|
LARGE_INTEGER l;
|
|
|
|
static int have_perfc = 1;
|
|
|
|
# if defined(_MSC_VER) && defined(_M_X86)
|
|
|
|
static int have_tsc = 1;
|
|
|
|
DWORD cyclecount;
|
|
|
|
|
|
|
|
if (have_tsc) {
|
|
|
|
__try {
|
|
|
|
__asm {
|
|
|
|
_emit 0x0f _emit 0x31 mov cyclecount, eax}
|
|
|
|
RAND_add(&cyclecount, sizeof(cyclecount), 1);
|
|
|
|
}
|
|
|
|
__except(EXCEPTION_EXECUTE_HANDLER) {
|
|
|
|
have_tsc = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
# else
|
|
|
|
# define have_tsc 0
|
|
|
|
# endif
|
2000-07-19 21:35:35 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
if (have_perfc) {
|
|
|
|
if (QueryPerformanceCounter(&l) == 0)
|
|
|
|
have_perfc = 0;
|
|
|
|
else
|
|
|
|
RAND_add(&l, sizeof(l), 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!have_tsc && !have_perfc) {
|
|
|
|
w = GetTickCount();
|
|
|
|
RAND_add(&w, sizeof(w), 0);
|
|
|
|
}
|
2000-07-19 21:35:35 +00:00
|
|
|
}
|
|
|
|
|
2000-05-31 12:48:35 +00:00
|
|
|
#endif
|