6#if defined(HAVE_CONFIG_H)
7#include <config/bitcoin-config.h>
27#include <event2/buffer.h>
28#include <event2/keyvalq_struct.h>
59 const auto defaultBaseParams =
61 const auto testnetBaseParams =
63 const auto regtestBaseParams =
71 strprintf(
"Specify configuration file. Relative paths will be "
72 "prefixed by datadir location. (default: %s)",
75 argsman.
AddArg(
"-datadir=<dir>",
"Specify data directory",
80 "Generate blocks immediately, equivalent to RPC getnewaddress "
81 "followed by RPC generatetoaddress. Optional positional integer "
82 "arguments are number of blocks to generate (default: %s) and "
83 "maximum iterations to try (default: %s), equivalent to RPC "
84 "generatetoaddress nblocks and maxtries arguments. Example: "
85 "bitcoin-cli -generate 4 1000",
90 "Get general information from the remote server. Note that unlike "
91 "server-side RPC calls, the results of -getinfo is the result of "
92 "multiple non-atomic requests. Some entries in the result may "
93 "represent results from different states (e.g. wallet balance may be "
94 "as of a different block from the chain state reported)",
97 "Get network peer connection information from the remote "
98 "server. An optional integer argument from 0 to 4 can be "
99 "passed for different peers listings (default: 0).",
105 strprintf(
"Pass named instead of positional arguments (default: %s)",
110 strprintf(
"Send commands to node running on <ip> (default: %s)",
114 "-rpccookiefile=<loc>",
115 "Location of the auth cookie. Relative paths will be prefixed "
116 "by a net-specific datadir location. (default: data dir)",
118 argsman.
AddArg(
"-rpcport=<port>",
119 strprintf(
"Connect to JSON-RPC on <port> (default: %u, "
120 "testnet: %u, regtest: %u)",
121 defaultBaseParams->RPCPort(),
122 testnetBaseParams->RPCPort(),
123 regtestBaseParams->RPCPort()),
126 argsman.
AddArg(
"-rpcwait",
"Wait for RPC server to start",
128 argsman.
AddArg(
"-rpcuser=<user>",
"Username for JSON-RPC connections",
130 argsman.
AddArg(
"-rpcpassword=<pw>",
"Password for JSON-RPC connections",
133 "-rpcclienttimeout=<n>",
134 strprintf(
"Timeout in seconds during HTTP requests, or 0 for "
135 "no timeout. (default: %d)",
139 argsman.
AddArg(
"-stdinrpcpass",
140 "Read RPC password from standard input as a single "
141 "line. When combined with -stdin, the first line "
142 "from standard input is used for the RPC password. When "
143 "combined with -stdinwalletpassphrase, -stdinrpcpass "
144 "consumes the first line, and -stdinwalletpassphrase "
145 "consumes the second.",
147 argsman.
AddArg(
"-stdinwalletpassphrase",
148 "Read wallet passphrase from standard input as a single "
149 "line. When combined with -stdin, the first line "
150 "from standard input is used for the wallet passphrase.",
154 "Read extra arguments from standard input, one per line until "
155 "EOF/Ctrl-D (recommended for sensitive information such as "
156 "passphrases). When combined with -stdinrpcpass, the first "
157 "line from standard input is used for the RPC password.",
160 "-rpcwallet=<walletname>",
161 "Send RPC for non-default wallet on RPC server (needs to exactly match "
162 "corresponding -wallet option passed to bitcoind). This changes the "
163 "RPC endpoint used, e.g. http://127.0.0.1:8332/wallet/<walletname>",
171#define EVENT_LOG_ERR _EVENT_LOG_ERR
175 throw std::runtime_error(
strprintf(
"libevent error: %s", msg));
191 :
std::runtime_error(msg) {}
205 tfm::format(std::cerr,
"Error parsing command line arguments: %s\n",
210 std::string strUsage =
217 "Usage: bitcoin-cli [options] <command> [params] "
218 "Send command to " PACKAGE_NAME
"\n"
219 "or: bitcoin-cli [options] -named <command> "
220 "[name=value]... Send command to " PACKAGE_NAME
221 " (with named arguments)\n"
222 "or: bitcoin-cli [options] help "
224 "or: bitcoin-cli [options] help <command> Get "
225 "help for a command\n";
232 tfm::format(std::cerr,
"Error: too few parameters\n");
239 "Error: Specified data directory \"%s\" does not exist.\n",
251 }
catch (
const std::exception &e) {
269 case EVREQ_HTTP_TIMEOUT:
270 return "timeout reached";
272 return "EOF reached";
273 case EVREQ_HTTP_INVALID_HEADER:
274 return "error while reading header, or invalid header";
275 case EVREQ_HTTP_BUFFER_ERROR:
276 return "error encountered while reading or writing";
277 case EVREQ_HTTP_REQUEST_CANCEL:
278 return "request was canceled";
279 case EVREQ_HTTP_DATA_TOO_LONG:
280 return "response body is larger than allowed";
289 if (req ==
nullptr) {
298 reply->
status = evhttp_request_get_response_code(req);
300 struct evbuffer *buf = evhttp_request_get_input_buffer(req);
302 size_t size = evbuffer_get_length(buf);
303 const char *data = (
const char *)evbuffer_pullup(buf, size);
305 reply->
body = std::string(data, size);
307 evbuffer_drain(buf, size);
324 const std::vector<std::string> &args) = 0;
338 const std::vector<std::string> &args)
override {
340 throw std::runtime_error(
"-getinfo takes no arguments");
371 "verificationprogress",
373 result.
pushKV(
"timeoffset",
381 connections.
pushKV(
"total",
383 result.
pushKV(
"connections", connections);
387 result.
pushKV(
"difficulty",
392 result.
pushKV(
"keypoolsize",
395 result.
pushKV(
"unlocked_until",
417 {
"ipv4",
"ipv6",
"onion"}};
419 std::array<std::array<uint16_t, m_networks_size + 2>, 3>
m_counts{{{}}};
478 const double milliseconds{round(1000 * seconds)};
479 return milliseconds > 999999 ?
"-" :
ToString(milliseconds);
482 TicksSinceEpoch<std::chrono::seconds>(CliClock::now())};
489 const std::vector<std::string> &args)
override {
514 if (networkinfo[
"version"].getInt<int>() < 230000) {
515 throw std::runtime_error(
"-netinfo requires bitcoind server to be "
516 "running v0.23.0 and up");
522 const std::string network{peer[
"network"].get_str()};
527 const bool is_outbound{!peer[
"inbound"].get_bool()};
528 const bool is_block_relay{!peer[
"relaytxes"].get_bool()};
530 ++
m_counts.at(is_outbound).at(network_id);
537 if (is_block_relay) {
545 const int peer_id{peer[
"id"].getInt<
int>()};
546 const int mapped_as{peer[
"mapped_as"].isNull()
548 : peer[
"mapped_as"].getInt<
int>()};
549 const int version{peer[
"version"].getInt<
int>()};
550 const int64_t conn_time{peer[
"conntime"].getInt<int64_t>()};
551 const int64_t last_blck{peer[
"last_block"].getInt<int64_t>()};
552 const int64_t last_recv{peer[
"lastrecv"].getInt<int64_t>()};
553 const int64_t last_send{peer[
"lastsend"].getInt<int64_t>()};
554 const int64_t last_trxn{
555 peer[
"last_transaction"].getInt<int64_t>()};
556 const double min_ping{
557 peer[
"minping"].isNull() ? -1 : peer[
"minping"].get_real()};
558 const double ping{peer[
"pingtime"].isNull()
560 : peer[
"pingtime"].get_real()};
561 const std::string addr{peer[
"addr"].get_str()};
562 const std::string age{
565 const std::string sub_version{peer[
"subver"].get_str()};
566 m_peers.push_back({addr, sub_version, network, age, min_ping,
567 ping, last_blck, last_recv, last_send,
568 last_trxn, peer_id, mapped_as, version,
569 is_block_relay, is_outbound});
582 ChainToString(), networkinfo[
"protocolversion"].getInt<int>(),
583 networkinfo[
"subversion"].get_str())};
590 "Peer connections sorted by direction and min ping\n<-> relay "
591 " net mping ping send recv txn blk %*s ",
601 std::string version{
ToString(peer.version) + peer.sub_version};
603 "%3s %5s %5s%7s%7s%5s%5s%5s%5s %*s%*i %*s %-*s%s\n",
604 peer.is_outbound ?
"out" :
"in",
605 peer.is_block_relay ?
"block" :
"full", peer.network,
608 peer.last_send == 0 ?
""
610 peer.last_recv == 0 ?
""
633 " ms ms sec sec min min %*s\n\n",
638 result +=
" ipv4 ipv6 onion total block-relay\n";
639 const std::array<std::string, 3> rows{{
"in",
"out",
"total"}};
641 result +=
strprintf(
"%-5s %5i %5i %5i %5i %5i\n",
649 result +=
"\nLocal addresses";
650 const std::vector<UniValue> &local_addrs{
651 networkinfo[
"localaddresses"].getValues()};
652 if (local_addrs.empty()) {
655 size_t max_addr_size{0};
656 for (
const UniValue &addr : local_addrs) {
657 max_addr_size = std::max(addr[
"address"].get_str().length() + 1,
660 for (
const UniValue &addr : local_addrs) {
661 result +=
strprintf(
"\n%-*s port %6i score %6i",
662 max_addr_size, addr[
"address"].get_str(),
663 addr[
"port"].getInt<int>(),
664 addr[
"score"].getInt<int>());
676 const std::vector<std::string> &args)
override {
697 const std::vector<std::string> &args)
override {
713 const std::vector<std::string> &args,
714 const std::optional<std::string> &rpcwallet = {}) {
728 raii_evhttp_connection evcon =
736 evhttp_connection_set_timeout(evcon.get(), timeout);
742 constexpr int YEAR_IN_SECONDS = 31556952;
743 evhttp_connection_set_timeout(evcon.get(), 5 * YEAR_IN_SECONDS);
748 raii_evhttp_request req =
750 if (req ==
nullptr) {
751 throw std::runtime_error(
"create http request failed");
758 bool failedToGetAuthCookie =
false;
763 failedToGetAuthCookie =
true;
770 struct evkeyvalq *output_headers =
771 evhttp_request_get_output_headers(req.get());
773 evhttp_add_header(output_headers,
"Host", host.c_str());
774 evhttp_add_header(output_headers,
"Connection",
"close");
775 evhttp_add_header(output_headers,
"Content-Type",
"application/json");
777 output_headers,
"Authorization",
782 struct evbuffer *output_buffer =
783 evhttp_request_get_output_buffer(req.get());
785 evbuffer_add(output_buffer, strRequest.data(), strRequest.size());
788 std::string endpoint =
"/";
791 evhttp_uriencode(rpcwallet->data(), rpcwallet->size(),
false);
793 endpoint =
"/wallet/" + std::string(encodedURI);
799 int r = evhttp_make_request(evcon.get(), req.get(), EVHTTP_REQ_POST,
807 event_base_dispatch(base.get());
810 std::string responseErrorMessage;
812 responseErrorMessage =
817 strprintf(
"Could not connect to the server %s:%d%s\n\nMake sure "
818 "the bitcoind server is running and that you are "
819 "connecting to the correct RPC port.",
820 host, port, responseErrorMessage));
822 if (failedToGetAuthCookie) {
824 "Could not locate RPC credentials. No authentication cookie "
825 "could be found, and RPC password is not set. See "
826 "-rpcpassword and -stdinrpcpass. Configuration file: (%s)",
829 throw std::runtime_error(
830 "Authorization failed: Incorrect rpcuser or rpcpassword");
833 throw std::runtime_error(
838 throw std::runtime_error(
841 throw std::runtime_error(
"no response from server");
846 if (!valReply.read(
response.body)) {
847 throw std::runtime_error(
"couldn't parse reply from server");
851 throw std::runtime_error(
852 "expected reply to have result, error and id properties");
871 const std::vector<std::string> &args,
872 const std::optional<std::string> &rpcwallet = {}) {
881 if (!
error.isNull() &&
912 if (
error.isObject()) {
916 strPrint =
"error code: " + err_code.
getValStr() +
"\n";
918 if (err_msg.
isStr()) {
919 strPrint += (
"error message:\n" + err_msg.
get_str());
921 if (err_code.
isNum() &&
923 strPrint +=
"\nTry adding \"-rpcwallet=<filename>\" option to "
924 "bitcoin-cli command line.";
927 strPrint =
"error: " +
error.write();
929 nRet = abs(
error[
"code"].getInt<int>());
948 if (wallets.
size() <= 1) {
954 const std::string wallet_name =
wallet.get_str();
958 getbalances.find_value(
"result")[
"mine"][
"trusted"];
961 result.
pushKV(
"balances", balances);
969 std::optional<std::string> wallet_name{};
985 std::vector<std::string> &args) {
986 if (args.size() > 2) {
987 throw std::runtime_error(
988 "too many arguments (maximum 2 for nblocks and maxtries)");
990 if (args.size() == 0) {
992 }
else if (args.at(0) ==
"0") {
993 throw std::runtime_error(
994 "the first argument (number of blocks to generate, default: " +
997 args.emplace(args.begin() + 1, address);
1001 std::string strPrint;
1009 std::string rpcPass;
1013 fputs(
"RPC password> ", stderr);
1016 if (!std::getline(std::cin, rpcPass)) {
1017 throw std::runtime_error(
"-stdinrpcpass specified but failed "
1018 "to read from standard input");
1021 fputc(
'\n', stdout);
1025 std::vector<std::string> args =
1026 std::vector<std::string>(&argv[1], &argv[argc]);
1029 std::string walletPass;
1030 if (args.size() < 1 ||
1031 args[0].substr(0, 16) !=
"walletpassphrase") {
1032 throw std::runtime_error(
1033 "-stdinwalletpassphrase is only applicable for "
1034 "walletpassphrase(change)");
1037 fputs(
"Wallet passphrase> ", stderr);
1040 if (!std::getline(std::cin, walletPass)) {
1041 throw std::runtime_error(
"-stdinwalletpassphrase specified but "
1042 "failed to read from standard input");
1045 fputc(
'\n', stdout);
1047 args.insert(args.begin() + 1, walletPass);
1052 while (std::getline(std::cin, line)) {
1053 args.push_back(line);
1056 fputc(
'\n', stdout);
1059 std::unique_ptr<BaseRequestHandler> rh;
1066 if (
error.isNull()) {
1077 if (args.size() < 1) {
1078 throw std::runtime_error(
1079 "too few parameters (need at least command)");
1083 args.erase(args.begin());
1088 std::optional<std::string> wallet_name{};
1098 if (
error.isNull()) {
1109 }
catch (
const std::exception &e) {
1110 strPrint = std::string(
"error: ") + e.what();
1111 nRet = EXIT_FAILURE;
1117 if (strPrint !=
"") {
1118 tfm::format(nRet == 0 ? std::cout : std::cerr,
"%s\n", strPrint);
1129__declspec(dllexport)
int main(
int argc,
char *argv[]) {
1130 common::WinCmdLineArgs winArgs;
1131 std::tie(argc, argv) = winArgs.get();
1137 tfm::format(std::cerr,
"Error: Initializing networking failed\n");
1138 return EXIT_FAILURE;
1147 }
catch (
const std::exception &e) {
1149 return EXIT_FAILURE;
1152 return EXIT_FAILURE;
1155 int ret = EXIT_FAILURE;
1158 }
catch (
const std::exception &e) {
bool HelpRequested(const ArgsManager &args)
void SetupHelpOptions(ArgsManager &args)
Add help options to the args manager.
bool CheckDataDirOption(const ArgsManager &args)
const char *const BITCOIN_CONF_FILENAME
bool IsSwitchChar(char c)
static const char DEFAULT_RPCCONNECT[]
int main(int argc, char *argv[])
static const int CONTINUE_EXECUTION
static int AppInitRPC(int argc, char *argv[])
static void ParseError(const UniValue &error, std::string &strPrint, int &nRet)
Parse UniValue error to update the message to print to std::cerr and the code to return.
static void http_error_cb(enum evhttp_request_error err, void *ctx)
static int CommandLineRPC(int argc, char *argv[])
static const int DEFAULT_HTTP_CLIENT_TIMEOUT
static void http_request_done(struct evhttp_request *req, void *ctx)
const std::function< std::string(const char *)> G_TRANSLATION_FUN
Translate string to current locale using Qt.
static void ParseResult(const UniValue &result, std::string &strPrint)
Parse UniValue result to update the message to print to std::cout.
static const std::string DEFAULT_NBLOCKS
Default number of blocks to generate for RPC generatetoaddress.
static UniValue ConnectAndCallRPC(BaseRequestHandler *rh, const std::string &strMethod, const std::vector< std::string > &args, const std::optional< std::string > &rpcwallet={})
ConnectAndCallRPC wraps CallRPC with -rpcwait and an exception handler.
static void SetGenerateToAddressArgs(const std::string &address, std::vector< std::string > &args)
Check bounds and set up args for RPC generatetoaddress params: nblocks, address, maxtries.
static void GetWalletBalances(UniValue &result)
GetWalletBalances calls listwallets; if more than one wallet is loaded, it then fetches mine....
static void SetupCliArgs(ArgsManager &argsman)
std::chrono::system_clock CliClock
static std::string http_errorstring(int code)
static void libevent_log_cb(int severity, const char *msg)
libevent event log callback
static const bool DEFAULT_NAMED
static UniValue CallRPC(BaseRequestHandler *rh, const std::string &strMethod, const std::vector< std::string > &args, const std::optional< std::string > &rpcwallet={})
static UniValue GetNewAddress()
Call RPC getnewaddress.
std::unique_ptr< CBaseChainParams > CreateBaseChainParams(const std::string &chain)
Port numbers for incoming Tor connections (8334, 18334, 38334, 18445) have been chosen arbitrarily to...
const CBaseChainParams & BaseParams()
Return the currently selected parameters.
void SetupChainParamsBaseOptions(ArgsManager &argsman)
Set the arguments for chainparams.
void SelectBaseParams(const std::string &chain)
Sets the params returned by Params() to those for the given network.
void ForceSetArg(const std::string &strArg, const std::string &strValue)
bool ParseParameters(int argc, const char *const argv[], std::string &error)
std::string GetHelpMessage() const
Get the help string.
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 GetConfigFilePath() const
Return config file path (read-only)
std::string GetArg(const std::string &strArg, const std::string &strDefault) const
Return string argument or default value.
bool ReadConfigFiles(std::string &error, bool ignore_invalid_keys=false)
bool GetBoolArg(const std::string &strArg, bool fDefault) const
Return boolean argument or default value.
void AddArg(const std::string &name, const std::string &help, unsigned int flags, const OptionsCategory &cat)
Add argument.
std::string GetChainName() const
Looks for -regtest, -testnet and returns the appropriate BIP70 chain name.
Class that handles the conversion from a command-line to a JSON-RPC request, as well as converting ba...
virtual ~BaseRequestHandler()
virtual UniValue ProcessReply(const UniValue &batch_in)=0
virtual UniValue PrepareRequest(const std::string &method, const std::vector< std::string > &args)=0
static const std::string REGTEST
static const std::string TESTNET
static const std::string MAIN
BIP70 chain name strings (main, test or regtest)
CConnectionFailed(const std::string &msg)
Process default single requests.
UniValue PrepareRequest(const std::string &method, const std::vector< std::string > &args) override
UniValue ProcessReply(const UniValue &reply) override
Process RPC generatetoaddress request.
UniValue PrepareRequest(const std::string &method, const std::vector< std::string > &args) override
UniValue ProcessReply(const UniValue &reply) override
Process getinfo requests.
const int ID_BLOCKCHAININFO
UniValue PrepareRequest(const std::string &method, const std::vector< std::string > &args) override
Create a simulated getinfo request.
UniValue ProcessReply(const UniValue &batch_in) override
Collect values from the batch and form a simulated getinfo reply.
Process netinfo requests.
bool DetailsRequested() const
std::vector< Peer > m_peers
UniValue ProcessReply(const UniValue &batch_in) override
uint8_t m_details_level
Optional user-supplied arg to set dashboard details level.
std::array< std::array< uint16_t, m_networks_size+2 >, 3 > m_counts
Peer counts by (in/out/total, networks/total/block-relay)
bool IsAddressSelected() const
static constexpr int8_t UNKNOWN_NETWORK
bool IsVersionSelected() const
int8_t NetworkStringToId(const std::string &str) const
static constexpr int ID_PEERINFO
std::string ChainToString() const
UniValue PrepareRequest(const std::string &method, const std::vector< std::string > &args) override
static constexpr int ID_NETWORKINFO
const std::array< std::string, m_networks_size > m_networks
std::string PingTimeToString(double seconds) const
static constexpr uint8_t m_networks_size
void push_back(UniValue val)
const std::string & get_str() const
const UniValue & find_value(std::string_view key) const
std::string write(unsigned int prettyIndent=0, unsigned int indentLevel=0) const
const std::string & getValStr() const
const UniValue & get_obj() const
const std::vector< UniValue > & getValues() const
void pushKV(std::string key, UniValue val)
UniValue RPCConvertValues(const std::string &strMethod, const std::vector< std::string > &strParams)
Convert positional arguments to command-specific RPC representation.
UniValue RPCConvertNamedValues(const std::string &strMethod, const std::vector< std::string > &strParams)
Convert named arguments to command-specific RPC representation.
std::string FormatFullVersion()
std::string LicenseInfo()
Returns licensing information (for -version)
void SetupCurrencyUnitOptions(ArgsManager &argsman)
raii_evhttp_request obtain_evhttp_request(void(*cb)(struct evhttp_request *, void *), void *arg)
raii_evhttp_connection obtain_evhttp_connection_base(struct event_base *base, std::string host, uint16_t port)
raii_event_base obtain_event_base()
void PrintExceptionContinue(const std::exception *pex, const char *pszThread)
static std::string strRPCUserColonPass
bool error(const char *fmt, const Args &...args)
static const uint64_t DEFAULT_MAX_TRIES
Default max iterations to try in RPC generatetodescriptor, generatetoaddress, and generateblock.
static bool isNull(const AnyVoteItem &item)
static std::string PathToString(const path &path)
Convert path object to byte string.
Implement std::hash so RCUPtr can be used as a key for maps or sets.
std::vector< UniValue > JSONRPCProcessBatchReply(const UniValue &in)
Parse JSON-RPC batch reply into a vector.
bool GetAuthCookie(std::string *cookie_out)
Read the RPC authentication cookie from disk.
UniValue JSONRPCRequestObj(const std::string &strMethod, const UniValue ¶ms, const UniValue &id)
JSON-RPC protocol.
UniValue JSONRPCReplyObj(const UniValue &result, const UniValue &error, const UniValue &id)
@ HTTP_SERVICE_UNAVAILABLE
@ HTTP_INTERNAL_SERVER_ERROR
@ RPC_WALLET_NOT_SPECIFIED
No wallet specified (error when there are multiple wallets loaded)
@ RPC_IN_WARMUP
Client still warming up.
static RPCHelpMan getnewaddress()
static RPCHelpMan listwallets()
static RPCHelpMan getbalances()
std::string ToString(const T &t)
Locale-independent version of std::to_string.
Reply structure for request_done to fill in.
bool operator<(const Peer &rhs) const
void UninterruptibleSleep(const std::chrono::microseconds &n)
const UniValue NullUniValue
std::string EncodeBase64(Span< const uint8_t > input)
bool ParseUInt8(std::string_view str, uint8_t *out)
Convert decimal string to unsigned 8-bit integer with strict parse error feedback.
std::string FormatParagraph(std::string_view in, size_t width, size_t indent)
Format a paragraph of text to a fixed width, adding spaces for indentation to any added line.
void SplitHostPort(std::string_view in, uint16_t &portOut, std::string &hostOut)