Bitcoin Core  25.99.0
P2P Digital Currency
node.cpp
Go to the documentation of this file.
1 // Copyright (c) 2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2022 The Bitcoin Core developers
3 // Distributed under the MIT software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 
6 #include <chainparams.h>
7 #include <httpserver.h>
9 #include <index/coinstatsindex.h>
10 #include <index/txindex.h>
11 #include <interfaces/chain.h>
12 #include <interfaces/echo.h>
13 #include <interfaces/init.h>
14 #include <interfaces/ipc.h>
15 #include <kernel/cs_main.h>
16 #include <node/context.h>
17 #include <rpc/server.h>
18 #include <rpc/server_util.h>
19 #include <rpc/util.h>
20 #include <scheduler.h>
21 #include <univalue.h>
22 #include <util/any.h>
23 #include <util/check.h>
24 #include <util/syscall_sandbox.h>
25 
26 #include <stdint.h>
27 #ifdef HAVE_MALLOC_INFO
28 #include <malloc.h>
29 #endif
30 
31 using node::NodeContext;
32 
34 {
35  return RPCHelpMan{"setmocktime",
36  "\nSet the local time to given timestamp (-regtest only)\n",
37  {
39  "Pass 0 to go back to using the system time."},
40  },
42  RPCExamples{""},
43  [&](const RPCHelpMan& self, const JSONRPCRequest& request) -> UniValue
44 {
45  if (!Params().IsMockableChain()) {
46  throw std::runtime_error("setmocktime is for regression testing (-regtest mode) only");
47  }
48 
49  // For now, don't change mocktime if we're in the middle of validation, as
50  // this could have an effect on mempool time-based eviction, as well as
51  // IsCurrentForFeeEstimation() and IsInitialBlockDownload().
52  // TODO: figure out the right way to synchronize around mocktime, and
53  // ensure all call sites of GetTime() are accessing this safely.
54  LOCK(cs_main);
55 
56  const int64_t time{request.params[0].getInt<int64_t>()};
57  if (time < 0) {
58  throw JSONRPCError(RPC_INVALID_PARAMETER, strprintf("Mocktime cannot be negative: %s.", time));
59  }
60  SetMockTime(time);
61  auto node_context = util::AnyPtr<NodeContext>(request.context);
62  if (node_context) {
63  for (const auto& chain_client : node_context->chain_clients) {
64  chain_client->setMockTime(time);
65  }
66  }
67 
68  return UniValue::VNULL;
69 },
70  };
71 }
72 
73 #if defined(USE_SYSCALL_SANDBOX)
74 static RPCHelpMan invokedisallowedsyscall()
75 {
76  return RPCHelpMan{
77  "invokedisallowedsyscall",
78  "\nInvoke a disallowed syscall to trigger a syscall sandbox violation. Used for testing purposes.\n",
79  {},
82  HelpExampleCli("invokedisallowedsyscall", "") + HelpExampleRpc("invokedisallowedsyscall", "")},
83  [&](const RPCHelpMan& self, const JSONRPCRequest& request) -> UniValue {
84  if (!Params().IsTestChain()) {
85  throw std::runtime_error("invokedisallowedsyscall is used for testing only.");
86  }
87  TestDisallowedSandboxCall();
88  return UniValue::VNULL;
89  },
90  };
91 }
92 #endif // USE_SYSCALL_SANDBOX
93 
95 {
96  return RPCHelpMan{"mockscheduler",
97  "\nBump the scheduler into the future (-regtest only)\n",
98  {
99  {"delta_time", RPCArg::Type::NUM, RPCArg::Optional::NO, "Number of seconds to forward the scheduler into the future." },
100  },
102  RPCExamples{""},
103  [&](const RPCHelpMan& self, const JSONRPCRequest& request) -> UniValue
104 {
105  if (!Params().IsMockableChain()) {
106  throw std::runtime_error("mockscheduler is for regression testing (-regtest mode) only");
107  }
108 
109  int64_t delta_seconds = request.params[0].getInt<int64_t>();
110  if (delta_seconds <= 0 || delta_seconds > 3600) {
111  throw std::runtime_error("delta_time must be between 1 and 3600 seconds (1 hr)");
112  }
113 
114  auto node_context = CHECK_NONFATAL(util::AnyPtr<NodeContext>(request.context));
115  // protect against null pointer dereference
116  CHECK_NONFATAL(node_context->scheduler);
117  node_context->scheduler->MockForward(std::chrono::seconds(delta_seconds));
118 
119  return UniValue::VNULL;
120 },
121  };
122 }
123 
125 {
128  obj.pushKV("used", uint64_t(stats.used));
129  obj.pushKV("free", uint64_t(stats.free));
130  obj.pushKV("total", uint64_t(stats.total));
131  obj.pushKV("locked", uint64_t(stats.locked));
132  obj.pushKV("chunks_used", uint64_t(stats.chunks_used));
133  obj.pushKV("chunks_free", uint64_t(stats.chunks_free));
134  return obj;
135 }
136 
137 #ifdef HAVE_MALLOC_INFO
138 static std::string RPCMallocInfo()
139 {
140  char *ptr = nullptr;
141  size_t size = 0;
142  FILE *f = open_memstream(&ptr, &size);
143  if (f) {
144  malloc_info(0, f);
145  fclose(f);
146  if (ptr) {
147  std::string rv(ptr, size);
148  free(ptr);
149  return rv;
150  }
151  }
152  return "";
153 }
154 #endif
155 
157 {
158  /* Please, avoid using the word "pool" here in the RPC interface or help,
159  * as users will undoubtedly confuse it with the other "memory pool"
160  */
161  return RPCHelpMan{"getmemoryinfo",
162  "Returns an object containing information about memory usage.\n",
163  {
164  {"mode", RPCArg::Type::STR, RPCArg::Default{"stats"}, "determines what kind of information is returned.\n"
165  " - \"stats\" returns general statistics about memory usage in the daemon.\n"
166  " - \"mallocinfo\" returns an XML string describing low-level heap state (only available if compiled with glibc)."},
167  },
168  {
169  RPCResult{"mode \"stats\"",
170  RPCResult::Type::OBJ, "", "",
171  {
172  {RPCResult::Type::OBJ, "locked", "Information about locked memory manager",
173  {
174  {RPCResult::Type::NUM, "used", "Number of bytes used"},
175  {RPCResult::Type::NUM, "free", "Number of bytes available in current arenas"},
176  {RPCResult::Type::NUM, "total", "Total number of bytes managed"},
177  {RPCResult::Type::NUM, "locked", "Amount of bytes that succeeded locking. If this number is smaller than total, locking pages failed at some point and key data could be swapped to disk."},
178  {RPCResult::Type::NUM, "chunks_used", "Number allocated chunks"},
179  {RPCResult::Type::NUM, "chunks_free", "Number unused chunks"},
180  }},
181  }
182  },
183  RPCResult{"mode \"mallocinfo\"",
184  RPCResult::Type::STR, "", "\"<malloc version=\"1\">...\""
185  },
186  },
187  RPCExamples{
188  HelpExampleCli("getmemoryinfo", "")
189  + HelpExampleRpc("getmemoryinfo", "")
190  },
191  [&](const RPCHelpMan& self, const JSONRPCRequest& request) -> UniValue
192 {
193  std::string mode = request.params[0].isNull() ? "stats" : request.params[0].get_str();
194  if (mode == "stats") {
196  obj.pushKV("locked", RPCLockedMemoryInfo());
197  return obj;
198  } else if (mode == "mallocinfo") {
199 #ifdef HAVE_MALLOC_INFO
200  return RPCMallocInfo();
201 #else
202  throw JSONRPCError(RPC_INVALID_PARAMETER, "mallocinfo mode not available");
203 #endif
204  } else {
205  throw JSONRPCError(RPC_INVALID_PARAMETER, "unknown mode " + mode);
206  }
207 },
208  };
209 }
210 
211 static void EnableOrDisableLogCategories(UniValue cats, bool enable) {
212  cats = cats.get_array();
213  for (unsigned int i = 0; i < cats.size(); ++i) {
214  std::string cat = cats[i].get_str();
215 
216  bool success;
217  if (enable) {
218  success = LogInstance().EnableCategory(cat);
219  } else {
220  success = LogInstance().DisableCategory(cat);
221  }
222 
223  if (!success) {
224  throw JSONRPCError(RPC_INVALID_PARAMETER, "unknown logging category " + cat);
225  }
226  }
227 }
228 
230 {
231  return RPCHelpMan{"logging",
232  "Gets and sets the logging configuration.\n"
233  "When called without an argument, returns the list of categories with status that are currently being debug logged or not.\n"
234  "When called with arguments, adds or removes categories from debug logging and return the lists above.\n"
235  "The arguments are evaluated in order \"include\", \"exclude\".\n"
236  "If an item is both included and excluded, it will thus end up being excluded.\n"
237  "The valid logging categories are: " + LogInstance().LogCategoriesString() + "\n"
238  "In addition, the following are available as category names with special meanings:\n"
239  " - \"all\", \"1\" : represent all logging categories.\n"
240  " - \"none\", \"0\" : even if other logging categories are specified, ignore all of them.\n"
241  ,
242  {
243  {"include", RPCArg::Type::ARR, RPCArg::Optional::OMITTED, "The categories to add to debug logging",
244  {
245  {"include_category", RPCArg::Type::STR, RPCArg::Optional::OMITTED, "the valid logging category"},
246  }},
247  {"exclude", RPCArg::Type::ARR, RPCArg::Optional::OMITTED, "The categories to remove from debug logging",
248  {
249  {"exclude_category", RPCArg::Type::STR, RPCArg::Optional::OMITTED, "the valid logging category"},
250  }},
251  },
252  RPCResult{
253  RPCResult::Type::OBJ_DYN, "", "keys are the logging categories, and values indicates its status",
254  {
255  {RPCResult::Type::BOOL, "category", "if being debug logged or not. false:inactive, true:active"},
256  }
257  },
258  RPCExamples{
259  HelpExampleCli("logging", "\"[\\\"all\\\"]\" \"[\\\"http\\\"]\"")
260  + HelpExampleRpc("logging", "[\"all\"], [\"libevent\"]")
261  },
262  [&](const RPCHelpMan& self, const JSONRPCRequest& request) -> UniValue
263 {
264  uint32_t original_log_categories = LogInstance().GetCategoryMask();
265  if (request.params[0].isArray()) {
266  EnableOrDisableLogCategories(request.params[0], true);
267  }
268  if (request.params[1].isArray()) {
269  EnableOrDisableLogCategories(request.params[1], false);
270  }
271  uint32_t updated_log_categories = LogInstance().GetCategoryMask();
272  uint32_t changed_log_categories = original_log_categories ^ updated_log_categories;
273 
274  // Update libevent logging if BCLog::LIBEVENT has changed.
275  if (changed_log_categories & BCLog::LIBEVENT) {
277  }
278 
279  UniValue result(UniValue::VOBJ);
280  for (const auto& logCatActive : LogInstance().LogCategoriesList()) {
281  result.pushKV(logCatActive.category, logCatActive.active);
282  }
283 
284  return result;
285 },
286  };
287 }
288 
289 static RPCHelpMan echo(const std::string& name)
290 {
291  return RPCHelpMan{name,
292  "\nSimply echo back the input arguments. This command is for testing.\n"
293  "\nIt will return an internal bug report when arg9='trigger_internal_bug' is passed.\n"
294  "\nThe difference between echo and echojson is that echojson has argument conversion enabled in the client-side table in "
295  "bitcoin-cli and the GUI. There is no server-side difference.",
296  {
307  },
308  RPCResult{RPCResult::Type::ANY, "", "Returns whatever was passed in"},
309  RPCExamples{""},
310  [&](const RPCHelpMan& self, const JSONRPCRequest& request) -> UniValue
311 {
312  if (request.params[9].isStr()) {
313  CHECK_NONFATAL(request.params[9].get_str() != "trigger_internal_bug");
314  }
315 
316  return request.params;
317 },
318  };
319 }
320 
321 static RPCHelpMan echo() { return echo("echo"); }
322 static RPCHelpMan echojson() { return echo("echojson"); }
323 
325 {
326  return RPCHelpMan{
327  "echoipc",
328  "\nEcho back the input argument, passing it through a spawned process in a multiprocess build.\n"
329  "This command is for testing.\n",
330  {{"arg", RPCArg::Type::STR, RPCArg::Optional::NO, "The string to echo",}},
331  RPCResult{RPCResult::Type::STR, "echo", "The echoed string."},
332  RPCExamples{HelpExampleCli("echo", "\"Hello world\"") +
333  HelpExampleRpc("echo", "\"Hello world\"")},
334  [&](const RPCHelpMan& self, const JSONRPCRequest& request) -> UniValue {
335  interfaces::Init& local_init = *EnsureAnyNodeContext(request.context).init;
336  std::unique_ptr<interfaces::Echo> echo;
337  if (interfaces::Ipc* ipc = local_init.ipc()) {
338  // Spawn a new bitcoin-node process and call makeEcho to get a
339  // client pointer to a interfaces::Echo instance running in
340  // that process. This is just for testing. A slightly more
341  // realistic test spawning a different executable instead of
342  // the same executable would add a new bitcoin-echo executable,
343  // and spawn bitcoin-echo below instead of bitcoin-node. But
344  // using bitcoin-node avoids the need to build and install a
345  // new executable just for this one test.
346  auto init = ipc->spawnProcess("bitcoin-node");
347  echo = init->makeEcho();
348  ipc->addCleanup(*echo, [init = init.release()] { delete init; });
349  } else {
350  // IPC support is not available because this is a bitcoind
351  // process not a bitcoind-node process, so just create a local
352  // interfaces::Echo object and return it so the `echoipc` RPC
353  // method will work, and the python test calling `echoipc`
354  // can expect the same result.
355  echo = local_init.makeEcho();
356  }
357  return echo->echo(request.params[0].get_str());
358  },
359  };
360 }
361 
362 static UniValue SummaryToJSON(const IndexSummary&& summary, std::string index_name)
363 {
364  UniValue ret_summary(UniValue::VOBJ);
365  if (!index_name.empty() && index_name != summary.name) return ret_summary;
366 
367  UniValue entry(UniValue::VOBJ);
368  entry.pushKV("synced", summary.synced);
369  entry.pushKV("best_block_height", summary.best_block_height);
370  ret_summary.pushKV(summary.name, entry);
371  return ret_summary;
372 }
373 
375 {
376  return RPCHelpMan{"getindexinfo",
377  "\nReturns the status of one or all available indices currently running in the node.\n",
378  {
379  {"index_name", RPCArg::Type::STR, RPCArg::Optional::OMITTED, "Filter results for an index with a specific name."},
380  },
381  RPCResult{
382  RPCResult::Type::OBJ_DYN, "", "", {
383  {
384  RPCResult::Type::OBJ, "name", "The name of the index",
385  {
386  {RPCResult::Type::BOOL, "synced", "Whether the index is synced or not"},
387  {RPCResult::Type::NUM, "best_block_height", "The block height to which the index is synced"},
388  }
389  },
390  },
391  },
392  RPCExamples{
393  HelpExampleCli("getindexinfo", "")
394  + HelpExampleRpc("getindexinfo", "")
395  + HelpExampleCli("getindexinfo", "txindex")
396  + HelpExampleRpc("getindexinfo", "txindex")
397  },
398  [&](const RPCHelpMan& self, const JSONRPCRequest& request) -> UniValue
399 {
400  UniValue result(UniValue::VOBJ);
401  const std::string index_name = request.params[0].isNull() ? "" : request.params[0].get_str();
402 
403  if (g_txindex) {
404  result.pushKVs(SummaryToJSON(g_txindex->GetSummary(), index_name));
405  }
406 
407  if (g_coin_stats_index) {
408  result.pushKVs(SummaryToJSON(g_coin_stats_index->GetSummary(), index_name));
409  }
410 
411  ForEachBlockFilterIndex([&result, &index_name](const BlockFilterIndex& index) {
412  result.pushKVs(SummaryToJSON(index.GetSummary(), index_name));
413  });
414 
415  return result;
416 },
417  };
418 }
419 
421 {
422  static const CRPCCommand commands[]{
423  {"control", &getmemoryinfo},
424  {"control", &logging},
425  {"util", &getindexinfo},
426  {"hidden", &setmocktime},
427  {"hidden", &mockscheduler},
428  {"hidden", &echo},
429  {"hidden", &echojson},
430  {"hidden", &echoipc},
431 #if defined(USE_SYSCALL_SANDBOX)
432  {"hidden", &invokedisallowedsyscall},
433 #endif // USE_SYSCALL_SANDBOX
434  };
435  for (const auto& c : commands) {
436  t.appendCommand(c.name, &c);
437  }
438 }
void ForEachBlockFilterIndex(std::function< void(BlockFilterIndex &)> fn)
Iterate over all running block filter indexes, invoking fn on each.
const CChainParams & Params()
Return the currently selected parameters.
#define CHECK_NONFATAL(condition)
Identity function.
Definition: check.h:46
void EnableCategory(LogFlags flag)
Definition: logging.cpp:96
uint32_t GetCategoryMask() const
Definition: logging.h:174
std::string LogCategoriesString() const
Returns a string with the log categories in alphabetical order.
Definition: logging.h:187
void DisableCategory(LogFlags flag)
Definition: logging.cpp:109
IndexSummary GetSummary() const
Get a summary of the index and its state.
Definition: base.cpp:431
BlockFilterIndex is used to store and retrieve block filters, hashes, and headers for a range of bloc...
bool IsMockableChain() const
If this chain allows time to be mocked.
Definition: chainparams.h:110
bool IsTestChain() const
If this chain is exclusively used for testing.
Definition: chainparams.h:108
RPC command dispatcher.
Definition: server.h:135
Stats stats() const
Get pool usage statistics.
Definition: lockedpool.cpp:327
static LockedPoolManager & Instance()
Return the current instance, or create it once.
Definition: lockedpool.h:222
const std::string & get_str() const
@ VNULL
Definition: univalue.h:21
@ VOBJ
Definition: univalue.h:21
bool isNull() const
Definition: univalue.h:76
size_t size() const
Definition: univalue.h:68
void pushKVs(UniValue obj)
Definition: univalue.cpp:137
const UniValue & get_array() const
void pushKV(std::string key, UniValue val)
Definition: univalue.cpp:126
Initial interface created when a process is first started, and used to give and get access to other i...
Definition: init.h:30
virtual std::unique_ptr< Echo > makeEcho()
Definition: init.h:36
virtual Ipc * ipc()
Definition: init.h:37
Interface providing access to interprocess-communication (IPC) functionality.
Definition: ipc.h:45
std::unique_ptr< CoinStatsIndex > g_coin_stats_index
The global UTXO set hash object.
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate.
Definition: cs_main.cpp:8
void UpdateHTTPServerLogging(bool enable)
Change logging level for libevent.
Definition: httpserver.cpp:425
BCLog::Logger & LogInstance()
Definition: logging.cpp:20
@ LIBEVENT
Definition: logging.h:57
Definition: ipc.h:12
static RPCHelpMan logging()
Definition: node.cpp:229
static RPCHelpMan setmocktime()
Definition: node.cpp:33
void RegisterNodeRPCCommands(CRPCTable &t)
Definition: node.cpp:420
static void EnableOrDisableLogCategories(UniValue cats, bool enable)
Definition: node.cpp:211
static UniValue RPCLockedMemoryInfo()
Definition: node.cpp:124
static RPCHelpMan mockscheduler()
Definition: node.cpp:94
static RPCHelpMan getmemoryinfo()
Definition: node.cpp:156
static RPCHelpMan echo(const std::string &name)
Definition: node.cpp:289
static UniValue SummaryToJSON(const IndexSummary &&summary, std::string index_name)
Definition: node.cpp:362
static RPCHelpMan echojson()
Definition: node.cpp:322
static RPCHelpMan echoipc()
Definition: node.cpp:324
static RPCHelpMan getindexinfo()
Definition: node.cpp:374
UniValue JSONRPCError(int code, const std::string &message)
Definition: request.cpp:58
const char * name
Definition: rest.cpp:45
@ RPC_INVALID_PARAMETER
Invalid, missing or duplicate parameter.
Definition: protocol.h:43
std::string HelpExampleCli(const std::string &methodname, const std::string &args)
Definition: util.cpp:139
std::string HelpExampleRpc(const std::string &methodname, const std::string &args)
Definition: util.cpp:157
const std::string UNIX_EPOCH_TIME
String used to describe UNIX epoch time in documentation, factored out to a constant for consistency.
Definition: util.cpp:21
NodeContext & EnsureAnyNodeContext(const std::any &context)
Definition: server_util.cpp:21
Memory statistics.
Definition: lockedpool.h:146
@ OMITTED
Optional argument for which the default value is omitted from help text for one of two reasons:
@ NO
Required arg.
bool skip_type_check
Definition: util.h:129
@ ANY
Special type to disable type checks (for testing only)
@ OBJ_DYN
Special dictionary with keys that are not literals.
NodeContext struct containing references to chain state and connection state.
Definition: context.h:45
interfaces::Init * init
Init interface for initializing current process and connecting to other processes.
Definition: context.h:49
#define LOCK(cs)
Definition: sync.h:258
void SetMockTime(int64_t nMockTimeIn)
DEPRECATED Use SetMockTime with chrono type.
Definition: time.cpp:81
#define strprintf
Format arguments and return the string or write to given std::ostream (see tinyformat::format doc for...
Definition: tinyformat.h:1162
std::unique_ptr< TxIndex > g_txindex
The global transaction index, used in GetTransaction. May be null.
Definition: txindex.cpp:15