Skip to content

Commit 41c5201

Browse files
committed
validationcaches: Add and use ValidationCacheSizes
Also: - Make DEFAULT_MAX_SIG_CACHE_SIZE into constexpr DEFAULT_MAX_SIG_CACHE_BYTES to utilize the compile-time integer arithmetic overflow checking available to constexpr. - Fix comment (MiB instead of MB) for DEFAULT_MAX_SIG_CACHE_BYTES. - Pass in max_size_bytes parameter to InitS*Cache(), modify log line to no longer allude to maxsigcachesize being split evenly between the two validation caches. - Fix possible integer truncation and add a comment. [META] I've kept the integer types as int64_t in order to not introduce unintended behaviour changes, in the next commit we will make them size_t.
1 parent 82d3058 commit 41c5201

12 files changed

+110
-20
lines changed

ci/test/06_script_b.sh

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ if [ "${RUN_TIDY}" = "true" ]; then
4646
" src/kernel"\
4747
" src/node/chainstate.cpp"\
4848
" src/node/mempool_args.cpp"\
49+
" src/node/validation_cache_args.cpp"\
4950
" src/policy/feerate.cpp"\
5051
" src/policy/packages.cpp"\
5152
" src/policy/settings.cpp"\

src/Makefile.am

+3
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ BITCOIN_CORE_H = \
177177
kernel/mempool_limits.h \
178178
kernel/mempool_options.h \
179179
kernel/mempool_persist.h \
180+
kernel/validation_cache_sizes.h \
180181
key.h \
181182
key_io.h \
182183
logging.h \
@@ -207,6 +208,7 @@ BITCOIN_CORE_H = \
207208
node/psbt.h \
208209
node/transaction.h \
209210
node/utxo_snapshot.h \
211+
node/validation_cache_args.h \
210212
noui.h \
211213
outputtype.h \
212214
policy/feerate.h \
@@ -390,6 +392,7 @@ libbitcoin_node_a_SOURCES = \
390392
node/minisketchwrapper.cpp \
391393
node/psbt.cpp \
392394
node/transaction.cpp \
395+
node/validation_cache_args.cpp \
393396
noui.cpp \
394397
policy/fees.cpp \
395398
policy/fees_args.cpp \

src/bitcoin-chainstate.cpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
#include <kernel/checks.h>
1515
#include <kernel/context.h>
16+
#include <kernel/validation_cache_sizes.h>
1617

1718
#include <chainparams.h>
1819
#include <consensus/validation.h>
@@ -62,8 +63,9 @@ int main(int argc, char* argv[])
6263
// Necessary for CheckInputScripts (eventually called by ProcessNewBlock),
6364
// which will try the script cache first and fall back to actually
6465
// performing the check with the signature cache.
65-
Assert(InitSignatureCache());
66-
Assert(InitScriptExecutionCache());
66+
kernel::ValidationCacheSizes validation_cache_sizes{};
67+
Assert(InitSignatureCache(validation_cache_sizes.signature_cache_bytes));
68+
Assert(InitScriptExecutionCache(validation_cache_sizes.script_execution_cache_bytes));
6769

6870

6971
// SETUP: Scheduling and Background Signals

src/init.cpp

+11-3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
#include <kernel/checks.h>
1313
#include <kernel/mempool_persist.h>
14+
#include <kernel/validation_cache_sizes.h>
1415

1516
#include <addrman.h>
1617
#include <banman.h>
@@ -44,6 +45,7 @@
4445
#include <node/mempool_args.h>
4546
#include <node/mempool_persist_args.h>
4647
#include <node/miner.h>
48+
#include <node/validation_cache_args.h>
4749
#include <policy/feerate.h>
4850
#include <policy/fees.h>
4951
#include <policy/fees_args.h>
@@ -105,7 +107,9 @@
105107
#endif
106108

107109
using kernel::DumpMempool;
110+
using kernel::ValidationCacheSizes;
108111

