2019-01-02 09:13:50 -03:00
// Copyright (c) 2009-2019 The Bitcoin Core developers
2014-11-19 23:19:29 -03:00
// Distributed under the MIT software license, see the accompanying
2012-06-28 23:18:38 -04:00
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
2013-11-17 21:25:17 -03:00
2017-11-09 21:57:53 -03:00
# include <rpc/server.h>
2013-11-17 21:25:17 -03:00
2017-10-05 17:40:43 -03:00
# include <banman.h>
2017-11-09 21:57:53 -03:00
# include <clientversion.h>
# include <core_io.h>
# include <net.h>
2019-06-20 05:37:51 -04:00
# include <net_permissions.h>
2019-10-29 05:49:48 -03:00
# include <net_processing.h>
# include <net_types.h> // For banmap_t
2017-11-09 21:57:53 -03:00
# include <netbase.h>
2019-09-17 19:28:03 -03:00
# include <node/context.h>
2019-04-02 15:14:58 -03:00
# include <policy/settings.h>
2019-09-17 20:05:26 -03:00
# include <rpc/blockchain.h>
2017-11-09 21:57:53 -03:00
# include <rpc/protocol.h>
2018-11-06 12:40:50 -03:00
# include <rpc/util.h>
2017-11-09 21:57:53 -03:00
# include <sync.h>
# include <timedata.h>
2018-10-22 19:51:11 -03:00
# include <util/strencodings.h>
2018-11-06 12:40:50 -03:00
# include <util/system.h>
# include <validation.h>
2017-11-09 21:57:53 -03:00
# include <version.h>
# include <warnings.h>
2014-09-14 07:43:56 -03:00
2015-09-04 11:11:34 -03:00
# include <univalue.h>
2012-06-28 23:18:38 -04:00
2018-05-02 12:14:48 -03:00
static UniValue getconnectioncount ( const JSONRPCRequest & request )
2012-06-28 23:18:38 -04:00
{
2018-10-20 09:19:44 -03:00
RPCHelpMan { " getconnectioncount " ,
2018-12-21 14:29:36 -03:00
" \n Returns the number of connections to other nodes. \n " ,
{ } ,
RPCResult {
2020-01-09 14:00:57 -03:00
RPCResult : : Type : : NUM , " " , " The connection count "
2018-12-21 14:29:36 -03:00
} ,
RPCExamples {
HelpExampleCli ( " getconnectioncount " , " " )
2013-10-29 08:29:44 -03:00
+ HelpExampleRpc ( " getconnectioncount " , " " )
2018-12-21 14:29:36 -03:00
} ,
2019-06-19 00:59:11 -04:00
} . Check ( request ) ;
2012-06-28 23:18:38 -04:00
2019-09-17 19:59:36 -03:00
if ( ! g_rpc_node - > connman )
2016-04-16 19:30:03 -03:00
throw JSONRPCError ( RPC_CLIENT_P2P_DISABLED , " Error: Peer-to-peer functionality missing or disabled " ) ;
2014-10-19 05:46:17 -03:00
2019-09-17 19:59:36 -03:00
return ( int ) g_rpc_node - > connman - > GetNodeCount ( CConnman : : CONNECTIONS_ALL ) ;
2012-06-28 23:18:38 -04:00
}
2018-05-02 12:14:48 -03:00
static UniValue ping ( const JSONRPCRequest & request )
2013-08-22 07:34:33 -04:00
{
2018-10-20 09:19:44 -03:00
RPCHelpMan { " ping " ,
" \n Requests that a ping be sent to all other nodes, to measure ping time. \n "
" Results provided in getpeerinfo, pingtime and pingwait fields are decimal seconds. \n "
" Ping command is handled in queue with all other commands, so it measures processing backlog, not just network ping. \n " ,
2018-12-21 14:29:36 -03:00
{ } ,
RPCResults { } ,
RPCExamples {
HelpExampleCli ( " ping " , " " )
2013-10-29 08:29:44 -03:00
+ HelpExampleRpc ( " ping " , " " )
2018-12-21 14:29:36 -03:00
} ,
2019-06-19 00:59:11 -04:00
} . Check ( request ) ;
2013-10-23 11:19:49 -03:00
2019-09-17 19:59:36 -03:00
if ( ! g_rpc_node - > connman )
2016-04-16 20:13:12 -03:00
throw JSONRPCError ( RPC_CLIENT_P2P_DISABLED , " Error: Peer-to-peer functionality missing or disabled " ) ;
2013-08-22 07:34:33 -04:00
2016-04-16 20:13:12 -03:00
// Request that each node send a ping during next message processing pass
2019-09-17 19:59:36 -03:00
g_rpc_node - > connman - > ForEachNode ( [ ] ( CNode * pnode ) {
2016-04-16 20:13:12 -03:00
pnode - > fPingQueued = true ;
} ) ;
2014-08-20 15:15:16 -04:00
return NullUniValue ;
2013-08-22 07:34:33 -04:00
}
2018-05-02 12:14:48 -03:00
static UniValue getpeerinfo ( const JSONRPCRequest & request )
2012-06-29 17:24:53 -04:00
{
2018-10-20 09:19:44 -03:00
RPCHelpMan { " getpeerinfo " ,
2018-12-21 14:29:36 -03:00
" \n Returns data about each connected network node as a json array of objects. \n " ,
{ } ,
RPCResult {
2020-01-09 14:00:57 -03:00
RPCResult : : Type : : ARR , " " , " " ,
{
{ RPCResult : : Type : : OBJ , " " , " " ,
{
{
{ RPCResult : : Type : : NUM , " id " , " Peer index " } ,
{ RPCResult : : Type : : STR , " addr " , " (host:port) The IP address and port of the peer " } ,
{ RPCResult : : Type : : STR , " addrbind " , " (ip:port) Bind address of the connection to the peer " } ,
{ RPCResult : : Type : : STR , " addrlocal " , " (ip:port) Local address as reported by the peer " } ,
2020-01-29 12:39:00 -03:00
{ RPCResult : : Type : : NUM , " mapped_as " , " The AS in the BGP route to the peer used for diversifying \n "
" peer selection (only available if the asmap config flag is set) " } ,
2020-01-09 14:00:57 -03:00
{ RPCResult : : Type : : STR_HEX , " services " , " The services offered " } ,
{ RPCResult : : Type : : ARR , " servicesnames " , " the services offered, in human-readable form " ,
{
{ RPCResult : : Type : : STR , " SERVICE_NAME " , " the service name if it is recognised " }
} } ,
{ RPCResult : : Type : : BOOL , " relaytxes " , " Whether peer has asked us to relay transactions to it " } ,
{ RPCResult : : Type : : NUM_TIME , " lastsend " , " The " + UNIX_EPOCH_TIME + " of the last send " } ,
{ RPCResult : : Type : : NUM_TIME , " lastrecv " , " The " + UNIX_EPOCH_TIME + " of the last receive " } ,
{ RPCResult : : Type : : NUM , " bytessent " , " The total bytes sent " } ,
{ RPCResult : : Type : : NUM , " bytesrecv " , " The total bytes received " } ,
{ RPCResult : : Type : : NUM_TIME , " conntime " , " The " + UNIX_EPOCH_TIME + " of the connection " } ,
{ RPCResult : : Type : : NUM , " timeoffset " , " The time offset in seconds " } ,
{ RPCResult : : Type : : NUM , " pingtime " , " ping time (if available) " } ,
{ RPCResult : : Type : : NUM , " minping " , " minimum observed ping time (if any at all) " } ,
{ RPCResult : : Type : : NUM , " pingwait " , " ping wait (if non-zero) " } ,
{ RPCResult : : Type : : NUM , " version " , " The peer version, such as 70001 " } ,
{ RPCResult : : Type : : STR , " subver " , " The string version " } ,
{ RPCResult : : Type : : BOOL , " inbound " , " Inbound (true) or Outbound (false) " } ,
{ RPCResult : : Type : : BOOL , " addnode " , " Whether connection was due to addnode/-connect or if it was an automatic/inbound connection " } ,
{ RPCResult : : Type : : NUM , " startingheight " , " The starting height (block) of the peer " } ,
{ RPCResult : : Type : : NUM , " banscore " , " The ban score " } ,
{ RPCResult : : Type : : NUM , " synced_headers " , " The last header we have in common with this peer " } ,
{ RPCResult : : Type : : NUM , " synced_blocks " , " The last block we have in common with this peer " } ,
{ RPCResult : : Type : : ARR , " inflight " , " " ,
{
{ RPCResult : : Type : : NUM , " n " , " The heights of blocks we're currently asking from this peer " } ,
} } ,
{ RPCResult : : Type : : BOOL , " whitelisted " , " Whether the peer is whitelisted " } ,
{ RPCResult : : Type : : NUM , " minfeefilter " , " The minimum fee rate for transactions this peer accepts " } ,
{ RPCResult : : Type : : OBJ_DYN , " bytessent_per_msg " , " " ,
{
{ RPCResult : : Type : : NUM , " msg " , " The total bytes sent aggregated by message type \n "
" When a message type is not listed in this json object, the bytes sent are 0. \n "
" Only known message types can appear as keys in the object. " }
} } ,
{ RPCResult : : Type : : OBJ , " bytesrecv_per_msg " , " " ,
{
{ RPCResult : : Type : : NUM , " msg " , " The total bytes received aggregated by message type \n "
" When a message type is not listed in this json object, the bytes received are 0. \n "
" Only known message types can appear as keys in the object and all bytes received of unknown message types are listed under ' " + NET_MESSAGE_COMMAND_OTHER + " '. " }
} } ,
} } ,
} } ,
2018-12-21 14:29:36 -03:00
} ,
RPCExamples {
HelpExampleCli ( " getpeerinfo " , " " )
2013-10-29 08:29:44 -03:00
+ HelpExampleRpc ( " getpeerinfo " , " " )
2018-12-21 14:29:36 -03:00
} ,
2019-06-19 00:59:11 -04:00
} . Check ( request ) ;
2012-06-29 17:24:53 -04:00
2019-09-17 19:59:36 -03:00
if ( ! g_rpc_node - > connman )
2016-04-16 19:30:03 -03:00
throw JSONRPCError ( RPC_CLIENT_P2P_DISABLED , " Error: Peer-to-peer functionality missing or disabled " ) ;
2014-10-19 05:46:17 -03:00
2017-01-04 01:22:19 -03:00
std : : vector < CNodeStats > vstats ;
2019-09-17 19:59:36 -03:00
g_rpc_node - > connman - > GetNodeStats ( vstats ) ;
2012-06-29 17:24:53 -04:00
2015-05-10 09:48:35 -03:00
UniValue ret ( UniValue : : VARR ) ;
2012-06-29 17:24:53 -04:00
2017-06-01 21:18:57 -04:00
for ( const CNodeStats & stats : vstats ) {
2015-05-10 09:48:35 -03:00
UniValue obj ( UniValue : : VOBJ ) ;
2013-11-17 21:25:17 -03:00
CNodeStateStats statestats ;
bool fStateStats = GetNodeStateStats ( stats . nodeid , statestats ) ;
2017-09-22 15:04:07 -03:00
obj . pushKV ( " id " , stats . nodeid ) ;
obj . pushKV ( " addr " , stats . addrName ) ;
2013-08-22 01:50:19 -04:00
if ( ! ( stats . addrLocal . empty ( ) ) )
2017-09-22 15:04:07 -03:00
obj . pushKV ( " addrlocal " , stats . addrLocal ) ;
2017-05-30 05:59:42 -04:00
if ( stats . addrBind . IsValid ( ) )
2017-09-22 15:04:07 -03:00
obj . pushKV ( " addrbind " , stats . addrBind . ToString ( ) ) ;
2019-12-24 15:26:46 -03:00
if ( stats . m_mapped_as ! = 0 ) {
obj . pushKV ( " mapped_as " , uint64_t ( stats . m_mapped_as ) ) ;
}
2017-09-22 15:04:07 -03:00
obj . pushKV ( " services " , strprintf ( " %016x " , stats . nServices ) ) ;
2019-03-01 13:06:27 -03:00
obj . pushKV ( " servicesnames " , GetServicesNames ( stats . nServices ) ) ;
2017-09-22 15:04:07 -03:00
obj . pushKV ( " relaytxes " , stats . fRelayTxes ) ;
obj . pushKV ( " lastsend " , stats . nLastSend ) ;
obj . pushKV ( " lastrecv " , stats . nLastRecv ) ;
obj . pushKV ( " bytessent " , stats . nSendBytes ) ;
obj . pushKV ( " bytesrecv " , stats . nRecvBytes ) ;
obj . pushKV ( " conntime " , stats . nTimeConnected ) ;
obj . pushKV ( " timeoffset " , stats . nTimeOffset ) ;
2020-03-05 06:44:45 -03:00
if ( stats . m_ping_usec > 0 ) {
obj . pushKV ( " pingtime " , ( ( double ) stats . m_ping_usec ) / 1e6 ) ;
}
if ( stats . m_min_ping_usec < std : : numeric_limits < int64_t > : : max ( ) ) {
obj . pushKV ( " minping " , ( ( double ) stats . m_min_ping_usec ) / 1e6 ) ;
}
if ( stats . m_ping_wait_usec > 0 ) {
obj . pushKV ( " pingwait " , ( ( double ) stats . m_ping_wait_usec ) / 1e6 ) ;
}
2017-09-22 15:04:07 -03:00
obj . pushKV ( " version " , stats . nVersion ) ;
2013-11-26 08:52:21 -03:00
// Use the sanitized form of subver here, to avoid tricksy remote peers from
2017-01-18 12:15:37 -03:00
// corrupting or modifying the JSON output by putting special characters in
2013-11-26 08:52:21 -03:00
// their ver message.
2017-09-22 15:04:07 -03:00
obj . pushKV ( " subver " , stats . cleanSubVer ) ;
obj . pushKV ( " inbound " , stats . fInbound ) ;
obj . pushKV ( " addnode " , stats . m_manual_connection ) ;
obj . pushKV ( " startingheight " , stats . nStartingHeight ) ;
2013-11-17 21:25:17 -03:00
if ( fStateStats ) {
2017-09-22 15:04:07 -03:00
obj . pushKV ( " banscore " , statestats . nMisbehavior ) ;
obj . pushKV ( " synced_headers " , statestats . nSyncHeight ) ;
obj . pushKV ( " synced_blocks " , statestats . nCommonHeight ) ;
2015-05-10 09:48:35 -03:00
UniValue heights ( UniValue : : VARR ) ;
2018-06-18 01:58:28 -04:00
for ( const int height : statestats . vHeightInFlight ) {
2014-07-11 18:03:10 -04:00
heights . push_back ( height ) ;
}
2017-09-22 15:04:07 -03:00
obj . pushKV ( " inflight " , heights ) ;
2013-11-17 21:25:17 -03:00
}
2019-06-20 22:42:04 -04:00
obj . pushKV ( " whitelisted " , stats . m_legacyWhitelisted ) ;
2019-06-20 05:37:51 -04:00
UniValue permissions ( UniValue : : VARR ) ;
for ( const auto & permission : NetPermissions : : ToStrings ( stats . m_permissionFlags ) ) {
permissions . push_back ( permission ) ;
}
obj . pushKV ( " permissions " , permissions ) ;
2018-06-22 04:53:39 -04:00
obj . pushKV ( " minfeefilter " , ValueFromAmount ( stats . minFeeFilter ) ) ;
2012-06-29 17:24:53 -04:00
2015-08-25 11:30:31 -03:00
UniValue sendPerMsgCmd ( UniValue : : VOBJ ) ;
2019-01-02 09:13:50 -03:00
for ( const auto & i : stats . mapSendBytesPerMsgCmd ) {
2015-08-25 11:30:31 -03:00
if ( i . second > 0 )
2017-09-22 15:04:07 -03:00
sendPerMsgCmd . pushKV ( i . first , i . second ) ;
2015-08-25 11:30:31 -03:00
}
2017-09-22 15:04:07 -03:00
obj . pushKV ( " bytessent_per_msg " , sendPerMsgCmd ) ;
2015-08-25 11:30:31 -03:00
UniValue recvPerMsgCmd ( UniValue : : VOBJ ) ;
2019-01-02 09:13:50 -03:00
for ( const auto & i : stats . mapRecvBytesPerMsgCmd ) {
2015-08-25 11:30:31 -03:00
if ( i . second > 0 )
2017-09-22 15:04:07 -03:00
recvPerMsgCmd . pushKV ( i . first , i . second ) ;
2015-08-25 11:30:31 -03:00
}
2017-09-22 15:04:07 -03:00
obj . pushKV ( " bytesrecv_per_msg " , recvPerMsgCmd ) ;
2015-08-25 11:30:31 -03:00
2012-06-29 17:24:53 -04:00
ret . push_back ( obj ) ;
}
2012-09-18 16:07:58 -03:00
2012-06-29 17:24:53 -04:00
return ret ;
}
2012-06-28 23:18:38 -04:00
2018-05-02 12:14:48 -03:00
static UniValue addnode ( const JSONRPCRequest & request )
2013-01-23 13:45:00 -03:00
{
2017-01-04 01:22:19 -03:00
std : : string strCommand ;
2017-08-14 20:44:02 -03:00
if ( ! request . params [ 1 ] . isNull ( ) )
2016-09-22 04:46:41 -03:00
strCommand = request . params [ 1 ] . get_str ( ) ;
if ( request . fHelp | | request . params . size ( ) ! = 2 | |
2013-01-23 13:45:00 -03:00
( strCommand ! = " onetry " & & strCommand ! = " add " & & strCommand ! = " remove " ) )
2017-01-04 01:22:19 -03:00
throw std : : runtime_error (
2018-10-20 09:19:44 -03:00
RPCHelpMan { " addnode " ,
" \n Attempts to add or remove a node from the addnode list. \n "
" Or try a connection to a node once. \n "
" Nodes added using addnode (or -connect) are protected from DoS disconnection and are not required to be \n "
" full nodes/support SegWit as other outbound peers are (though such peers will not be synced from). \n " ,
{
2018-12-10 18:56:51 -03:00
{ " node " , RPCArg : : Type : : STR , RPCArg : : Optional : : NO , " The node (see getpeerinfo for nodes) " } ,
{ " command " , RPCArg : : Type : : STR , RPCArg : : Optional : : NO , " 'add' to add a node to the list, 'remove' to remove a node from the list, 'onetry' to try a connection to the node once " } ,
2018-12-21 14:29:36 -03:00
} ,
RPCResults { } ,
RPCExamples {
HelpExampleCli ( " addnode " , " \" 192.168.0.6:8333 \" \" onetry \" " )
2013-10-29 08:29:44 -03:00
+ HelpExampleRpc ( " addnode " , " \" 192.168.0.6:8333 \" , \" onetry \" " )
2018-12-21 14:29:36 -03:00
} ,
} . ToString ( ) ) ;
2013-01-23 13:45:00 -03:00
2019-09-17 19:59:36 -03:00
if ( ! g_rpc_node - > connman )
2016-04-16 16:59:10 -03:00
throw JSONRPCError ( RPC_CLIENT_P2P_DISABLED , " Error: Peer-to-peer functionality missing or disabled " ) ;
2017-01-04 01:22:19 -03:00
std : : string strNode = request . params [ 0 ] . get_str ( ) ;
2013-01-23 13:45:00 -03:00
if ( strCommand = = " onetry " )
{
CAddress addr ;
2019-09-17 19:59:36 -03:00
g_rpc_node - > connman - > OpenNetworkConnection ( addr , false , nullptr , strNode . c_str ( ) , false , false , true ) ;
2014-08-20 15:15:16 -04:00
return NullUniValue ;
2013-01-23 13:45:00 -03:00
}
if ( strCommand = = " add " )
{
2019-09-17 19:59:36 -03:00
if ( ! g_rpc_node - > connman - > AddNode ( strNode ) )
2013-10-23 11:19:49 -03:00
throw JSONRPCError ( RPC_CLIENT_NODE_ALREADY_ADDED , " Error: Node already added " ) ;
2013-01-23 13:45:00 -03:00
}
else if ( strCommand = = " remove " )
{
2019-09-17 19:59:36 -03:00
if ( ! g_rpc_node - > connman - > RemoveAddedNode ( strNode ) )
2013-10-23 11:19:49 -03:00
throw JSONRPCError ( RPC_CLIENT_NODE_NOT_ADDED , " Error: Node has not been added. " ) ;
2013-01-23 13:45:00 -03:00
}
2014-08-20 15:15:16 -04:00
return NullUniValue ;
2013-01-23 13:45:00 -03:00
}
2018-05-02 12:14:48 -03:00
static UniValue disconnectnode ( const JSONRPCRequest & request )
2015-06-12 00:20:54 -03:00
{
2018-10-20 09:19:44 -03:00
RPCHelpMan { " disconnectnode " ,
" \n Immediately disconnects from the specified peer node. \n "
" \n Strictly one out of 'address' and 'nodeid' can be provided to identify the node. \n "
" \n To disconnect by nodeid, either set 'address' to the empty string, or call using the named 'nodeid' argument only. \n " ,
{
2018-12-10 18:56:51 -03:00
{ " address " , RPCArg : : Type : : STR , /* default */ " fallback to nodeid " , " The IP address/port of the node " } ,
{ " nodeid " , RPCArg : : Type : : NUM , /* default */ " fallback to address " , " The node ID (see getpeerinfo for node IDs) " } ,
2018-12-21 14:29:36 -03:00
} ,
RPCResults { } ,
RPCExamples {
HelpExampleCli ( " disconnectnode " , " \" 192.168.0.6:8333 \" " )
2017-04-03 11:03:00 -03:00
+ HelpExampleCli ( " disconnectnode " , " \" \" 1 " )
2015-06-12 00:20:54 -03:00
+ HelpExampleRpc ( " disconnectnode " , " \" 192.168.0.6:8333 \" " )
2017-04-03 11:03:00 -03:00
+ HelpExampleRpc ( " disconnectnode " , " \" \" , 1 " )
2018-12-21 14:29:36 -03:00
} ,
2019-06-19 00:59:11 -04:00
} . Check ( request ) ;
2015-06-12 00:20:54 -03:00
2019-09-17 19:59:36 -03:00
if ( ! g_rpc_node - > connman )
2016-04-16 19:30:03 -03:00
throw JSONRPCError ( RPC_CLIENT_P2P_DISABLED , " Error: Peer-to-peer functionality missing or disabled " ) ;
2015-06-12 00:20:54 -03:00
2017-04-03 11:03:00 -03:00
bool success ;
const UniValue & address_arg = request . params [ 0 ] ;
2017-08-14 20:38:18 -03:00
const UniValue & id_arg = request . params [ 1 ] ;
2017-04-03 11:03:00 -03:00
if ( ! address_arg . isNull ( ) & & id_arg . isNull ( ) ) {
/* handle disconnect-by-address */
2019-09-17 19:59:36 -03:00
success = g_rpc_node - > connman - > DisconnectNode ( address_arg . get_str ( ) ) ;
2017-04-03 11:03:00 -03:00
} else if ( ! id_arg . isNull ( ) & & ( address_arg . isNull ( ) | | ( address_arg . isStr ( ) & & address_arg . get_str ( ) . empty ( ) ) ) ) {
/* handle disconnect-by-id */
NodeId nodeid = ( NodeId ) id_arg . get_int64 ( ) ;
2019-09-17 19:59:36 -03:00
success = g_rpc_node - > connman - > DisconnectNode ( nodeid ) ;
2017-04-03 11:03:00 -03:00
} else {
throw JSONRPCError ( RPC_INVALID_PARAMS , " Only one of address and nodeid should be provided. " ) ;
}
if ( ! success ) {
2016-04-16 19:30:03 -03:00
throw JSONRPCError ( RPC_CLIENT_NODE_NOT_CONNECTED , " Node not found in connected nodes " ) ;
2017-04-03 11:03:00 -03:00
}
2015-06-12 00:20:54 -03:00
return NullUniValue ;
}
2018-05-02 12:14:48 -03:00
static UniValue getaddednodeinfo ( const JSONRPCRequest & request )
2013-01-23 13:48:17 -03:00
{
2018-10-20 09:19:44 -03:00
RPCHelpMan { " getaddednodeinfo " ,
" \n Returns information about the given added node, or all added nodes \n "
" (note that onetry addnodes are not listed here) \n " ,
{
2018-12-10 18:56:51 -03:00
{ " node " , RPCArg : : Type : : STR , /* default */ " all nodes " , " If provided, return information about this specific node, otherwise all nodes are returned. " } ,
2018-12-21 14:29:36 -03:00
} ,
RPCResult {
2020-01-09 14:00:57 -03:00
RPCResult : : Type : : ARR , " " , " " ,
{
{ RPCResult : : Type : : OBJ , " " , " " ,
{
{ RPCResult : : Type : : STR , " addednode " , " The node IP address or name (as provided to addnode) " } ,
{ RPCResult : : Type : : BOOL , " connected " , " If connected " } ,
{ RPCResult : : Type : : ARR , " addresses " , " Only when connected = true " ,
{
{ RPCResult : : Type : : OBJ , " " , " " ,
{
{ RPCResult : : Type : : STR , " address " , " The bitcoin server IP and port we're connected to " } ,
{ RPCResult : : Type : : STR , " connected " , " connection, inbound or outbound " } ,
} } ,
} } ,
} } ,
}
2018-12-21 14:29:36 -03:00
} ,
RPCExamples {
HelpExampleCli ( " getaddednodeinfo " , " \" 192.168.0.201 \" " )
2017-06-08 17:25:53 -04:00
+ HelpExampleRpc ( " getaddednodeinfo " , " \" 192.168.0.201 \" " )
2018-12-21 14:29:36 -03:00
} ,
2019-06-19 00:59:11 -04:00
} . Check ( request ) ;
2013-01-23 13:48:17 -03:00
2019-09-17 19:59:36 -03:00
if ( ! g_rpc_node - > connman )
2016-04-16 19:12:58 -03:00
throw JSONRPCError ( RPC_CLIENT_P2P_DISABLED , " Error: Peer-to-peer functionality missing or disabled " ) ;
2019-09-17 19:59:36 -03:00
std : : vector < AddedNodeInfo > vInfo = g_rpc_node - > connman - > GetAddedNodeInfo ( ) ;
2013-01-23 13:48:17 -03:00
2017-08-14 20:38:18 -03:00
if ( ! request . params [ 0 ] . isNull ( ) ) {
2016-05-28 09:32:30 -04:00
bool found = false ;
for ( const AddedNodeInfo & info : vInfo ) {
2016-09-22 04:46:41 -03:00
if ( info . strAddedNode = = request . params [ 0 ] . get_str ( ) ) {
2016-05-28 09:32:30 -04:00
vInfo . assign ( 1 , info ) ;
found = true ;
2013-01-23 13:48:17 -03:00
break ;
}
2015-05-31 10:36:44 -03:00
}
2016-05-28 09:32:30 -04:00
if ( ! found ) {
2013-10-23 11:19:49 -03:00
throw JSONRPCError ( RPC_CLIENT_NODE_NOT_ADDED , " Error: Node has not been added. " ) ;
2014-01-27 06:31:22 -03:00
}
2013-01-23 13:48:17 -03:00
}
2016-05-28 09:32:30 -04:00
UniValue ret ( UniValue : : VARR ) ;
2013-01-23 13:48:17 -03:00
2016-05-28 09:32:30 -04:00
for ( const AddedNodeInfo & info : vInfo ) {
2015-05-10 09:48:35 -03:00
UniValue obj ( UniValue : : VOBJ ) ;
2017-09-22 15:04:07 -03:00
obj . pushKV ( " addednode " , info . strAddedNode ) ;
obj . pushKV ( " connected " , info . fConnected ) ;
2015-05-10 09:48:35 -03:00
UniValue addresses ( UniValue : : VARR ) ;
2016-05-28 09:32:30 -04:00
if ( info . fConnected ) {
UniValue address ( UniValue : : VOBJ ) ;
2017-09-22 15:04:07 -03:00
address . pushKV ( " address " , info . resolvedAddress . ToString ( ) ) ;
address . pushKV ( " connected " , info . fInbound ? " inbound " : " outbound " ) ;
2016-05-28 09:32:30 -04:00
addresses . push_back ( address ) ;
2013-01-23 13:48:17 -03:00
}
2017-09-22 15:04:07 -03:00
obj . pushKV ( " addresses " , addresses ) ;
2013-01-23 13:48:17 -03:00
ret . push_back ( obj ) ;
}
return ret ;
}
2018-05-02 12:14:48 -03:00
static UniValue getnettotals ( const JSONRPCRequest & request )
2013-08-22 12:09:32 -04:00
{
2018-10-20 09:19:44 -03:00
RPCHelpMan { " getnettotals " ,
" \n Returns information about network traffic, including bytes in, bytes out, \n "
" and current time. \n " ,
2018-12-21 14:29:36 -03:00
{ } ,
RPCResult {
2020-01-09 14:00:57 -03:00
RPCResult : : Type : : OBJ , " " , " " ,
{
{ RPCResult : : Type : : NUM , " totalbytesrecv " , " Total bytes received " } ,
{ RPCResult : : Type : : NUM , " totalbytessent " , " Total bytes sent " } ,
{ RPCResult : : Type : : NUM_TIME , " timemillis " , " Current UNIX time in milliseconds " } ,
{ RPCResult : : Type : : OBJ , " uploadtarget " , " " ,
{
{ RPCResult : : Type : : NUM , " timeframe " , " Length of the measuring timeframe in seconds " } ,
{ RPCResult : : Type : : NUM , " target " , " Target in bytes " } ,
{ RPCResult : : Type : : BOOL , " target_reached " , " True if target is reached " } ,
{ RPCResult : : Type : : BOOL , " serve_historical_blocks " , " True if serving historical blocks " } ,
{ RPCResult : : Type : : NUM , " bytes_left_in_cycle " , " Bytes left in current time cycle " } ,
{ RPCResult : : Type : : NUM , " time_left_in_cycle " , " Seconds left in current time cycle " } ,
} } ,
}
2018-12-21 14:29:36 -03:00
} ,
RPCExamples {
HelpExampleCli ( " getnettotals " , " " )
2013-10-29 08:29:44 -03:00
+ HelpExampleRpc ( " getnettotals " , " " )
2018-12-21 14:29:36 -03:00
} ,
2019-06-19 00:59:11 -04:00
} . Check ( request ) ;
2019-09-17 19:59:36 -03:00
if ( ! g_rpc_node - > connman )
2016-04-18 22:44:42 -03:00
throw JSONRPCError ( RPC_CLIENT_P2P_DISABLED , " Error: Peer-to-peer functionality missing or disabled " ) ;
2013-08-22 12:09:32 -04:00
2015-05-10 09:48:35 -03:00
UniValue obj ( UniValue : : VOBJ ) ;
2019-09-17 19:59:36 -03:00
obj . pushKV ( " totalbytesrecv " , g_rpc_node - > connman - > GetTotalBytesRecv ( ) ) ;
obj . pushKV ( " totalbytessent " , g_rpc_node - > connman - > GetTotalBytesSent ( ) ) ;
2017-09-22 15:04:07 -03:00
obj . pushKV ( " timemillis " , GetTimeMillis ( ) ) ;
2015-09-02 12:03:27 -03:00
UniValue outboundLimit ( UniValue : : VOBJ ) ;
2019-09-17 19:59:36 -03:00
outboundLimit . pushKV ( " timeframe " , g_rpc_node - > connman - > GetMaxOutboundTimeframe ( ) ) ;
outboundLimit . pushKV ( " target " , g_rpc_node - > connman - > GetMaxOutboundTarget ( ) ) ;
outboundLimit . pushKV ( " target_reached " , g_rpc_node - > connman - > OutboundTargetReached ( false ) ) ;
outboundLimit . pushKV ( " serve_historical_blocks " , ! g_rpc_node - > connman - > OutboundTargetReached ( true ) ) ;
outboundLimit . pushKV ( " bytes_left_in_cycle " , g_rpc_node - > connman - > GetOutboundTargetBytesLeft ( ) ) ;
outboundLimit . pushKV ( " time_left_in_cycle " , g_rpc_node - > connman - > GetMaxOutboundTimeLeftInCycle ( ) ) ;
2017-09-22 15:04:07 -03:00
obj . pushKV ( " uploadtarget " , outboundLimit ) ;
2013-08-22 12:09:32 -04:00
return obj ;
}
2014-05-05 07:22:28 -04:00
2015-05-13 16:29:19 -03:00
static UniValue GetNetworksInfo ( )
2014-07-30 09:35:14 -04:00
{
2015-05-10 09:48:35 -03:00
UniValue networks ( UniValue : : VARR ) ;
2014-07-30 09:35:14 -04:00
for ( int n = 0 ; n < NET_MAX ; + + n )
{
enum Network network = static_cast < enum Network > ( n ) ;
2017-05-23 20:04:38 -04:00
if ( network = = NET_UNROUTABLE | | network = = NET_INTERNAL )
2014-07-30 09:35:14 -04:00
continue ;
proxyType proxy ;
2015-05-10 09:48:35 -03:00
UniValue obj ( UniValue : : VOBJ ) ;
2014-07-30 09:35:14 -04:00
GetProxy ( network , proxy ) ;
2017-09-22 15:04:07 -03:00
obj . pushKV ( " name " , GetNetworkName ( network ) ) ;
2019-01-09 21:41:37 -03:00
obj . pushKV ( " limited " , ! IsReachable ( network ) ) ;
2017-09-22 15:04:07 -03:00
obj . pushKV ( " reachable " , IsReachable ( network ) ) ;
obj . pushKV ( " proxy " , proxy . IsValid ( ) ? proxy . proxy . ToStringIPPort ( ) : std : : string ( ) ) ;
obj . pushKV ( " proxy_randomize_credentials " , proxy . randomize_credentials ) ;
2014-07-30 09:35:14 -04:00
networks . push_back ( obj ) ;
}
return networks ;
}
2018-05-02 12:14:48 -03:00
static UniValue getnetworkinfo ( const JSONRPCRequest & request )
2014-05-05 07:22:28 -04:00
{
2018-10-20 09:19:44 -03:00
RPCHelpMan { " getnetworkinfo " ,
2018-12-21 14:29:36 -03:00
" Returns an object containing various state info regarding P2P networking. \n " ,
{ } ,
RPCResult {
2020-01-09 14:00:57 -03:00
RPCResult : : Type : : OBJ , " " , " " ,
{
{ RPCResult : : Type : : NUM , " version " , " the server version " } ,
{ RPCResult : : Type : : STR , " subversion " , " the server subversion string " } ,
{ RPCResult : : Type : : NUM , " protocolversion " , " the protocol version " } ,
{ RPCResult : : Type : : STR_HEX , " localservices " , " the services we offer to the network " } ,
{ RPCResult : : Type : : ARR , " localservicesnames " , " the services we offer to the network, in human-readable form " ,
{
{ RPCResult : : Type : : STR , " SERVICE_NAME " , " the service name " } ,
} } ,
{ RPCResult : : Type : : BOOL , " localrelay " , " true if transaction relay is requested from peers " } ,
{ RPCResult : : Type : : NUM , " timeoffset " , " the time offset " } ,
{ RPCResult : : Type : : NUM , " connections " , " the number of connections " } ,
{ RPCResult : : Type : : BOOL , " networkactive " , " whether p2p networking is enabled " } ,
{ RPCResult : : Type : : ARR , " networks " , " information per network " ,
{
{ RPCResult : : Type : : OBJ , " " , " " ,
{
{ RPCResult : : Type : : STR , " name " , " network (ipv4, ipv6 or onion) " } ,
{ RPCResult : : Type : : BOOL , " limited " , " is the network limited using -onlynet? " } ,
{ RPCResult : : Type : : BOOL , " reachable " , " is the network reachable? " } ,
{ RPCResult : : Type : : STR , " proxy " , " ( \" host:port \" ) the proxy that is used for this network, or empty if none " } ,
{ RPCResult : : Type : : BOOL , " proxy_randomize_credentials " , " Whether randomized credentials are used " } ,
} } ,
} } ,
{ RPCResult : : Type : : NUM , " relayfee " , " minimum relay fee for transactions in " + CURRENCY_UNIT + " /kB " } ,
{ RPCResult : : Type : : NUM , " incrementalfee " , " minimum fee increment for mempool limiting or BIP 125 replacement in " + CURRENCY_UNIT + " /kB " } ,
{ RPCResult : : Type : : ARR , " localaddresses " , " list of local addresses " ,
{
{ RPCResult : : Type : : OBJ , " " , " " ,
{
{ RPCResult : : Type : : STR , " address " , " network address " } ,
{ RPCResult : : Type : : NUM , " port " , " network port " } ,
{ RPCResult : : Type : : NUM , " score " , " relative score " } ,
} } ,
} } ,
{ RPCResult : : Type : : STR , " warnings " , " any network and blockchain warnings " } ,
}
2018-12-21 14:29:36 -03:00
} ,
RPCExamples {
HelpExampleCli ( " getnetworkinfo " , " " )
2014-05-05 07:22:28 -04:00
+ HelpExampleRpc ( " getnetworkinfo " , " " )
2018-12-21 14:29:36 -03:00
} ,
2019-06-19 00:59:11 -04:00
} . Check ( request ) ;
2014-05-05 07:22:28 -04:00
2014-10-19 05:46:17 -03:00
LOCK ( cs_main ) ;
2015-05-10 09:48:35 -03:00
UniValue obj ( UniValue : : VOBJ ) ;
2017-09-22 15:04:07 -03:00
obj . pushKV ( " version " , CLIENT_VERSION ) ;
obj . pushKV ( " subversion " , strSubVersion ) ;
obj . pushKV ( " protocolversion " , PROTOCOL_VERSION ) ;
2019-09-17 19:59:36 -03:00
if ( g_rpc_node - > connman ) {
ServiceFlags services = g_rpc_node - > connman - > GetLocalServices ( ) ;
2019-03-01 13:06:27 -03:00
obj . pushKV ( " localservices " , strprintf ( " %016x " , services ) ) ;
obj . pushKV ( " localservicesnames " , GetServicesNames ( services ) ) ;
}
2019-05-09 09:16:29 -04:00
obj . pushKV ( " localrelay " , g_relay_txes ) ;
2017-09-22 15:04:07 -03:00
obj . pushKV ( " timeoffset " , GetTimeOffset ( ) ) ;
2019-09-17 19:59:36 -03:00
if ( g_rpc_node - > connman ) {
obj . pushKV ( " networkactive " , g_rpc_node - > connman - > GetNetworkActive ( ) ) ;
obj . pushKV ( " connections " , ( int ) g_rpc_node - > connman - > GetNodeCount ( CConnman : : CONNECTIONS_ALL ) ) ;
2014-11-19 09:33:34 -03:00
}
2017-09-22 15:04:07 -03:00
obj . pushKV ( " networks " , GetNetworksInfo ( ) ) ;
obj . pushKV ( " relayfee " , ValueFromAmount ( : : minRelayTxFee . GetFeePerK ( ) ) ) ;
obj . pushKV ( " incrementalfee " , ValueFromAmount ( : : incrementalRelayFee . GetFeePerK ( ) ) ) ;
2015-05-10 09:48:35 -03:00
UniValue localAddresses ( UniValue : : VARR ) ;
2014-05-05 07:22:28 -04:00
{
LOCK ( cs_mapLocalHost ) ;
2018-05-15 18:41:53 -04:00
for ( const std : : pair < const CNetAddr , LocalServiceInfo > & item : mapLocalHost )
2014-05-05 07:22:28 -04:00
{
2015-05-10 09:48:35 -03:00
UniValue rec ( UniValue : : VOBJ ) ;
2017-09-22 15:04:07 -03:00
rec . pushKV ( " address " , item . first . ToString ( ) ) ;
rec . pushKV ( " port " , item . second . nPort ) ;
rec . pushKV ( " score " , item . second . nScore ) ;
2014-05-05 07:22:28 -04:00
localAddresses . push_back ( rec ) ;
}
}
2017-09-22 15:04:07 -03:00
obj . pushKV ( " localaddresses " , localAddresses ) ;
2019-12-15 12:44:09 -03:00
obj . pushKV ( " warnings " , GetWarnings ( false ) ) ;
2014-05-05 07:22:28 -04:00
return obj ;
}
2015-05-19 05:07:46 -03:00
2018-05-02 12:14:48 -03:00
static UniValue setban ( const JSONRPCRequest & request )
2015-05-19 05:07:46 -03:00
{
2019-02-13 18:51:27 -03:00
const RPCHelpMan help { " setban " ,
2018-10-20 09:19:44 -03:00
" \n Attempts to add or remove an IP/Subnet from the banned list. \n " ,
{
2018-12-10 18:56:51 -03:00
{ " subnet " , RPCArg : : Type : : STR , RPCArg : : Optional : : NO , " The IP/Subnet (see getpeerinfo for nodes IP) with an optional netmask (default is /32 = single IP) " } ,
{ " command " , RPCArg : : Type : : STR , RPCArg : : Optional : : NO , " 'add' to add an IP/Subnet to the list, 'remove' to remove an IP/Subnet from the list " } ,
{ " bantime " , RPCArg : : Type : : NUM , /* 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) " } ,
2019-11-26 15:25:56 -03:00
{ " absolute " , RPCArg : : Type : : BOOL , /* default */ " false " , " If set, the bantime must be an absolute timestamp expressed in " + UNIX_EPOCH_TIME } ,
2018-12-21 14:29:36 -03:00
} ,
RPCResults { } ,
RPCExamples {
HelpExampleCli ( " setban " , " \" 192.168.0.6 \" \" add \" 86400 " )
2015-05-25 15:03:51 -03:00
+ HelpExampleCli ( " setban " , " \" 192.168.0.0/24 \" \" add \" " )
2016-08-14 09:35:27 -03:00
+ HelpExampleRpc ( " setban " , " \" 192.168.0.6 \" , \" add \" , 86400 " )
2018-12-21 14:29:36 -03:00
} ,
2019-02-13 18:51:27 -03:00
} ;
std : : string strCommand ;
if ( ! request . params [ 1 ] . isNull ( ) )
strCommand = request . params [ 1 ] . get_str ( ) ;
if ( request . fHelp | | ! help . IsValidNumArgs ( request . params . size ( ) ) | | ( strCommand ! = " add " & & strCommand ! = " remove " ) ) {
throw std : : runtime_error ( help . ToString ( ) ) ;
}
2019-09-17 19:59:36 -03:00
if ( ! g_rpc_node - > banman ) {
2017-10-05 14:10:58 -03:00
throw JSONRPCError ( RPC_DATABASE_ERROR , " Error: Ban database not loaded " ) ;
}
2015-05-19 05:07:46 -03:00
2015-05-25 15:03:51 -03:00
CSubNet subNet ;
CNetAddr netAddr ;
bool isSubnet = false ;
2018-01-11 17:40:51 -03:00
if ( request . params [ 0 ] . get_str ( ) . find ( ' / ' ) ! = std : : string : : npos )
2015-05-25 15:03:51 -03:00
isSubnet = true ;
2016-05-31 13:05:52 -04:00
if ( ! isSubnet ) {
CNetAddr resolved ;
2019-12-11 13:39:29 -03:00
LookupHost ( request . params [ 0 ] . get_str ( ) , resolved , false ) ;
2016-05-31 13:05:52 -04:00
netAddr = resolved ;
}
2015-05-25 15:03:51 -03:00
else
2019-12-11 13:39:29 -03:00
LookupSubNet ( request . params [ 0 ] . get_str ( ) , subNet ) ;
2015-05-25 15:03:51 -03:00
if ( ! ( isSubnet ? subNet . IsValid ( ) : netAddr . IsValid ( ) ) )
2017-02-07 14:57:37 -03:00
throw JSONRPCError ( RPC_CLIENT_INVALID_IP_OR_SUBNET , " Error: Invalid IP/Subnet " ) ;
2015-05-19 05:07:46 -03:00
if ( strCommand = = " add " )
{
2019-09-17 19:59:36 -03:00
if ( isSubnet ? g_rpc_node - > banman - > IsBanned ( subNet ) : g_rpc_node - > banman - > IsBanned ( netAddr ) ) {
2015-05-25 15:03:51 -03:00
throw JSONRPCError ( RPC_CLIENT_NODE_ALREADY_ADDED , " Error: IP/Subnet already banned " ) ;
2017-10-05 14:10:58 -03:00
}
2015-05-19 05:07:46 -03:00
int64_t banTime = 0 ; //use standard bantime if not specified
2017-08-14 20:38:18 -03:00
if ( ! request . params [ 2 ] . isNull ( ) )
2016-09-22 04:46:41 -03:00
banTime = request . params [ 2 ] . get_int64 ( ) ;
2015-05-19 05:07:46 -03:00
2015-06-12 13:31:47 -03:00
bool absolute = false ;
2017-08-14 20:38:18 -03:00
if ( request . params [ 3 ] . isTrue ( ) )
2015-06-12 13:31:47 -03:00
absolute = true ;
2017-10-04 19:25:34 -03:00
if ( isSubnet ) {
2019-09-17 19:59:36 -03:00
g_rpc_node - > banman - > Ban ( subNet , BanReasonManuallyAdded , banTime , absolute ) ;
if ( g_rpc_node - > connman ) {
g_rpc_node - > connman - > DisconnectNode ( subNet ) ;
2017-10-05 14:10:58 -03:00
}
2017-10-04 19:25:34 -03:00
} else {
2019-09-17 19:59:36 -03:00
g_rpc_node - > banman - > Ban ( netAddr , BanReasonManuallyAdded , banTime , absolute ) ;
if ( g_rpc_node - > connman ) {
g_rpc_node - > connman - > DisconnectNode ( netAddr ) ;
2017-10-05 14:10:58 -03:00
}
2017-10-04 19:25:34 -03:00
}
2015-05-19 05:07:46 -03:00
}
else if ( strCommand = = " remove " )
{
2019-09-17 19:59:36 -03:00
if ( ! ( isSubnet ? g_rpc_node - > banman - > Unban ( subNet ) : g_rpc_node - > banman - > Unban ( netAddr ) ) ) {
2017-02-07 14:57:37 -03:00
throw JSONRPCError ( RPC_CLIENT_INVALID_IP_OR_SUBNET , " Error: Unban failed. Requested address/subnet was not previously banned. " ) ;
2017-10-05 14:10:58 -03:00
}
2015-05-19 05:07:46 -03:00
}
2015-06-12 13:31:47 -03:00
return NullUniValue ;
2015-05-19 05:07:46 -03:00
}
2018-05-02 12:14:48 -03:00
static UniValue listbanned ( const JSONRPCRequest & request )
2015-05-19 05:07:46 -03:00
{
2018-10-20 09:19:44 -03:00
RPCHelpMan { " listbanned " ,
2018-12-21 14:29:36 -03:00
" \n List all banned IPs/Subnets. \n " ,
{ } ,
RPCResults { } ,
RPCExamples {
HelpExampleCli ( " listbanned " , " " )
2015-05-19 05:07:46 -03:00
+ HelpExampleRpc ( " listbanned " , " " )
2018-12-21 14:29:36 -03:00
} ,
2019-06-19 00:59:11 -04:00
} . Check ( request ) ;
2015-05-19 05:07:46 -03:00
2019-09-17 19:59:36 -03:00
if ( ! g_rpc_node - > banman ) {
2017-10-05 14:10:58 -03:00
throw JSONRPCError ( RPC_DATABASE_ERROR , " Error: Ban database not loaded " ) ;
}
2016-04-16 18:43:11 -03:00
2015-06-26 16:38:33 -03:00
banmap_t banMap ;
2019-09-17 19:59:36 -03:00
g_rpc_node - > banman - > GetBanned ( banMap ) ;
2015-05-19 05:07:46 -03:00
2015-06-12 13:31:47 -03:00
UniValue bannedAddresses ( UniValue : : VARR ) ;
2017-06-04 16:02:43 -04:00
for ( const auto & entry : banMap )
2015-05-19 05:07:46 -03:00
{
2017-06-04 16:02:43 -04:00
const CBanEntry & banEntry = entry . second ;
2015-06-12 13:31:47 -03:00
UniValue rec ( UniValue : : VOBJ ) ;
2017-09-22 15:04:07 -03:00
rec . pushKV ( " address " , entry . first . ToString ( ) ) ;
rec . pushKV ( " banned_until " , banEntry . nBanUntil ) ;
rec . pushKV ( " ban_created " , banEntry . nCreateTime ) ;
rec . pushKV ( " ban_reason " , banEntry . banReasonToString ( ) ) ;
2015-06-26 16:38:33 -03:00
2015-05-19 05:07:46 -03:00
bannedAddresses . push_back ( rec ) ;
}
return bannedAddresses ;
}
2018-05-02 12:14:48 -03:00
static UniValue clearbanned ( const JSONRPCRequest & request )
2015-05-19 05:07:46 -03:00
{
2018-10-20 09:19:44 -03:00
RPCHelpMan { " clearbanned " ,
2018-12-21 14:29:36 -03:00
" \n Clear all banned IPs. \n " ,
{ } ,
RPCResults { } ,
RPCExamples {
HelpExampleCli ( " clearbanned " , " " )
2015-05-19 05:07:46 -03:00
+ HelpExampleRpc ( " clearbanned " , " " )
2018-12-21 14:29:36 -03:00
} ,
2019-06-19 00:59:11 -04:00
} . Check ( request ) ;
2019-09-17 19:59:36 -03:00
if ( ! g_rpc_node - > banman ) {
2017-10-05 14:10:58 -03:00
throw JSONRPCError ( RPC_DATABASE_ERROR , " Error: Ban database not loaded " ) ;
}
2015-05-19 05:07:46 -03:00
2019-09-17 19:59:36 -03:00
g_rpc_node - > banman - > ClearBanned ( ) ;
2015-05-19 05:07:46 -03:00
2015-06-12 13:31:47 -03:00
return NullUniValue ;
2015-05-19 05:07:46 -03:00
}
2016-03-29 14:43:02 -03:00
2018-05-02 12:14:48 -03:00
static UniValue setnetworkactive ( const JSONRPCRequest & request )
2013-03-25 22:38:24 -03:00
{
2018-10-20 09:19:44 -03:00
RPCHelpMan { " setnetworkactive " ,
" \n Disable/enable all p2p network activity. \n " ,
{
2018-12-10 18:56:51 -03:00
{ " state " , RPCArg : : Type : : BOOL , RPCArg : : Optional : : NO , " true to enable networking, false to disable " } ,
2018-12-21 14:29:36 -03:00
} ,
RPCResults { } ,
RPCExamples { " " } ,
2019-06-19 00:59:11 -04:00
} . Check ( request ) ;
2013-03-25 22:38:24 -03:00
2019-09-17 19:59:36 -03:00
if ( ! g_rpc_node - > connman ) {
2013-03-25 22:38:24 -03:00
throw JSONRPCError ( RPC_CLIENT_P2P_DISABLED , " Error: Peer-to-peer functionality missing or disabled " ) ;
}
2019-09-17 19:59:36 -03:00
g_rpc_node - > connman - > SetNetworkActive ( request . params [ 0 ] . get_bool ( ) ) ;
2013-03-25 22:38:24 -03:00
2019-09-17 19:59:36 -03:00
return g_rpc_node - > connman - > GetNetworkActive ( ) ;
2013-03-25 22:38:24 -03:00
}
2018-05-02 09:19:40 -03:00
static UniValue getnodeaddresses ( const JSONRPCRequest & request )
{
2018-10-20 09:19:44 -03:00
RPCHelpMan { " getnodeaddresses " ,
" \n Return known addresses which can potentially be used to find new nodes in the network \n " ,
{
2018-12-10 18:56:51 -03:00
{ " count " , RPCArg : : Type : : NUM , /* default */ " 1 " , " How many addresses to return. Limited to the smaller of " + std : : to_string ( ADDRMAN_GETADDR_MAX ) + " or " + std : : to_string ( ADDRMAN_GETADDR_MAX_PCT ) + " % of all known addresses. " } ,
2018-12-21 14:29:36 -03:00
} ,
RPCResult {
2020-01-09 14:00:57 -03:00
RPCResult : : Type : : ARR , " " , " " ,
{
{ RPCResult : : Type : : OBJ , " " , " " ,
{
{ RPCResult : : Type : : NUM_TIME , " time " , " The " + UNIX_EPOCH_TIME + " of when the node was last seen " } ,
{ RPCResult : : Type : : NUM , " services " , " The services offered " } ,
{ RPCResult : : Type : : STR , " address " , " The address of the node " } ,
{ RPCResult : : Type : : NUM , " port " , " The port of the node " } ,
} } ,
}
2018-12-21 14:29:36 -03:00
} ,
RPCExamples {
HelpExampleCli ( " getnodeaddresses " , " 8 " )
2018-05-02 09:19:40 -03:00
+ HelpExampleRpc ( " getnodeaddresses " , " 8 " )
2018-12-21 14:29:36 -03:00
} ,
2019-06-19 00:59:11 -04:00
} . Check ( request ) ;
2019-09-17 19:59:36 -03:00
if ( ! g_rpc_node - > connman ) {
2018-05-02 09:19:40 -03:00
throw JSONRPCError ( RPC_CLIENT_P2P_DISABLED , " Error: Peer-to-peer functionality missing or disabled " ) ;
}
int count = 1 ;
if ( ! request . params [ 0 ] . isNull ( ) ) {
count = request . params [ 0 ] . get_int ( ) ;
if ( count < = 0 ) {
throw JSONRPCError ( RPC_INVALID_PARAMETER , " Address count out of range " ) ;
}
}
// returns a shuffled list of CAddress
2019-09-17 19:59:36 -03:00
std : : vector < CAddress > vAddr = g_rpc_node - > connman - > GetAddresses ( ) ;
2018-05-02 09:19:40 -03:00
UniValue ret ( UniValue : : VARR ) ;
int address_return_count = std : : min < int > ( count , vAddr . size ( ) ) ;
for ( int i = 0 ; i < address_return_count ; + + i ) {
UniValue obj ( UniValue : : VOBJ ) ;
const CAddress & addr = vAddr [ i ] ;
obj . pushKV ( " time " , ( int ) addr . nTime ) ;
obj . pushKV ( " services " , ( uint64_t ) addr . nServices ) ;
obj . pushKV ( " address " , addr . ToStringIP ( ) ) ;
obj . pushKV ( " port " , addr . GetPort ( ) ) ;
ret . push_back ( obj ) ;
}
return ret ;
}
2018-08-20 09:19:43 -03:00
// clang-format off
2016-03-29 14:43:02 -03:00
static const CRPCCommand commands [ ] =
2017-06-08 20:38:23 -04:00
{ // category name actor (function) argNames
2016-03-29 14:43:02 -03:00
// --------------------- ------------------------ ----------------------- ----------
2017-06-08 20:38:23 -04:00
{ " network " , " getconnectioncount " , & getconnectioncount , { } } ,
{ " network " , " ping " , & ping , { } } ,
{ " network " , " getpeerinfo " , & getpeerinfo , { } } ,
{ " network " , " addnode " , & addnode , { " node " , " command " } } ,
{ " network " , " disconnectnode " , & disconnectnode , { " address " , " nodeid " } } ,
{ " network " , " getaddednodeinfo " , & getaddednodeinfo , { " node " } } ,
{ " network " , " getnettotals " , & getnettotals , { } } ,
{ " network " , " getnetworkinfo " , & getnetworkinfo , { } } ,
{ " network " , " setban " , & setban , { " subnet " , " command " , " bantime " , " absolute " } } ,
{ " network " , " listbanned " , & listbanned , { } } ,
{ " network " , " clearbanned " , & clearbanned , { } } ,
{ " network " , " setnetworkactive " , & setnetworkactive , { " state " } } ,
2018-05-02 09:19:40 -03:00
{ " network " , " getnodeaddresses " , & getnodeaddresses , { " count " } } ,
2016-03-29 14:43:02 -03:00
} ;
2018-08-20 09:19:43 -03:00
// clang-format on
2016-03-29 14:43:02 -03:00
2016-06-07 12:42:42 -04:00
void RegisterNetRPCCommands ( CRPCTable & t )
2016-03-29 14:43:02 -03:00
{
for ( unsigned int vcidx = 0 ; vcidx < ARRAYLEN ( commands ) ; vcidx + + )
2016-06-07 12:42:42 -04:00
t . appendCommand ( commands [ vcidx ] . name , & commands [ vcidx ] ) ;
2016-03-29 14:43:02 -03:00
}