11#include <chainparams.h>
40#include <validation.h>
41#ifdef ENABLE_EMBEDDED_ASMAP
44#include <node/data/ip_asn.dat.h>
70 "outbound-full-relay (default automatic connections)",
71 "block-relay-only (does not relay transactions or addresses)",
72 "inbound (initiated by the peer)",
73 "manual (added via addnode RPC or -addnode/-connect configuration options)",
74 "addr-fetch (short-lived automatic connection for soliciting addresses)",
75 "feeler (short-lived automatic connection for testing addresses)",
76 "private-broadcast (short-lived automatic connection for broadcasting privacy-sensitive transactions)"
80 "detecting (peer could be v1 or v2)",
81 "v1 (plaintext transport protocol)",
82 "v2 (BIP324 encrypted transport protocol)"
89 "Returns the number of connections to other nodes.\n",
112 "Requests that a ping be sent to all other nodes, to measure ping time.\n"
113 "Results are provided in getpeerinfo.\n"
114 "Ping command is handled in queue with all other commands, so it measures processing backlog, not just network ping.\n",
142 return servicesNames;
149 "Returns data about each connected network peer as a json array of objects.",
158 {
RPCResult::Type::STR,
"addr",
"(host:port) The IP address/hostname optionally followed by :port of the peer"},
159 {
RPCResult::Type::STR,
"addrbind",
true,
"(ip:port) Bind address of the connection to the peer"},
162 {
RPCResult::Type::NUM,
"mapped_as",
true,
"Mapped AS (Autonomous System) number at the end of the BGP route to the peer, used for diversifying\n"
163 "peer selection (only displayed if the -asmap config option is set)"},
182 {
RPCResult::Type::NUM,
"pingwait",
true,
"The duration in seconds of an outstanding ping (if non-zero)"},
186 {
RPCResult::Type::BOOL,
"bip152_hb_to",
"Whether we selected peer as (compact blocks) high-bandwidth peer"},
187 {
RPCResult::Type::BOOL,
"bip152_hb_from",
"Whether peer selected us as (compact blocks) high-bandwidth peer"},
188 {
RPCResult::Type::NUM,
"presynced_headers",
"The current height of header pre-synchronization with this peer, or -1 if no low-work sync is in progress"},
195 {
RPCResult::Type::BOOL,
"addr_relay_enabled",
"Whether we participate in address relay with this peer"},
196 {
RPCResult::Type::NUM,
"addr_processed",
"The total number of addresses processed, excluding those dropped due to rate limiting"},
197 {
RPCResult::Type::NUM,
"addr_rate_limited",
"The total number of addresses dropped due to rate limiting"},
198 {
RPCResult::Type::ARR,
"permissions",
"Any special permissions that have been granted to this peer",
206 "When a message type is not listed in this json object, the bytes sent are 0.\n"
207 "Only known message types can appear as keys in the object."}
212 "When a message type is not listed in this json object, the bytes received are 0.\n"
213 "Only known message types can appear as keys in the object and all bytes received\n"
217 "Please note this output is unlikely to be stable in upcoming releases as we iterate to\n"
218 "best capture connection behaviors."},
220 {
RPCResult::Type::STR,
"session_id",
"The session ID for this connection, or \"\" if there is none (\"v2\" transport protocol only).\n"},
234 std::vector<CNodeStats> vstats;
251 obj.
pushKV(
"id", stats.nodeid);
252 obj.
pushKV(
"addr", stats.m_addr_name);
253 if (stats.addrBind.IsValid()) {
254 obj.
pushKV(
"addrbind", stats.addrBind.ToStringAddrPort());
256 if (!(stats.addrLocal.empty())) {
257 obj.
pushKV(
"addrlocal", stats.addrLocal);
260 if (stats.m_mapped_as != 0) {
261 obj.
pushKV(
"mapped_as", stats.m_mapped_as);
269 obj.
pushKV(
"lastsend", TicksSinceEpoch<std::chrono::seconds>(stats.m_last_send));
270 obj.
pushKV(
"lastrecv", TicksSinceEpoch<std::chrono::seconds>(stats.m_last_recv));
273 obj.
pushKV(
"bytessent", stats.nSendBytes);
274 obj.
pushKV(
"bytesrecv", stats.nRecvBytes);
275 obj.
pushKV(
"conntime", TicksSinceEpoch<std::chrono::seconds>(stats.m_connected));
277 if (stats.m_last_ping_time > 0us) {
278 obj.
pushKV(
"pingtime", Ticks<SecondsDouble>(stats.m_last_ping_time));
281 obj.
pushKV(
"minping", Ticks<SecondsDouble>(stats.m_min_ping_time));
286 obj.
pushKV(
"version", stats.nVersion);
290 obj.
pushKV(
"subver", stats.cleanSubVer);
291 obj.
pushKV(
"inbound", stats.fInbound);
292 obj.
pushKV(
"bip152_hb_to", stats.m_bip152_highbandwidth_to);
293 obj.
pushKV(
"bip152_hb_from", stats.m_bip152_highbandwidth_from);
301 obj.
pushKV(
"inflight", std::move(heights));
309 obj.
pushKV(
"permissions", std::move(permissions));
313 for (
const auto& [message_type, total_bytes] : stats.mapSendBytesPerMsgType) {
314 if (total_bytes > 0) {
315 sendPerMsgType.
pushKVEnd(message_type, total_bytes);
318 obj.
pushKV(
"bytessent_per_msg", std::move(sendPerMsgType));
321 for (
const auto& [message_type, total_bytes] : stats.mapRecvBytesPerMsgType) {
322 if (total_bytes > 0) {
323 recvPerMsgType.
pushKVEnd(message_type, total_bytes);
326 obj.
pushKV(
"bytesrecv_per_msg", std::move(recvPerMsgType));
329 obj.
pushKV(
"session_id", stats.m_session_id);
331 ret.push_back(std::move(obj));
343 "Attempts to add or remove a node from the addnode list.\n"
344 "Or try a connection to a node once.\n"
345 "Nodes added using addnode (or -connect) are protected from DoS disconnection and are not required to be\n"
346 "full nodes/support SegWit as other outbound peers are (though such peers will not be synced from).\n" +
348 " and are counted separately from the -maxconnections limit.\n",
357 +
HelpExampleRpc(
"addnode", R
"("192.168.0.6:8333", "onetry", true)")
361 const auto command{self.
Arg<std::string_view>(
"command")};
363 throw std::runtime_error(
370 const auto node_arg{self.
Arg<std::string_view>(
"node")};
377 bool use_v2transport = self.
MaybeArg<
bool>(
"v2transport").value_or(node_v2transport);
379 if (use_v2transport && !node_v2transport) {
389 std::string{node_arg}.c_str(),
398 if (!connman.
AddNode({std::string{node_arg}, use_v2transport})) {
404 if (!connman.RemoveAddedNode(node_arg)) {
418 "Open an outbound connection to a specified node. This RPC is for testing only.\n",
431 HelpExampleCli(
"addconnection",
"\"192.168.0.6:8333\" \"outbound-full-relay\" true")
432 +
HelpExampleRpc(
"addconnection", R
"("192.168.0.6:8333", "outbound-full-relay", true)")
437 throw std::runtime_error(
"addconnection is for regression testing (-regtest mode) only.");
440 const std::string address = request.params[0].get_str();
443 if (conn_type_in ==
"outbound-full-relay") {
445 }
else if (conn_type_in ==
"block-relay-only") {
447 }
else if (conn_type_in ==
"addr-fetch") {
449 }
else if (conn_type_in ==
"feeler") {
454 bool use_v2transport{self.
Arg<
bool>(
"v2transport")};
463 const bool success = connman.
AddConnection(address, conn_type, use_v2transport);
469 info.
pushKV(
"address", address);
470 info.
pushKV(
"connection_type", conn_type_in);
481 "Immediately disconnects from the specified peer node.\n"
482 "\nStrictly one out of 'address' and 'nodeid' can be provided to identify the node.\n"
483 "\nTo disconnect by nodeid, either set 'address' to the empty string, or call using the named 'nodeid' argument only.\n",
501 auto address{self.
MaybeArg<std::string_view>(
"address")};
502 auto node_id{self.
MaybeArg<int64_t>(
"nodeid")};
504 if (address && !node_id) {
507 }
else if (node_id && (!address || address->empty())) {
527 "Returns information about the given added node, or all added nodes\n"
528 "(note that onetry addnodes are not listed here)\n",
561 if (
auto node{self.
MaybeArg<std::string_view>(
"node")}) {
564 if (info.m_params.m_added_node == *
node) {
565 vInfo.assign(1, info);
579 obj.
pushKV(
"addednode", info.m_params.m_added_node);
580 obj.
pushKV(
"connected", info.fConnected);
582 if (info.fConnected) {
584 address.
pushKV(
"address", info.resolvedAddress.ToStringAddrPort());
585 address.
pushKV(
"connected", info.fInbound ?
"inbound" :
"outbound");
588 obj.
pushKV(
"addresses", std::move(addresses));
589 ret.push_back(std::move(obj));
600 "Returns information about network traffic, including bytes in, bytes out,\n"
601 "and current system time.",
632 obj.
pushKV(
"timemillis", TicksSinceEpoch<std::chrono::milliseconds>(SystemClock::now()));
641 obj.
pushKV(
"uploadtarget", std::move(outboundLimit));
650 for (
int n = 0; n <
NET_MAX; ++n) {
657 if (
const auto proxy =
GetProxy(network)) {
658 obj.
pushKV(
"proxy", proxy->ToString());
659 obj.
pushKV(
"proxy_randomize_credentials", proxy->m_tor_stream_isolation);
661 obj.
pushKV(
"proxy", std::string());
662 obj.
pushKV(
"proxy_randomize_credentials",
false);
672 "Returns an object containing various state info regarding P2P networking.\n",
681 {
RPCResult::Type::ARR,
"localservicesnames",
"the services we offer to the network, in human-readable form",
687 {
RPCResult::Type::NUM,
"tx_send_rate",
"configured target for maximum number of transactions per second to send to inbound peers"},
708 {
RPCResult::Type::STR,
"proxy",
"(\"host:port\") the proxy that is used for this network, or empty if none"},
725 RPCResult{
RPCResult::Type::ARR,
"warnings",
"any network and blockchain warnings (run with `-deprecatedrpc=warnings` to return the latest warning as a single string)",
750 obj.
pushKV(
"localrelay", !peerman_info.ignores_incoming_txs);
751 obj.
pushKV(
"timeoffset", Ticks<std::chrono::seconds>(peerman_info.median_outbound_time_offset));
752 obj.
pushKV(
"tx_send_rate", peerman_info.tx_send_rate);
753 auto buckjson = [&](
const auto& buckinfo) {
755 b.pushKV(
"backlog", buckinfo.backlog_count);
756 b.pushKV(
"count_tok", buckinfo.count_bucket);
757 b.pushKV(
"size_tok", buckinfo.size_bucket);
761 invbuckets.pushKV(
"inbound", buckjson(peerman_info.inbound_bucket));
762 invbuckets.pushKV(
"outbound", buckjson(peerman_info.outbound_bucket));
763 obj.
pushKV(
"inv_buckets", invbuckets);
776 for (
const std::pair<const CNetAddr, LocalServiceInfo> &item : mapLocalHost)
779 rec.
pushKV(
"address", item.first.ToStringAddr());
780 rec.
pushKV(
"port", item.second.nPort);
781 rec.
pushKV(
"score", item.second.nScore);
782 localAddresses.
push_back(std::move(rec));
785 obj.
pushKV(
"localaddresses", std::move(localAddresses));
796 "Attempts to add or remove an IP/Subnet from the banned list.\n",
800 {
"bantime",
RPCArg::Type::NUM,
RPCArg::Default{0},
"time in seconds how long (or until when if [absolute] is set) the IP is banned (0 or empty means using the default time of 24h which can also be overwritten by the -bantime startup argument)"},
820 std::string subnet_arg{
help.
Arg<std::string_view>(
"subnet")};
821 const bool isSubnet{subnet_arg.find(
'/') != subnet_arg.npos};
824 const std::optional<CNetAddr> addr{
LookupHost(subnet_arg,
false)};
825 if (addr.has_value()) {
842 if (!request.params[2].isNull())
843 banTime = request.params[2].getInt<int64_t>();
845 const bool absolute{request.params[3].isNull() ? false : request.params[3].get_bool()};
847 if (absolute && banTime <
GetTime()) {
852 banman.
Ban(subNet, banTime, absolute);
854 node.connman->DisconnectNode(subNet);
857 banman.
Ban(netAddr, banTime, absolute);
859 node.connman->DisconnectNode(netAddr);
862 }
else if(
command ==
"remove") {
863 if (!( isSubnet ? banman.
Unban(subNet) : banman.
Unban(netAddr) )) {
876 "List all manually banned IPs/Subnets.\n",
899 const int64_t current_time{
GetTime()};
902 for (
const auto& entry : banMap)
904 const CBanEntry& banEntry = entry.second;
906 rec.
pushKV(
"address", entry.first.ToString());
912 bannedAddresses.
push_back(std::move(rec));
915 return bannedAddresses;
924 "Clear all banned IPs.\n",
946 "Disable/enable all p2p network activity.\n",
967 "Return known addresses, after filtering for quality and recency.\n"
968 "These can potentially be used to find new peers in the network.\n"
969 "The total number of addresses known to the node may be higher.",
990 +
HelpExampleCli(
"-named getnodeaddresses",
"network=onion count=12")
999 const int count{request.params[0].isNull() ? 1 : request.params[0].getInt<
int>()};
1002 const std::optional<Network> network{request.params[1].isNull() ? std::nullopt : std::optional<Network>{
ParseNetwork(request.params[1].get_str())}};
1011 for (
const CAddress& addr : vAddr) {
1013 obj.
pushKV(
"time", TicksSinceEpoch<std::chrono::seconds>(addr.nTime));
1014 obj.
pushKV(
"services",
static_cast<std::underlying_type_t<decltype(addr.nServices)
>>(addr.nServices));
1015 obj.
pushKV(
"address", addr.ToStringAddr());
1016 obj.
pushKV(
"port", addr.GetPort());
1018 ret.push_back(std::move(obj));
1028 "Add the address of a potential peer to an address manager table. This RPC is for testing only.",
1037 {
RPCResult::Type::BOOL,
"success",
"whether the peer address was successfully added to the address manager table"},
1049 const std::string& addr_string{request.params[0].get_str()};
1050 const auto port{request.params[1].getInt<uint16_t>()};
1051 const bool tried{request.params[2].isNull() ? false : request.params[2].get_bool()};
1054 std::optional<CNetAddr> net_addr{
LookupHost(addr_string,
false)};
1055 if (!net_addr.has_value()) {
1059 bool success{
false};
1061 CService service{net_addr.value(), port};
1063 address.nTime = Now<NodeSeconds>();
1066 if (addrman.
Add({address}, address)) {
1070 if (!addrman.
Good(address)) {
1072 obj.
pushKV(
"error",
"failed-adding-to-tried");
1076 obj.
pushKV(
"error",
"failed-adding-to-new");
1079 obj.
pushKV(
"success", success);
1089 "Send a p2p message to a peer specified by id.\n"
1090 "The message type and body must be provided, the message header will be generated.\n"
1091 "This RPC is for testing only.",
1101 const NodeId peer_id{request.params[0].
getInt<int64_t>()};
1102 const auto msg_type{self.
Arg<std::string_view>(
"msg_type")};
1106 auto msg{TryParseHex<unsigned char>(self.
Arg<std::string_view>(
"msg"))};
1107 if (!
msg.has_value()) {
1116 msg_ser.
m_type = msg_type;
1137 "Provides information about the node's address manager by returning the number of "
1138 "addresses in the `new` and `tried` tables and their sum for all networks.\n",
1143 {
RPCResult::Type::NUM,
"new",
"number of addresses in the new table, which represent potential peers the node has discovered but hasn't yet successfully connected to."},
1144 {
RPCResult::Type::NUM,
"tried",
"number of addresses in the tried table, which represent peers the node has successfully connected to in the past."},
1153 for (
int n = 0; n <
NET_MAX; ++n) {
1157 obj.
pushKV(
"new", addrman.
Size(network,
true));
1158 obj.
pushKV(
"tried", addrman.
Size(network,
false));
1163 obj.
pushKV(
"new", addrman.
Size(std::nullopt,
true));
1164 obj.
pushKV(
"tried", addrman.
Size(std::nullopt,
false));
1166 ret.pushKV(
"all_networks", std::move(obj));
1176 "Export the embedded ASMap data to a file. Any existing file at the path will be overwritten.\n",
1191#ifndef ENABLE_EMBEDDED_ASMAP
1202 if (file.IsNull()) {
1206 file << node::data::ip_asn;
1208 if (file.fclose() != 0) {
1213 hasher.
write(node::data::ip_asn);
1216 result.
pushKV(
"path", export_path.utf8string());
1217 result.
pushKV(
"bytes_written", node::data::ip_asn.size());
1229 const uint32_t mapped_as{connman.
GetMappedAS(info)};
1231 ret.pushKV(
"mapped_as", mapped_as);
1234 ret.pushKV(
"services",
static_cast<std::underlying_type_t<decltype(info.nServices)
>>(info.
nServices));
1235 ret.pushKV(
"time", TicksSinceEpoch<std::chrono::seconds>(info.
nTime));
1240 if (source_mapped_as) {
1241 ret.pushKV(
"source_mapped_as", source_mapped_as);
1249 for (
const auto& e : tableInfos) {
1252 std::ostringstream key;
1265 "EXPERIMENTAL warning: this call may be changed in future releases.\n"
1266 "\nReturns information on all address manager entries for the new and tried tables.\n",
1271 {
RPCResult::Type::OBJ,
"bucket/position",
"the location in the address manager table (<bucket>/<position>)", {
1273 {
RPCResult::Type::NUM,
"mapped_as",
true,
"Mapped AS (Autonomous System) number at the end of the BGP route to the peer, used for diversifying peer selection (only displayed if the -asmap config option is set)"},
1280 {
RPCResult::Type::NUM,
"source_mapped_as",
true,
"Mapped AS (Autonomous System) number at the end of the BGP route to the source, used for diversifying peer selection (only displayed if the -asmap config option is set)"}
1325 for (
const auto& c : commands) {
1326 t.appendCommand(c.name, &c);
const CChainParams & Params()
Return the currently selected parameters.
#define CHECK_NONFATAL(condition)
Identity function.
Extended statistics about a CAddress.
CNetAddr source
where knowledge about this address first came from
Stochastic address manager.
size_t Size(std::optional< Network > net=std::nullopt, std::optional< bool > in_new=std::nullopt) const
Return size information about addrman.
std::vector< std::pair< AddrInfo, AddressPosition > > GetEntries(bool from_tried) const
Returns an information-location pair for all addresses in the selected addrman table.
bool Good(const CService &addr, NodeSeconds time=Now< NodeSeconds >())
Mark an address record as accessible and attempt to move it to addrman's tried table.
bool Add(const std::vector< CAddress > &vAddr, const CNetAddr &source, std::chrono::seconds time_penalty=0s)
Attempt to add one or more addresses to addrman's new table.
fs::path GetDataDirNet() const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Get data directory path with appended network identifier.
Non-refcounted RAII wrapper for FILE*.
void Ban(const CNetAddr &net_addr, int64_t ban_time_offset=0, bool since_unix_epoch=false) EXCLUSIVE_LOCKS_REQUIRED(!m_banned_mutex)
bool IsBanned(const CNetAddr &net_addr) EXCLUSIVE_LOCKS_REQUIRED(!m_banned_mutex)
Return whether net_addr is banned.
void GetBanned(banmap_t &banmap) EXCLUSIVE_LOCKS_REQUIRED(!m_banned_mutex)
void ClearBanned() EXCLUSIVE_LOCKS_REQUIRED(!m_banned_mutex)
bool Unban(const CNetAddr &net_addr) EXCLUSIVE_LOCKS_REQUIRED(!m_banned_mutex)
A CService with information about it as peer.
ServiceFlags nServices
Serialized as uint64_t in V1, and as CompactSize in V2.
NodeSeconds nTime
Always included in serialization. The behavior is unspecified if the value is not representable as ui...
ChainType GetChainType() const
Return the chain type.
bool GetNetworkActive() const
bool OutboundTargetReached(bool historicalBlockServingLimit) const EXCLUSIVE_LOCKS_REQUIRED(!m_total_bytes_sent_mutex)
check if the outbound target is reached if param historicalBlockServingLimit is set true,...
uint64_t GetMaxOutboundTarget() const EXCLUSIVE_LOCKS_REQUIRED(!m_total_bytes_sent_mutex)
bool AddConnection(const std::string &address, ConnectionType conn_type, bool use_v2transport) EXCLUSIVE_LOCKS_REQUIRED(!m_nodes_mutex
Attempts to open a connection.
std::chrono::seconds GetMaxOutboundTimeframe() const
ServiceFlags GetLocalServices() const
Used to convey which local services we are offering peers during node connection.
bool AddNode(const AddedNodeParams &add) EXCLUSIVE_LOCKS_REQUIRED(!m_added_nodes_mutex)
std::vector< AddedNodeInfo > GetAddedNodeInfo(bool include_connected) const EXCLUSIVE_LOCKS_REQUIRED(!m_added_nodes_mutex
uint32_t GetMappedAS(const CNetAddr &addr) const
uint64_t GetTotalBytesRecv() const
bool OpenNetworkConnection(const CAddress &addrConnect, bool fCountFailure, CountingSemaphoreGrant<> &&grant_outbound, const char *pszDest, ConnectionType conn_type, bool use_v2transport, const std::optional< Proxy > &proxy_override) EXCLUSIVE_LOCKS_REQUIRED(!m_nodes_mutex
Open a new P2P connection and initialize it with the PeerManager at m_msgproc.
void SetNetworkActive(bool active)
std::chrono::seconds GetMaxOutboundTimeLeftInCycle() const EXCLUSIVE_LOCKS_REQUIRED(!m_total_bytes_sent_mutex)
void GetNodeStats(std::vector< CNodeStats > &vstats) const EXCLUSIVE_LOCKS_REQUIRED(!m_nodes_mutex)
bool ForNode(NodeId id, std::function< bool(CNode *pnode)> func) EXCLUSIVE_LOCKS_REQUIRED(!m_nodes_mutex)
std::vector< CAddress > GetAddressesUnsafe(size_t max_addresses, size_t max_pct, std::optional< Network > network, bool filtered=true) const
Return randomly selected addresses.
bool DisconnectNode(std::string_view node) EXCLUSIVE_LOCKS_REQUIRED(!m_nodes_mutex)
uint64_t GetTotalBytesSent() const EXCLUSIVE_LOCKS_REQUIRED(!m_total_bytes_sent_mutex)
size_t GetNodeCount(ConnectionDirection) const EXCLUSIVE_LOCKS_REQUIRED(!m_nodes_mutex)
uint64_t GetOutboundTargetBytesLeft() const EXCLUSIVE_LOCKS_REQUIRED(!m_total_bytes_sent_mutex)
response the bytes left in the current max outbound cycle in case of no limit, it will always respons...
void PushMessage(CNode *pnode, CSerializedNetMsg &&msg) EXCLUSIVE_LOCKS_REQUIRED(!m_total_bytes_sent_mutex)
CAmount GetFeePerK() const
Return the fee in satoshis for a vsize of 1000 vbytes.
Network GetNetClass() const
std::string ToStringAddr() const
Information about a peer.
std::atomic< NodeClock::duration > m_min_ping_time
Lowest measured round-trip duration.
A combination of a network address (CNetAddr) and a (TCP) port.
CTxMemPool stores valid-according-to-the-current-best-chain transactions that may be included in the ...
A writer stream (for serialization) that computes a 256-bit hash.
uint256 GetSHA256()
Compute the SHA256 hash of all data written to this object.
void write(std::span< const std::byte > src)
static std::vector< std::string > ToStrings(NetPermissionFlags flags)
virtual void SendPings()=0
Send ping message to all peers.
virtual PeerManagerInfo GetInfo() const =0
Get peer manager info.
virtual bool GetNodeStateStats(NodeId nodeid, CNodeStateStats &stats) const =0
Get statistics from node state.
auto MaybeArg(std::string_view key) const
Helper to get an optional request argument.
std::string ToString() const
auto Arg(std::string_view key) const
Helper to get a required or default-valued request argument.
bool Contains(Network net) const EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
void push_back(UniValue val)
void pushKVEnd(std::string key, UniValue val)
void pushKV(std::string key, UniValue val)
constexpr int CLIENT_VERSION
std::string TransportTypeAsString(TransportProtocolType transport_type)
Convert TransportProtocolType enum to a string value.
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 requested via the addnode RPC or the -a...
@ 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.
@ ADDR_FETCH
AddrFetch connections are short lived connections used to solicit addresses from peers.
UniValue ValueFromAmount(const CAmount amount)
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate.
const std::string CURRENCY_UNIT
static path u8path(std::string_view utf8_str)
static std::string PathToString(const path &path)
Convert path object to a byte string.
std::string HexStr(const std::span< const uint8_t > s)
Convert a span of bytes to a lower-case hexadecimal string.
FILE * fopen(const fs::path &p, const char *mode)
fs::path AbsPathJoin(const fs::path &base, const fs::path &path)
Helper function for joining two paths.
UniValue GetWarningsForRpc(const Warnings &warnings, bool use_deprecated)
RPC helper function that wraps warnings.GetMessages().
std::string_view TrimStringView(std::string_view str LIFETIMEBOUND, std::string_view pattern=" \f\n\r\t\v")
auto Join(const C &container, const S &separator, UnaryOp unary_op)
Join all container items.
std::string strSubVersion
Subversion as sent to the P2P network in version messages.
const std::string NET_MESSAGE_TYPE_OTHER
GlobalMutex g_maplocalhost_mutex
constexpr int MAX_ADDNODE_CONNECTIONS
Maximum number of addnode outgoing nodes.
const std::vector< std::string > NET_PERMISSIONS_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.
CSubNet LookupSubNet(const std::string &subnet_str)
Parse and resolve a specified subnet string into the appropriate internal representation.
std::vector< CNetAddr > LookupHost(const std::string &name, unsigned int nMaxSolutions, bool fAllowLookup, DNSLookupFn dns_lookup_function)
Resolve a host string to its corresponding network addresses.
std::string GetNetworkName(enum Network net)
enum Network ParseNetwork(const std::string &net_in)
CService MaybeFlipIPv6toCJDNS(const CService &service)
If an IPv6 address belongs to the address range used by the CJDNS network and the CJDNS network is re...
ReachableNets g_reachable_nets
std::optional< Proxy > GetProxy(enum Network net)
std::vector< std::string > GetNetworkNames(bool append_unroutable)
Return a vector of publicly routable Network names; optionally append NET_UNROUTABLE.
std::vector< std::string > serviceFlagsToStr(uint64_t flags)
Convert service flags (a bitmask of NODE_*) to human readable strings.
ServiceFlags
nServices flags
constexpr int PROTOCOL_VERSION
network protocol versioning
UniValue JSONRPCError(int code, const std::string &message)
const std::vector< std::string > CONNECTION_TYPE_DOC
void RegisterNetRPCCommands(CRPCTable &t)
static RPCMethod disconnectnode()
static RPCMethod addpeeraddress()
static RPCMethod addnode()
static RPCMethod getrawaddrman()
static RPCMethod getaddednodeinfo()
static RPCMethod getnetworkinfo()
static RPCMethod getaddrmaninfo()
static RPCMethod listbanned()
static UniValue GetNetworksInfo()
static RPCMethod clearbanned()
UniValue AddrmanTableToJSON(const std::vector< std::pair< AddrInfo, AddressPosition > > &tableInfos, const CConnman &connman)
static RPCMethod exportasmap()
const std::vector< std::string > TRANSPORT_TYPE_DOC
static UniValue GetServicesNames(ServiceFlags services)
Returns, given services flags, a list of humanly readable (known) network services.
static RPCMethod sendmsgtopeer()
static RPCMethod getconnectioncount()
static RPCMethod getnodeaddresses()
static RPCMethod setban()
static RPCMethod getnettotals()
static RPCMethod addconnection()
static RPCMethod setnetworkactive()
UniValue AddrmanEntryToJSON(const AddrInfo &info, const CConnman &connman)
static RPCMethod getpeerinfo()
@ 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.
@ RPC_CLIENT_NODE_ALREADY_ADDED
Node is already added.
@ RPC_INVALID_PARAMETER
Invalid, missing or duplicate parameter.
@ 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.
std::string HelpExampleCli(const std::string &methodname, const std::string &args)
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.
bool IsDeprecatedRPCEnabled(const std::string &method)
BanMan & EnsureBanman(const NodeContext &node)
AddrMan & EnsureAnyAddrman(const std::any &context)
NodeContext & EnsureAnyNodeContext(const std::any &context)
BanMan & EnsureAnyBanman(const std::any &context)
PeerManager & EnsurePeerman(const NodeContext &node)
CTxMemPool & EnsureAnyMemPool(const std::any &context)
CConnman & EnsureConnman(const NodeContext &node)
ArgsManager & EnsureAnyArgsman(const std::any &context)
Location information for an address in AddrMan.
NodeClock::duration m_ping_wait
std::vector< int > vHeightInFlight
CAmount m_fee_filter_received
std::chrono::seconds time_offset
bool m_addr_relay_enabled
uint64_t m_addr_rate_limited
uint64_t m_addr_processed
ServiceFlags their_services
std::vector< unsigned char > data
@ 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.
@ STR_AMOUNT
Special string to represent a floating point amount.
CFeeRate incremental_relay_feerate
CFeeRate min_relay_feerate
A fee rate smaller than this is considered zero fee (for relaying, mining and transaction creation)
NodeContext struct containing references to chain state and connection state.
bool CheckStandardAsmap(const std::span< const std::byte > data)
Provides a safe interface for validating ASMap data before use.
int64_t GetTime()
DEPRECATED Use either ClockType::now() or Now<TimePointType>() if a cast is needed.
constexpr int64_t count_seconds(std::chrono::seconds t)