mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
merge bitcoin#19070: Signal support for compact block filters with NODE_COMPACT_FILTERS
This commit is contained in:
parent
5474c85853
commit
c7f08018d9
10
src/init.cpp
10
src/init.cpp
@ -1305,13 +1305,15 @@ bool AppInitParameterInteraction()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Basic filters are the only supported filters. The basic filters index must be enabled
|
// Signal NODE_COMPACT_FILTERS if peerblockfilters and basic filters index are both enabled.
|
||||||
// to serve compact filters
|
if (gArgs.GetBoolArg("-peerblockfilters", DEFAULT_PEERBLOCKFILTERS)) {
|
||||||
if (gArgs.GetBoolArg("-peerblockfilters", DEFAULT_PEERBLOCKFILTERS) &&
|
if (g_enabled_filter_types.count(BlockFilterType::BASIC_FILTER) != 1) {
|
||||||
g_enabled_filter_types.count(BlockFilterType::BASIC_FILTER) != 1) {
|
|
||||||
return InitError(_("Cannot set -peerblockfilters without -blockfilterindex."));
|
return InitError(_("Cannot set -peerblockfilters without -blockfilterindex."));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
nLocalServices = ServiceFlags(nLocalServices | NODE_COMPACT_FILTERS);
|
||||||
|
}
|
||||||
|
|
||||||
// if using block pruning, then disallow txindex and require disabling governance validation
|
// if using block pruning, then disallow txindex and require disabling governance validation
|
||||||
if (gArgs.GetArg("-prune", 0)) {
|
if (gArgs.GetArg("-prune", 0)) {
|
||||||
if (gArgs.GetBoolArg("-txindex", DEFAULT_TXINDEX))
|
if (gArgs.GetBoolArg("-txindex", DEFAULT_TXINDEX))
|
||||||
|
@ -2119,7 +2119,7 @@ void static ProcessOrphanTx(CConnman* connman, std::set<uint256>& orphan_work_se
|
|||||||
*
|
*
|
||||||
* May disconnect from the peer in the case of a bad request.
|
* May disconnect from the peer in the case of a bad request.
|
||||||
*
|
*
|
||||||
* @param[in] pfrom The peer that we received the request from
|
* @param[in] peer The peer that we received the request from
|
||||||
* @param[in] chain_params Chain parameters
|
* @param[in] chain_params Chain parameters
|
||||||
* @param[in] filter_type The filter type the request is for. Must be basic filters.
|
* @param[in] filter_type The filter type the request is for. Must be basic filters.
|
||||||
* @param[in] start_height The start height for the request
|
* @param[in] start_height The start height for the request
|
||||||
@ -2129,7 +2129,7 @@ void static ProcessOrphanTx(CConnman* connman, std::set<uint256>& orphan_work_se
|
|||||||
* @param[out] filter_index The filter index, if the request can be serviced.
|
* @param[out] filter_index The filter index, if the request can be serviced.
|
||||||
* @return True if the request can be serviced.
|
* @return True if the request can be serviced.
|
||||||
*/
|
*/
|
||||||
static bool PrepareBlockFilterRequest(CNode& pfrom, const CChainParams& chain_params,
|
static bool PrepareBlockFilterRequest(CNode& peer, const CChainParams& chain_params,
|
||||||
BlockFilterType filter_type, uint32_t start_height,
|
BlockFilterType filter_type, uint32_t start_height,
|
||||||
const uint256& stop_hash, uint32_t max_height_diff,
|
const uint256& stop_hash, uint32_t max_height_diff,
|
||||||
const CBlockIndex*& stop_index,
|
const CBlockIndex*& stop_index,
|
||||||
@ -2137,11 +2137,11 @@ static bool PrepareBlockFilterRequest(CNode& pfrom, const CChainParams& chain_pa
|
|||||||
{
|
{
|
||||||
const bool supported_filter_type =
|
const bool supported_filter_type =
|
||||||
(filter_type == BlockFilterType::BASIC_FILTER &&
|
(filter_type == BlockFilterType::BASIC_FILTER &&
|
||||||
gArgs.GetBoolArg("-peerblockfilters", DEFAULT_PEERBLOCKFILTERS));
|
(peer.GetLocalServices() & NODE_COMPACT_FILTERS));
|
||||||
if (!supported_filter_type) {
|
if (!supported_filter_type) {
|
||||||
LogPrint(BCLog::NET, "peer %d requested unsupported block filter type: %d\n",
|
LogPrint(BCLog::NET, "peer %d requested unsupported block filter type: %d\n",
|
||||||
pfrom.GetId(), static_cast<uint8_t>(filter_type));
|
peer.GetId(), static_cast<uint8_t>(filter_type));
|
||||||
pfrom.fDisconnect = true;
|
peer.fDisconnect = true;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2152,8 +2152,8 @@ static bool PrepareBlockFilterRequest(CNode& pfrom, const CChainParams& chain_pa
|
|||||||
// Check that the stop block exists and the peer would be allowed to fetch it.
|
// Check that the stop block exists and the peer would be allowed to fetch it.
|
||||||
if (!stop_index || !BlockRequestAllowed(stop_index, chain_params.GetConsensus())) {
|
if (!stop_index || !BlockRequestAllowed(stop_index, chain_params.GetConsensus())) {
|
||||||
LogPrint(BCLog::NET, "peer %d requested invalid block hash: %s\n",
|
LogPrint(BCLog::NET, "peer %d requested invalid block hash: %s\n",
|
||||||
pfrom.GetId(), stop_hash.ToString());
|
peer.GetId(), stop_hash.ToString());
|
||||||
pfrom.fDisconnect = true;
|
peer.fDisconnect = true;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -2162,14 +2162,14 @@ static bool PrepareBlockFilterRequest(CNode& pfrom, const CChainParams& chain_pa
|
|||||||
if (start_height > stop_height) {
|
if (start_height > stop_height) {
|
||||||
LogPrint(BCLog::NET, "peer %d sent invalid getcfilters/getcfheaders with " /* Continued */
|
LogPrint(BCLog::NET, "peer %d sent invalid getcfilters/getcfheaders with " /* Continued */
|
||||||
"start height %d and stop height %d\n",
|
"start height %d and stop height %d\n",
|
||||||
pfrom.GetId(), start_height, stop_height);
|
peer.GetId(), start_height, stop_height);
|
||||||
pfrom.fDisconnect = true;
|
peer.fDisconnect = true;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (stop_height - start_height >= max_height_diff) {
|
if (stop_height - start_height >= max_height_diff) {
|
||||||
LogPrint(BCLog::NET, "peer %d requested too many cfilters/cfheaders: %d / %d\n",
|
LogPrint(BCLog::NET, "peer %d requested too many cfilters/cfheaders: %d / %d\n",
|
||||||
pfrom.GetId(), stop_height - start_height + 1, max_height_diff);
|
peer.GetId(), stop_height - start_height + 1, max_height_diff);
|
||||||
pfrom.fDisconnect = true;
|
peer.fDisconnect = true;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2187,12 +2187,12 @@ static bool PrepareBlockFilterRequest(CNode& pfrom, const CChainParams& chain_pa
|
|||||||
*
|
*
|
||||||
* May disconnect from the peer in the case of a bad request.
|
* May disconnect from the peer in the case of a bad request.
|
||||||
*
|
*
|
||||||
* @param[in] pfrom The peer that we received the request from
|
* @param[in] peer The peer that we received the request from
|
||||||
* @param[in] vRecv The raw message received
|
* @param[in] vRecv The raw message received
|
||||||
* @param[in] chain_params Chain parameters
|
* @param[in] chain_params Chain parameters
|
||||||
* @param[in] connman Pointer to the connection manager
|
* @param[in] connman Pointer to the connection manager
|
||||||
*/
|
*/
|
||||||
static void ProcessGetCFilters(CNode& pfrom, CDataStream& vRecv, const CChainParams& chain_params,
|
static void ProcessGetCFilters(CNode& peer, CDataStream& vRecv, const CChainParams& chain_params,
|
||||||
CConnman& connman)
|
CConnman& connman)
|
||||||
{
|
{
|
||||||
uint8_t filter_type_ser;
|
uint8_t filter_type_ser;
|
||||||
@ -2205,13 +2205,12 @@ static void ProcessGetCFilters(CNode& pfrom, CDataStream& vRecv, const CChainPar
|
|||||||
|
|
||||||
const CBlockIndex* stop_index;
|
const CBlockIndex* stop_index;
|
||||||
BlockFilterIndex* filter_index;
|
BlockFilterIndex* filter_index;
|
||||||
if (!PrepareBlockFilterRequest(pfrom, chain_params, filter_type, start_height, stop_hash,
|
if (!PrepareBlockFilterRequest(peer, chain_params, filter_type, start_height, stop_hash,
|
||||||
MAX_GETCFILTERS_SIZE, stop_index, filter_index)) {
|
MAX_GETCFILTERS_SIZE, stop_index, filter_index)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<BlockFilter> filters;
|
std::vector<BlockFilter> filters;
|
||||||
|
|
||||||
if (!filter_index->LookupFilterRange(start_height, stop_index, filters)) {
|
if (!filter_index->LookupFilterRange(start_height, stop_index, filters)) {
|
||||||
LogPrint(BCLog::NET, "Failed to find block filter in index: filter_type=%s, start_height=%d, stop_hash=%s\n",
|
LogPrint(BCLog::NET, "Failed to find block filter in index: filter_type=%s, start_height=%d, stop_hash=%s\n",
|
||||||
BlockFilterTypeName(filter_type), start_height, stop_hash.ToString());
|
BlockFilterTypeName(filter_type), start_height, stop_hash.ToString());
|
||||||
@ -2219,9 +2218,9 @@ static void ProcessGetCFilters(CNode& pfrom, CDataStream& vRecv, const CChainPar
|
|||||||
}
|
}
|
||||||
|
|
||||||
for (const auto& filter : filters) {
|
for (const auto& filter : filters) {
|
||||||
CSerializedNetMsg msg = CNetMsgMaker(pfrom.GetSendVersion())
|
CSerializedNetMsg msg = CNetMsgMaker(peer.GetSendVersion())
|
||||||
.Make(NetMsgType::CFILTER, filter);
|
.Make(NetMsgType::CFILTER, filter);
|
||||||
connman.PushMessage(&pfrom, std::move(msg));
|
connman.PushMessage(&peer, std::move(msg));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2230,12 +2229,12 @@ static void ProcessGetCFilters(CNode& pfrom, CDataStream& vRecv, const CChainPar
|
|||||||
*
|
*
|
||||||
* May disconnect from the peer in the case of a bad request.
|
* May disconnect from the peer in the case of a bad request.
|
||||||
*
|
*
|
||||||
* @param[in] pfrom The peer that we received the request from
|
* @param[in] peer The peer that we received the request from
|
||||||
* @param[in] vRecv The raw message received
|
* @param[in] vRecv The raw message received
|
||||||
* @param[in] chain_params Chain parameters
|
* @param[in] chain_params Chain parameters
|
||||||
* @param[in] connman Pointer to the connection manager
|
* @param[in] connman Pointer to the connection manager
|
||||||
*/
|
*/
|
||||||
static void ProcessGetCFHeaders(CNode& pfrom, CDataStream& vRecv, const CChainParams& chain_params,
|
static void ProcessGetCFHeaders(CNode& peer, CDataStream& vRecv, const CChainParams& chain_params,
|
||||||
CConnman& connman)
|
CConnman& connman)
|
||||||
{
|
{
|
||||||
uint8_t filter_type_ser;
|
uint8_t filter_type_ser;
|
||||||
@ -2248,7 +2247,7 @@ static void ProcessGetCFHeaders(CNode& pfrom, CDataStream& vRecv, const CChainPa
|
|||||||
|
|
||||||
const CBlockIndex* stop_index;
|
const CBlockIndex* stop_index;
|
||||||
BlockFilterIndex* filter_index;
|
BlockFilterIndex* filter_index;
|
||||||
if (!PrepareBlockFilterRequest(pfrom, chain_params, filter_type, start_height, stop_hash,
|
if (!PrepareBlockFilterRequest(peer, chain_params, filter_type, start_height, stop_hash,
|
||||||
MAX_GETCFHEADERS_SIZE, stop_index, filter_index)) {
|
MAX_GETCFHEADERS_SIZE, stop_index, filter_index)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -2271,13 +2270,13 @@ static void ProcessGetCFHeaders(CNode& pfrom, CDataStream& vRecv, const CChainPa
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
CSerializedNetMsg msg = CNetMsgMaker(pfrom.GetSendVersion())
|
CSerializedNetMsg msg = CNetMsgMaker(peer.GetSendVersion())
|
||||||
.Make(NetMsgType::CFHEADERS,
|
.Make(NetMsgType::CFHEADERS,
|
||||||
filter_type_ser,
|
filter_type_ser,
|
||||||
stop_index->GetBlockHash(),
|
stop_index->GetBlockHash(),
|
||||||
prev_header,
|
prev_header,
|
||||||
filter_hashes);
|
filter_hashes);
|
||||||
connman.PushMessage(&pfrom, std::move(msg));
|
connman.PushMessage(&peer, std::move(msg));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -2285,12 +2284,12 @@ static void ProcessGetCFHeaders(CNode& pfrom, CDataStream& vRecv, const CChainPa
|
|||||||
*
|
*
|
||||||
* May disconnect from the peer in the case of a bad request.
|
* May disconnect from the peer in the case of a bad request.
|
||||||
*
|
*
|
||||||
* @param[in] pfrom The peer that we received the request from
|
* @param[in] peer The peer that we received the request from
|
||||||
* @param[in] vRecv The raw message received
|
* @param[in] vRecv The raw message received
|
||||||
* @param[in] chain_params Chain parameters
|
* @param[in] chain_params Chain parameters
|
||||||
* @param[in] connman Pointer to the connection manager
|
* @param[in] connman Pointer to the connection manager
|
||||||
*/
|
*/
|
||||||
static void ProcessGetCFCheckPt(CNode& pfrom, CDataStream& vRecv, const CChainParams& chain_params,
|
static void ProcessGetCFCheckPt(CNode& peer, CDataStream& vRecv, const CChainParams& chain_params,
|
||||||
CConnman& connman)
|
CConnman& connman)
|
||||||
{
|
{
|
||||||
uint8_t filter_type_ser;
|
uint8_t filter_type_ser;
|
||||||
@ -2302,7 +2301,7 @@ static void ProcessGetCFCheckPt(CNode& pfrom, CDataStream& vRecv, const CChainPa
|
|||||||
|
|
||||||
const CBlockIndex* stop_index;
|
const CBlockIndex* stop_index;
|
||||||
BlockFilterIndex* filter_index;
|
BlockFilterIndex* filter_index;
|
||||||
if (!PrepareBlockFilterRequest(pfrom, chain_params, filter_type, /*start_height=*/0, stop_hash,
|
if (!PrepareBlockFilterRequest(peer, chain_params, filter_type, /*start_height=*/0, stop_hash,
|
||||||
/*max_height_diff=*/std::numeric_limits<uint32_t>::max(),
|
/*max_height_diff=*/std::numeric_limits<uint32_t>::max(),
|
||||||
stop_index, filter_index)) {
|
stop_index, filter_index)) {
|
||||||
return;
|
return;
|
||||||
@ -2323,12 +2322,12 @@ static void ProcessGetCFCheckPt(CNode& pfrom, CDataStream& vRecv, const CChainPa
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
CSerializedNetMsg msg = CNetMsgMaker(pfrom.GetSendVersion())
|
CSerializedNetMsg msg = CNetMsgMaker(peer.GetSendVersion())
|
||||||
.Make(NetMsgType::CFCHECKPT,
|
.Make(NetMsgType::CFCHECKPT,
|
||||||
filter_type_ser,
|
filter_type_ser,
|
||||||
stop_index->GetBlockHash(),
|
stop_index->GetBlockHash(),
|
||||||
headers);
|
headers);
|
||||||
connman.PushMessage(&pfrom, std::move(msg));
|
connman.PushMessage(&peer, std::move(msg));
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string RejectCodeToString(const unsigned char code)
|
std::string RejectCodeToString(const unsigned char code)
|
||||||
|
@ -326,6 +326,7 @@ std::string serviceFlagToStr(const uint64_t mask, const int bit)
|
|||||||
case NODE_GETUTXO: return "GETUTXO";
|
case NODE_GETUTXO: return "GETUTXO";
|
||||||
case NODE_BLOOM: return "BLOOM";
|
case NODE_BLOOM: return "BLOOM";
|
||||||
case NODE_XTHIN: return "XTHIN";
|
case NODE_XTHIN: return "XTHIN";
|
||||||
|
case NODE_COMPACT_FILTERS: return "COMPACT_FILTERS";
|
||||||
case NODE_NETWORK_LIMITED: return "NETWORK_LIMITED";
|
case NODE_NETWORK_LIMITED: return "NETWORK_LIMITED";
|
||||||
// Not using default, so we get warned when a case is missing
|
// Not using default, so we get warned when a case is missing
|
||||||
}
|
}
|
||||||
|
@ -316,6 +316,9 @@ enum ServiceFlags : uint64_t {
|
|||||||
// NODE_XTHIN means the node supports Xtreme Thinblocks
|
// NODE_XTHIN means the node supports Xtreme Thinblocks
|
||||||
// If this is turned off then the node will not service nor make xthin requests
|
// If this is turned off then the node will not service nor make xthin requests
|
||||||
NODE_XTHIN = (1 << 4),
|
NODE_XTHIN = (1 << 4),
|
||||||
|
// NODE_COMPACT_FILTERS means the node will service basic block filter requests.
|
||||||
|
// See BIP157 and BIP158 for details on how this is implemented.
|
||||||
|
NODE_COMPACT_FILTERS = (1 << 6),
|
||||||
// NODE_NETWORK_LIMITED means the same as NODE_NETWORK with the limitation of only
|
// NODE_NETWORK_LIMITED means the same as NODE_NETWORK with the limitation of only
|
||||||
// serving the last 288 blocks
|
// serving the last 288 blocks
|
||||||
// See BIP159 for details on how this is implemented.
|
// See BIP159 for details on how this is implemented.
|
||||||
|
@ -4,12 +4,13 @@
|
|||||||
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
"""Tests NODE_COMPACT_FILTERS (BIP 157/158).
|
"""Tests NODE_COMPACT_FILTERS (BIP 157/158).
|
||||||
|
|
||||||
Tests that a node configured with -blockfilterindex and -peerblockfilters can serve
|
Tests that a node configured with -blockfilterindex and -peerblockfilters signals
|
||||||
cfheaders and cfcheckpts.
|
NODE_COMPACT_FILTERS and can serve cfilters, cfheaders and cfcheckpts.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from test_framework.messages import (
|
from test_framework.messages import (
|
||||||
FILTER_TYPE_BASIC,
|
FILTER_TYPE_BASIC,
|
||||||
|
NODE_COMPACT_FILTERS,
|
||||||
hash256,
|
hash256,
|
||||||
msg_getcfcheckpt,
|
msg_getcfcheckpt,
|
||||||
msg_getcfheaders,
|
msg_getcfheaders,
|
||||||
@ -70,6 +71,14 @@ class CompactFiltersTest(BitcoinTestFramework):
|
|||||||
self.nodes[1].generate(1001)
|
self.nodes[1].generate(1001)
|
||||||
wait_until(lambda: self.nodes[1].getblockcount() == 2000)
|
wait_until(lambda: self.nodes[1].getblockcount() == 2000)
|
||||||
|
|
||||||
|
# Check that nodes have signalled NODE_COMPACT_FILTERS correctly.
|
||||||
|
assert node0.nServices & NODE_COMPACT_FILTERS != 0
|
||||||
|
assert node1.nServices & NODE_COMPACT_FILTERS == 0
|
||||||
|
|
||||||
|
# Check that the localservices is as expected.
|
||||||
|
assert int(self.nodes[0].getnetworkinfo()['localservices'], 16) & NODE_COMPACT_FILTERS != 0
|
||||||
|
assert int(self.nodes[1].getnetworkinfo()['localservices'], 16) & NODE_COMPACT_FILTERS == 0
|
||||||
|
|
||||||
self.log.info("get cfcheckpt on chain to be re-orged out.")
|
self.log.info("get cfcheckpt on chain to be re-orged out.")
|
||||||
request = msg_getcfcheckpt(
|
request = msg_getcfcheckpt(
|
||||||
filter_type=FILTER_TYPE_BASIC,
|
filter_type=FILTER_TYPE_BASIC,
|
||||||
|
@ -46,6 +46,7 @@ BIP125_SEQUENCE_NUMBER = 0xfffffffd # Sequence number that is BIP 125 opt-in an
|
|||||||
NODE_NETWORK = (1 << 0)
|
NODE_NETWORK = (1 << 0)
|
||||||
# NODE_GETUTXO = (1 << 1)
|
# NODE_GETUTXO = (1 << 1)
|
||||||
NODE_BLOOM = (1 << 2)
|
NODE_BLOOM = (1 << 2)
|
||||||
|
NODE_COMPACT_FILTERS = (1 << 6)
|
||||||
NODE_NETWORK_LIMITED = (1 << 10)
|
NODE_NETWORK_LIMITED = (1 << 10)
|
||||||
|
|
||||||
FILTER_TYPE_BASIC = 0
|
FILTER_TYPE_BASIC = 0
|
||||||
|
Loading…
Reference in New Issue
Block a user