10#include <chainparams.h>
31#include <validation.h>
43 "Returns the number of connections to other nodes.\n",
61 "Requests that a ping be sent to all other nodes, to measure ping "
63 "Results provided in getpeerinfo, pingtime and pingwait fields are "
65 "Ping command is handled in queue with all other commands, so it "
66 "measures processing backlog, not just network ping.\n",
86 "Returns data about each connected network node as a json array of "
100 "(host:port) The IP address and port of the peer"},
102 "(ip:port) Bind address of the connection to the peer"},
104 "(ip:port) Local address as reported by the peer"},
106 "The total number of addresses processed, excluding those "
107 "dropped due to rate limiting"},
109 "The total number of addresses dropped due to rate "
117 "The AS in the BGP route to the peer used for "
119 "peer selection (only available if the asmap config flag "
122 "The services offered"},
125 "the services offered, in human-readable form",
127 "the service name if it is recognised"}}},
129 "Whether peer has asked us to relay transactions to it"},
136 " of the last valid transaction received from this "
140 " of the last block received from this peer"},
143 "The total bytes received"},
147 "The time offset in seconds"},
149 "ping time (if available)"},
151 "minimum observed ping time (if any at all)"},
153 "ping wait (if non-zero)"},
155 "The peer version, such as 70001"},
158 "Inbound (true) or Outbound (false)"},
160 "Whether we selected peer as (compact blocks) "
161 "high-bandwidth peer"},
163 "Whether peer selected us as (compact blocks) "
164 "high-bandwidth peer"},
166 "Type of connection: \n" +
169 "The starting height (block) of the peer"},
172 "The current height of header pre-synchronization with "
173 "this peer, or -1 if no low-work sync is in progress"},
175 "The last header we have in common with this peer"},
177 "The last block we have in common with this peer"},
183 "The heights of blocks we're currently asking from "
187 "Whether we participate in address relay with this peer"},
189 "The minimum fee rate for transactions this peer accepts"},
194 "The total bytes sent aggregated by message type\n"
195 "When a message type is not listed in this json object, "
196 "the bytes sent are 0.\n"
197 "Only known message types can appear as keys in the "
203 "The total bytes received aggregated by message type\n"
204 "When a message type is not listed in this json object, "
205 "the bytes received are 0.\n"
206 "Only known message types can appear as keys in the "
207 "object and all bytes received\n"
208 "of unknown message types are listed under '" +
221 std::vector<CNodeStats> vstats;
231 obj.
pushKV(
"id", stats.nodeid);
232 obj.
pushKV(
"addr", stats.m_addr_name);
233 if (stats.addrBind.IsValid()) {
234 obj.
pushKV(
"addrbind", stats.addrBind.ToString());
236 if (!(stats.addrLocal.empty())) {
237 obj.
pushKV(
"addrlocal", stats.addrLocal);
240 if (stats.m_mapped_as != 0) {
241 obj.
pushKV(
"mapped_as", uint64_t(stats.m_mapped_as));
249 obj.
pushKV(
"last_transaction",
251 if (
node.avalanche) {
257 obj.
pushKV(
"bytessent", stats.nSendBytes);
258 obj.
pushKV(
"bytesrecv", stats.nRecvBytes);
260 obj.
pushKV(
"timeoffset", stats.nTimeOffset);
261 if (stats.m_last_ping_time > 0us) {
265 if (stats.m_min_ping_time < std::chrono::microseconds::max()) {
273 obj.
pushKV(
"version", stats.nVersion);
277 obj.
pushKV(
"subver", stats.cleanSubVer);
278 obj.
pushKV(
"inbound", stats.fInbound);
279 obj.
pushKV(
"bip152_hb_to", stats.m_bip152_highbandwidth_to);
280 obj.
pushKV(
"bip152_hb_from", stats.m_bip152_highbandwidth_from);
290 obj.
pushKV(
"inflight", std::move(heights));
292 obj.
pushKV(
"minfeefilter",
294 obj.
pushKV(
"addr_relay_enabled",
297 obj.
pushKV(
"addr_rate_limited",
301 for (
const auto &permission :
305 obj.
pushKV(
"permissions", std::move(permissions));
308 for (
const auto &i : stats.mapSendBytesPerMsgType) {
310 sendPerMsgType.
pushKV(i.first, i.second);
313 obj.
pushKV(
"bytessent_per_msg", std::move(sendPerMsgType));
316 for (
const auto &i : stats.mapRecvBytesPerMsgType) {
318 recvPerMsgType.
pushKV(i.first, i.second);
321 obj.
pushKV(
"bytesrecv_per_msg", std::move(recvPerMsgType));
322 obj.
pushKV(
"connection_type",
336 "Attempts to add or remove a node from the addnode list.\n"
337 "Or try a connection to a node once.\n"
338 "Nodes added using addnode (or -connect) are protected from "
339 "DoS disconnection and are not required to be\n"
340 "full nodes as other outbound peers are (though such peers "
341 "will not be synced from).\n",
344 "The address of the peer to connect to"},
346 "'add' to add a node to the list, 'remove' to remove a "
347 "node from the list, 'onetry' to try a connection to the "
356 const auto command{self.
Arg<std::string>(
"command")};
357 if (command !=
"onetry" && command !=
"add" &&
358 command !=
"remove") {
359 throw std::runtime_error(self.
ToString());
365 const auto node_arg{self.
Arg<std::string>(
"node")};
368 if (command ==
"onetry") {
371 addr,
false,
nullptr,
376 if ((command ==
"add") && (!connman.
AddNode(node_arg))) {
378 "Error: Node already added");
379 }
else if ((command ==
"remove") &&
383 "Error: Node could not be removed. It has not been "
384 "added previously.");
395 "\nOpen an outbound connection to a specified node. This RPC is for "
399 "The IP address and port to attempt connecting to."},
401 "Type of connection to open (\"outbound-full-relay\", "
402 "\"block-relay-only\", \"addr-fetch\", \"feeler\" or "
410 "Address of newly added connection."},
412 "Type of connection opened."},
416 "\"192.168.0.6:8333\" \"outbound-full-relay\"") +
418 "\"192.168.0.6:8333\" \"outbound-full-relay\"")},
422 throw std::runtime_error(
"addconnection is for regression "
423 "testing (-regtest mode) only.");
428 const std::string address = request.params[0].get_str();
429 const std::string conn_type_in{
432 if (conn_type_in ==
"outbound-full-relay") {
434 }
else if (conn_type_in ==
"block-relay-only") {
436 }
else if (conn_type_in ==
"addr-fetch") {
438 }
else if (conn_type_in ==
"feeler") {
440 }
else if (conn_type_in ==
"avalanche") {
441 if (!
node.avalanche) {
443 "Error: avalanche outbound requested "
444 "but avalanche is not enabled.");
453 const bool success = connman.
AddConnection(address, conn_type);
456 "Error: Already at capacity for specified "
461 info.
pushKV(
"address", address);
462 info.
pushKV(
"connection_type", conn_type_in);
472 "Immediately disconnects from the specified peer node.\n"
473 "\nStrictly one out of 'address' and 'nodeid' can be provided to "
474 "identify the node.\n"
475 "\nTo disconnect by nodeid, either set 'address' to the empty string, "
476 "or call using the named 'nodeid' argument only.\n",
480 "The IP address/port of the node"},
483 "The node ID (see getpeerinfo for node IDs)"},
496 const UniValue &address_arg = request.params[0];
497 const UniValue &id_arg = request.params[1];
503 (address_arg.
isStr() &&
504 address_arg.
get_str().empty()))) {
511 "Only one of address and nodeid should be provided.");
516 "Node not found in connected nodes");
527 "Returns information about the given added node, or all added nodes\n"
528 "(note that onetry addnodes are not listed here)\n",
531 "If provided, return information about this specific node, "
532 "otherwise all nodes are returned."},
544 "The node IP address or name (as provided to addnode)"},
548 "Only when connected = true",
555 "The bitcoin server IP and port we're "
558 "connection, inbound or outbound"},
572 if (!request.params[0].isNull()) {
575 if (info.strAddedNode == request.params[0].get_str()) {
576 vInfo.assign(1, info);
583 "Error: Node has not been added.");
591 obj.
pushKV(
"addednode", info.strAddedNode);
592 obj.
pushKV(
"connected", info.fConnected);
594 if (info.fConnected) {
596 address.
pushKV(
"address", info.resolvedAddress.ToString());
597 address.
pushKV(
"connected",
598 info.fInbound ?
"inbound" :
"outbound");
601 obj.
pushKV(
"addresses", std::move(addresses));
613 "Returns information about network traffic, including bytes in, "
615 "and current time.\n",
623 "Total bytes received"},
632 "Length of the measuring timeframe in seconds"},
635 "True if target is reached"},
637 "True if serving historical blocks"},
639 "Bytes left in current time cycle"},
641 "Seconds left in current time cycle"},
660 outboundLimit.
pushKV(
"target_reached",
662 outboundLimit.
pushKV(
"serve_historical_blocks",
664 outboundLimit.
pushKV(
"bytes_left_in_cycle",
667 "time_left_in_cycle",
669 obj.
pushKV(
"uploadtarget", std::move(outboundLimit));
677 for (
int n = 0; n <
NET_MAX; ++n) {
701 "Returns an object containing various state info regarding P2P "
711 "the server subversion string"},
713 "the protocol version"},
715 "the services we offer to the network"},
717 "localservicesnames",
718 "the services we offer to the network, in human-readable form",
723 "true if transaction relay is requested from peers"},
726 "the total number of connections"},
728 "the number of inbound connections"},
730 "the number of outbound connections"},
732 "whether p2p networking is enabled"},
735 "information per network",
744 "is the network limited using -onlynet?"},
746 "is the network reachable?"},
748 "(\"host:port\") the proxy that is used for this "
749 "network, or empty if none"},
751 "Whether randomized credentials are used"},
755 "minimum relay fee for transactions in " + ticker +
"/kB"},
758 "list of local addresses",
770 "any network and blockchain warnings"},
788 obj.
pushKV(
"localrelay", !
node.peerman->IgnoresIncomingTxs());
792 obj.
pushKV(
"networkactive",
node.connman->GetNetworkActive());
793 obj.
pushKV(
"connections",
node.connman->GetNodeCount(
795 obj.
pushKV(
"connections_in",
797 obj.
pushKV(
"connections_out",
node.connman->GetNodeCount(
805 node.mempool->m_min_relay_feerate.GetFeePerK());
810 for (
const std::pair<const CNetAddr, LocalServiceInfo> &item :
813 rec.
pushKV(
"address", item.first.ToString());
814 rec.
pushKV(
"port", item.second.nPort);
815 rec.
pushKV(
"score", item.second.nScore);
816 localAddresses.
push_back(std::move(rec));
819 obj.
pushKV(
"localaddresses", std::move(localAddresses));
829 "Attempts to add or remove an IP/Subnet from the banned list.\n",
832 "The IP/Subnet (see getpeerinfo for nodes IP) with an optional "
833 "netmask (default is /32 = single IP)"},
835 "'add' to add an IP/Subnet to the list, 'remove' to remove an "
836 "IP/Subnet from the list"},
838 "time in seconds how long (or until when if [absolute] is set) "
839 "the IP is banned (0 or empty means using the default time of 24h "
840 "which can also be overwritten by the -bantime startup argument)"},
842 "If set, the bantime must be an absolute timestamp expressed in " +
852 std::string strCommand;
853 if (!request.params[1].isNull()) {
854 strCommand = request.params[1].
get_str();
857 if (strCommand !=
"add" && strCommand !=
"remove") {
864 "Error: Ban database not loaded");
869 bool isSubnet =
false;
871 if (request.params[0].get_str().find(
'/') != std::string::npos) {
877 LookupHost(request.params[0].get_str(), resolved,
false);
885 "Error: Invalid IP/Subnet");
888 if (strCommand ==
"add") {
889 if (isSubnet ?
node.banman->IsBanned(subNet)
890 :
node.banman->IsBanned(netAddr)) {
892 "Error: IP/Subnet already banned");
897 if (!request.params[2].isNull()) {
898 banTime = request.params[2].getInt<int64_t>();
902 if (request.params[3].isTrue()) {
909 node.connman->DisconnectNode(subNet);
914 node.connman->DisconnectNode(netAddr);
917 }
else if (strCommand ==
"remove") {
918 if (!(isSubnet ?
node.banman->Unban(subNet)
919 :
node.banman->Unban(netAddr))) {
922 "Error: Unban failed. Requested address/subnet "
923 "was not previously manually banned.");
934 "List all manually banned IPs/Subnets.\n",
957 "Error: Ban database not loaded");
961 node.banman->GetBanned(banMap);
964 for (
const auto &entry : banMap) {
965 const CBanEntry &banEntry = entry.second;
967 rec.
pushKV(
"address", entry.first.ToString());
971 bannedAddresses.
push_back(std::move(rec));
974 return bannedAddresses;
982 "Clear all banned IPs.\n",
993 "Error: Peer-to-peer functionality missing or disabled");
996 node.banman->ClearBanned();
1006 "Disable/enable all p2p network activity.\n",
1009 "true to enable networking, false to disable"},
1028 "Return known addresses, which can potentially be used to find new "
1029 "nodes in the network.\n",
1032 "The maximum number of addresses to return. Specify 0 to return "
1033 "all known addresses."},
1035 "Return only addresses of the specified network. Can be one of: " +
1048 " when the node was last seen"},
1050 "The services offered by the node"},
1052 "The address of the node"},
1054 "The port number of the node"},
1057 ") the node connected through"},
1063 "network=onion count=12") +
1071 const int count{request.params[0].isNull()
1073 : request.params[0].getInt<
int>()};
1076 "Address count out of range");
1079 const std::optional<Network> network{
1080 request.params[1].isNull()
1082 : std::optional<Network>{
1087 request.params[1].get_str()));
1090 const std::vector<CAddress> vAddr{
1094 for (
const CAddress &addr : vAddr) {
1098 int64_t{TicksSinceEpoch<std::chrono::seconds>(addr.nTime)});
1099 obj.
pushKV(
"services", uint64_t(addr.nServices));
1100 obj.
pushKV(
"address", addr.ToStringIP());
1101 obj.
pushKV(
"port", addr.GetPort());
1113 "Add the address of a potential peer to the address manager. This "
1114 "RPC is for testing only.\n",
1117 "The IP address of the peer"},
1119 "The port of the peer"},
1121 "If true, attempt to add the peer to the tried addresses table"},
1129 "whether the peer address was successfully added to the "
1139 if (!
node.addrman) {
1142 "Error: Address manager functionality missing or disabled");
1145 const std::string &addr_string{request.params[0].get_str()};
1146 const uint16_t port{
1147 static_cast<uint16_t
>(request.params[1].getInt<
int>())};
1148 const bool tried{request.params[2].isTrue()};
1152 bool success{
false};
1154 if (
LookupHost(addr_string, net_addr,
false)) {
1156 address.nTime = Now<NodeSeconds>();
1159 if (
node.addrman->Add({address}, address)) {
1164 node.addrman->Good(address);
1169 obj.
pushKV(
"success", success);
1178 "Send a p2p message to a peer specified by id.\n"
1179 "The message type and body must be provided, the message header will "
1181 "This RPC is for testing only.",
1184 "The peer to send the message to."},
1186 strprintf(
"The message type (maximum length %i)",
1189 "The serialized message body to send, in hex, without a message "
1197 const NodeId peer_id{request.params[0].
getInt<int64_t>()};
1198 const std::string &msg_type{request.params[1].get_str()};
1202 strprintf(
"Error: msg_type too long, max length is %i",
1205 auto msg{TryParseHex<uint8_t>(request.params[2].get_str())};
1206 if (!msg.has_value()) {
1208 "Error parsing input for msg");
1215 msg_ser.
data = msg.value();
1216 msg_ser.
m_type = msg_type;
1225 "Error: Could not send message to peer");
1240 {
"network",
ping, },
1257 for (
const auto &c : commands) {
A CService with information about it as peer.
std::chrono::seconds GetMaxOutboundTimeLeftInCycle() const
returns the time in second left in the current max outbound cycle in case of no limit,...
bool OutboundTargetReached(bool historicalBlockServingLimit) const
check if the outbound target is reached.
bool ForNode(NodeId id, std::function< bool(CNode *pnode)> func)
bool AddConnection(const std::string &address, ConnectionType conn_type)
Attempts to open a connection.
bool RemoveAddedNode(const std::string &node) EXCLUSIVE_LOCKS_REQUIRED(!m_added_nodes_mutex)
bool GetNetworkActive() const
uint64_t GetOutboundTargetBytesLeft() const
response the bytes left in the current max outbound cycle in case of no limit, it will always respons...
std::chrono::seconds GetMaxOutboundTimeframe() const
bool DisconnectNode(const std::string &node)
uint64_t GetMaxOutboundTarget() const
size_t GetNodeCount(ConnectionDirection) const
void GetNodeStats(std::vector< CNodeStats > &vstats) const
std::vector< AddedNodeInfo > GetAddedNodeInfo() const EXCLUSIVE_LOCKS_REQUIRED(!m_added_nodes_mutex)
uint64_t GetTotalBytesRecv() const
std::vector< CAddress > GetAddresses(size_t max_addresses, size_t max_pct, std::optional< Network > network) const
Return all or many randomly selected addresses, optionally by network.
void SetNetworkActive(bool active)
void OpenNetworkConnection(const CAddress &addrConnect, bool fCountFailure, CSemaphoreGrant *grantOutbound, const char *strDest, ConnectionType conn_type)
bool AddNode(const std::string &node) EXCLUSIVE_LOCKS_REQUIRED(!m_added_nodes_mutex)
void PushMessage(CNode *pnode, CSerializedNetMsg &&msg)
uint64_t GetTotalBytesSent() const
Information about a peer.
void appendCommand(const std::string &name, const CRPCCommand *pcmd)
Appends a CRPCCommand to the dispatch table.
std::string ToStringIPPort() const
static std::vector< std::string > ToStrings(NetPermissionFlags flags)
virtual void SendPings()=0
Send ping message to all peers.
virtual bool GetNodeStateStats(NodeId nodeid, CNodeStateStats &stats) const =0
Get statistics from node state.
auto Arg(size_t i) const
Helper to get a required or default-valued request argument.
std::string ToString() const
void push_back(UniValue val)
const std::string & get_str() const
void pushKV(std::string key, UniValue val)
bool randomize_credentials
static constexpr int CLIENT_VERSION
bitcoind-res.rc includes this file, but it cannot cope with real c++ code.
std::string ConnectionTypeAsString(ConnectionType conn_type)
Convert ConnectionType enum to a string value.
ConnectionType
Different types of connections to a peer.
@ BLOCK_RELAY
We use block-relay-only connections to help prevent against partition attacks.
@ MANUAL
We open manual connections to addresses that users explicitly inputted via the addnode RPC,...
@ OUTBOUND_FULL_RELAY
These are the default connections that we use to connect with the network.
@ FEELER
Feeler connections are short-lived connections made to check that a node is alive.
@ AVALANCHE_OUTBOUND
Special case of connection to a full relay outbound with avalanche service enabled.
@ ADDR_FETCH
AddrFetch connections are short lived connections used to solicit addresses from peers.
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate.
static path absolute(const path &p)
const std::string NET_MESSAGE_TYPE_OTHER
GlobalMutex g_maplocalhost_mutex
std::string userAgent(const Config &config)
bool IsReachable(enum Network net)
const std::vector< std::string > CONNECTION_TYPE_DOC
std::map< CSubNet, CBanEntry > banmap_t
@ NET_MAX
Dummy value to indicate the number of NET_* constants.
@ NET_UNROUTABLE
Addresses from these networks are not publicly routable on the global Internet.
@ NET_INTERNAL
A set of addresses that represent the hash of a string or FQDN.
std::string GetNetworkName(enum Network net)
bool GetProxy(enum Network net, proxyType &proxyInfoOut)
bool LookupSubNet(const std::string &strSubnet, CSubNet &ret, DNSLookupFn dns_lookup_function)
Parse and resolve a specified subnet string into the appropriate internal representation.
enum Network ParseNetwork(const std::string &net_in)
bool LookupHost(const std::string &name, std::vector< CNetAddr > &vIP, unsigned int nMaxSolutions, bool fAllowLookup, DNSLookupFn dns_lookup_function)
Resolve a host string to its corresponding network addresses.
std::vector< std::string > GetNetworkNames(bool append_unroutable)
Return a vector of publicly routable Network names; optionally append NET_UNROUTABLE.
ServiceFlags
nServices flags.
static const int PROTOCOL_VERSION
network protocol versioning
UniValue JSONRPCError(int code, const std::string &message)
void RegisterNetRPCCommands(CRPCTable &t)
Register P2P networking RPC commands.
static RPCHelpMan getnetworkinfo()
static RPCHelpMan addconnection()
static RPCHelpMan getaddednodeinfo()
static RPCHelpMan clearbanned()
static RPCHelpMan getnettotals()
static RPCHelpMan addnode()
static RPCHelpMan getnodeaddresses()
static RPCHelpMan setban()
static UniValue GetNetworksInfo()
static RPCHelpMan getconnectioncount()
static RPCHelpMan disconnectnode()
static RPCHelpMan listbanned()
static RPCHelpMan setnetworkactive()
static RPCHelpMan addpeeraddress()
static RPCHelpMan getpeerinfo()
static RPCHelpMan sendmsgtopeer()
@ RPC_CLIENT_NODE_NOT_CONNECTED
Node to disconnect not found in connected nodes.
@ RPC_CLIENT_INVALID_IP_OR_SUBNET
Invalid IP/Subnet.
@ RPC_MISC_ERROR
General application defined errors std::exception thrown in command handling.
@ RPC_CLIENT_NODE_ALREADY_ADDED
Node is already added.
@ RPC_INVALID_PARAMETER
Invalid, missing or duplicate parameter.
@ RPC_DATABASE_ERROR
Database error.
@ RPC_CLIENT_NODE_NOT_ADDED
Node has not been added before.
@ RPC_CLIENT_NODE_CAPACITY_REACHED
Max number of outbound or block-relay connections already open.
@ RPC_CLIENT_P2P_DISABLED
No valid connection manager instance found.
std::string HelpExampleCli(const std::string &methodname, const std::string &args)
UniValue GetServicesNames(ServiceFlags services)
Returns, given services flags, a list of humanly readable (known) network services.
std::string HelpExampleRpc(const std::string &methodname, const std::string &args)
const std::string UNIX_EPOCH_TIME
String used to describe UNIX epoch time in documentation, factored out to a constant for consistency.
NodeContext & EnsureAnyNodeContext(const std::any &context)
PeerManager & EnsurePeerman(const NodeContext &node)
CConnman & EnsureConnman(const NodeContext &node)
auto Join(const std::vector< T > &list, const BaseType &separator, UnaryOp unary_op) -> decltype(unary_op(list.at(0)))
Join a list of items.
std::string TrimString(std::string_view str, std::string_view pattern=" \f\n\r\t\v")
std::chrono::microseconds m_ping_wait
Amount m_fee_filter_received
std::vector< int > vHeightInFlight
bool m_addr_relay_enabled
uint64_t m_addr_rate_limited
uint64_t m_addr_processed
ServiceFlags their_services
POD that contains various stats about a node.
std::vector< uint8_t > data
static const Currency & get()
@ STR_HEX
Special type that is a STR with only hex chars.
std::string DefaultHint
Hint for default value.
@ NUM_TIME
Special numeric to denote unix epoch time.
@ OBJ_DYN
Special dictionary with keys that are not literals.
@ STR_HEX
Special string with only hex chars.
NodeContext struct containing references to chain state and connection state.
int64_t GetTimeMillis()
Returns the system time (not mockable)
constexpr int64_t count_seconds(std::chrono::seconds t)
double CountSecondsDouble(SecondsDouble t)
Helper to count the seconds in any std::chrono::duration type.
int64_t GetTimeOffset()
"Never go to sea with two chronometers; take one or three." Our three time sources are:
const UniValue NullUniValue
bilingual_str GetWarnings(bool verbose)
Format a string that describes several potential problems detected by the core.