mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
Ensure -maxsigcachesize
is in valid range
- If the -maxsigcachesize parameter is set to zero, setup a minimum sized sigcache (2 elements) rather than segfaulting. - Handle maxsigcachesize being negative - Handle maxsigcachesize being too large
This commit is contained in:
parent
476cc47da0
commit
55c403b8fe
@ -93,8 +93,9 @@ static CSignatureCache signatureCache;
|
|||||||
// To be called once in AppInit2/TestingSetup to initialize the signatureCache
|
// To be called once in AppInit2/TestingSetup to initialize the signatureCache
|
||||||
void InitSignatureCache()
|
void InitSignatureCache()
|
||||||
{
|
{
|
||||||
size_t nMaxCacheSize = GetArg("-maxsigcachesize", DEFAULT_MAX_SIG_CACHE_SIZE) * ((size_t) 1 << 20);
|
// nMaxCacheSize is unsigned. If -maxsigcachesize is set to zero,
|
||||||
if (nMaxCacheSize <= 0) return;
|
// setup_bytes creates the minimum possible cache (2 elements).
|
||||||
|
size_t nMaxCacheSize = std::min(std::max((int64_t)0, GetArg("-maxsigcachesize", DEFAULT_MAX_SIG_CACHE_SIZE)), MAX_MAX_SIG_CACHE_SIZE) * ((size_t) 1 << 20);
|
||||||
size_t nElems = signatureCache.setup_bytes(nMaxCacheSize);
|
size_t nElems = signatureCache.setup_bytes(nMaxCacheSize);
|
||||||
LogPrintf("Using %zu MiB out of %zu requested for signature cache, able to store %zu elements\n",
|
LogPrintf("Using %zu MiB out of %zu requested for signature cache, able to store %zu elements\n",
|
||||||
(nElems*sizeof(uint256)) >>20, nMaxCacheSize>>20, nElems);
|
(nElems*sizeof(uint256)) >>20, nMaxCacheSize>>20, nElems);
|
||||||
|
@ -14,6 +14,8 @@
|
|||||||
// systems). Due to how we count cache size, actual memory usage is slightly
|
// systems). Due to how we count cache size, actual memory usage is slightly
|
||||||
// more (~32.25 MB)
|
// more (~32.25 MB)
|
||||||
static const unsigned int DEFAULT_MAX_SIG_CACHE_SIZE = 32;
|
static const unsigned int DEFAULT_MAX_SIG_CACHE_SIZE = 32;
|
||||||
|
// Maximum sig cache size allowed
|
||||||
|
static const int64_t MAX_MAX_SIG_CACHE_SIZE = 16384;
|
||||||
|
|
||||||
class CPubKey;
|
class CPubKey;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user