2022-04-16 16:46:04 +02:00
|
|
|
#!/usr/bin/env python3
|
2022-06-08 01:36:46 +02:00
|
|
|
# Copyright (c) 2015-2022 The Dash Core developers
|
2022-04-16 16:46:04 +02:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
'''
|
|
|
|
feature_llmq_rotation.py
|
|
|
|
|
|
|
|
Checks LLMQs Quorum Rotation
|
|
|
|
|
|
|
|
'''
|
2022-05-18 19:45:15 +02:00
|
|
|
from io import BytesIO
|
|
|
|
|
2022-04-16 16:46:04 +02:00
|
|
|
from test_framework.test_framework import DashTestFramework
|
2022-05-18 19:45:15 +02:00
|
|
|
from test_framework.messages import CBlock, CBlockHeader, CCbTx, CMerkleBlock, FromHex, hash256, msg_getmnlistd, QuorumId
|
|
|
|
from test_framework.mininode import P2PInterface
|
2022-04-16 16:46:04 +02:00
|
|
|
from test_framework.util import (
|
|
|
|
assert_equal,
|
|
|
|
assert_greater_than_or_equal,
|
|
|
|
connect_nodes,
|
|
|
|
wait_until,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def intersection(lst1, lst2):
|
|
|
|
lst3 = [value for value in lst1 if value in lst2]
|
|
|
|
return lst3
|
|
|
|
|
|
|
|
|
|
|
|
def extract_quorum_members(quorum_info):
|
|
|
|
return [d['proTxHash'] for d in quorum_info["members"]]
|
|
|
|
|
2022-05-18 19:45:15 +02:00
|
|
|
class TestP2PConn(P2PInterface):
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__()
|
|
|
|
self.last_mnlistdiff = None
|
|
|
|
|
|
|
|
def on_mnlistdiff(self, message):
|
|
|
|
self.last_mnlistdiff = message
|
|
|
|
|
|
|
|
def wait_for_mnlistdiff(self, timeout=30):
|
|
|
|
def received_mnlistdiff():
|
|
|
|
return self.last_mnlistdiff is not None
|
|
|
|
return wait_until(received_mnlistdiff, timeout=timeout)
|
|
|
|
|
|
|
|
def getmnlistdiff(self, baseBlockHash, blockHash):
|
|
|
|
msg = msg_getmnlistd(baseBlockHash, blockHash)
|
|
|
|
self.last_mnlistdiff = None
|
|
|
|
self.send_message(msg)
|
|
|
|
self.wait_for_mnlistdiff()
|
|
|
|
return self.last_mnlistdiff
|
2022-04-16 16:46:04 +02:00
|
|
|
|
|
|
|
class LLMQQuorumRotationTest(DashTestFramework):
|
|
|
|
def set_test_params(self):
|
2022-06-29 02:14:09 +02:00
|
|
|
self.set_dash_test_params(9, 8, fast_dip3_enforcement=True)
|
2022-04-16 16:46:04 +02:00
|
|
|
self.set_dash_llmq_test_params(4, 4)
|
|
|
|
|
|
|
|
def run_test(self):
|
|
|
|
llmq_type=103
|
|
|
|
llmq_type_name="llmq_test_dip0024"
|
|
|
|
|
2022-05-18 19:45:15 +02:00
|
|
|
self.test_node = self.nodes[0].add_p2p_connection(TestP2PConn())
|
|
|
|
|
2022-04-16 16:46:04 +02:00
|
|
|
# Connect all nodes to node1 so that we always have the whole network connected
|
|
|
|
# Otherwise only masternode connections will be established between nodes, which won't propagate TXs/blocks
|
|
|
|
# Usually node0 is the one that does this, but in this test we isolate it multiple times
|
|
|
|
|
|
|
|
for i in range(len(self.nodes)):
|
|
|
|
if i != 1:
|
|
|
|
connect_nodes(self.nodes[i], 0)
|
|
|
|
|
|
|
|
self.activate_dip8()
|
|
|
|
|
2022-06-18 18:52:45 +02:00
|
|
|
self.nodes[0].sporkupdate("SPORK_17_QUORUM_DKG_ENABLED", 0)
|
2022-04-16 16:46:04 +02:00
|
|
|
self.wait_for_sporks_same()
|
|
|
|
|
|
|
|
self.activate_dip0024(expected_activation_height=900)
|
|
|
|
self.log.info("Activated DIP0024 at height:" + str(self.nodes[0].getblockcount()))
|
|
|
|
|
|
|
|
#At this point, we need to move forward 3 cycles (3 x 24 blocks) so the first 3 quarters can be created (without DKG sessions)
|
|
|
|
#self.log.info("Start at H height:" + str(self.nodes[0].getblockcount()))
|
|
|
|
self.move_to_next_cycle()
|
|
|
|
self.log.info("Cycle H height:" + str(self.nodes[0].getblockcount()))
|
|
|
|
self.move_to_next_cycle()
|
|
|
|
self.log.info("Cycle H+C height:" + str(self.nodes[0].getblockcount()))
|
|
|
|
self.move_to_next_cycle()
|
|
|
|
self.log.info("Cycle H+2C height:" + str(self.nodes[0].getblockcount()))
|
|
|
|
|
2022-05-18 19:45:15 +02:00
|
|
|
b_0 = self.nodes[0].getbestblockhash()
|
|
|
|
|
2022-04-16 16:46:04 +02:00
|
|
|
(quorum_info_0_0, quorum_info_0_1) = self.mine_cycle_quorum(llmq_type_name=llmq_type_name, llmq_type=llmq_type)
|
|
|
|
quorum_members_0_0 = extract_quorum_members(quorum_info_0_0)
|
|
|
|
quorum_members_0_1 = extract_quorum_members(quorum_info_0_1)
|
|
|
|
assert_equal(len(intersection(quorum_members_0_0, quorum_members_0_1)), 0)
|
|
|
|
self.log.info("Quorum #0_0 members: " + str(quorum_members_0_0))
|
|
|
|
self.log.info("Quorum #0_1 members: " + str(quorum_members_0_1))
|
|
|
|
|
2022-05-18 19:45:15 +02:00
|
|
|
q_100_0 = QuorumId(100, int(quorum_info_0_0["quorumHash"], 16))
|
|
|
|
q_102_0 = QuorumId(102, int(quorum_info_0_0["quorumHash"], 16))
|
|
|
|
q_104_0 = QuorumId(104, int(quorum_info_0_0["quorumHash"], 16))
|
|
|
|
q_103_0_0 = QuorumId(103, int(quorum_info_0_0["quorumHash"], 16))
|
|
|
|
q_103_0_1 = QuorumId(103, int(quorum_info_0_1["quorumHash"], 16))
|
|
|
|
|
|
|
|
b_1 = self.nodes[0].getbestblockhash()
|
|
|
|
expectedDeleted = []
|
|
|
|
expectedNew = [q_100_0, q_102_0, q_104_0, q_103_0_0, q_103_0_1]
|
|
|
|
quorumList = self.test_getmnlistdiff_quorums(b_0, b_1, {}, expectedDeleted, expectedNew)
|
|
|
|
|
2022-04-16 16:46:04 +02:00
|
|
|
(quorum_info_1_0, quorum_info_1_1) = self.mine_cycle_quorum(llmq_type_name=llmq_type_name, llmq_type=llmq_type)
|
|
|
|
quorum_members_1_0 = extract_quorum_members(quorum_info_1_0)
|
|
|
|
quorum_members_1_1 = extract_quorum_members(quorum_info_1_1)
|
|
|
|
assert_equal(len(intersection(quorum_members_1_0, quorum_members_1_1)), 0)
|
|
|
|
self.log.info("Quorum #1_0 members: " + str(quorum_members_1_0))
|
|
|
|
self.log.info("Quorum #1_1 members: " + str(quorum_members_1_1))
|
|
|
|
|
2022-05-18 19:45:15 +02:00
|
|
|
q_100_1 = QuorumId(100, int(quorum_info_1_0["quorumHash"], 16))
|
|
|
|
q_102_1 = QuorumId(102, int(quorum_info_1_0["quorumHash"], 16))
|
|
|
|
q_103_1_0 = QuorumId(103, int(quorum_info_1_0["quorumHash"], 16))
|
|
|
|
q_103_1_1 = QuorumId(103, int(quorum_info_1_1["quorumHash"], 16))
|
|
|
|
|
|
|
|
b_2 = self.nodes[0].getbestblockhash()
|
|
|
|
expectedDeleted = [q_103_0_0, q_103_0_1]
|
|
|
|
expectedNew = [q_100_1, q_102_1, q_103_1_0, q_103_1_1]
|
|
|
|
quorumList = self.test_getmnlistdiff_quorums(b_1, b_2, quorumList, expectedDeleted, expectedNew)
|
|
|
|
|
2022-04-16 16:46:04 +02:00
|
|
|
mninfos_online = self.mninfo.copy()
|
|
|
|
nodes = [self.nodes[0]] + [mn.node for mn in mninfos_online]
|
2020-06-21 15:17:31 +02:00
|
|
|
self.sync_blocks(nodes)
|
2022-04-16 16:46:04 +02:00
|
|
|
quorum_list = self.nodes[0].quorum("list", llmq_type)
|
|
|
|
quorum_blockhash = self.nodes[0].getbestblockhash()
|
|
|
|
fallback_blockhash = self.nodes[0].generate(1)[0]
|
|
|
|
self.log.info("h("+str(self.nodes[0].getblockcount())+") quorum_list:"+str(quorum_list))
|
|
|
|
|
|
|
|
assert_greater_than_or_equal(len(intersection(quorum_members_0_0, quorum_members_1_0)), 3)
|
|
|
|
assert_greater_than_or_equal(len(intersection(quorum_members_0_1, quorum_members_1_1)), 3)
|
|
|
|
|
2022-05-18 19:45:15 +02:00
|
|
|
self.log.info("Mine a quorum to invalidate")
|
2022-04-16 16:46:04 +02:00
|
|
|
(quorum_info_3_0, quorum_info_3_1) = self.mine_cycle_quorum(llmq_type_name=llmq_type_name, llmq_type=llmq_type)
|
|
|
|
|
|
|
|
new_quorum_list = self.nodes[0].quorum("list", llmq_type)
|
|
|
|
assert_equal(len(new_quorum_list[llmq_type_name]), len(quorum_list[llmq_type_name]) + 2)
|
|
|
|
new_quorum_blockhash = self.nodes[0].getbestblockhash()
|
|
|
|
self.log.info("h("+str(self.nodes[0].getblockcount())+") new_quorum_blockhash:"+new_quorum_blockhash)
|
|
|
|
self.log.info("h("+str(self.nodes[0].getblockcount())+") new_quorum_list:"+str(new_quorum_list))
|
|
|
|
assert new_quorum_list != quorum_list
|
|
|
|
|
|
|
|
self.log.info("Invalidate the quorum")
|
|
|
|
self.bump_mocktime(5)
|
2022-06-18 18:52:45 +02:00
|
|
|
self.nodes[0].sporkupdate("SPORK_19_CHAINLOCKS_ENABLED", 4070908800)
|
2022-04-16 16:46:04 +02:00
|
|
|
self.wait_for_sporks_same()
|
|
|
|
self.nodes[0].invalidateblock(fallback_blockhash)
|
|
|
|
assert_equal(self.nodes[0].getbestblockhash(), quorum_blockhash)
|
|
|
|
assert_equal(self.nodes[0].quorum("list", llmq_type), quorum_list)
|
|
|
|
|
|
|
|
self.log.info("Reconsider the quorum")
|
|
|
|
self.bump_mocktime(5)
|
2022-06-18 18:52:45 +02:00
|
|
|
self.nodes[0].sporkupdate("SPORK_19_CHAINLOCKS_ENABLED", 0)
|
2022-04-16 16:46:04 +02:00
|
|
|
self.wait_for_sporks_same()
|
|
|
|
self.nodes[0].reconsiderblock(fallback_blockhash)
|
|
|
|
wait_until(lambda: self.nodes[0].getbestblockhash() == new_quorum_blockhash, sleep=1)
|
|
|
|
assert_equal(self.nodes[0].quorum("list", llmq_type), new_quorum_list)
|
|
|
|
|
2022-05-18 19:45:15 +02:00
|
|
|
def test_getmnlistdiff_quorums(self, baseBlockHash, blockHash, baseQuorumList, expectedDeleted, expectedNew):
|
|
|
|
d = self.test_getmnlistdiff_base(baseBlockHash, blockHash)
|
|
|
|
|
|
|
|
assert_equal(set(d.deletedQuorums), set(expectedDeleted))
|
|
|
|
assert_equal(set([QuorumId(e.llmqType, e.quorumHash) for e in d.newQuorums]), set(expectedNew))
|
|
|
|
|
|
|
|
newQuorumList = baseQuorumList.copy()
|
|
|
|
|
|
|
|
for e in d.deletedQuorums:
|
|
|
|
newQuorumList.pop(e)
|
|
|
|
|
|
|
|
for e in d.newQuorums:
|
|
|
|
newQuorumList[QuorumId(e.llmqType, e.quorumHash)] = e
|
|
|
|
|
|
|
|
cbtx = CCbTx()
|
|
|
|
cbtx.deserialize(BytesIO(d.cbTx.vExtraPayload))
|
|
|
|
|
|
|
|
if cbtx.version >= 2:
|
|
|
|
hashes = []
|
|
|
|
for qc in newQuorumList.values():
|
|
|
|
hashes.append(hash256(qc.serialize()))
|
|
|
|
hashes.sort()
|
|
|
|
merkleRoot = CBlock.get_merkle_root(hashes)
|
|
|
|
assert_equal(merkleRoot, cbtx.merkleRootQuorums)
|
|
|
|
|
|
|
|
return newQuorumList
|
|
|
|
|
|
|
|
|
|
|
|
def test_getmnlistdiff_base(self, baseBlockHash, blockHash):
|
|
|
|
hexstr = self.nodes[0].getblockheader(blockHash, False)
|
|
|
|
header = FromHex(CBlockHeader(), hexstr)
|
|
|
|
|
|
|
|
d = self.test_node.getmnlistdiff(int(baseBlockHash, 16), int(blockHash, 16))
|
|
|
|
assert_equal(d.baseBlockHash, int(baseBlockHash, 16))
|
|
|
|
assert_equal(d.blockHash, int(blockHash, 16))
|
|
|
|
|
|
|
|
# Check that the merkle proof is valid
|
|
|
|
proof = CMerkleBlock(header, d.merkleProof)
|
|
|
|
proof = proof.serialize().hex()
|
|
|
|
assert_equal(self.nodes[0].verifytxoutproof(proof), [d.cbTx.hash])
|
|
|
|
|
|
|
|
# Check if P2P messages match with RPCs
|
|
|
|
d2 = self.nodes[0].protx("diff", baseBlockHash, blockHash)
|
|
|
|
assert_equal(d2["baseBlockHash"], baseBlockHash)
|
|
|
|
assert_equal(d2["blockHash"], blockHash)
|
|
|
|
assert_equal(d2["cbTxMerkleTree"], d.merkleProof.serialize().hex())
|
|
|
|
assert_equal(d2["cbTx"], d.cbTx.serialize().hex())
|
|
|
|
assert_equal(set([int(e, 16) for e in d2["deletedMNs"]]), set(d.deletedMNs))
|
|
|
|
assert_equal(set([int(e["proRegTxHash"], 16) for e in d2["mnList"]]), set([e.proRegTxHash for e in d.mnList]))
|
|
|
|
assert_equal(set([QuorumId(e["llmqType"], int(e["quorumHash"], 16)) for e in d2["deletedQuorums"]]), set(d.deletedQuorums))
|
|
|
|
assert_equal(set([QuorumId(e["llmqType"], int(e["quorumHash"], 16)) for e in d2["newQuorums"]]), set([QuorumId(e.llmqType, e.quorumHash) for e in d.newQuorums]))
|
|
|
|
|
|
|
|
return d
|
2022-04-16 16:46:04 +02:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
LLMQQuorumRotationTest().main()
|