93#include <condition_variable>
109#include <boost/signals2/signal.hpp>
150#define MIN_CORE_FILEDESCRIPTORS 0
152#define MIN_CORE_FILEDESCRIPTORS 150
192 if (std::error_code error; !fs::remove(pid_path, error)) {
193 std::string msg{error ? error.message() :
"File does not exist"};
240 std::vector<std::thread> threads;
242 threads.emplace_back(runCommand,
cmd);
244 for (
auto&
t : threads) {
262 node.connman->Interrupt();
263 for (
auto* index :
node.indexes) {
270 static Mutex g_shutdown_mutex;
271 TRY_LOCK(g_shutdown_mutex, lock_shutdown);
272 if (!lock_shutdown)
return;
273 LogPrintf(
"%s: In progress...\n", __func__);
281 if (
node.mempool)
node.mempool->AddTransactionsUpdated(1);
287 for (
const auto& client :
node.chain_clients) {
294 if (
node.peerman &&
node.validation_signals)
node.validation_signals->UnregisterValidationInterface(
node.peerman.get());
295 if (
node.connman)
node.connman->Stop();
299 if (
node.chainman &&
node.chainman->m_thread_load.joinable())
node.chainman->m_thread_load.join();
303 if (
node.scheduler)
node.scheduler->stop();
307 node.peerman.reset();
308 node.connman.reset();
310 node.addrman.reset();
311 node.netgroupman.reset();
313 if (
node.mempool &&
node.mempool->GetLoadTried() && ShouldPersistMempool(*
node.args)) {
314 DumpMempool(*
node.mempool, MempoolPath(*
node.args));
319 if (
node.fee_estimator) {
320 node.fee_estimator->Flush();
321 if (
node.validation_signals) {
322 node.validation_signals->UnregisterValidationInterface(
node.fee_estimator.get());
330 if (chainstate->CanFlushToDisk()) {
331 chainstate->ForceFlushStateToDisk();
338 if (
node.validation_signals)
node.validation_signals->FlushBackgroundCallbacks();
341 for (
auto* index :
node.indexes) index->Stop();
345 node.indexes.clear();
356 if (chainstate->CanFlushToDisk()) {
357 chainstate->ForceFlushStateToDisk();
358 chainstate->ResetCoinsViews();
362 for (
const auto& client :
node.chain_clients) {
373 node.chain_clients.clear();
374 if (
node.validation_signals) {
375 node.validation_signals->UnregisterAllValidationInterfaces();
377 node.mempool.reset();
378 node.fee_estimator.reset();
379 node.chainman.reset();
380 node.validation_signals.reset();
381 node.scheduler.reset();
382 node.ecc_context.reset();
408static BOOL WINAPI consoleCtrlHandler(DWORD dwCtrlType)
411 LogError(
"Failed to send shutdown signal on Ctrl-C\n");
424 sigemptyset(&sa.sa_mask);
426 sigaction(signal, &sa,
nullptr);
463 std::vector<std::string> hidden_args = {
464 "-dbcrashratio",
"-forcecompactdb",
466 "-choosedatadir",
"-lang=<lang>",
"-min",
"-resetguisettings",
"-splash",
"-uiplatform"};
472 argsman.
AddArg(
"-assumevalid=<hex>",
strprintf(
"If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet3: %s, testnet4: %s, signet: %s)", defaultChainParams->GetConsensus().defaultAssumeValid.GetHex(), testnetChainParams->GetConsensus().defaultAssumeValid.GetHex(), testnet4ChainParams->GetConsensus().defaultAssumeValid.GetHex(), signetChainParams->GetConsensus().defaultAssumeValid.GetHex()),
ArgsManager::ALLOW_ANY,
OptionsCategory::OPTIONS);
474 argsman.
AddArg(
"-blocksxor",
475 strprintf(
"Whether an XOR-key applies to blocksdir *.dat files. "
476 "The created XOR-key will be zeros for an existing blocksdir or when `-blocksxor=0` is "
477 "set, and random for a freshly initialized blocksdir. "
498 argsman.
AddArg(
"-minimumchainwork=<hex>",
strprintf(
"Minimum work assumed to exist on a valid chain in hex (default: %s, testnet3: %s, testnet4: %s, signet: %s)", defaultChainParams->GetConsensus().nMinimumChainWork.GetHex(), testnetChainParams->GetConsensus().nMinimumChainWork.GetHex(), testnet4ChainParams->GetConsensus().nMinimumChainWork.GetHex(), signetChainParams->GetConsensus().nMinimumChainWork.GetHex()),
ArgsManager::ALLOW_ANY |
ArgsManager::DEBUG_ONLY,
OptionsCategory::OPTIONS);
499 argsman.
AddArg(
"-par=<n>",
strprintf(
"Set the number of script verification threads (0 = auto, up to %d, <0 = leave that many cores free, default: %d)",
502 argsman.
AddArg(
"-persistmempoolv1",
503 strprintf(
"Whether a mempool.dat file created by -persistmempool or the savemempool RPC will be written in the legacy format "
504 "(version 1) or the current format (version 2). This temporary option will be removed in the future. (default: %u)",
508 argsman.
AddArg(
"-prune=<n>",
strprintf(
"Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex. "
509 "Warning: Reverting this setting requires re-downloading the entire blockchain. "
511 argsman.
AddArg(
"-reindex",
"If enabled, wipe chain state and block index, and rebuild them from blk*.dat files on disk. Also wipe and rebuild other optional indexes that are active. If an assumeutxo snapshot was loaded, its chainstate will be wiped as well. The snapshot can then be reloaded via RPC.",
ArgsManager::ALLOW_ANY,
OptionsCategory::OPTIONS);
512 argsman.
AddArg(
"-reindex-chainstate",
"If enabled, wipe chain state, and rebuild it from blk*.dat files on disk. If an assumeutxo snapshot was loaded, its chainstate will be wiped as well. The snapshot can then be reloaded via RPC.",
ArgsManager::ALLOW_ANY,
OptionsCategory::OPTIONS);
516 argsman.
AddArg(
"-shutdownnotify=<cmd>",
"Execute command immediately before beginning shutdown. The need for shutdown may be urgent, so be careful not to delay it long (if the command doesn't require interaction with the server, consider having it fork into the background).",
ArgsManager::ALLOW_ANY,
OptionsCategory::OPTIONS);
519 argsman.
AddArg(
"-blockfilterindex=<type>",
521 " If <type> is not supplied or if <type> = 1, indexes for all known types are enabled.",
527 argsman.
AddArg(
"-bind=<addr>[:<port>][=onion]",
strprintf(
"Bind to given address and always listen on it (default: 0.0.0.0). Use [host]:port notation for IPv6. Append =onion to tag any incoming connections to that address and port as incoming Tor connections (default: 127.0.0.1:%u=onion, testnet3: 127.0.0.1:%u=onion, testnet4: 127.0.0.1:%u=onion, signet: 127.0.0.1:%u=onion, regtest: 127.0.0.1:%u=onion)", defaultBaseParams->OnionServiceTargetPort(), testnetBaseParams->OnionServiceTargetPort(), testnet4BaseParams->OnionServiceTargetPort(), signetBaseParams->OnionServiceTargetPort(), regtestBaseParams->OnionServiceTargetPort()),
ArgsManager::ALLOW_ANY |
ArgsManager::NETWORK_ONLY,
OptionsCategory::CONNECTION);
542#ifdef HAVE_SOCKADDR_UN
554 argsman.
AddArg(
"-port=<port>",
strprintf(
"Listen for connections on <port> (default: %u, testnet3: %u, testnet4: %u, signet: %u, regtest: %u). Not relevant for I2P (see doc/i2p.md).", defaultChainParams->GetDefaultPort(), testnetChainParams->GetDefaultPort(), testnet4ChainParams->GetDefaultPort(), signetChainParams->GetDefaultPort(), regtestChainParams->GetDefaultPort()),
ArgsManager::ALLOW_ANY |
ArgsManager::NETWORK_ONLY,
OptionsCategory::CONNECTION);
555#ifdef HAVE_SOCKADDR_UN
561 argsman.
AddArg(
"-seednode=<ip>",
"Connect to a node to retrieve peer addresses, and disconnect. This option can be specified multiple times to connect to multiple nodes. During startup, seednodes will be tried before dnsseeds.",
ArgsManager::ALLOW_ANY,
OptionsCategory::CONNECTION);
570 hidden_args.emplace_back(
"-upnp");
575 hidden_args.emplace_back(
"-natpmp");
577 argsman.
AddArg(
"-whitebind=<[permissions@]addr>",
"Bind to the given address and add permission flags to the peers connecting to it. "
578 "Use [host]:port notation for IPv6. Allowed permissions: " + Join(
NET_PERMISSIONS_DOC,
", ") +
". "
581 argsman.
AddArg(
"-whitelist=<[permissions@]IP address or network>",
"Add permission flags to the peers using the given IP address (e.g. 1.2.3.4) or "
582 "CIDR-notated network (e.g. 1.2.3.0/24). Uses the same permissions as "
584 "Additional flags \"in\" and \"out\" control whether permissions apply to incoming connections and/or manual (default: incoming only). "
601 hidden_args.emplace_back(
"-zmqpubhashblock=<address>");
602 hidden_args.emplace_back(
"-zmqpubhashtx=<address>");
603 hidden_args.emplace_back(
"-zmqpubrawblock=<address>");
604 hidden_args.emplace_back(
"-zmqpubrawtx=<address>");
605 hidden_args.emplace_back(
"-zmqpubsequence=<n>");
606 hidden_args.emplace_back(
"-zmqpubhashblockhwm=<n>");
607 hidden_args.emplace_back(
"-zmqpubhashtxhwm=<n>");
608 hidden_args.emplace_back(
"-zmqpubrawblockhwm=<n>");
609 hidden_args.emplace_back(
"-zmqpubrawtxhwm=<n>");
610 hidden_args.emplace_back(
"-zmqpubsequencehwm=<n>");
630 argsman.
AddArg(
"-maxtipage=<n>",
631 strprintf(
"Maximum tip age in seconds to consider node in initial block download (default: %u)",
645 argsman.
AddArg(
"-datacarriersize",
646 strprintf(
"Relay and mine transactions whose data-carrying raw scriptPubKey "
647 "is of this size or less (default: %u)",
653 argsman.
AddArg(
"-minrelaytxfee=<amt>",
strprintf(
"Fees (in %s/kvB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s)",
664 argsman.
AddArg(
"-rpcallowip=<ip>",
"Allow JSON-RPC connections from specified source. Valid values for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0), a network/CIDR (e.g. 1.2.3.4/24), all ipv4 (0.0.0.0/0), or all ipv6 (::/0). This option can be specified multiple times",
ArgsManager::ALLOW_ANY,
OptionsCategory::RPC);
665 argsman.
AddArg(
"-rpcauth=<userpw>",
"Username and HMAC-SHA-256 hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcauth. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times",
ArgsManager::ALLOW_ANY |
ArgsManager::SENSITIVE,
OptionsCategory::RPC);
666 argsman.
AddArg(
"-rpcbind=<addr>[:port]",
"Bind to given address to listen for JSON-RPC connections. Do not expose the RPC server to untrusted networks such as the public internet! This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost)",
ArgsManager::ALLOW_ANY |
ArgsManager::NETWORK_ONLY,
OptionsCategory::RPC);
671 argsman.
AddArg(
"-rpcport=<port>",
strprintf(
"Listen for JSON-RPC connections on <port> (default: %u, testnet3: %u, testnet4: %u, signet: %u, regtest: %u)", defaultBaseParams->RPCPort(), testnetBaseParams->RPCPort(), testnet4BaseParams->RPCPort(), signetBaseParams->RPCPort(), regtestBaseParams->RPCPort()),
ArgsManager::ALLOW_ANY |
ArgsManager::NETWORK_ONLY,
OptionsCategory::RPC);
675 argsman.
AddArg(
"-rpcwhitelist=<whitelist>",
"Set a whitelist to filter incoming RPC calls for a specific user. The field <whitelist> comes in the format: <USERNAME>:<rpc 1>,<rpc 2>,...,<rpc n>. If multiple whitelists are set for a given user, they are set-intersected. See -rpcwhitelistdefault documentation for information on default whitelist behavior.",
ArgsManager::ALLOW_ANY,
OptionsCategory::RPC);
676 argsman.
AddArg(
"-rpcwhitelistdefault",
"Sets default behavior for rpc whitelisting. Unless rpcwhitelistdefault is set to 0, if any -rpcwhitelist is set, the rpc server acts as if all rpc users are subject to empty-unless-otherwise-specified whitelists. If rpcwhitelistdefault is set to 1 and no -rpcwhitelist is set, rpc server acts as if all rpc users are subject to empty whitelists.",
ArgsManager::ALLOW_ANY,
OptionsCategory::RPC);
684 hidden_args.emplace_back(
"-daemon");
685 hidden_args.emplace_back(
"-daemonwait");
698 if (pBlockIndex !=
nullptr) {
712 std::thread
t(runCommand,
cmd);
742 LogInfo(
"parameter interaction: -bind set -> setting -listen=1\n");
746 LogInfo(
"parameter interaction: -whitebind set -> setting -listen=1\n");
752 LogInfo(
"parameter interaction: -connect or -maxconnections=0 set -> setting -dnsseed=0\n");
754 LogInfo(
"parameter interaction: -connect or -maxconnections=0 set -> setting -listen=0\n");
757 std::string proxy_arg =
args.
GetArg(
"-proxy",
"");
758 if (proxy_arg !=
"" && proxy_arg !=
"0") {
761 LogInfo(
"parameter interaction: -proxy set -> setting -listen=0\n");
765 LogInfo(
"parameter interaction: -proxy set -> setting -upnp=0\n");
767 LogInfo(
"parameter interaction: -proxy set -> setting -natpmp=0\n");
771 LogInfo(
"parameter interaction: -proxy set -> setting -discover=0\n");
777 LogInfo(
"parameter interaction: -listen=0 -> setting -upnp=0\n");
779 LogInfo(
"parameter interaction: -listen=0 -> setting -natpmp=0\n");
782 LogInfo(
"parameter interaction: -listen=0 -> setting -discover=0\n");
784 LogInfo(
"parameter interaction: -listen=0 -> setting -listenonion=0\n");
786 LogInfo(
"parameter interaction: -listen=0 -> setting -i2pacceptincoming=0\n");
793 LogInfo(
"parameter interaction: -externalip set -> setting -discover=0\n");
799 LogInfo(
"parameter interaction: -blocksonly=1 -> setting -whitelistrelay=0\n");
808 LogInfo(
"parameter interaction: -whitelistforcerelay=1 -> setting -whitelistrelay=1\n");
812 bool clearnet_reachable = std::any_of(onlynets.begin(), onlynets.end(), [](
const auto& net) {
813 const auto n = ParseNetwork(net);
814 return n == NET_IPV4 || n == NET_IPV6;
817 LogInfo(
"parameter interaction: -onlynet excludes IPv4 and IPv6 -> setting -dnsseed=0\n");
837int nUserMaxConnections;
840int64_t peer_connect_timeout;
841std::set<BlockFilterType> g_enabled_filter_types;
851 std::set_new_handler(std::terminate);
852 LogError(
"Out of memory. Terminating.\n");
863 _CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE);
864 _CrtSetReportFile(_CRT_WARN, CreateFileA(
"NUL", GENERIC_WRITE, 0,
nullptr, OPEN_EXISTING, 0, 0));
866 _set_abort_behavior(0, _WRITE_ABORT_MSG | _CALL_REPORTFAULT);
870 HeapSetInformation(
nullptr, HeapEnableTerminationOnCorruption,
nullptr, 0);
885 signal(SIGPIPE, SIG_IGN);
887 SetConsoleCtrlHandler(consoleCtrlHandler,
true);
914 if (!errors.
empty()) {
920 LogInfo(
"Warning: Support for testnet3 is deprecated and will be removed in an upcoming release. Consider switching to testnet4.\n");
929 if (!warnings.
empty()) {
939 if (blockfilterindex_value ==
"" || blockfilterindex_value ==
"1") {
941 }
else if (blockfilterindex_value !=
"0") {
942 const std::vector<std::string> names =
args.
GetArgs(
"-blockfilterindex");
943 for (
const auto&
name : names) {
948 g_enabled_filter_types.insert(filter_type);
960 return InitError(
_(
"Cannot set -peerblockfilters without -blockfilterindex."));
968 return InitError(
_(
"Prune mode is incompatible with -txindex."));
970 return InitError(
_(
"Prune mode is incompatible with -reindex-chainstate. Use full -reindex instead."));
976 return InitError(
_(
"Cannot set -forcednsseed to true when setting -dnsseed to false."));
991 int nBind = std::max(nUserBind,
size_t(1));
993 nMaxConnections = std::max(nUserMaxConnections, 0);
1000 int fd_max = FD_SETSIZE;
1006 return InitError(
_(
"Not enough file descriptors available."));
1009 if (nMaxConnections < nUserMaxConnections)
1010 InitWarning(
strprintf(
_(
"Reducing -maxconnections from %d to %d, because of system limitations."), nUserMaxConnections, nMaxConnections));
1022 if (peer_connect_timeout <= 0) {
1048 const std::vector<std::string> options =
args.
GetArgs(
"-test");
1049 for (
const std::string& option : options) {
1051 size_t pos = doc_option.find(
" (");
1052 return (pos != std::string::npos) && (doc_option.substr(0, pos) == option);
1064 .chainparams = chainparams,
1066 .notifications = notifications,
1069 if (!chainman_result) {
1073 .chainparams = chainman_opts_dummy.chainparams,
1075 .notifications = chainman_opts_dummy.notifications,
1078 if (!blockman_result) {
1133 node.chain =
node.init->makeChain();
1134 node.mining =
node.init->makeMining();
1144 if (!opt_max_upload) {
1158 LogPrintf(
"Using at most %i automatic connections (%i file descriptors available)\n", nMaxConnections, nFD);
1162 LogPrintf(
"Warning: relative datadir option '%s' specified, which will be interpreted relative to the "
1163 "current working directory '%s'. This is fragile, because if bitcoin is started in the future "
1164 "from a different location, it will be unable to locate the current data files. There could "
1165 "also be data loss if bitcoin is started while in a temporary directory.\n",
1170 node.scheduler = std::make_unique<CScheduler>();
1171 auto& scheduler = *
node.scheduler;
1174 scheduler.m_service_thread = std::thread(
util::TraceThread,
"scheduler", [&] { scheduler.serviceQueue(); });
1177 scheduler.scheduleEvery([]{
1179 }, std::chrono::minutes{1});
1182 scheduler.scheduleEvery([&
args, &
node]{
1183 constexpr uint64_t min_disk_space = 50 << 20;
1185 LogError(
"Shutting down due to lack of disk space!\n");
1187 LogError(
"Failed to send shutdown signal after disk space check\n");
1190 }, std::chrono::minutes{5});
1193 node.validation_signals = std::make_unique<ValidationSignals>(std::make_unique<SerialTaskRunner>(scheduler));
1194 auto& validation_signals = *
node.validation_signals;
1207 for (
const auto& client :
node.chain_clients) {
1208 client->registerRpcs();
1222 return InitError(
_(
"Unable to start HTTP server. See debug log for details."));
1226 for (
const auto& client :
node.chain_clients) {
1227 if (!client->verify()) {
1247 std::vector<bool> asmap;
1250 if (!asmap_path.is_absolute()) {
1258 if (asmap.size() == 0) {
1263 LogPrintf(
"Using asmap version %s for IP bucketing\n", asmap_version.
ToString());
1265 LogPrintf(
"Using /16 prefix for IP bucketing\n");
1270 node.netgroupman = std::make_unique<NetGroupManager>(std::move(asmap));
1274 uiInterface.InitMessage(
_(
"Loading P2P addresses…").translated);
1277 node.addrman = std::move(*addrman);
1284 node.connman = std::make_unique<CConnman>(rng.
rand64(),
1291 if (!peerman_opts.ignore_incoming_txs) {
1296 node.fee_estimator = std::make_unique<CBlockPolicyEstimator>(
FeeestPath(
args), read_stale_estimates);
1301 validation_signals.RegisterValidationInterface(fee_estimator);
1305 for (
const std::string port_option : {
1310 const std::string port =
args.
GetArg(port_option,
"");
1313 return InitError(InvalidPortErrMsg(port_option, port));
1318 for ([[maybe_unused]]
const auto& [arg, unix] : std::vector<std::pair<std::string, bool>>{
1323 {
"-rpcbind",
false},
1324 {
"-torcontrol",
false},
1325 {
"-whitebind",
false},
1326 {
"-zmqpubhashblock",
true},
1327 {
"-zmqpubhashtx",
true},
1328 {
"-zmqpubrawblock",
true},
1329 {
"-zmqpubrawtx",
true},
1330 {
"-zmqpubsequence",
true},
1332 for (
const std::string& socket_addr :
args.
GetArgs(arg)) {
1333 std::string host_out;
1334 uint16_t port_out{0};
1336#ifdef HAVE_SOCKADDR_UN
1339 return InitError(InvalidPortErrMsg(arg, socket_addr));
1342 return InitError(InvalidPortErrMsg(arg, socket_addr));
1348 for (
const std::string& socket_addr :
args.
GetArgs(
"-bind")) {
1349 std::string host_out;
1350 uint16_t port_out{0};
1351 std::string bind_socket_addr = socket_addr.substr(0, socket_addr.rfind(
'='));
1353 return InitError(InvalidPortErrMsg(
"-bind", socket_addr));
1358 std::vector<std::string> uacomments;
1359 for (
const std::string& cmt :
args.
GetArgs(
"-uacomment")) {
1361 return InitError(
strprintf(
_(
"User Agent comment (%s) contains unsafe characters."), cmt));
1362 uacomments.push_back(cmt);
1366 return InitError(
strprintf(
_(
"Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments."),
1372 for (
const std::string& snet :
args.
GetArgs(
"-onlynet")) {
1383 _(
"Outbound connections restricted to CJDNS (-onlynet=cjdns) but "
1384 "-cjdnsreachable is not provided"));
1397 return InitError(
strprintf(
_(
"Incompatible options: -dnsseed=1 was explicitly specified, but -onlynet forbids connections to IPv4/IPv6")));
1408 std::string proxyArg =
args.
GetArg(
"-proxy",
"");
1409 if (proxyArg !=
"" && proxyArg !=
"0") {
1412 addrProxy =
Proxy(proxyArg, proxyRandomize);
1415 if (!proxyAddr.has_value()) {
1419 addrProxy =
Proxy(proxyAddr.value(), proxyRandomize);
1429 onion_proxy = addrProxy;
1437 std::string onionArg =
args.
GetArg(
"-onion",
"");
1438 if (onionArg !=
"") {
1439 if (onionArg ==
"0") {
1440 onion_proxy =
Proxy{};
1441 if (onlynet_used_with_onion) {
1443 _(
"Outbound connections restricted to Tor (-onlynet=onion) but the proxy for "
1444 "reaching the Tor network is explicitly forbidden: -onion=0"));
1448 onion_proxy =
Proxy(onionArg, proxyRandomize);
1451 if (!addr.has_value() || !addr->IsValid()) {
1455 onion_proxy =
Proxy(addr.value(), proxyRandomize);
1466 if (onlynet_used_with_onion && listenonion_disabled) {
1468 _(
"Outbound connections restricted to Tor (-onlynet=onion) but the proxy for "
1469 "reaching the Tor network is not provided: none of -proxy, -onion or "
1470 "-listenonion is given"));
1475 for (
const std::string& strAddr :
args.
GetArgs(
"-externalip")) {
1477 if (addrLocal.has_value() && addrLocal->IsValid())
1480 return InitError(ResolveErrMsg(
"externalip", strAddr));
1485 [&chainman =
node.chainman](std::vector<uint8_t>& block,
const CBlockIndex& index) {
1487 return chainman->m_blockman.ReadRawBlockFromDisk(block, WITH_LOCK(cs_main, return index.GetBlockPos()));
1498 ReadNotificationArgs(
args, *
node.notifications);
1500 .chainparams = chainparams,
1502 .notifications = *
node.notifications,
1503 .signals = &validation_signals,
1508 .chainparams = chainman_opts.chainparams,
1510 .notifications = chainman_opts.notifications,
1515 CacheSizes cache_sizes = CalculateCacheSizes(
args, g_enabled_filter_types.size());
1518 LogPrintf(
"* Using %.1f MiB for block index database\n", cache_sizes.
block_tree_db * (1.0 / 1024 / 1024));
1520 LogPrintf(
"* Using %.1f MiB for transaction index database\n", cache_sizes.
tx_index * (1.0 / 1024 / 1024));
1523 LogPrintf(
"* Using %.1f MiB for %s block filter index database\n",
1526 LogPrintf(
"* Using %.1f MiB for chain state database\n", cache_sizes.
coins_db * (1.0 / 1024 / 1024));
1533 .signals = &validation_signals,
1541 const bool do_reindex_chainstate{
args.
GetBoolArg(
"-reindex-chainstate",
false)};
1545 node.mempool = std::make_unique<CTxMemPool>(mempool_opts, mempool_error);
1546 if (!mempool_error.
empty()) {
1549 LogPrintf(
"* Using %.1f MiB for in-memory UTXO set (plus up to %.1f MiB of unused mempool space)\n", cache_sizes.
coins * (1.0 / 1024 / 1024), mempool_opts.max_size_bytes * (1.0 / 1024 / 1024));
1552 node.chainman = std::make_unique<ChainstateManager>(*
Assert(
node.shutdown), chainman_opts, blockman_opts);
1553 }
catch (std::exception& e) {
1562 if (!
node.chainman->m_blockman.IsPruneMode()) {
1563 LogPrintf(
"[snapshot] re-enabling NODE_NETWORK services\n");
1567 LogPrintf(
"[snapshot] restarting indexes\n");
1571 Assert(
node.validation_signals)->SyncWithValidationInterfaceQueue();
1573 for (
auto* index :
node.indexes) {
1576 if (!(index->Init() && index->StartBackgroundSync())) {
1577 LogPrintf(
"[snapshot] WARNING failed to restart index %s on snapshot chain\n", index->GetName());
1592 _(
"Error reading from database, shutting down."),
1596 uiInterface.InitMessage(
_(
"Loading block index…").translated);
1597 const auto load_block_index_start_time{SteadyClock::now()};
1598 auto catch_exceptions = [](
auto&& f) {
1601 }
catch (
const std::exception& e) {
1606 auto [status, error] = catch_exceptions([&]{
return LoadChainstate(chainman, cache_sizes, options); });
1608 uiInterface.InitMessage(
_(
"Verifying blocks…").translated);
1610 LogWarning(
"pruned datadir may not have more than %d blocks; only checking available blocks\n",
1613 std::tie(status, error) = catch_exceptions([&]{
return VerifyLoadedChainstate(chainman, options);});
1628 error +
Untranslated(
".\n\n") +
_(
"Do you want to rebuild the block database now?"),
1629 error.
original +
".\nPlease restart with -reindex or -reindex-chainstate to recover.",
1634 LogError(
"Internal error: failed to reset shutdown signal.\n");
1637 LogError(
"Aborted block database rebuild. Exiting.\n");
1650 LogPrintf(
"Shutdown requested. Exiting.\n");
1658 node.banman.get(), chainman,
1661 validation_signals.RegisterValidationInterface(
node.peerman.get());
1670 for (
const auto& filter_type : g_enabled_filter_types) {
1681 for (
auto index :
node.indexes)
if (!index->Init())
return false;
1684 for (
const auto& client :
node.chain_clients) {
1685 if (!client->load()) {
1698 uiInterface.InitMessage(
_(
"Pruning blockstore…").translated);
1699 chainstate->PruneAndFlush();
1705 LogPrintf(
"Setting NODE_NETWORK on non-prune mode\n");
1708 LogPrintf(
"Running node in NODE_NETWORK_LIMITED mode until snapshot background sync completes\n");
1726 if (!do_reindex && !do_reindex_chainstate && chain_active_height <= 1) {
1728 uint64_t additional_bytes_needed{
1731 assumed_chain_bytes};
1735 "Disk space for %s may not accommodate the block files. " \
1736 "Approximately %u GB of data will be stored in this directory."
1746 boost::signals2::connection block_notify_genesis_wait_connection;
1754 const std::string block_notify =
args.
GetArg(
"-blocknotify",
"");
1755 if (!block_notify.empty()) {
1758 std::string
command = block_notify;
1760 std::thread
t(runCommand,
command);
1766 std::vector<fs::path> vImportFiles;
1767 for (
const std::string& strFile :
args.
GetArgs(
"-loadblock")) {
1774 ImportBlocks(chainman, vImportFiles);
1776 LogPrintf(
"Stopping after block import\n");
1778 LogError(
"Failed to send shutdown signal after finishing block import\n");
1785 bilingual_str err_str =
_(
"Failed to start indexes, shutting down..");
1805 block_notify_genesis_wait_connection.disconnect();
1815 int64_t best_block_time{};
1826 if (tip_info && chainman.m_best_header) {
1828 tip_info->
header_time = chainman.m_best_header->GetBlockTime();
1831 LogPrintf(
"nBestHeight = %d\n", chain_active_height);
1832 if (
node.peerman)
node.peerman->SetBestBlock(chain_active_height, std::chrono::seconds{best_block_time});
1852 const uint16_t default_bind_port =
1855 const auto BadPortWarning = [](
const char*
prefix, uint16_t port) {
1856 return strprintf(
_(
"%s request to listen on port %u. This port is considered \"bad\" and "
1857 "thus it is unlikely that any peer will connect to it. See "
1858 "doc/p2p-bad-ports.md for details and a full list."),
1863 for (
const std::string& bind_arg :
args.
GetArgs(
"-bind")) {
1864 std::optional<CService> bind_addr;
1865 const size_t index = bind_arg.rfind(
'=');
1866 if (index == std::string::npos) {
1867 bind_addr =
Lookup(bind_arg, default_bind_port,
false);
1868 if (bind_addr.has_value()) {
1869 connOptions.
vBinds.push_back(bind_addr.value());
1870 if (
IsBadPort(bind_addr.value().GetPort())) {
1871 InitWarning(BadPortWarning(
"-bind", bind_addr.value().GetPort()));
1876 const std::string network_type = bind_arg.substr(index + 1);
1877 if (network_type ==
"onion") {
1878 const std::string truncated_bind_arg = bind_arg.substr(0, index);
1879 bind_addr =
Lookup(truncated_bind_arg,
BaseParams().OnionServiceTargetPort(),
false);
1880 if (bind_addr.has_value()) {
1881 connOptions.
onion_binds.push_back(bind_addr.value());
1886 return InitError(ResolveErrMsg(
"bind", bind_arg));
1889 for (
const std::string& strBind :
args.
GetArgs(
"-whitebind")) {
1911 onion_service_target = connOptions.
onion_binds.front();
1912 }
else if (!connOptions.
vBinds.empty()) {
1913 onion_service_target = connOptions.
vBinds.front();
1916 connOptions.
onion_binds.push_back(onion_service_target);
1922 "for the automatically created Tor onion service."),
1934 for (
const auto& net :
args.
GetArgs(
"-whitelist")) {
1953 if (connect.size() != 1 || connect[0] !=
"0") {
1957 LogPrintf(
"-seednode is ignored when -connect is used\n");
1961 LogPrintf(
"-dnsseed is ignored when -connect is used and -proxy is specified\n");
1965 const std::string& i2psam_arg =
args.
GetArg(
"-i2psam",
"");
1966 if (!i2psam_arg.empty()) {
1968 if (!addr.has_value() || !addr->IsValid()) {
1975 _(
"Outbound connections restricted to i2p (-onlynet=i2p) but "
1976 "-i2psam is not provided"));
1983 if (!
node.connman->Start(scheduler, connOptions)) {
2002 for (
const auto& client :
node.chain_clients) {
2003 client->start(scheduler);
2007 scheduler.scheduleEvery([banman]{
2011 if (
node.peerman)
node.peerman->StartScheduledTasks(scheduler);
2026 std::optional<const CBlockIndex*> indexes_start_block;
2027 std::string older_index_name;
2032 for (
auto index :
node.indexes) {
2034 if (summary.
synced)
continue;
2039 if (!index_chain.
Contains(pindex)) {
2040 pindex = index_chain.
FindFork(pindex);
2043 if (!indexes_start_block || !pindex || pindex->
nHeight < indexes_start_block.value()->nHeight) {
2044 indexes_start_block = pindex;
2045 older_index_name = summary.
name;
2051 if (indexes_start_block) {
2053 const CBlockIndex* start_block = *indexes_start_block;
2055 if (!chainman.
m_blockman.CheckBlockDataAvailability(*index_chain.
Tip(), *
Assert(start_block))) {
2056 return InitError(
strprintf(
Untranslated(
"%s best block of the index goes beyond pruned data. Please disable the index or reindex (which will download the whole blockchain again)"), older_index_name));
2061 for (
auto index :
node.indexes)
if (!index->StartBackgroundSync())
return false;
util::Result< std::unique_ptr< AddrMan > > LoadAddrman(const NetGroupManager &netgroupman, const ArgsManager &args)
Returns an error string on failure.
static constexpr int32_t DEFAULT_ADDRMAN_CONSISTENCY_CHECKS
Default for -checkaddrman.
const std::vector< std::string > TEST_OPTIONS_DOC
void SetupHelpOptions(ArgsManager &args)
Add help options to the args manager.
const char *const BITCOIN_SETTINGS_FILENAME
const char *const BITCOIN_CONF_FILENAME
fs::path AbsPathForConfigVal(const ArgsManager &args, const fs::path &path, bool net_specific=true)
Most paths passed as configuration arguments are treated as relative to the datadir if they are not a...
static constexpr unsigned int DEFAULT_MISBEHAVING_BANTIME
static constexpr std::chrono::minutes DUMP_BANS_INTERVAL
How often to dump banned addresses/subnets to disk.
void ScheduleBatchPriority()
On platforms that support it, tell the kernel the calling thread is CPU-intensive and non-interactive...
void RPCNotifyBlockChange(const CBlockIndex *pindex)
Callback for when block tip changed.
const std::string & BlockFilterTypeName(BlockFilterType filter_type)
Get the human-readable name for a filter type.
const std::set< BlockFilterType > & AllBlockFilterTypes()
Get a list of known filter types.
const std::string & ListBlockFilterTypes()
Get a comma-separated list of known filter type names.
bool BlockFilterTypeByName(const std::string &name, BlockFilterType &filter_type)
Find a filter type by its human-readable name.
void DestroyAllBlockFilterIndexes()
Destroy all open block filter indexes.
BlockFilterIndex * GetBlockFilterIndex(BlockFilterType filter_type)
Get a block filter index by type.
bool InitBlockFilterIndex(std::function< std::unique_ptr< interfaces::Chain >()> make_chain, BlockFilterType filter_type, size_t n_cache_size, bool f_memory, bool f_wipe)
Initialize a block filter index for the given type if one does not already exist.
static const char *const DEFAULT_BLOCKFILTERINDEX
std::unique_ptr< const CChainParams > CreateChainParams(const ArgsManager &args, const ChainType chain)
Creates and returns a std::unique_ptr<CChainParams> of the chosen chain.
const CChainParams & Params()
Return the currently selected parameters.
const CBaseChainParams & BaseParams()
Return the currently selected parameters.
std::unique_ptr< CBaseChainParams > CreateBaseChainParams(const ChainType chain)
Port numbers for incoming Tor connections (8334, 18334, 38334, 48334, 18445) have been chosen arbitra...
void SetupChainParamsBaseOptions(ArgsManager &argsman)
Set the arguments for chainparams.
static constexpr int DEFAULT_SCRIPTCHECK_THREADS
-par default (number of script-checking threads, 0 = auto)
static constexpr int MAX_SCRIPTCHECK_THREADS
Maximum number of dedicated script-checking threads allowed.
static constexpr bool DEFAULT_CHECKPOINTS_ENABLED
static constexpr auto DEFAULT_MAX_TIP_AGE
std::string ChainTypeToString(ChainType chain)
#define Assert(val)
Identity function.
std::set< std::string > GetUnsuitableSectionOnlyArgs() const
Log warnings for options in m_section_only_args when they are specified in the default section but no...
std::list< SectionInfo > GetUnrecognizedSections() const
Log warnings for unrecognized section names in the config file.
@ ALLOW_ANY
disable validation
@ DISALLOW_ELISION
disallow -foo syntax that doesn't assign any value
ChainType GetChainType() const
Returns the appropriate chain type from the program arguments.
std::vector< std::string > GetArgs(const std::string &strArg) const
Return a vector of strings of the given argument.
fs::path GetDataDirNet() const
Get data directory path with appended network identifier.
bool SoftSetArg(const std::string &strArg, const std::string &strValue)
Set an argument if it doesn't already have a value.
bool IsArgSet(const std::string &strArg) const
Return true if the given argument has been manually set.
int64_t GetIntArg(const std::string &strArg, int64_t nDefault) const
Return integer argument or default value.
fs::path GetBlocksDirPath() const
Get blocks directory path.
std::string GetArg(const std::string &strArg, const std::string &strDefault) const
Return string argument or default value.
bool SoftSetBoolArg(const std::string &strArg, bool fValue)
Set a boolean argument if it doesn't already have a value.
bool GetBoolArg(const std::string &strArg, bool fDefault) const
Return boolean argument or default value.
void AddHiddenArgs(const std::vector< std::string > &args)
Add many hidden arguments.
void AddArg(const std::string &name, const std::string &help, unsigned int flags, const OptionsCategory &cat)
Add argument.
fs::path GetPathArg(std::string arg, const fs::path &default_value={}) const
Return path argument or default value.
std::atomic< bool > m_reopen_file
void DumpBanlist() EXCLUSIVE_LOCKS_REQUIRED(!m_banned_mutex)
The block chain is a tree shaped structure starting with the genesis block at the root,...
uint256 GetBlockHash() const
int64_t GetBlockTime() const
int nHeight
height of the entry in the chain. The genesis block has height 0
The BlockPolicyEstimator is used for estimating the feerate needed for a transaction to be included i...
void FlushFeeEstimates() EXCLUSIVE_LOCKS_REQUIRED(!m_cs_fee_estimator)
Record current fee estimations.
An in-memory indexed chain of blocks.
CBlockIndex * Tip() const
Returns the index entry for the tip of this chain, or nullptr if none.
CBlockIndex * Genesis() const
Returns the index entry for the genesis block of this chain, or nullptr if none.
int Height() const
Return the maximal height in the chain.
const CBlockIndex * FindFork(const CBlockIndex *pindex) const
Find the last common block between this chain and a block index entry.
bool Contains(const CBlockIndex *pindex) const
Efficiently check whether a block is present in this chain.
CChainParams defines various tweakable parameters of a given instance of the Bitcoin system.
std::string GetChainTypeString() const
Return the chain type string.
const MessageStartChars & MessageStart() const
const CBlock & GenesisBlock() const
bool DefaultConsistencyChecks() const
Default value for -checkmempool and -checkblockindex argument.
const ChainTxData & TxData() const
uint64_t AssumedBlockchainSize() const
Minimum free space (in GB) needed for data directory.
ChainType GetChainType() const
Return the chain type.
A combination of a network address (CNetAddr) and a (TCP) port.
std::string ToStringAddrPort() const
static const int DEFAULT_ZMQ_SNDHWM
static std::unique_ptr< CZMQNotificationInterface > Create(std::function< bool(std::vector< uint8_t > &, const CBlockIndex &)> get_block_by_index)
Chainstate stores and provides an API to update our local knowledge of the current best chain.
CChain m_chain
The current chain of blockheaders we consult and build on.
Provides an interface for creating and interacting with one or two chainstates: an IBD chainstate gen...
node::BlockMap & BlockIndex() EXCLUSIVE_LOCKS_REQUIRED(
SnapshotCompletionResult MaybeCompleteSnapshotValidation() EXCLUSIVE_LOCKS_REQUIRED(const CBlockIndex *GetSnapshotBaseBlock() const EXCLUSIVE_LOCKS_REQUIRED(Chainstate ActiveChainstate)() const
Once the background validation chainstate has reached the height which is the base of the UTXO snapsh...
std::thread m_thread_load
kernel::Notifications & GetNotifications() const
RecursiveMutex & GetMutex() const LOCK_RETURNED(
Alias for cs_main.
CBlockIndex * ActiveTip() const EXCLUSIVE_LOCKS_REQUIRED(GetMutex())
bool BackgroundSyncInProgress() const EXCLUSIVE_LOCKS_REQUIRED(GetMutex())
The state of a background sync (for net processing)
const util::SignalInterrupt & m_interrupt
std::function< void()> snapshot_download_completed
Function to restart active indexes; set dynamically to avoid a circular dependency on base/index....
const CChainParams & GetParams() const
CChain & ActiveChain() const EXCLUSIVE_LOCKS_REQUIRED(GetMutex())
Chainstate &InitializeChainstate(CTxMemPool *mempool) EXCLUSIVE_LOCKS_REQUIRED(std::vector< Chainstate * GetAll)()
Instantiate a new chainstate.
node::BlockManager m_blockman
A single BlockManager instance is shared across each constructed chainstate to avoid duplicating bloc...
uint64_t rand64() noexcept
Generate a random 64-bit integer.
Different type to mark Mutex at global scope.
A writer stream (for serialization) that computes a 256-bit hash.
static bool TryParse(const std::string &str, NetWhitebindPermissions &output, bilingual_str &error)
static bool TryParse(const std::string &str, NetWhitelistPermissions &output, ConnectionDirection &output_connection_direction, bilingual_str &error)
static std::unique_ptr< PeerManager > make(CConnman &connman, AddrMan &addrman, BanMan *banman, ChainstateManager &chainman, CTxMemPool &pool, node::Warnings &warnings, Options opts)
void Add(Network net) EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
bool Contains(Network net) const EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
void Remove(Network net) EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
void RemoveAll() EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
virtual void AddWalletOptions(ArgsManager &argsman) const =0
Get wallet help string.
virtual void Construct(node::NodeContext &node) const =0
Add wallets that should be opened to list of chain clients.
virtual bool ParameterInteraction() const =0
Check wallet parameter interaction.
std::string GetHex() const
std::string ToString() const
Path class wrapper to block calls to the fs::path(std::string) implicit constructor and the fs::path:...
A base class defining functions for notifying about certain kernel events.
virtual void fatalError(const bilingual_str &message)
The fatal error notification is sent to notify the user when an error occurs in kernel code that can'...
Maintains a tree of blocks (stored in m_block_index) which is consulted to determine where the most-w...
CBlockIndex * LookupBlockIndex(const uint256 &hash) EXCLUSIVE_LOCKS_REQUIRED(cs_main)
std::atomic_bool m_blockfiles_indexed
Whether all blockfiles have been added to the block tree database.
uint64_t GetPruneTarget() const
Attempt to stay below this number of bytes of block files.
bool CheckBlockDataAvailability(const CBlockIndex &upper_block LIFETIMEBOUND, const CBlockIndex &lower_block LIFETIMEBOUND) EXCLUSIVE_LOCKS_REQUIRED(const CBlockIndex *GetFirstBlock(const CBlockIndex &upper_block LIFETIMEBOUND, uint32_t status_mask, const CBlockIndex *lower_block=nullptr) const EXCLUSIVE_LOCKS_REQUIRED(boo m_have_pruned)
Check if all blocks in the [upper_block, lower_block] range have data available.
bool IsPruneMode() const
Whether running in -prune mode.
kernel::BlockManagerOpts Options
std::string FormatSubVersion(const std::string &name, int nClientVersion, const std::vector< std::string > &comments)
Format the subversion field according to BIP 14 spec (https://github.com/bitcoin/bips/blob/master/bip...
static const int CLIENT_VERSION
bitcoind-res.rc includes this file, but it cannot cope with real c++ code.
const std::string CLIENT_NAME
std::unique_ptr< CoinStatsIndex > g_coin_stats_index
The global UTXO set hash object.
static constexpr bool DEFAULT_COINSTATSINDEX
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate.
const WalletInitInterface & g_wallet_init_interface
const std::string CURRENCY_UNIT
fs::path FeeestPath(const ArgsManager &argsman)
int RaiseFileDescriptorLimit(int nMinFD)
this function tries to raise the file descriptor limit to the requested number.
bool CheckDiskSpace(const fs::path &dir, uint64_t additional_bytes)
std::string HexStr(const Span< const uint8_t > s)
Convert a span of bytes to a lower-case hexadecimal string.
void InterruptHTTPRPC()
Interrupt HTTP RPC subsystem.
void StopHTTPRPC()
Stop HTTP RPC subsystem.
bool StartHTTPRPC(const std::any &context)
Start HTTP RPC subsystem.
void StartREST(const std::any &context)
Start HTTP REST subsystem.
void StopREST()
Stop HTTP REST subsystem.
void InterruptREST()
Interrupt RPC REST subsystem.
void InterruptHTTPServer()
Interrupt HTTP server threads.
void StartHTTPServer()
Start HTTP server.
bool InitHTTPServer(const util::SignalInterrupt &interrupt)
Initialize HTTP server.
void StopHTTPServer()
Stop HTTP server.
static const int DEFAULT_HTTP_SERVER_TIMEOUT
static const int DEFAULT_HTTP_WORKQUEUE
static const int DEFAULT_HTTP_THREADS
Common init functions shared by bitcoin-node, bitcoin-wallet, etc.
static const char * BITCOIN_PID_FILENAME
The PID file facilities.
static bool CreatePidFile(const ArgsManager &args)
static bool g_generated_pid
True if this process has created a PID file.
static std::optional< util::SignalInterrupt > g_shutdown
static void RemovePidFile(const ArgsManager &args)
void Interrupt(NodeContext &node)
Interrupt threads.
void InitLogging(const ArgsManager &args)
Initialize global loggers.
static bool AppInitServers(NodeContext &node)
bool AppInitLockDataDirectory()
Lock bitcoin core data directory.
static void ShutdownNotify(const ArgsManager &args)
void SetupServerArgs(ArgsManager &argsman)
Register all arguments with the ArgsManager.
#define MIN_CORE_FILEDESCRIPTORS
void Shutdown(NodeContext &node)
static void HandleSIGTERM(int)
Signal handlers are very limited in what they are allowed to do.
static GlobalMutex g_genesis_wait_mutex
static void OnRPCStarted()
static void HandleSIGHUP(int)
bool AppInitBasicSetup(const ArgsManager &args, std::atomic< int > &exit_status)
Initialize bitcoin core: Basic context setup.
static fs::path GetPidFile(const ArgsManager &args)
static std::condition_variable g_genesis_wait_cv
static constexpr bool DEFAULT_PROXYRANDOMIZE
bool ShutdownRequested(node::NodeContext &node)
Return whether node shutdown was requested.
bool StartIndexBackgroundSync(NodeContext &node)
Validates requirements to run the indexes and spawns each index initial sync thread.
bool AppInitParameterInteraction(const ArgsManager &args)
Initialization: parameter interaction.
bool AppInitInterfaces(NodeContext &node)
Initialize node and wallet interface pointers.
static constexpr bool DEFAULT_STOPAFTERBLOCKIMPORT
static const char * DEFAULT_ASMAP_FILENAME
void InitParameterInteraction(ArgsManager &args)
Parameter interaction: change current parameters depending on various rules.
static constexpr bool DEFAULT_REST_ENABLE
static void BlockNotifyGenesisWait(const CBlockIndex *pBlockIndex)
static void OnRPCStopped()
static bool LockDataDirectory(bool probeOnly)
static void registerSignalHandler(int signal, void(*handler)(int))
bool AppInitMain(NodeContext &node, interfaces::BlockAndHeaderTipInfo *tip_info)
Bitcoin core main initialization.
static constexpr bool DEFAULT_I2P_ACCEPT_INCOMING
static boost::signals2::connection rpc_notify_block_change_connection
void InitContext(NodeContext &node)
Initialize node context shutdown and args variables.
static void new_handler_terminate()
static void StartupNotify(const ArgsManager &args)
bool AppInitSanityChecks(const kernel::Context &kernel)
Initialization sanity checks.
static constexpr bool DEFAULT_DAEMON
Default value for -daemon option.
static constexpr bool DEFAULT_DAEMONWAIT
Default value for -daemonwait option.
CClientUIInterface uiInterface
void InitWarning(const bilingual_str &str)
Show warning message.
bool InitError(const bilingual_str &str)
Show error message.
bool ECC_InitSanityCheck()
Check that required EC support is available at runtime.
BCLog::Logger & LogInstance()
#define LogPrint(category,...)
void StartMapPort(bool use_upnp, bool use_natpmp)
static constexpr bool DEFAULT_NATPMP
static constexpr bool DEFAULT_UPNP
util::Result< void > ApplyArgsManOptions(const ArgsManager &argsman, const CChainParams &chainparams, MemPoolOptions &mempool_opts)
Overlay the options set in argsman on top of corresponding members in mempool_opts.
static constexpr unsigned int DEFAULT_MAX_MEMPOOL_SIZE_MB
Default for -maxmempool, maximum megabytes of mempool memory usage.
static constexpr bool DEFAULT_ACCEPT_NON_STD_TXN
Default for -acceptnonstdtxn.
static constexpr bool DEFAULT_MEMPOOL_FULL_RBF
Default for -mempoolfullrbf, if the transaction replaceability signaling is ignored.
static constexpr unsigned int DEFAULT_MEMPOOL_EXPIRY_HOURS
Default for -mempoolexpiry, expiration time for mempool transactions in hours.
static constexpr unsigned int DEFAULT_BLOCKSONLY_MAX_MEMPOOL_SIZE_MB
Default for -maxmempool when blocksonly is set.
static constexpr bool DEFAULT_PERSIST_V1_DAT
Whether to fall back to legacy V1 serialization when writing mempool.dat.
std::optional< CAmount > ParseMoney(const std::string &money_string)
Parse an amount denoted in full coins.
std::string FormatMoney(const CAmount n)
Money parsing/formatting utilities.
void OnStarted(std::function< void()> slot)
void OnStopped(std::function< void()> slot)
bilingual_str AmountErrMsg(const std::string &optname, const std::string &strValue)
bilingual_str ResolveErrMsg(const std::string &optname, const std::string &strBind)
bilingual_str InvalidPortErrMsg(const std::string &optname, const std::string &invalid_value)
static auto quoted(const std::string &s)
static bool exists(const path &p)
static std::string PathToString(const path &path)
Convert path object to a byte string.
static path PathFromString(const std::string &string)
Convert byte string to path object.
void AddLoggingArgs(ArgsManager &argsman)
util::Result< void > SetLoggingCategories(const ArgsManager &args)
bool StartLogging(const ArgsManager &args)
util::Result< void > SetLoggingLevel(const ArgsManager &args)
void SetLoggingOptions(const ArgsManager &args)
std::unique_ptr< Chain > MakeChain(node::NodeContext &node)
Return implementation of Chain interface.
static constexpr bool DEFAULT_XOR_BLOCKSDIR
util::Result< void > SanityChecks(const Context &)
Ensure a usable environment with all necessary library support.
@ FAILURE_INCOMPATIBLE_DB
@ FAILURE_FATAL
Fatal error which should not prompt to reindex.
@ FAILURE
Generic failure which reindexing may fix.
@ FAILURE_INSUFFICIENT_DBCACHE
void ImportBlocks(ChainstateManager &chainman, std::vector< fs::path > vImportFiles)
CacheSizes CalculateCacheSizes(const ArgsManager &args, size_t n_indexes)
fs::path MempoolPath(const ArgsManager &argsman)
util::Result< void > ApplyArgsManOptions(const ArgsManager &args, BlockManager::Options &opts)
static const bool DEFAULT_PRINT_MODIFIED_FEE
bool DumpMempool(const CTxMemPool &pool, const fs::path &dump_path, FopenFn mockable_fopen_function, bool skip_file_commit)
Dump the mempool to a file.
bool ShouldPersistMempool(const ArgsManager &argsman)
ChainstateLoadResult LoadChainstate(ChainstateManager &chainman, const CacheSizes &cache_sizes, const ChainstateLoadOptions &options)
This sequence can have 4 types of outcomes:
ChainstateLoadResult VerifyLoadedChainstate(ChainstateManager &chainman, const ChainstateLoadOptions &options)
bool LoadMempool(CTxMemPool &pool, const fs::path &load_path, Chainstate &active_chainstate, ImportMempoolOptions &&opts)
Import the file and attempt to add its contents to the mempool.
static constexpr bool DEFAULT_PERSIST_MEMPOOL
Default for -persistmempool, indicating whether the node should attempt to automatically load the mem...
static constexpr int DEFAULT_STOPATHEIGHT
void ThreadRename(const std::string &)
Rename a thread both in terms of an internal (in-memory) name as well as its system thread name.
bilingual_str ErrorString(const Result< T > &result)
void TraceThread(std::string_view thread_name, std::function< void()> thread_func)
A wrapper for do-something-once thread functions.
std::string ToString(const T &t)
Locale-independent version of std::to_string.
auto Join(const C &container, const S &separator, UnaryOp unary_op)
Join all container items.
void ReplaceAll(std::string &in_out, const std::string &search, const std::string &substitute)
LockResult LockDirectory(const fs::path &directory, const fs::path &lockfile_name, bool probe_only)
bool AddLocal(const CService &addr_, int nScore)
std::string strSubVersion
Subversion as sent to the P2P network in version messages.
void Discover()
Look up IP addresses from all interfaces on the machine and add them to the list of local addresses t...
static const unsigned int DEFAULT_MAX_PEER_CONNECTIONS
The maximum number of peer connections to maintain.
static const unsigned int MAX_SUBVERSION_LENGTH
Maximum length of the user agent string in version message.
static const int MAX_ADDNODE_CONNECTIONS
Maximum number of addnode outgoing nodes.
static const size_t DEFAULT_MAXSENDBUFFER
static const int NUM_FDS_MESSAGE_CAPTURE
Number of file descriptors required for message capture.
static constexpr bool DEFAULT_FIXEDSEEDS
static const bool DEFAULT_BLOCKSONLY
Default for blocks only.
static const size_t DEFAULT_MAXRECEIVEBUFFER
static const std::string DEFAULT_MAX_UPLOAD_TARGET
The default for -maxuploadtarget.
static constexpr bool DEFAULT_FORCEDNSSEED
static constexpr bool DEFAULT_DNSSEED
static const bool DEFAULT_LISTEN
-listen default
static const int64_t DEFAULT_PEER_CONNECT_TIMEOUT
-peertimeout default
static constexpr bool DEFAULT_V2_TRANSPORT
const std::vector< std::string > NET_PERMISSIONS_DOC
constexpr bool DEFAULT_WHITELISTFORCERELAY
Default for -whitelistforcerelay.
constexpr bool DEFAULT_WHITELISTRELAY
Default for -whitelistrelay.
static const uint32_t DEFAULT_BLOCK_RECONSTRUCTION_EXTRA_TXN
Default number of non-mempool transactions to keep around for block reconstruction.
static const uint32_t DEFAULT_MAX_ORPHAN_TRANSACTIONS
Default for -maxorphantx, maximum number of orphan transactions kept in memory.
static constexpr bool DEFAULT_TXRECONCILIATION_ENABLE
Whether transaction reconciliation protocol should be enabled by default.
static const bool DEFAULT_PEERBLOCKFILTERS
static const bool DEFAULT_PEERBLOOMFILTERS
@ NET_ONION
TOR (v2 or v3)
@ NET_UNROUTABLE
Addresses from these networks are not publicly routable on the global Internet.
bool SetNameProxy(const Proxy &addrProxy)
Set the name proxy to use for all connections to nodes specified by a hostname.
enum Network ParseNetwork(const std::string &net_in)
bool SetProxy(enum Network net, const Proxy &addrProxy)
std::vector< CService > Lookup(const std::string &name, uint16_t portDefault, bool fAllowLookup, unsigned int nMaxSolutions, DNSLookupFn dns_lookup_function)
Resolve a service string to its corresponding service.
ReachableNets g_reachable_nets
bool IsUnixSocketPath(const std::string &name)
Check if a string is a valid UNIX domain socket path.
bool IsBadPort(uint16_t port)
Determine if a port is "bad" from the perspective of attempting to connect to a node on that port.
std::vector< std::string > GetNetworkNames(bool append_unroutable)
Return a vector of publicly routable Network names; optionally append NET_UNROUTABLE.
static const int DEFAULT_NAME_LOOKUP
-dns default
const std::string ADDR_PREFIX_UNIX
Prefix for unix domain socket addresses (which are local filesystem paths)
static const int DEFAULT_CONNECT_TIMEOUT
-timeout default
static constexpr bool DEFAULT_ACCEPT_STALE_FEE_ESTIMATES
static constexpr std::chrono::hours MAX_FILE_AGE
fee_estimates.dat that are more than 60 hours (2.5 days) old will not be read, as fee estimates are b...
static constexpr std::chrono::hours FEE_FLUSH_INTERVAL
unsigned int nBytesPerSigOp
static const unsigned int MAX_OP_RETURN_RELAY
Default setting for -datacarriersize.
static constexpr unsigned int DEFAULT_BLOCK_MIN_TX_FEE
Default for -blockmintxfee, which sets the minimum feerate for a transaction in blocks created by min...
static constexpr unsigned int DEFAULT_INCREMENTAL_RELAY_FEE
Default for -incrementalrelayfee, which sets the minimum feerate increase for mempool limiting or rep...
static constexpr unsigned int DEFAULT_ANCESTOR_SIZE_LIMIT_KVB
Default for -limitancestorsize, maximum kilobytes of tx + all in-mempool ancestors.
static constexpr bool DEFAULT_PERMIT_BAREMULTISIG
Default for -permitbaremultisig.
static constexpr unsigned int DUST_RELAY_TX_FEE
Min feerate for defining dust.
static constexpr unsigned int DEFAULT_DESCENDANT_LIMIT
Default for -limitdescendantcount, max number of in-mempool descendants.
static constexpr unsigned int DEFAULT_BYTES_PER_SIGOP
Default for -bytespersigop.
static constexpr unsigned int DEFAULT_DESCENDANT_SIZE_LIMIT_KVB
Default for -limitdescendantsize, maximum kilobytes of in-mempool descendants.
static constexpr unsigned int DEFAULT_BLOCK_MAX_WEIGHT
Default for -blockmaxweight, which controls the range of block weights the mining code will create.
static const bool DEFAULT_ACCEPT_DATACARRIER
Default for -datacarrier.
static constexpr unsigned int DEFAULT_ANCESTOR_LIMIT
Default for -limitancestorcount, max number of in-mempool ancestors.
static constexpr unsigned int DEFAULT_MIN_RELAY_TX_FEE
Default for -minrelaytxfee, minimum relay fee for transactions.
ServiceFlags
nServices flags
void RandAddPeriodic() noexcept
Gather entropy from various expensive sources, and feed them to the PRNG state.
static void RegisterAllCoreRPCCommands(CRPCTable &t)
bool(* handler)(const std::any &context, HTTPRequest *req, const std::string &strReq)
const std::string UNIX_EPOCH_TIME
String used to describe UNIX epoch time in documentation, factored out to a constant for consistency.
static constexpr bool DEFAULT_RPC_DOC_CHECK
void SetRPCWarmupFinished()
void SetRPCWarmupStatus(const std::string &newStatus)
Set the RPC warmup status.
void RpcInterruptionPoint()
Throw JSONRPCError if RPC is not running.
static constexpr size_t DEFAULT_VALIDATION_CACHE_BYTES
@ SAFE_CHARS_UA_COMMENT
BIP-0014 subset.
unsigned int nReceiveFloodSize
std::vector< NetWhitebindPermissions > vWhiteBinds
uint64_t nMaxOutboundLimit
CClientUIInterface * uiInterface
std::vector< NetWhitelistPermissions > vWhitelistedRangeIncoming
std::vector< CService > onion_binds
std::vector< std::string > m_specified_outgoing
NetEventsInterface * m_msgproc
ServiceFlags nLocalServices
std::vector< std::string > m_added_nodes
int64_t m_peer_connect_timeout
std::vector< CService > vBinds
unsigned int nSendBufferMaxSize
int m_max_automatic_connections
bool m_i2p_accept_incoming
std::vector< std::string > vSeedNodes
bool m_use_addrman_outgoing
bool whitelist_forcerelay
bool bind_on_any
True if the user did not specify -bind= or -whitebind= and thus we should bind on 0....
std::vector< NetWhitelistPermissions > vWhitelistedRangeOutgoing
Block and header tip information.
double verification_progress
An options struct for ChainstateManager, more ergonomically referred to as ChainstateManager::Options...
Context struct holding the kernel library's logically global state, and passed to external libbitcoin...
Options struct containing options for constructing a CTxMemPool.
bool require_full_verification
Setting require_full_verification to true will require all checks at check_level (below) to succeed f...
std::function< void()> coins_error_cb
NodeContext struct containing references to chain state and connection state.
#define WAIT_LOCK(cs, name)
#define WITH_LOCK(cs, code)
Run code while locking a mutex.
#define TRY_LOCK(cs, name)
std::string SysErrorString(int err)
Return system error string from errno value.
void SetMockTime(int64_t nMockTimeIn)
DEPRECATED Use SetMockTime with chrono type.
constexpr auto Ticks(Dur2 d)
Helper to count the seconds of a duration/time_point.
CService DefaultOnionServiceTarget()
const std::string DEFAULT_TOR_CONTROL
Default control ip and port.
void InterruptTorControl()
void StartTorControl(CService onion_service_target)
static const bool DEFAULT_LISTEN_ONION
constexpr int DEFAULT_TOR_CONTROL_PORT
Functionality for communicating with Tor.
bilingual_str _(ConstevalStringLiteral str)
Translation function.
bilingual_str Untranslated(std::string original)
Mark a bilingual_str as untranslated.
static const int64_t nMinDbCache
min. -dbcache (MiB)
static const int64_t nDefaultDbBatchSize
-dbbatchsize default (bytes)
static const int64_t nMaxDbCache
max. -dbcache (MiB)
static const int64_t nDefaultDbCache
-dbcache default (MiB)
std::unique_ptr< TxIndex > g_txindex
The global transaction index, used in GetTransaction. May be null.
static constexpr bool DEFAULT_TXINDEX
std::vector< bool > DecodeAsmap(fs::path path)
Read asmap from provided binary file.
bool ParseUInt16(std::string_view str, uint16_t *out)
Convert decimal string to unsigned 16-bit integer with strict parse error feedback.
bool SplitHostPort(std::string_view in, uint16_t &portOut, std::string &hostOut)
Splits socket address string into host string and port value.
std::optional< uint64_t > ParseByteUnits(std::string_view str, ByteUnit default_multiplier)
Parse a string with suffix unit [k|K|m|M|g|G|t|T].
std::string SanitizeString(std::string_view str, int rule)
Remove unsafe chars.
std::condition_variable g_best_block_cv
double GuessVerificationProgress(const ChainTxData &data, const CBlockIndex *pindex)
Guess how far we are in the verification process at the given block index require cs_main if pindex h...
const std::vector< std::string > CHECKLEVEL_DOC
Documentation for argument 'checklevel'.
static constexpr int DEFAULT_CHECKLEVEL
static const uint64_t MIN_DISK_SPACE_FOR_BLOCK_FILES
static const unsigned int MIN_BLOCKS_TO_KEEP
Block files containing a block-height within MIN_BLOCKS_TO_KEEP of ActiveChain().Tip() will not be pr...
SynchronizationState
Current sync state passed to tip changed callbacks.
static const signed int DEFAULT_CHECKBLOCKS
std::unique_ptr< CZMQNotificationInterface > g_zmq_notification_interface
void RegisterZMQRPCCommands(CRPCTable &t)