112+
using node::ApplyArgsManOptions;
109113
using node::CacheSizes;
110114
using node::CalculateCacheSizes;
111115
using node::DEFAULT_PERSIST_MEMPOOL;
@@ -548,7 +552,7 @@ void SetupServerArgs(ArgsManager& argsman)
548552
argsman.AddArg("-addrmantest", "Allows to test address relay on localhost", ArgsManager::ALLOW_ANY | ArgsManager::DEBUG_ONLY, OptionsCategory::DEBUG_TEST);
549553
argsman.AddArg("-capturemessages", "Capture all P2P messages to disk", ArgsManager::ALLOW_ANY | ArgsManager::DEBUG_ONLY, OptionsCategory::DEBUG_TEST);
550554
argsman.AddArg("-mocktime=<n>", "Replace actual time with " + UNIX_EPOCH_TIME + " (default: 0)", ArgsManager::ALLOW_ANY | ArgsManager::DEBUG_ONLY, OptionsCategory::DEBUG_TEST);
551-
argsman.AddArg("-maxsigcachesize=<n>", strprintf("Limit sum of signature cache and script execution cache sizes to <n> MiB (default: %u)", DEFAULT_MAX_SIG_CACHE_SIZE), ArgsManager::ALLOW_ANY | ArgsManager::DEBUG_ONLY, OptionsCategory::DEBUG_TEST);
555+
argsman.AddArg("-maxsigcachesize=<n>", strprintf("Limit sum of signature cache and script execution cache sizes to <n> MiB (default: %u)", DEFAULT_MAX_SIG_CACHE_BYTES >> 20), ArgsManager::ALLOW_ANY | ArgsManager::DEBUG_ONLY, OptionsCategory::DEBUG_TEST);
552556
argsman.AddArg("-maxtipage=<n>", strprintf("Maximum tip age in seconds to consider node in initial block download (default: %u)", DEFAULT_MAX_TIP_AGE), ArgsManager::ALLOW_ANY | ArgsManager::DEBUG_ONLY, OptionsCategory::DEBUG_TEST);
553557
argsman.AddArg("-printpriority", strprintf("Log transaction fee rate in " + CURRENCY_UNIT + "/kvB when mining blocks (default: %u)", DEFAULT_PRINTPRIORITY), ArgsManager::ALLOW_ANY | ArgsManager::DEBUG_ONLY, OptionsCategory::DEBUG_TEST);
554558
argsman.AddArg("-uacomment=<cmt>", "Append comment to the user agent string", ArgsManager::ALLOW_ANY, OptionsCategory::DEBUG_TEST);
@@ -1115,8 +1119,12 @@ bool AppInitMain(NodeContext& node, interfaces::BlockAndHeaderTipInfo* tip_info)
11151119
args.GetArg("-datadir", ""), fs::PathToString(fs::current_path()));
11161120
}
11171121

