Browse Source

Merge pull request #8724 from Chocobo1/rand

Use RNG provided by OS
adaptive-webui-19844
sledgehammer999 7 years ago committed by GitHub
parent
commit
b78899cb9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 124
      src/base/utils/random.cpp
  2. 3
      src/base/utils/random.h

124
src/base/utils/random.cpp

@ -29,47 +29,113 @@
#include "random.h" #include "random.h"
#include <cassert> #include <limits>
#include <chrono>
#include <random> #include <random>
#include <QtGlobal> #include <QtGlobal>
#ifdef Q_OS_MAC #ifdef Q_OS_WIN
#include <QThreadStorage> #ifndef NOMINMAX
#define NOMINMAX
#endif
#include <Windows.h>
#include <Ntsecapi.h>
#else // Q_OS_WIN
#include <cstdio>
#endif #endif
// on some platform `std::random_device` may generate the same number sequence #include "misc.h"
static bool hasTrueRandomDevice{ std::random_device{}() != std::random_device{}() };
uint32_t Utils::Random::rand(const uint32_t min, const uint32_t max) namespace
{ {
#ifdef Q_OS_MAC // workaround for Apple xcode: https://stackoverflow.com/a/29929949 #ifdef Q_OS_WIN
static QThreadStorage<std::mt19937> generator; class RandomLayer
if (!generator.hasLocalData()) {
generator.localData().seed( // need to satisfy UniformRandomBitGenerator requirements
hasTrueRandomDevice public:
? std::random_device{}() using result_type = uint32_t;
: (std::random_device::result_type) std::chrono::system_clock::now().time_since_epoch().count()
); RandomLayer()
#else : m_rtlGenRandom {Utils::Misc::loadWinAPI<PRTLGENRANDOM>("Advapi32.dll", "SystemFunction036")}
static thread_local std::mt19937 generator{ {
hasTrueRandomDevice if (!m_rtlGenRandom)
? std::random_device{}() qFatal("Failed to load RtlGenRandom()");
: static_cast<std::random_device::result_type>(std::chrono::system_clock::now().time_since_epoch().count()) }
static constexpr result_type min()
{
return std::numeric_limits<result_type>::min();
}
static constexpr result_type max()
{
return std::numeric_limits<result_type>::max();
}
result_type operator()()
{
result_type buf = 0;
const bool result = m_rtlGenRandom(&buf, sizeof(buf));
if (!result)
qFatal("RtlGenRandom() failed");
return buf;
}
private:
using PRTLGENRANDOM = BOOLEAN (WINAPI *)(PVOID, ULONG);
const PRTLGENRANDOM m_rtlGenRandom;
};
#else // Q_OS_WIN
class RandomLayer
{
// need to satisfy UniformRandomBitGenerator requirements
public:
using result_type = uint32_t;
RandomLayer()
: m_randDev {fopen("/dev/urandom", "rb")}
{
if (!m_randDev)
qFatal("Failed to open /dev/urandom");
}
~RandomLayer()
{
fclose(m_randDev);
}
static constexpr result_type min()
{
return std::numeric_limits<result_type>::min();
}
static constexpr result_type max()
{
return std::numeric_limits<result_type>::max();
}
result_type operator()() const
{
result_type buf = 0;
if (fread(&buf, sizeof(buf), 1, m_randDev) != 1)
qFatal("Read /dev/urandom error");
return buf;
}
private:
FILE *m_randDev;
}; };
#endif #endif
}
// better replacement for `std::rand`, don't use this for real cryptography application uint32_t Utils::Random::rand(const uint32_t min, const uint32_t max)
// min <= returned_value <= max {
assert(min <= max); static RandomLayer layer;
// new distribution is cheap: http://stackoverflow.com/a/19036349 // new distribution is cheap: https://stackoverflow.com/a/19036349
std::uniform_int_distribution<uint32_t> uniform(min, max); std::uniform_int_distribution<uint32_t> uniform(min, max);
#ifdef Q_OS_MAC return uniform(layer);
return uniform(generator.localData());
#else
return uniform(generator);
#endif
} }

3
src/base/utils/random.h

@ -31,13 +31,12 @@
#define UTILS_RANDOM_H #define UTILS_RANDOM_H
#include <cstdint> #include <cstdint>
#include <cstdlib>
namespace Utils namespace Utils
{ {
namespace Random namespace Random
{ {
uint32_t rand(uint32_t min = 0, uint32_t max = UINT32_MAX); uint32_t rand(const uint32_t min = 0, const uint32_t max = UINT32_MAX);
} }
} }

Loading…
Cancel
Save