fuzz coverage

Coverage Report

Created: 2025-09-17 22:41

/Users/eugenesiegel/btc/bitcoin/src/node/caches.cpp
Line
Count
Source (jump to first uncovered line)
1
// Copyright (c) 2021-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/caches.h>
6
7
#include <common/args.h>
8
#include <index/txindex.h>
9
#include <kernel/caches.h>
10
#include <logging.h>
11
#include <util/byte_units.h>
12
13
#include <algorithm>
14
#include <string>
15
16
// Unlike for the UTXO database, for the txindex scenario the leveldb cache make
17
// a meaningful difference: https://github.com/bitcoin/bitcoin/pull/8273#issuecomment-229601991
18
//! Max memory allocated to tx index DB specific cache in bytes.
19
static constexpr size_t MAX_TX_INDEX_CACHE{1024_MiB};
20
//! Max memory allocated to all block filter index caches combined in bytes.
21
static constexpr size_t MAX_FILTER_INDEX_CACHE{1024_MiB};
22
//! Maximum dbcache size on 32-bit systems.
23
static constexpr size_t MAX_32BIT_DBCACHE{1024_MiB};
24
25
namespace node {
26
CacheSizes CalculateCacheSizes(const ArgsManager& args, size_t n_indexes)
27
38.8k
{
28
    // Convert -dbcache from MiB units to bytes. The total cache is floored by MIN_DB_CACHE and capped by max size_t value.
29
38.8k
    size_t total_cache{DEFAULT_DB_CACHE};
30
38.8k
    if (std::optional<int64_t> db_cache = args.GetIntArg("-dbcache")) {
31
0
        if (*db_cache < 0) db_cache = 0;
32
0
        uint64_t db_cache_bytes = SaturatingLeftShift<uint64_t>(*db_cache, 20);
33
0
        constexpr auto max_db_cache{sizeof(void*) == 4 ? MAX_32BIT_DBCACHE : std::numeric_limits<size_t>::max()};
34
0
        total_cache = std::max<size_t>(MIN_DB_CACHE, std::min<uint64_t>(db_cache_bytes, max_db_cache));
35
0
    }
36
37
38.8k
    IndexCacheSizes index_sizes;
38
38.8k
    index_sizes.tx_index = std::min(total_cache / 8, args.GetBoolArg("-txindex", DEFAULT_TXINDEX) ? 
MAX_TX_INDEX_CACHE0
: 0);
39
38.8k
    total_cache -= index_sizes.tx_index;
40
38.8k
    if (n_indexes > 0) {
41
0
        size_t max_cache = std::min(total_cache / 8, MAX_FILTER_INDEX_CACHE);
42
0
        index_sizes.filter_index = max_cache / n_indexes;
43
0
        total_cache -= index_sizes.filter_index * n_indexes;
44
0
    }
45
38.8k
    return {index_sizes, kernel::CacheSizes{total_cache}};
46
38.8k
}
47
} // namespace node