1118-
if (!InitSignatureCache() || !InitScriptExecutionCache()) {
1119-
return InitError(strprintf(_("Unable to allocate memory for -maxsigcachesize: '%s' MiB"), args.GetIntArg("-maxsigcachesize", DEFAULT_MAX_SIG_CACHE_SIZE)));
1122+
ValidationCacheSizes validation_cache_sizes{};
1123+
ApplyArgsManOptions(args, validation_cache_sizes);
1124+
if (!InitSignatureCache(validation_cache_sizes.signature_cache_bytes)
1125+
|| !InitScriptExecutionCache(validation_cache_sizes.script_execution_cache_bytes))
1126+
{
1127+
return InitError(strprintf(_("Unable to allocate memory for -maxsigcachesize: '%s' MiB"), args.GetIntArg("-maxsigcachesize", DEFAULT_MAX_SIG_CACHE_BYTES >> 20)));
11201128
}
11211129

11221130
int script_threads = args.GetIntArg("-par", DEFAULT_SCRIPTCHECK_THREADS);

src/kernel/validation_cache_sizes.h

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// Copyright (c) 2022 The Bitcoin Core developers
2+
// Distributed under the MIT software license, see the accompanying
3+
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4+
5+
#ifndef BITCOIN_KERNEL_VALIDATION_CACHE_SIZES_H
6+
#define BITCOIN_KERNEL_VALIDATION_CACHE_SIZES_H
7+
8+
#include <script/sigcache.h>
9+
10+
#include <cstdint>
11+
#include <limits>
12+
13+
namespace kernel {
14+
struct ValidationCacheSizes {
15+
int64_t signature_cache_bytes{DEFAULT_MAX_SIG_CACHE_BYTES / 2};
16+
int64_t script_execution_cache_bytes{DEFAULT_MAX_SIG_CACHE_BYTES / 2};
17+
};
18+
}
19+
20+
#endif // BITCOIN_KERNEL_VALIDATION_CACHE_SIZES_H

src/node/validation_cache_args.cpp

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
// Copyright (c) 2022 The Bitcoin Core developers
2+
// Distributed under the MIT software license, see the accompanying
3+
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4+
5+
#include <node/validation_cache_args.h>
6+
7+
#include <kernel/validation_cache_sizes.h>
8+
9+
#include <util/system.h>
10+
11+
#include <memory>
12+
#include <optional>
13+
14+
using kernel::ValidationCacheSizes;
15+
16+
namespace node {
17+
void ApplyArgsManOptions(const ArgsManager& argsman, ValidationCacheSizes& cache_sizes)
18+
{
19+
if (auto max_size = argsman.GetIntArg("-maxsigcachesize")) {
20+
// Multiply first, divide after to avoid integer truncation
21+
int64_t size_each = *max_size * (1 << 20) / 2;
22+
cache_sizes = {
23+
.signature_cache_bytes = size_each,
24+
.script_execution_cache_bytes = size_each,
25+
};
26+
}
27+
}
28+
} // namespace node

src/node/validation_cache_args.h

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// Copyright (c) 2022 The Bitcoin Core developers
2+
// Distributed under the MIT software license, see the accompanying
3+
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4+
5+
#ifndef BITCOIN_NODE_VALIDATION_CACHE_ARGS_H
6+
#define BITCOIN_NODE_VALIDATION_CACHE_ARGS_H
7+
8+
class ArgsManager;
9+
namespace kernel {
10+
struct ValidationCacheSizes;
11+
};
12+
13+
namespace node {
14+
void ApplyArgsManOptions(const ArgsManager& argsman, kernel::ValidationCacheSizes& cache_sizes);
15+
} // namespace node
16+
17+
#endif // BITCOIN_NODE_VALIDATION_CACHE_ARGS_H

src/script/sigcache.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -93,18 +93,18 @@ static CSignatureCache signatureCache;
9393

9494
// To be called once in AppInitMain/BasicTestingSetup to initialize the
9595
// signatureCache.
96-
bool InitSignatureCache()
96+
bool InitSignatureCache(int64_t max_size_bytes)
9797
{
9898
// nMaxCacheSize is unsigned. If -maxsigcachesize is set to zero,
9999
// setup_bytes creates the minimum possible cache (2 elements).
100-
size_t nMaxCacheSize = std::max((int64_t)0, gArgs.GetIntArg("-maxsigcachesize", DEFAULT_MAX_SIG_CACHE_SIZE) / 2) * ((size_t) 1 << 20);
100+
size_t nMaxCacheSize = std::max<int64_t>(max_size_bytes, 0);
101101

102102
auto setup_results = signatureCache.setup_bytes(nMaxCacheSize);
103103
if (!setup_results) return false;
104104

105105
const auto [num_elems, approx_size_bytes] = *setup_results;
106-
LogPrintf("Using %zu MiB out of %zu/2 requested for signature cache, able to store %zu elements\n",
107-
approx_size_bytes >> 20, (nMaxCacheSize * 2) >> 20, num_elems);
106+
LogPrintf("Using %zu MiB out of %zu MiB requested for signature cache, able to store %zu elements\n",
107+
approx_size_bytes >> 20, max_size_bytes >> 20, num_elems);
108108
return true;
109109
}
110110

src/script/sigcache.h

+5-4
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,13 @@
1010
#include <span.h>
1111
#include <util/hasher.h>
1212

13+
#include <optional>
1314
#include <vector>
1415

15-
// DoS prevention: limit cache size to 32MB (over 1000000 entries on 64-bit
16+
// DoS prevention: limit cache size to 32MiB (over 1000000 entries on 64-bit
1617
// systems). Due to how we count cache size, actual memory usage is slightly
17-
// more (~32.25 MB)
18-
static const unsigned int DEFAULT_MAX_SIG_CACHE_SIZE = 32;
18+
// more (~32.25 MiB)
19+
static constexpr size_t DEFAULT_MAX_SIG_CACHE_BYTES{32 << 20};
1920

2021
class CPubKey;
2122

@@ -31,6 +32,6 @@ class CachingTransactionSignatureChecker : public TransactionSignatureChecker
3132
bool VerifySchnorrSignature(Span<const unsigned char> sig, const XOnlyPubKey& pubkey, const uint256& sighash) const override;
3233
};
3334

