2013-11-30 17:02:56 +00:00
|
|
|
#include <qpdf/SecureRandomDataProvider.hh>
|
|
|
|
|
|
|
|
#include <qpdf/qpdf-config.h>
|
|
|
|
#include <qpdf/QUtil.hh>
|
|
|
|
#ifdef _WIN32
|
2017-07-22 13:42:41 +00:00
|
|
|
# include <windows.h>
|
2013-11-30 17:02:56 +00:00
|
|
|
# include <direct.h>
|
|
|
|
# include <io.h>
|
|
|
|
# ifndef SKIP_OS_SECURE_RANDOM
|
2017-07-22 13:42:41 +00:00
|
|
|
# include <wincrypt.h>
|
2013-11-30 17:02:56 +00:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
SecureRandomDataProvider::SecureRandomDataProvider()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SecureRandomDataProvider::~SecureRandomDataProvider()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-11-30 17:25:01 +00:00
|
|
|
#ifdef SKIP_OS_SECURE_RANDOM
|
|
|
|
|
|
|
|
void
|
|
|
|
SecureRandomDataProvider::provideRandomData(unsigned char* data, size_t len)
|
|
|
|
{
|
|
|
|
throw std::logic_error("SecureRandomDataProvider::provideRandomData called when support was not compiled in");
|
|
|
|
}
|
|
|
|
|
|
|
|
RandomDataProvider*
|
|
|
|
SecureRandomDataProvider::getInstance()
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2013-11-30 17:02:56 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
|
|
|
|
class WindowsCryptProvider
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
WindowsCryptProvider()
|
|
|
|
{
|
2015-05-24 19:41:28 +00:00
|
|
|
if (!CryptAcquireContext(&crypt_prov,
|
|
|
|
"Container",
|
|
|
|
NULL,
|
|
|
|
PROV_RSA_FULL,
|
|
|
|
0))
|
2013-11-30 17:02:56 +00:00
|
|
|
{
|
2017-08-22 11:20:55 +00:00
|
|
|
#if ((defined(__GNUC__) && ((__GNUC__ * 100) + __GNUC_MINOR__) >= 406) || \
|
|
|
|
defined(__clang__))
|
2015-05-24 19:41:28 +00:00
|
|
|
# pragma GCC diagnostic push
|
|
|
|
# pragma GCC diagnostic ignored "-Wold-style-cast"
|
|
|
|
# pragma GCC diagnostic ignored "-Wsign-compare"
|
2019-06-21 03:35:23 +00:00
|
|
|
# pragma GCC diagnostic ignored "-Wsign-conversion"
|
2015-05-24 19:41:28 +00:00
|
|
|
#endif
|
|
|
|
if (GetLastError() == NTE_BAD_KEYSET)
|
2017-08-22 11:20:55 +00:00
|
|
|
#if ((defined(__GNUC__) && ((__GNUC__ * 100) + __GNUC_MINOR__) >= 406) || \
|
|
|
|
defined(__clang__))
|
2015-05-24 19:41:28 +00:00
|
|
|
# pragma GCC diagnostic pop
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
if (! CryptAcquireContext(&crypt_prov,
|
|
|
|
"Container",
|
|
|
|
NULL,
|
|
|
|
PROV_RSA_FULL,
|
|
|
|
CRYPT_NEWKEYSET))
|
|
|
|
{
|
|
|
|
throw std::runtime_error(
|
|
|
|
"unable to acquire crypt context with new keyset");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw std::runtime_error("unable to acquire crypt context");
|
|
|
|
}
|
2013-11-30 17:02:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
~WindowsCryptProvider()
|
|
|
|
{
|
|
|
|
// Ignore error
|
|
|
|
CryptReleaseContext(crypt_prov, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
HCRYPTPROV crypt_prov;
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void
|
|
|
|
SecureRandomDataProvider::provideRandomData(unsigned char* data, size_t len)
|
|
|
|
{
|
|
|
|
#if defined(_WIN32)
|
|
|
|
|
|
|
|
// Optimization: make the WindowsCryptProvider static as long as
|
|
|
|
// it can be done in a thread-safe fashion.
|
|
|
|
WindowsCryptProvider c;
|
2019-06-21 03:35:23 +00:00
|
|
|
if (! CryptGenRandom(c.crypt_prov, static_cast<DWORD>(len),
|
|
|
|
reinterpret_cast<BYTE*>(data)))
|
2013-11-30 17:02:56 +00:00
|
|
|
{
|
|
|
|
throw std::runtime_error("unable to generate secure random data");
|
|
|
|
}
|
|
|
|
|
|
|
|
#elif defined(RANDOM_DEVICE)
|
|
|
|
|
|
|
|
// Optimization: wrap the file open and close in a class so that
|
|
|
|
// the file is closed in a destructor, then make this static to
|
|
|
|
// keep the file handle open. Only do this if it can be done in a
|
|
|
|
// thread-safe fashion.
|
|
|
|
FILE* f = QUtil::safe_fopen(RANDOM_DEVICE, "rb");
|
|
|
|
size_t fr = fread(data, 1, len, f);
|
|
|
|
fclose(f);
|
|
|
|
if (fr != len)
|
|
|
|
{
|
|
|
|
throw std::runtime_error(
|
|
|
|
"unable to read " +
|
2019-06-21 03:35:23 +00:00
|
|
|
QUtil::uint_to_string(len) +
|
2013-11-30 17:02:56 +00:00
|
|
|
" bytes from " + std::string(RANDOM_DEVICE));
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2017-08-22 17:10:47 +00:00
|
|
|
# error "Don't know how to generate secure random numbers on this platform. See random number generation in the top-level README.md"
|
2013-11-30 17:02:56 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
RandomDataProvider*
|
|
|
|
SecureRandomDataProvider::getInstance()
|
|
|
|
{
|
|
|
|
static SecureRandomDataProvider instance;
|
|
|
|
return &instance;
|
|
|
|
}
|
2013-11-30 17:25:01 +00:00
|
|
|
|
|
|
|
#endif
|