aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2016-04-23 18:07:35 +0200
committerPieter Wuille <pieter.wuille@gmail.com>2016-05-29 01:52:25 +0200
commit628cf1440aca8b5b259458a4ed41cc138cae34fa (patch)
tree4d328aef976f66accf6879dd57988bf1bb3a0cbe /src
parentfa2637a3beb8677067015df3d9d7b394fa837c2f (diff)
downloadbitcoin-628cf1440aca8b5b259458a4ed41cc138cae34fa.tar.xz
Don't use assert for catching randomness failures
Diffstat (limited to 'src')
-rw-r--r--src/random.cpp26
1 files changed, 20 insertions, 6 deletions
diff --git a/src/random.cpp b/src/random.cpp
index 8ad0a9b007..d9a8cc145e 100644
--- a/src/random.cpp
+++ b/src/random.cpp
@@ -15,6 +15,7 @@
#include "util.h" // for LogPrint()
#include "utilstrencodings.h" // for GetTime()
+#include <stdlib.h>
#include <limits>
#ifndef WIN32
@@ -24,6 +25,12 @@
#include <openssl/err.h>
#include <openssl/rand.h>
+static void RandFailure()
+{
+ LogPrintf("Failed to read randomness, aborting\n");
+ abort();
+}
+
static inline int64_t GetPerformanceCounter()
{
int64_t nCounter = 0;
@@ -91,17 +98,25 @@ static void GetOSRand(unsigned char *ent32)
#ifdef WIN32
HCRYPTPROV hProvider;
int ret = CryptAcquireContextW(&hProvider, NULL, NULL, PROV_RSA_FULL, CRYPT_VERIFYCONTEXT);
- assert(ret);
+ if (!ret) {
+ RandFailure();
+ }
ret = CryptGenRandom(hProvider, 32, ent32);
- assert(ret);
+ if (!ret) {
+ RandFailure();
+ }
CryptReleaseContext(hProvider, 0);
#else
int f = open("/dev/urandom", O_RDONLY);
- assert(f != -1);
+ if (f == -1) {
+ RandFailure();
+ }
int have = 0;
do {
ssize_t n = read(f, ent32 + have, 32 - have);
- assert(n > 0 && n <= 32 - have);
+ if (n <= 0 || n + have > 32) {
+ RandFailure();
+ }
have += n;
} while (have < 32);
close(f);
@@ -111,8 +126,7 @@ static void GetOSRand(unsigned char *ent32)
void GetRandBytes(unsigned char* buf, int num)
{
if (RAND_bytes(buf, num) != 1) {
- LogPrintf("%s: OpenSSL RAND_bytes() failed with error: %s\n", __func__, ERR_error_string(ERR_get_error(), NULL));
- assert(false);
+ RandFailure();
}
}