Bitcoin ABC 0.32.4
P2P Digital Currency
interfaces.cpp
Go to the documentation of this file.
1// Copyright (c) 2018 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 <addrdb.h>
6#include <banman.h>
7#include <chain.h>
8#include <chainparams.h>
9#include <common/args.h>
10#include <config.h>
11#include <init.h>
12#include <interfaces/chain.h>
13#include <interfaces/handler.h>
14#include <interfaces/node.h>
15#include <interfaces/wallet.h>
17#include <mapport.h>
18#include <net.h>
19#include <net_processing.h>
20#include <netaddress.h>
21#include <netbase.h>
22#include <node/blockstorage.h>
23#include <node/coin.h>
24#include <node/context.h>
25#include <node/transaction.h>
26#include <node/ui_interface.h>
27#include <policy/settings.h>
28#include <primitives/block.h>
30#include <rpc/blockchain.h>
31#include <rpc/protocol.h>
32#include <rpc/server.h>
33#include <shutdown.h>
34#include <sync.h>
35#include <txmempool.h>
36#include <uint256.h>
37#include <util/check.h>
38#include <util/translation.h>
39#include <validation.h>
40#include <validationinterface.h>
41#include <warnings.h>
42
43#if defined(HAVE_CONFIG_H)
44#include <config/bitcoin-config.h>
45#endif
46
47#include <univalue.h>
48
49#include <boost/signals2/signal.hpp>
50
51#include <memory>
52#include <utility>
53
55
63
64namespace node {
65namespace {
66
67 class NodeImpl : public Node {
68 private:
69 ChainstateManager &chainman() { return *Assert(m_context->chainman); }
70
71 public:
72 explicit NodeImpl(NodeContext *context) { setContext(context); }
73 void initLogging() override { InitLogging(*Assert(m_context->args)); }
74 void initParameterInteraction() override {
76 }
77 bilingual_str getWarnings() override { return GetWarnings(true); }
78 int getExitStatus() override {
79 return Assert(m_context)->exit_status.load();
80 }
81 bool baseInitialize(Config &config) override {
82 if (!AppInitBasicSetup(gArgs, Assert(context())->exit_status)) {
83 return false;
84 }
85 if (!AppInitParameterInteraction(config, gArgs)) {
86 return false;
87 }
88
89 m_context->kernel = std::make_unique<kernel::Context>();
90 if (!AppInitSanityChecks(*m_context->kernel)) {
91 return false;
92 }
93
95 return false;
96 }
98 return false;
99 }
100
101 return true;
102 }
103 bool appInitMain(Config &config, RPCServer &rpcServer,
104 HTTPRPCRequestProcessor &httpRPCRequestProcessor,
105 interfaces::BlockAndHeaderTipInfo *tip_info) override {
106 if (AppInitMain(config, rpcServer, httpRPCRequestProcessor,
107 *m_context, tip_info)) {
108 return true;
109 }
110 // Error during initialization, set exit status before continue
111 m_context->exit_status.store(EXIT_FAILURE);
112 return false;
113 }
114 void appShutdown() override {
117 }
118 void startShutdown() override {
120 // Stop RPC for clean shutdown if any of waitfor* commands is
121 // executed.
122 if (gArgs.GetBoolArg("-server", false)) {
123 InterruptRPC();
124 StopRPC();
125 }
126 }
127 bool shutdownRequested() override { return ShutdownRequested(); }
128 bool isPersistentSettingIgnored(const std::string &name) override {
129 bool ignored = false;
130 gArgs.LockSettings([&](util::Settings &settings) {
131 if (auto *options =
133 ignored = !options->empty();
134 }
135 });
136 return ignored;
137 }
139 getPersistentSetting(const std::string &name) override {
141 }
142 void updateRwSetting(const std::string &name,
143 const util::SettingsValue &value) override {
144 gArgs.LockSettings([&](util::Settings &settings) {
145 if (value.isNull()) {
146 settings.rw_settings.erase(name);
147 } else {
148 settings.rw_settings[name] = value;
149 }
150 });
152 }
153 void forceSetting(const std::string &name,
154 const util::SettingsValue &value) override {
155 gArgs.LockSettings([&](util::Settings &settings) {
156 if (value.isNull()) {
157 settings.forced_settings.erase(name);
158 } else {
159 settings.forced_settings[name] = value;
160 }
161 });
162 }
163 void resetSettings() override {
164 gArgs.WriteSettingsFile(/*errors=*/nullptr, /*backup=*/true);
165 gArgs.LockSettings([&](util::Settings &settings) {
166 settings.rw_settings.clear();
167 });
169 }
170 void mapPort(bool use_upnp, bool use_natpmp) override {
171 StartMapPort(use_upnp, use_natpmp);
172 }
173 bool getProxy(Network net, proxyType &proxy_info) override {
174 return GetProxy(net, proxy_info);
175 }
176 size_t getNodeCount(ConnectionDirection flags) override {
177 return m_context->connman ? m_context->connman->GetNodeCount(flags)
178 : 0;
179 }
180 bool getNodesStats(NodesStats &stats) override {
181 stats.clear();
182
183 if (m_context->connman) {
184 std::vector<CNodeStats> stats_temp;
185 m_context->connman->GetNodeStats(stats_temp);
186
187 stats.reserve(stats_temp.size());
188 for (auto &node_stats_temp : stats_temp) {
189 stats.emplace_back(std::move(node_stats_temp), false,
191 }
192
193 // Try to retrieve the CNodeStateStats for each node.
194 if (m_context->peerman) {
195 TRY_LOCK(::cs_main, lockMain);
196 if (lockMain) {
197 for (auto &node_stats : stats) {
198 std::get<1>(node_stats) =
199 m_context->peerman->GetNodeStateStats(
200 std::get<0>(node_stats).nodeid,
201 std::get<2>(node_stats));
202 }
203 }
204 }
205 return true;
206 }
207 return false;
208 }
209 bool getBanned(banmap_t &banmap) override {
210 if (m_context->banman) {
211 m_context->banman->GetBanned(banmap);
212 return true;
213 }
214 return false;
215 }
216 bool ban(const CNetAddr &net_addr, int64_t ban_time_offset) override {
217 if (m_context->banman) {
218 m_context->banman->Ban(net_addr, ban_time_offset);
219 return true;
220 }
221 return false;
222 }
223 bool unban(const CSubNet &ip) override {
224 if (m_context->banman) {
225 m_context->banman->Unban(ip);
226 return true;
227 }
228 return false;
229 }
230 bool disconnectByAddress(const CNetAddr &net_addr) override {
231 if (m_context->connman) {
232 return m_context->connman->DisconnectNode(net_addr);
233 }
234 return false;
235 }
236 bool disconnectById(NodeId id) override {
237 if (m_context->connman) {
238 return m_context->connman->DisconnectNode(id);
239 }
240 return false;
241 }
242 int64_t getTotalBytesRecv() override {
243 return m_context->connman ? m_context->connman->GetTotalBytesRecv()
244 : 0;
245 }
246 int64_t getTotalBytesSent() override {
247 return m_context->connman ? m_context->connman->GetTotalBytesSent()
248 : 0;
249 }
250 size_t getMempoolSize() override {
251 return m_context->mempool ? m_context->mempool->size() : 0;
252 }
253 size_t getMempoolDynamicUsage() override {
254 return m_context->mempool ? m_context->mempool->DynamicMemoryUsage()
255 : 0;
256 }
257 bool getHeaderTip(int &height, int64_t &block_time) override {
259 auto best_header = chainman().m_best_header;
260 if (best_header) {
261 height = best_header->nHeight;
262 block_time = best_header->GetBlockTime();
263 return true;
264 }
265 return false;
266 }
267 int getNumBlocks() override {
269 return chainman().ActiveChain().Height();
270 }
271 BlockHash getBestBlockHash() override {
272 const CBlockIndex *tip =
273 WITH_LOCK(::cs_main, return chainman().ActiveTip());
274 return tip ? tip->GetBlockHash()
275 : chainman().GetParams().GenesisBlock().GetHash();
276 }
277 int64_t getLastBlockTime() override {
279 if (chainman().ActiveChain().Tip()) {
280 return chainman().ActiveChain().Tip()->GetBlockTime();
281 }
282 // Genesis block's time of current network
283 return chainman().GetParams().GenesisBlock().GetBlockTime();
284 }
285 double getVerificationProgress() override {
286 const CBlockIndex *tip;
287 {
289 tip = chainman().ActiveChain().Tip();
290 }
291 return GuessVerificationProgress(chainman().GetParams().TxData(),
292 tip);
293 }
294 bool isInitialBlockDownload() override {
295 return chainman().IsInitialBlockDownload();
296 }
297 bool isLoadingBlocks() override {
298 return chainman().m_blockman.LoadingBlocks();
299 }
300 void setNetworkActive(bool active) override {
301 if (m_context->connman) {
302 m_context->connman->SetNetworkActive(active);
303 }
304 }
305 bool getNetworkActive() override {
306 return m_context->connman && m_context->connman->GetNetworkActive();
307 }
308 CFeeRate getDustRelayFee() override {
309 if (!m_context->mempool) {
311 }
312 return m_context->mempool->m_dust_relay_feerate;
313 }
314 UniValue executeRpc(const Config &config, const std::string &command,
315 const UniValue &params,
316 const std::string &uri) override {
317 JSONRPCRequest req;
318 req.context = m_context;
319 req.params = params;
320 req.strMethod = command;
321 req.URI = uri;
322 return ::tableRPC.execute(config, req);
323 }
324 std::vector<std::string> listRpcCommands() override {
326 }
327 void rpcSetTimerInterfaceIfUnset(RPCTimerInterface *iface) override {
329 }
330 void rpcUnsetTimerInterface(RPCTimerInterface *iface) override {
332 }
333 bool getUnspentOutput(const COutPoint &output, Coin &coin) override {
335 return chainman().ActiveChainstate().CoinsTip().GetCoin(output,
336 coin);
337 }
338 WalletClient &walletClient() override {
339 return *Assert(m_context->wallet_client);
340 }
341 std::unique_ptr<Handler> handleInitMessage(InitMessageFn fn) override {
342 return MakeHandler(::uiInterface.InitMessage_connect(fn));
343 }
344 std::unique_ptr<Handler> handleMessageBox(MessageBoxFn fn) override {
345 return MakeHandler(::uiInterface.ThreadSafeMessageBox_connect(fn));
346 }
347 std::unique_ptr<Handler> handleQuestion(QuestionFn fn) override {
348 return MakeHandler(::uiInterface.ThreadSafeQuestion_connect(fn));
349 }
350 std::unique_ptr<Handler>
351 handleShowProgress(ShowProgressFn fn) override {
352 return MakeHandler(::uiInterface.ShowProgress_connect(fn));
353 }
354 std::unique_ptr<Handler> handleNotifyNumConnectionsChanged(
355 NotifyNumConnectionsChangedFn fn) override {
356 return MakeHandler(
357 ::uiInterface.NotifyNumConnectionsChanged_connect(fn));
358 }
359 std::unique_ptr<Handler> handleNotifyNetworkActiveChanged(
360 NotifyNetworkActiveChangedFn fn) override {
361 return MakeHandler(
362 ::uiInterface.NotifyNetworkActiveChanged_connect(fn));
363 }
364 std::unique_ptr<Handler>
365 handleNotifyAlertChanged(NotifyAlertChangedFn fn) override {
366 return MakeHandler(::uiInterface.NotifyAlertChanged_connect(fn));
367 }
368 std::unique_ptr<Handler>
369 handleBannedListChanged(BannedListChangedFn fn) override {
370 return MakeHandler(::uiInterface.BannedListChanged_connect(fn));
371 }
372 std::unique_ptr<Handler>
373 handleNotifyBlockTip(NotifyBlockTipFn fn) override {
374 return MakeHandler(::uiInterface.NotifyBlockTip_connect(
375 [fn](SynchronizationState sync_state,
376 const CBlockIndex *block) {
377 fn(sync_state,
378 BlockTip{block->nHeight, block->GetBlockTime(),
379 block->GetBlockHash()},
380 GuessVerificationProgress(Params().TxData(), block));
381 }));
382 }
383 std::unique_ptr<Handler>
384 handleNotifyHeaderTip(NotifyHeaderTipFn fn) override {
385 /* verification progress is unused when a header was received */
386 return MakeHandler(::uiInterface.NotifyHeaderTip_connect(
387 [fn](SynchronizationState sync_state, int64_t height,
388 int64_t timestamp, bool presync) {
389 fn(sync_state,
390 BlockTip{int(height), timestamp, BlockHash{}}, presync);
391 }));
392 }
393 NodeContext *context() override { return m_context; }
394 void setContext(NodeContext *context) override { m_context = context; }
395 NodeContext *m_context{nullptr};
396 };
397
398 bool FillBlock(const CBlockIndex *index, const FoundBlock &block,
399 UniqueLock<RecursiveMutex> &lock, const CChain &active,
400 const BlockManager &blockman) {
401 if (!index) {
402 return false;
403 }
404 if (block.m_hash) {
405 *block.m_hash = index->GetBlockHash();
406 }
407 if (block.m_height) {
408 *block.m_height = index->nHeight;
409 }
410 if (block.m_time) {
411 *block.m_time = index->GetBlockTime();
412 }
413 if (block.m_max_time) {
414 *block.m_max_time = index->GetBlockTimeMax();
415 }
416 if (block.m_mtp_time) {
417 *block.m_mtp_time = index->GetMedianTimePast();
418 }
419 if (block.m_in_active_chain) {
420 *block.m_in_active_chain = active[index->nHeight] == index;
421 }
422 if (block.m_locator) {
423 *block.m_locator = GetLocator(index);
424 }
425 if (block.m_next_block) {
426 FillBlock(active[index->nHeight] == index
427 ? active[index->nHeight + 1]
428 : nullptr,
429 *block.m_next_block, lock, active, blockman);
430 }
431 if (block.m_data) {
432 REVERSE_LOCK(lock);
433 if (!blockman.ReadBlockFromDisk(*block.m_data, *index)) {
434 block.m_data->SetNull();
435 }
436 }
437 return true;
438 }
439
440 class NotificationsProxy : public CValidationInterface {
441 public:
442 explicit NotificationsProxy(
443 std::shared_ptr<Chain::Notifications> notifications)
444 : m_notifications(std::move(notifications)) {}
445 virtual ~NotificationsProxy() = default;
446 void TransactionAddedToMempool(const CTransactionRef &tx,
447 std::shared_ptr<const std::vector<Coin>>,
448 uint64_t mempool_sequence) override {
449 m_notifications->transactionAddedToMempool(tx, mempool_sequence);
450 }
451 void TransactionRemovedFromMempool(const CTransactionRef &tx,
453 uint64_t mempool_sequence) override {
454 m_notifications->transactionRemovedFromMempool(tx, reason,
455 mempool_sequence);
456 }
457 void BlockConnected(ChainstateRole role,
458 const std::shared_ptr<const CBlock> &block,
459 const CBlockIndex *index) override {
460 m_notifications->blockConnected(role, *block, index->nHeight);
461 }
462 void BlockDisconnected(const std::shared_ptr<const CBlock> &block,
463 const CBlockIndex *index) override {
464 m_notifications->blockDisconnected(*block, index->nHeight);
465 }
466 void UpdatedBlockTip(const CBlockIndex *index,
467 const CBlockIndex *fork_index,
468 bool is_ibd) override {
469 m_notifications->updatedBlockTip();
470 }
471 void ChainStateFlushed(ChainstateRole role,
472 const CBlockLocator &locator) override {
473 m_notifications->chainStateFlushed(role, locator);
474 }
475 std::shared_ptr<Chain::Notifications> m_notifications;
476 };
477
478 class NotificationsHandlerImpl : public Handler {
479 public:
480 explicit NotificationsHandlerImpl(
481 std::shared_ptr<Chain::Notifications> notifications)
482 : m_proxy(std::make_shared<NotificationsProxy>(
483 std::move(notifications))) {
485 }
486 ~NotificationsHandlerImpl() override { disconnect(); }
487 void disconnect() override {
488 if (m_proxy) {
490 m_proxy.reset();
491 }
492 }
493 std::shared_ptr<NotificationsProxy> m_proxy;
494 };
495
496 class RpcHandlerImpl : public Handler {
497 public:
498 explicit RpcHandlerImpl(const CRPCCommand &command)
499 : m_command(command), m_wrapped_command(&command) {
500 m_command.actor = [this](const Config &config,
501 const JSONRPCRequest &request,
502 UniValue &result, bool last_handler) {
503 if (!m_wrapped_command) {
504 return false;
505 }
506 try {
507 return m_wrapped_command->actor(config, request, result,
508 last_handler);
509 } catch (const UniValue &e) {
510 // If this is not the last handler and a wallet not found
511 // exception was thrown, return false so the next handler
512 // can try to handle the request. Otherwise, reraise the
513 // exception.
514 if (!last_handler) {
515 const UniValue &code = e["code"];
516 if (code.isNum() &&
517 code.getInt<int>() == RPC_WALLET_NOT_FOUND) {
518 return false;
519 }
520 }
521 throw;
522 }
523 };
525 }
526
527 void disconnect() final {
528 if (m_wrapped_command) {
529 m_wrapped_command = nullptr;
531 }
532 }
533
534 ~RpcHandlerImpl() override { disconnect(); }
535
538 };
539
540 class ChainImpl : public Chain {
541 private:
542 ChainstateManager &chainman() { return *Assert(m_node.chainman); }
543
544 public:
545 explicit ChainImpl(NodeContext &node, const CChainParams &params)
546 : m_node(node), m_params(params) {}
547 std::optional<int> getHeight() override {
549 const CChain &active = Assert(m_node.chainman)->ActiveChain();
550 int height = active.Height();
551 if (height >= 0) {
552 return height;
553 }
554 return std::nullopt;
555 }
556 BlockHash getBlockHash(int height) override {
558 const CChain &active = Assert(m_node.chainman)->ActiveChain();
559 CBlockIndex *block = active[height];
560 assert(block);
561 return block->GetBlockHash();
562 }
563 bool haveBlockOnDisk(int height) override {
564 LOCK(cs_main);
565 const CChain &active = Assert(m_node.chainman)->ActiveChain();
566 CBlockIndex *block = active[height];
567 return block && (block->nStatus.hasData() != 0) && block->nTx > 0;
568 }
569 CBlockLocator getTipLocator() override {
570 LOCK(cs_main);
571 const CChain &active = Assert(m_node.chainman)->ActiveChain();
572 return active.GetLocator();
573 }
574 // TODO: backport core#25036 with changes from core#25717
575 std::optional<int>
576 findLocatorFork(const CBlockLocator &locator) override {
577 LOCK(cs_main);
578 const Chainstate &active =
579 Assert(m_node.chainman)->ActiveChainstate();
580 if (const CBlockIndex *fork =
581 active.FindForkInGlobalIndex(locator)) {
582 return fork->nHeight;
583 }
584 return std::nullopt;
585 }
586 bool findBlock(const BlockHash &hash,
587 const FoundBlock &block) override {
588 WAIT_LOCK(cs_main, lock);
589 const CChain &active = Assert(m_node.chainman)->ActiveChain();
590 return FillBlock(m_node.chainman->m_blockman.LookupBlockIndex(hash),
591 block, lock, active, chainman().m_blockman);
592 }
593 bool findFirstBlockWithTimeAndHeight(int64_t min_time, int min_height,
594 const FoundBlock &block) override {
595 WAIT_LOCK(cs_main, lock);
596 const CChain &active = Assert(m_node.chainman)->ActiveChain();
597 return FillBlock(active.FindEarliestAtLeast(min_time, min_height),
598 block, lock, active, chainman().m_blockman);
599 }
600 bool findAncestorByHeight(const BlockHash &block_hash,
601 int ancestor_height,
602 const FoundBlock &ancestor_out) override {
603 WAIT_LOCK(cs_main, lock);
604 const CChain &active = Assert(m_node.chainman)->ActiveChain();
605 if (const CBlockIndex *block =
606 m_node.chainman->m_blockman.LookupBlockIndex(block_hash)) {
607 if (const CBlockIndex *ancestor =
608 block->GetAncestor(ancestor_height)) {
609 return FillBlock(ancestor, ancestor_out, lock, active,
610 chainman().m_blockman);
611 }
612 }
613 return FillBlock(nullptr, ancestor_out, lock, active,
614 chainman().m_blockman);
615 }
616 bool findAncestorByHash(const BlockHash &block_hash,
617 const BlockHash &ancestor_hash,
618 const FoundBlock &ancestor_out) override {
619 WAIT_LOCK(cs_main, lock);
620 const CChain &active = Assert(m_node.chainman)->ActiveChain();
621 const CBlockIndex *block =
622 m_node.chainman->m_blockman.LookupBlockIndex(block_hash);
623 const CBlockIndex *ancestor =
624 m_node.chainman->m_blockman.LookupBlockIndex(ancestor_hash);
625 if (block && ancestor &&
626 block->GetAncestor(ancestor->nHeight) != ancestor) {
627 ancestor = nullptr;
628 }
629 return FillBlock(ancestor, ancestor_out, lock, active,
630 chainman().m_blockman);
631 }
632 bool findCommonAncestor(const BlockHash &block_hash1,
633 const BlockHash &block_hash2,
634 const FoundBlock &ancestor_out,
635 const FoundBlock &block1_out,
636 const FoundBlock &block2_out) override {
637 WAIT_LOCK(cs_main, lock);
638 const CChain &active = Assert(m_node.chainman)->ActiveChain();
639 const CBlockIndex *block1 =
640 m_node.chainman->m_blockman.LookupBlockIndex(block_hash1);
641 const CBlockIndex *block2 =
642 m_node.chainman->m_blockman.LookupBlockIndex(block_hash2);
643 const CBlockIndex *ancestor =
644 block1 && block2 ? LastCommonAncestor(block1, block2) : nullptr;
645 // Using & instead of && below to avoid short circuiting and leaving
646 // output uninitialized. Cast bool to int to avoid
647 // -Wbitwise-instead-of-logical compiler warnings.
648 return int{FillBlock(ancestor, ancestor_out, lock, active,
649 chainman().m_blockman)} &
650 int{FillBlock(block1, block1_out, lock, active,
651 chainman().m_blockman)} &
652 int{FillBlock(block2, block2_out, lock, active,
653 chainman().m_blockman)};
654 }
655 void findCoins(std::map<COutPoint, Coin> &coins) override {
656 return FindCoins(m_node, coins);
657 }
658 double guessVerificationProgress(const BlockHash &block_hash) override {
659 LOCK(cs_main);
661 chainman().GetParams().TxData(),
662 chainman().m_blockman.LookupBlockIndex(block_hash));
663 }
664 bool hasBlocks(const BlockHash &block_hash, int min_height,
665 std::optional<int> max_height) override {
666 // hasBlocks returns true if all ancestors of block_hash in
667 // specified range have block data (are not pruned), false if any
668 // ancestors in specified range are missing data.
669 //
670 // For simplicity and robustness, min_height and max_height are only
671 // used to limit the range, and passing min_height that's too low or
672 // max_height that's too high will not crash or change the result.
674 if (const CBlockIndex *block =
675 chainman().m_blockman.LookupBlockIndex(block_hash)) {
676 if (max_height && block->nHeight >= *max_height) {
677 block = block->GetAncestor(*max_height);
678 }
679 for (; block->nStatus.hasData(); block = block->pprev) {
680 // Check pprev to not segfault if min_height is too low
681 if (block->nHeight <= min_height || !block->pprev) {
682 return true;
683 }
684 }
685 }
686 return false;
687 }
688 bool broadcastTransaction(const Config &config,
689 const CTransactionRef &tx,
690 const Amount &max_tx_fee, bool relay,
691 std::string &err_string) override {
692 const TransactionError err =
693 BroadcastTransaction(m_node, tx, err_string, max_tx_fee, relay,
694 /*wait_callback=*/false);
695 // Chain clients only care about failures to accept the tx to the
696 // mempool. Disregard non-mempool related failures. Note: this will
697 // need to be updated if BroadcastTransactions() is updated to
698 // return other non-mempool failures that Chain clients do not need
699 // to know about.
700 return err == TransactionError::OK;
701 }
702 CFeeRate estimateFee() const override {
703 if (!m_node.mempool) {
704 return {};
705 }
706 return m_node.mempool->estimateFee();
707 }
708 CFeeRate relayMinFee() override {
709 if (!m_node.mempool) {
711 }
712 return m_node.mempool->m_min_relay_feerate;
713 }
714 CFeeRate relayDustFee() override {
715 if (!m_node.mempool) {
717 }
718 return m_node.mempool->m_dust_relay_feerate;
719 }
720 bool havePruned() override {
721 LOCK(cs_main);
722 return m_node.chainman->m_blockman.m_have_pruned;
723 }
724 bool isReadyToBroadcast() override {
725 return !chainman().m_blockman.LoadingBlocks() &&
726 !isInitialBlockDownload();
727 }
728 std::optional<int> getPruneHeight() override {
729 LOCK(chainman().GetMutex());
730 return GetPruneHeight(chainman().m_blockman,
731 chainman().ActiveChain());
732 }
733 bool isInitialBlockDownload() override {
734 return chainman().IsInitialBlockDownload();
735 }
736 bool shutdownRequested() override { return ShutdownRequested(); }
737 void initMessage(const std::string &message) override {
738 ::uiInterface.InitMessage(message);
739 }
740 void initWarning(const bilingual_str &message) override {
741 InitWarning(message);
742 }
743 void initError(const bilingual_str &message) override {
744 InitError(message);
745 }
746 void showProgress(const std::string &title, int progress,
747 bool resume_possible) override {
748 ::uiInterface.ShowProgress(title, progress, resume_possible);
749 }
750 std::unique_ptr<Handler> handleNotifications(
751 std::shared_ptr<Notifications> notifications) override {
752 return std::make_unique<NotificationsHandlerImpl>(
753 std::move(notifications));
754 }
755 void
756 waitForNotificationsIfTipChanged(const BlockHash &old_tip) override {
757 if (!old_tip.IsNull()) {
759 const CChain &active = Assert(m_node.chainman)->ActiveChain();
760 if (old_tip == active.Tip()->GetBlockHash()) {
761 return;
762 }
763 }
765 }
766
767 std::unique_ptr<Handler>
768 handleRpc(const CRPCCommand &command) override {
769 return std::make_unique<RpcHandlerImpl>(command);
770 }
771 bool rpcEnableDeprecated(const std::string &method) override {
772 return IsDeprecatedRPCEnabled(gArgs, method);
773 }
774 void rpcRunLater(const std::string &name, std::function<void()> fn,
775 int64_t seconds) override {
776 RPCRunLater(name, std::move(fn), seconds);
777 }
778 util::SettingsValue getSetting(const std::string &name) override {
779 return gArgs.GetSetting(name);
780 }
781 std::vector<util::SettingsValue>
782 getSettingsList(const std::string &name) override {
783 return gArgs.GetSettingsList(name);
784 }
785 util::SettingsValue getRwSetting(const std::string &name) override {
786 util::SettingsValue result;
787 gArgs.LockSettings([&](const util::Settings &settings) {
788 if (const util::SettingsValue *value =
789 util::FindKey(settings.rw_settings, name)) {
790 result = *value;
791 }
792 });
793 return result;
794 }
795 bool updateRwSetting(const std::string &name,
796 const util::SettingsValue &value,
797 bool write) override {
798 gArgs.LockSettings([&](util::Settings &settings) {
799 if (value.isNull()) {
800 settings.rw_settings.erase(name);
801 } else {
802 settings.rw_settings[name] = value;
803 }
804 });
805 return !write || gArgs.WriteSettingsFile();
806 }
807 void requestMempoolTransactions(Notifications &notifications) override {
808 if (!m_node.mempool) {
809 return;
810 }
811 LOCK2(::cs_main, m_node.mempool->cs);
812 for (const CTxMemPoolEntryRef &entry : m_node.mempool->mapTx) {
813 notifications.transactionAddedToMempool(entry->GetSharedTx(),
814 /*mempool_sequence=*/0);
815 }
816 }
817 bool hasAssumedValidChain() override {
818 return Assert(m_node.chainman)->IsSnapshotActive();
819 }
820 const CChainParams &params() const override { return m_params; }
821 NodeContext *context() override { return &m_node; }
822 NodeContext &m_node;
824 };
825} // namespace
826} // namespace node
827
828namespace interfaces {
829std::unique_ptr<Node> MakeNode(node::NodeContext *context) {
830 return std::make_unique<node::NodeImpl>(context);
831}
832std::unique_ptr<Chain> MakeChain(node::NodeContext &node,
833 const CChainParams &params) {
834 return std::make_unique<node::ChainImpl>(node, params);
835}
836} // namespace interfaces
ArgsManager gArgs
Definition: args.cpp:40
int flags
Definition: bitcoin-tx.cpp:542
std::optional< int > GetPruneHeight(const BlockManager &blockman, const CChain &chain)
Definition: blockchain.cpp:831
CBlockLocator GetLocator(const CBlockIndex *index)
Get a locator for a block index entry.
Definition: chain.cpp:41
const CBlockIndex * LastCommonAncestor(const CBlockIndex *pa, const CBlockIndex *pb)
Find the last common ancestor two blocks have.
Definition: chain.cpp:112
const CChainParams & Params()
Return the currently selected parameters.
Definition: chainparams.cpp:21
#define Assert(val)
Identity function.
Definition: check.h:84
util::SettingsValue GetPersistentSetting(const std::string &name) const
Get current setting from config file or read/write settings file, ignoring nonpersistent command line...
Definition: args.cpp:452
void LockSettings(Fn &&fn)
Access settings with lock held.
Definition: args.h:422
bool WriteSettingsFile(std::vector< std::string > *errors=nullptr, bool backup=false) const
Write settings file or backup settings file.
Definition: args.cpp:426
std::vector< util::SettingsValue > GetSettingsList(const std::string &arg) const
Get list of setting values.
Definition: args.cpp:830
util::SettingsValue GetSetting(const std::string &arg) const
Get setting value.
Definition: args.cpp:821
bool GetBoolArg(const std::string &strArg, bool fDefault) const
Return boolean argument or default value.
Definition: args.cpp:525
void SetNull()
Definition: block.h:83
The block chain is a tree shaped structure starting with the genesis block at the root,...
Definition: blockindex.h:25
CBlockIndex * pprev
pointer to the index of the predecessor of this block
Definition: blockindex.h:32
int64_t GetBlockTime() const
Definition: blockindex.h:160
int64_t GetMedianTimePast() const
Definition: blockindex.h:172
int64_t GetBlockTimeMax() const
Definition: blockindex.h:162
unsigned int nTx
Number of transactions in this block.
Definition: blockindex.h:55
CBlockIndex * GetAncestor(int height)
Efficiently find an ancestor of this block.
Definition: blockindex.cpp:62
BlockHash GetBlockHash() const
Definition: blockindex.h:130
int nHeight
height of the entry in the chain. The genesis block has height 0
Definition: blockindex.h:38
An in-memory indexed chain of blocks.
Definition: chain.h:134
CBlockIndex * Tip() const
Returns the index entry for the tip of this chain, or nullptr if none.
Definition: chain.h:150
CBlockIndex * FindEarliestAtLeast(int64_t nTime, int height) const
Find the earliest block with timestamp equal or greater than the given time and height equal or great...
Definition: chain.cpp:62
int Height() const
Return the maximal height in the chain.
Definition: chain.h:186
CBlockLocator GetLocator() const
Return a CBlockLocator that refers to the tip of this chain.
Definition: chain.cpp:45
CChainParams defines various tweakable parameters of a given instance of the Bitcoin system.
Definition: chainparams.h:86
Fee rate in satoshis per kilobyte: Amount / kB.
Definition: feerate.h:21
Network address.
Definition: netaddress.h:121
std::string name
Definition: server.h:176
Actor actor
Definition: server.h:177
bool removeCommand(const std::string &name, const CRPCCommand *pcmd)
Definition: server.cpp:336
std::vector< std::string > listCommands() const
Returns a list of registered commands.
Definition: server.cpp:624
UniValue execute(const Config &config, const JSONRPCRequest &request) const
Execute a method.
Definition: server.cpp:583
void appendCommand(const std::string &name, const CRPCCommand *pcmd)
Appends a CRPCCommand to the dispatch table.
Definition: server.cpp:328
Implement this to subscribe to events generated in validation.
Chainstate stores and provides an API to update our local knowledge of the current best chain.
Definition: validation.h:734
void ClearBlockIndexCandidates() EXCLUSIVE_LOCKS_REQUIRED(const CBlockIndex * FindForkInGlobalIndex(const CBlockLocator &locator) const EXCLUSIVE_LOCKS_REQUIRED(cs_main)
Find the last common block of this chain and a locator.
Definition: validation.cpp:128
Provides an interface for creating and interacting with one or two chainstates: an IBD chainstate gen...
Definition: validation.h:1186
A UTXO entry.
Definition: coins.h:29
Definition: config.h:19
UniValue params
Definition: request.h:34
std::string strMethod
Definition: request.h:33
std::string URI
Definition: request.h:36
std::any context
Definition: request.h:39
Definition: rcu.h:85
Class for registering and managing all RPC calls.
Definition: server.h:40
RPC timer "driver".
Definition: server.h:100
bool isNull() const
Definition: univalue.h:104
Int getInt() const
Definition: univalue.h:157
bool isNum() const
Definition: univalue.h:109
Wrapper around std::unique_lock style lock for Mutex.
Definition: sync.h:168
bool IsNull() const
Definition: uint256.h:32
Interface giving clients (wallet processes, maybe other analysis tools in the future) ability to acce...
Definition: chain.h:136
Helper for findBlock to selectively return pieces of block data.
Definition: chain.h:55
const FoundBlock * m_next_block
Definition: chain.h:107
BlockHash * m_hash
Definition: chain.h:100
int64_t * m_max_time
Definition: chain.h:103
int64_t * m_time
Definition: chain.h:102
bool * m_in_active_chain
Definition: chain.h:105
int64_t * m_mtp_time
Definition: chain.h:104
CBlockLocator * m_locator
Definition: chain.h:106
Generic interface for managing an event handler or callback function registered with another interfac...
Definition: handler.h:22
Top-level interface for a bitcoin node (bitcoind process).
Definition: node.h:59
Wallet chain client that in addition to having chain client methods for starting up,...
Definition: wallet.h:303
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate.
Definition: cs_main.cpp:7
TransactionError
Definition: error.h:22
int64_t NodeId
Definition: eviction.h:16
void Interrupt(NodeContext &node)
Interrupt threads.
Definition: init.cpp:201
void InitLogging(const ArgsManager &args)
Initialize global loggers.
Definition: init.cpp:1761
bool AppInitLockDataDirectory()
Lock bitcoin data directory.
Definition: init.cpp:2149
void Shutdown(NodeContext &node)
Definition: init.cpp:225
bool AppInitBasicSetup(const ArgsManager &args, std::atomic< int > &exit_status)
Initialize bitcoin: Basic context setup.
Definition: init.cpp:1788
bool AppInitMain(Config &config, RPCServer &rpcServer, HTTPRPCRequestProcessor &httpRPCRequestProcessor, NodeContext &node, interfaces::BlockAndHeaderTipInfo *tip_info)
Bitcoin main initialization.
Definition: init.cpp:2171
bool AppInitInterfaces(NodeContext &node)
Initialize node and wallet interface pointers.
Definition: init.cpp:2161
void InitParameterInteraction(ArgsManager &args)
Parameter interaction: change current parameters depending on various rules.
Definition: init.cpp:1627
bool AppInitParameterInteraction(Config &config, const ArgsManager &args)
Initialization: parameter interaction.
Definition: init.cpp:1830
bool AppInitSanityChecks(const kernel::Context &kernel)
Initialization sanity checks.
Definition: init.cpp:2133
ChainstateRole
This enum describes the various roles a specific Chainstate instance can take.
Definition: chain.h:14
void StartMapPort(bool use_upnp, bool use_natpmp)
Definition: mapport.cpp:362
std::unique_ptr< Handler > MakeHandler(boost::signals2::connection connection)
Return handler wrapping a boost signal connection.
Definition: handler.cpp:48
std::unique_ptr< Node > MakeNode(node::NodeContext *context)
Return implementation of Node interface.
Definition: interfaces.cpp:829
std::unique_ptr< Chain > MakeChain(node::NodeContext &node, const CChainParams &params)
Return implementation of Chain interface.
Definition: interfaces.cpp:832
Definition: init.h:31
TransactionError BroadcastTransaction(const NodeContext &node, const CTransactionRef tx, std::string &err_string, const Amount max_tx_fee, bool relay, bool wait_callback)
Submit a transaction to the mempool and (optionally) relay it to all P2P peers.
Definition: transaction.cpp:37
void FindCoins(const NodeContext &node, std::map< COutPoint, Coin > &coins)
Look up unspent output information.
Definition: coin.cpp:12
Implement std::hash so RCUPtr can be used as a key for maps or sets.
Definition: rcu.h:259
auto FindKey(Map &&map, Key &&key) -> decltype(&map.at(key))
Map lookup helper.
Definition: settings.h:115
std::map< CSubNet, CBanEntry > banmap_t
Definition: net_types.h:13
Network
A network type.
Definition: netaddress.h:44
bool GetProxy(enum Network net, proxyType &proxyInfoOut)
Definition: netbase.cpp:730
ConnectionDirection
Definition: netbase.h:32
NodeContext & m_node
Definition: interfaces.cpp:822
NodeContext * m_context
Definition: interfaces.cpp:395
std::shared_ptr< Chain::Notifications > m_notifications
Definition: interfaces.cpp:475
CRPCCommand m_command
Definition: interfaces.cpp:536
const CChainParams & m_params
Definition: interfaces.cpp:823
const CRPCCommand * m_wrapped_command
Definition: interfaces.cpp:537
std::shared_ptr< NotificationsProxy > m_proxy
Definition: interfaces.cpp:493
static constexpr Amount DUST_RELAY_TX_FEE(1000 *SATOSHI)
Min feerate for defining dust.
static constexpr Amount DEFAULT_MIN_RELAY_TX_FEE_PER_KB(1000 *SATOSHI)
Default for -minrelaytxfee, minimum relay fee for transactions.
std::shared_ptr< const CTransaction > CTransactionRef
Definition: transaction.h:315
const char * name
Definition: rest.cpp:47
@ RPC_WALLET_NOT_FOUND
Invalid wallet specified.
Definition: protocol.h:109
void RPCSetTimerInterfaceIfUnset(RPCTimerInterface *iface)
Set the factory function for timer, but only, if unset.
Definition: server.cpp:650
bool IsDeprecatedRPCEnabled(const ArgsManager &args, const std::string &method)
Definition: server.cpp:408
void RPCUnsetTimerInterface(RPCTimerInterface *iface)
Unset factory function for timers.
Definition: server.cpp:660
void RPCRunLater(const std::string &name, std::function< void()> func, int64_t nSeconds)
Run func nSeconds from now.
Definition: server.cpp:666
void StopRPC()
Definition: server.cpp:366
void InterruptRPC()
Definition: server.cpp:355
CRPCTable tableRPC
Definition: server.cpp:681
bool ShutdownRequested()
Returns true if a shutdown is requested, false otherwise.
Definition: shutdown.cpp:29
void StartShutdown()
Request shutdown of the application.
Definition: shutdown.cpp:16
Definition: amount.h:19
A BlockHash is a unqiue identifier for a block.
Definition: blockhash.h:13
Describes a place in the block chain to another node such that if the other node doesn't have the sam...
Definition: block.h:109
Bilingual messages:
Definition: translation.h:17
Block and header tip information.
Definition: node.h:50
Block tip (could be a header or not, depends on the subscribed signal).
Definition: node.h:273
NodeContext struct containing references to chain state and connection state.
Definition: context.h:48
Stored settings.
Definition: settings.h:31
std::map< std::string, SettingsValue > rw_settings
Map of setting name to read-write file setting value.
Definition: settings.h:37
std::map< std::string, std::vector< SettingsValue > > command_line_options
Map of setting name to list of command line values.
Definition: settings.h:35
#define WAIT_LOCK(cs, name)
Definition: sync.h:317
#define LOCK2(cs1, cs2)
Definition: sync.h:309
#define LOCK(cs)
Definition: sync.h:306
#define WITH_LOCK(cs, code)
Run code while locking a mutex.
Definition: sync.h:357
#define TRY_LOCK(cs, name)
Definition: sync.h:314
#define REVERSE_LOCK(g)
Definition: sync.h:265
MemPoolRemovalReason
Reason why a transaction was removed from the mempool, this is passed to the notification signal.
Definition: txmempool.h:158
CClientUIInterface uiInterface
void InitWarning(const bilingual_str &str)
Show warning message.
bool InitError(const bilingual_str &str)
Show error message.
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...
assert(!tx.IsCoinBase())
SynchronizationState
Current sync state passed to tip changed callbacks.
Definition: validation.h:119
void UnregisterSharedValidationInterface(std::shared_ptr< CValidationInterface > callbacks)
Unregister subscriber.
void SyncWithValidationInterfaceQueue()
This is a synonym for the following, which asserts certain locks are not held: std::promise<void> pro...
void RegisterSharedValidationInterface(std::shared_ptr< CValidationInterface > callbacks)
Register subscriber.
bilingual_str GetWarnings(bool verbose)
Format a string that describes several potential problems detected by the core.
Definition: warnings.cpp:41