34-
[[nodiscard]] bool InitSignatureCache();
35+
[[nodiscard]] bool InitSignatureCache(int64_t max_size_bytes);
3536

3637
#endif // BITCOIN_SCRIPT_SIGCACHE_H

src/test/util/setup_common.cpp

+11-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
#include <test/util/setup_common.h>
66

7+
#include <kernel/validation_cache_sizes.h>
8+
79
#include <addrman.h>
810
#include <banman.h>
911
#include <chainparams.h>
@@ -21,6 +23,7 @@
2123
#include <node/context.h>
2224
#include <node/mempool_args.h>
2325
#include <node/miner.h>
26+
#include <node/validation_cache_args.h>
2427
#include <noui.h>
2528
#include <policy/fees.h>
2629
#include <policy/fees_args.h>
@@ -52,6 +55,8 @@
5255
#include <functional>
5356
#include <stdexcept>
5457

58+
using kernel::ValidationCacheSizes;
59+
using node::ApplyArgsManOptions;
5560
using node::BlockAssembler;
5661
using node::CalculateCacheSizes;
5762
using node::LoadChainstate;
@@ -133,8 +138,12 @@ BasicTestingSetup::BasicTestingSetup(const std::string& chainName, const std::ve
133138
m_node.kernel = std::make_unique<kernel::Context>();
134139
SetupEnvironment();
135140
SetupNetworking();
136-
Assert(InitSignatureCache());
137-
Assert(InitScriptExecutionCache());
141+
142+
ValidationCacheSizes validation_cache_sizes{};
143+
ApplyArgsManOptions(*m_node.args, validation_cache_sizes);
144+
Assert(InitSignatureCache(validation_cache_sizes.signature_cache_bytes));
145+
Assert(InitScriptExecutionCache(validation_cache_sizes.script_execution_cache_bytes));
146+
138147
m_node.chain = interfaces::MakeChain(m_node);
139148
fCheckBlockIndex = true;
140149
static bool noui_connected = false;

src/validation.cpp

+5-4
Original file line numberDiff line numberDiff line change
@@ -1656,7 +1656,8 @@ bool CScriptCheck::operator()() {
16561656
static CuckooCache::cache<uint256, SignatureCacheHasher> g_scriptExecutionCache;
16571657
static CSHA256 g_scriptExecutionCacheHasher;
16581658

1659-
bool InitScriptExecutionCache() {
1659+
bool InitScriptExecutionCache(int64_t max_size_bytes)
1660+
{
16601661
// Setup the salted hasher
16611662
uint256 nonce = GetRandHash();
16621663
// We want the nonce to be 64 bytes long to force the hasher to process
@@ -1666,14 +1667,14 @@ bool InitScriptExecutionCache() {
16661667
g_scriptExecutionCacheHasher.Write(nonce.begin(), 32);
16671668
// nMaxCacheSize is unsigned. If -maxsigcachesize is set to zero,
16681669
// setup_bytes creates the minimum possible cache (2 elements).
1669-
size_t nMaxCacheSize = std::max((int64_t)0, gArgs.GetIntArg("-maxsigcachesize", DEFAULT_MAX_SIG_CACHE_SIZE) / 2) * ((size_t) 1 << 20);
1670+
size_t nMaxCacheSize = std::max<int64_t>(max_size_bytes, 0);
16701671

16711672
auto setup_results = g_scriptExecutionCache.setup_bytes(nMaxCacheSize);
16721673
if (!setup_results) return false;
16731674

16741675
const auto [num_elems, approx_size_bytes] = *setup_results;
1675-
LogPrintf("Using %zu MiB out of %zu/2 requested for script execution cache, able to store %zu elements\n",
1676-
approx_size_bytes >> 20, (nMaxCacheSize * 2) >> 20, num_elems);
1676+
LogPrintf("Using %zu MiB out of %zu MiB requested for script execution cache, able to store %zu elements\n",
1677+
approx_size_bytes >> 20, max_size_bytes >> 20, num_elems);
16771678
return true;
16781679
}
16791680

src/validation.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ class CScriptCheck
323323
};
324324

325325
/** Initializes the script-execution cache */
326-
[[nodiscard]] bool InitScriptExecutionCache();
326+
[[nodiscard]] bool InitScriptExecutionCache(int64_t max_size_bytes);
327327

328328
/** Functions for validating blocks and updating the block tree */
329329

0 commit comments

Comments
 (0)