fuzz coverage

Coverage Report

Created: 2025-06-01 19:34

/Users/eugenesiegel/btc/bitcoin/src/chainparams.cpp
Line
Count
Source (jump to first uncovered line)
1
// Copyright (c) 2010 Satoshi Nakamoto
2
// Copyright (c) 2009-2022 The Bitcoin Core developers
3
// Distributed under the MIT software license, see the accompanying
4
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
6
#include <chainparams.h>
7
8
#include <chainparamsbase.h>
9
#include <common/args.h>
10
#include <consensus/params.h>
11
#include <deploymentinfo.h>
12
#include <logging.h>
13
#include <tinyformat.h>
14
#include <util/chaintype.h>
15
#include <util/strencodings.h>
16
#include <util/string.h>
17
18
#include <cassert>
19
#include <cstdint>
20
#include <limits>
21
#include <stdexcept>
22
#include <vector>
23
24
using util::SplitString;
25
26
void ReadSigNetArgs(const ArgsManager& args, CChainParams::SigNetOptions& options)
27
49.9k
{
28
49.9k
    if (!args.GetArgs("-signetseednode").empty()) {
29
0
        options.seeds.emplace(args.GetArgs("-signetseednode"));
30
0
    }
31
49.9k
    if (!args.GetArgs("-signetchallenge").empty()) {
32
0
        const auto signet_challenge = args.GetArgs("-signetchallenge");
33
0
        if (signet_challenge.size() != 1) {
34
0
            throw std::runtime_error("-signetchallenge cannot be multiple values.");
35
0
        }
36
0
        const auto val{TryParseHex<uint8_t>(signet_challenge[0])};
37
0
        if (!val) {
38
0
            throw std::runtime_error(strprintf("-signetchallenge must be hex, not '%s'.", signet_challenge[0]));
Line
Count
Source
1172
0
#define strprintf tfm::format
39
0
        }
40
0
        options.challenge.emplace(*val);
41
0
    }
42
49.9k
}
43
44
void ReadRegTestArgs(const ArgsManager& args, CChainParams::RegTestOptions& options)
45
99.9k
{
46
99.9k
    if (auto value = args.GetBoolArg("-fastprune")) 
options.fastprune = *value0
;
47
99.9k
    if (HasTestOption(args, "bip94")) 
options.enforce_bip94 = true0
;
48
49
99.9k
    for (const std::string& arg : args.GetArgs("-testactivationheight")) {
50
0
        const auto found{arg.find('@')};
51
0
        if (found == std::string::npos) {
52
0
            throw std::runtime_error(strprintf("Invalid format (%s) for -testactivationheight=name@height.", arg));
Line
Count
Source
1172
0
#define strprintf tfm::format
53
0
        }
54
55
0
        const auto value{arg.substr(found + 1)};
56
0
        int32_t height;
57
0
        if (!ParseInt32(value, &height) || height < 0 || height >= std::numeric_limits<int>::max()) {
58
0
            throw std::runtime_error(strprintf("Invalid height value (%s) for -testactivationheight=name@height.", arg));
Line
Count
Source
1172
0
#define strprintf tfm::format
59
0
        }
60
61
0
        const auto deployment_name{arg.substr(0, found)};
62
0
        if (const auto buried_deployment = GetBuriedDeployment(deployment_name)) {
63
0
            options.activation_heights[*buried_deployment] = height;
64
0
        } else {
65
0
            throw std::runtime_error(strprintf("Invalid name (%s) for -testactivationheight=name@height.", arg));
Line
Count
Source
1172
0
#define strprintf tfm::format
66
0
        }
67
0
    }
68
69
99.9k
    for (const std::string& strDeployment : args.GetArgs("-vbparams")) {
70
0
        std::vector<std::string> vDeploymentParams = SplitString(strDeployment, ':');
71
0
        if (vDeploymentParams.size() < 3 || 4 < vDeploymentParams.size()) {
72
0
            throw std::runtime_error("Version bits parameters malformed, expecting deployment:start:end[:min_activation_height]");
73
0
        }
74
0
        CChainParams::VersionBitsParameters vbparams{};
75
0
        if (!ParseInt64(vDeploymentParams[1], &vbparams.start_time)) {
76
0
            throw std::runtime_error(strprintf("Invalid nStartTime (%s)", vDeploymentParams[1]));
Line
Count
Source
1172
0
#define strprintf tfm::format
77
0
        }
78
0
        if (!ParseInt64(vDeploymentParams[2], &vbparams.timeout)) {
79
0
            throw std::runtime_error(strprintf("Invalid nTimeout (%s)", vDeploymentParams[2]));
Line
Count
Source
1172
0
#define strprintf tfm::format
80
0
        }
81
0
        if (vDeploymentParams.size() >= 4) {
82
0
            if (!ParseInt32(vDeploymentParams[3], &vbparams.min_activation_height)) {
83
0
                throw std::runtime_error(strprintf("Invalid min_activation_height (%s)", vDeploymentParams[3]));
Line
Count
Source
1172
0
#define strprintf tfm::format
84
0
            }
85
0
        } else {
86
0
            vbparams.min_activation_height = 0;
87
0
        }
88
0
        bool found = false;
89
0
        for (int j=0; j < (int)Consensus::MAX_VERSION_BITS_DEPLOYMENTS; ++j) {
90
0
            if (vDeploymentParams[0] == VersionBitsDeploymentInfo[j].name) {
91
0
                options.version_bits_parameters[Consensus::DeploymentPos(j)] = vbparams;
92
0
                found = true;
93
0
                LogPrintf("Setting version bits activation parameters for %s to start=%ld, timeout=%ld, min_activation_height=%d\n", vDeploymentParams[0], vbparams.start_time, vbparams.timeout, vbparams.min_activation_height);
Line
Count
Source
266
0
#define LogPrintf(...) LogInfo(__VA_ARGS__)
Line
Count
Source
261
0
#define LogInfo(...) LogPrintLevel_(BCLog::LogFlags::ALL, BCLog::Level::Info, __VA_ARGS__)
Line
Count
Source
255
0
#define LogPrintLevel_(category, level, ...) LogPrintFormatInternal(__func__, __FILE__, __LINE__, category, level, __VA_ARGS__)
94
0
                break;
95
0
            }
96
0
        }
97
0
        if (!found) {
98
0
            throw std::runtime_error(strprintf("Invalid deployment (%s)", vDeploymentParams[0]));
Line
Count
Source
1172
0
#define strprintf tfm::format
99
0
        }
100
0
    }
101
99.9k
}
102
103
static std::unique_ptr<const CChainParams> globalChainParams;
104
105
21.2M
const CChainParams &Params() {
106
21.2M
    assert(globalChainParams);
107
21.2M
    return *globalChainParams;
108
21.2M
}
109
110
std::unique_ptr<const CChainParams> CreateChainParams(const ArgsManager& args, const ChainType chain)
111
299k
{
112
299k
    switch (chain) {
113
49.9k
    case ChainType::MAIN:
114
49.9k
        return CChainParams::Main();
115
49.9k
    case ChainType::TESTNET:
116
49.9k
        return CChainParams::TestNet();
117
49.9k
    case ChainType::TESTNET4:
118
49.9k
        return CChainParams::TestNet4();
119
49.9k
    case ChainType::SIGNET: {
120
49.9k
        auto opts = CChainParams::SigNetOptions{};
121
49.9k
        ReadSigNetArgs(args, opts);
122
49.9k
        return CChainParams::SigNet(opts);
123
0
    }
124
99.9k
    case ChainType::REGTEST: {
125
99.9k
        auto opts = CChainParams::RegTestOptions{};
126
99.9k
        ReadRegTestArgs(args, opts);
127
99.9k
        return CChainParams::RegTest(opts);
128
0
    }
129
299k
    }
130
0
    assert(false);
131
0
}
132
133
void SelectParams(const ChainType chain)
134
49.9k
{
135
49.9k
    SelectBaseParams(chain);
136
49.9k
    globalChainParams = CreateChainParams(gArgs, chain);
137
49.9k
}