2017-09-21 19:55:24 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# Copyright (c) 2014-2016 The Bitcoin Core developers
|
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2019-01-07 10:55:35 +01:00
|
|
|
"""Test logic for skipping signature validation on old blocks.
|
2017-09-21 19:55:24 +02:00
|
|
|
|
|
|
|
Test logic for skipping signature validation on blocks which we've assumed
|
|
|
|
valid (https://github.com/bitcoin/bitcoin/pull/9484)
|
|
|
|
|
|
|
|
We build a chain that includes and invalid signature for one of the
|
|
|
|
transactions:
|
|
|
|
|
|
|
|
0: genesis block
|
|
|
|
1: block 1 with coinbase transaction output.
|
|
|
|
2-101: bury that block with 100 blocks so the coinbase transaction
|
|
|
|
output can be spent
|
|
|
|
102: a block containing a transaction spending the coinbase
|
2017-03-27 09:49:11 +02:00
|
|
|
transaction output. The transaction has an invalid signature.
|
2017-09-21 19:55:24 +02:00
|
|
|
103-2202: bury the bad block with just over two weeks' worth of blocks
|
|
|
|
(2100 blocks)
|
|
|
|
|
|
|
|
Start three nodes:
|
|
|
|
|
|
|
|
- node0 has no -assumevalid parameter. Try to sync to block 2202. It will
|
|
|
|
reject block 102 and only sync as far as block 101
|
|
|
|
- node1 has -assumevalid set to the hash of block 102. Try to sync to
|
|
|
|
block 2202. node1 will sync all the way to block 2202.
|
|
|
|
- node2 has -assumevalid set to the hash of block 102. Try to sync to
|
|
|
|
block 200. node2 will reject block 102 since it's assumed valid, but it
|
|
|
|
isn't buried by at least two weeks' work.
|
2019-01-07 10:55:35 +01:00
|
|
|
"""
|
2017-03-27 09:49:11 +02:00
|
|
|
import time
|
2017-09-21 19:55:24 +02:00
|
|
|
|
2017-03-27 09:49:11 +02:00
|
|
|
from test_framework.blocktools import (create_block, create_coinbase)
|
2017-09-21 19:55:24 +02:00
|
|
|
from test_framework.key import CECKey
|
2017-03-27 09:49:11 +02:00
|
|
|
from test_framework.mininode import (CBlockHeader,
|
|
|
|
COutPoint,
|
|
|
|
CTransaction,
|
|
|
|
CTxIn,
|
|
|
|
CTxOut,
|
2017-12-12 12:52:33 +01:00
|
|
|
network_thread_join,
|
|
|
|
network_thread_start,
|
2017-11-30 23:58:58 +01:00
|
|
|
P2PInterface,
|
2017-03-27 09:49:11 +02:00
|
|
|
msg_block,
|
|
|
|
msg_headers)
|
|
|
|
from test_framework.script import (CScript, OP_TRUE)
|
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
2017-11-08 19:10:43 +01:00
|
|
|
from test_framework.util import (assert_equal, set_node_times)
|
2017-09-21 19:55:24 +02:00
|
|
|
|
2017-11-30 23:58:58 +01:00
|
|
|
class BaseNode(P2PInterface):
|
2017-09-21 19:55:24 +02:00
|
|
|
def send_header_for_blocks(self, new_blocks):
|
|
|
|
headers_message = msg_headers()
|
2017-03-27 09:49:11 +02:00
|
|
|
headers_message.headers = [CBlockHeader(b) for b in new_blocks]
|
2017-09-21 19:55:24 +02:00
|
|
|
self.send_message(headers_message)
|
|
|
|
|
2017-03-27 09:49:11 +02:00
|
|
|
class AssumeValidTest(BitcoinTestFramework):
|
2017-09-01 18:47:13 +02:00
|
|
|
def set_test_params(self):
|
2017-09-21 19:55:24 +02:00
|
|
|
self.setup_clean_chain = True
|
|
|
|
self.num_nodes = 3
|
2017-09-01 18:47:13 +02:00
|
|
|
self.extra_args = ["-dip3params=9000:9000", "-checkblockindex=0"]
|
2017-09-21 19:55:24 +02:00
|
|
|
|
|
|
|
def setup_network(self):
|
2017-09-01 18:47:13 +02:00
|
|
|
self.add_nodes(3)
|
2017-09-21 19:55:24 +02:00
|
|
|
# Start node0. We don't start the other nodes yet since
|
|
|
|
# we need to pre-mine a block with an invalid transaction
|
|
|
|
# signature so we can pass in the block hash as assumevalid.
|
2019-10-02 02:12:16 +02:00
|
|
|
self.start_node(0, extra_args=self.extra_args)
|
2017-03-27 09:49:11 +02:00
|
|
|
|
2017-11-08 19:10:43 +01:00
|
|
|
def send_blocks_until_disconnected(self, p2p_conn):
|
2017-03-27 09:49:11 +02:00
|
|
|
"""Keep sending blocks to the node until we're disconnected."""
|
|
|
|
for i in range(len(self.blocks)):
|
2018-06-24 01:28:13 +02:00
|
|
|
if not p2p_conn.is_connected:
|
2017-09-18 16:02:24 +02:00
|
|
|
break
|
2017-03-27 09:49:11 +02:00
|
|
|
try:
|
2017-11-08 19:10:43 +01:00
|
|
|
p2p_conn.send_message(msg_block(self.blocks[i]))
|
2021-01-22 15:58:07 +01:00
|
|
|
except IOError:
|
|
|
|
assert not p2p_conn.is_connected
|
2017-03-27 09:49:11 +02:00
|
|
|
break
|
|
|
|
|
|
|
|
def assert_blockchain_height(self, node, height):
|
|
|
|
"""Wait until the blockchain is no longer advancing and verify it's reached the expected height."""
|
|
|
|
last_height = node.getblock(node.getbestblockhash())['height']
|
|
|
|
timeout = 10
|
|
|
|
while True:
|
|
|
|
time.sleep(0.25)
|
|
|
|
current_height = node.getblock(node.getbestblockhash())['height']
|
|
|
|
if current_height != last_height:
|
|
|
|
last_height = current_height
|
|
|
|
if timeout < 0:
|
|
|
|
assert False, "blockchain too short after timeout: %d" % current_height
|
|
|
|
timeout - 0.25
|
|
|
|
continue
|
|
|
|
elif current_height > height:
|
|
|
|
assert False, "blockchain too long: %d" % current_height
|
|
|
|
elif current_height == height:
|
|
|
|
break
|
2017-09-21 19:55:24 +02:00
|
|
|
|
|
|
|
def run_test(self):
|
|
|
|
|
|
|
|
# Connect to node0
|
2017-11-08 19:10:43 +01:00
|
|
|
p2p0 = self.nodes[0].add_p2p_connection(BaseNode())
|
2017-09-21 19:55:24 +02:00
|
|
|
|
2017-12-12 12:52:33 +01:00
|
|
|
network_thread_start()
|
2017-11-08 19:10:43 +01:00
|
|
|
self.nodes[0].p2p.wait_for_verack()
|
2017-09-21 19:55:24 +02:00
|
|
|
|
|
|
|
# Build the blockchain
|
|
|
|
self.tip = int(self.nodes[0].getbestblockhash(), 16)
|
|
|
|
self.block_time = self.nodes[0].getblock(self.nodes[0].getbestblockhash())['time'] + 1
|
|
|
|
|
|
|
|
self.blocks = []
|
|
|
|
|
|
|
|
# Get a pubkey for the coinbase TXO
|
|
|
|
coinbase_key = CECKey()
|
|
|
|
coinbase_key.set_secretbytes(b"horsebattery")
|
|
|
|
coinbase_pubkey = coinbase_key.get_pubkey()
|
|
|
|
|
|
|
|
# Create the first block with a coinbase output to our key
|
|
|
|
height = 1
|
|
|
|
block = create_block(self.tip, create_coinbase(height, coinbase_pubkey), self.block_time)
|
|
|
|
self.blocks.append(block)
|
|
|
|
self.block_time += 1
|
|
|
|
block.solve()
|
|
|
|
# Save the coinbase for later
|
|
|
|
self.block1 = block
|
|
|
|
self.tip = block.sha256
|
|
|
|
height += 1
|
|
|
|
|
|
|
|
# Bury the block 100 deep so the coinbase output is spendable
|
|
|
|
for i in range(100):
|
|
|
|
block = create_block(self.tip, create_coinbase(height), self.block_time)
|
|
|
|
block.solve()
|
|
|
|
self.blocks.append(block)
|
|
|
|
self.tip = block.sha256
|
|
|
|
self.block_time += 1
|
|
|
|
height += 1
|
|
|
|
|
|
|
|
# Create a transaction spending the coinbase output with an invalid (null) signature
|
|
|
|
tx = CTransaction()
|
|
|
|
tx.vin.append(CTxIn(COutPoint(self.block1.vtx[0].sha256, 0), scriptSig=b""))
|
2017-03-27 09:49:11 +02:00
|
|
|
tx.vout.append(CTxOut(49 * 100000000, CScript([OP_TRUE])))
|
2017-09-21 19:55:24 +02:00
|
|
|
tx.calc_sha256()
|
|
|
|
|
|
|
|
block102 = create_block(self.tip, create_coinbase(height), self.block_time)
|
|
|
|
self.block_time += 1
|
|
|
|
block102.vtx.extend([tx])
|
|
|
|
block102.hashMerkleRoot = block102.calc_merkle_root()
|
|
|
|
block102.rehash()
|
|
|
|
block102.solve()
|
|
|
|
self.blocks.append(block102)
|
|
|
|
self.tip = block102.sha256
|
|
|
|
self.block_time += 1
|
|
|
|
height += 1
|
|
|
|
|
2019-06-21 13:55:53 +02:00
|
|
|
# Bury the assumed valid block 8400 deep (Dash needs 4x as much blocks to allow -assumevalid to work)
|
|
|
|
for i in range(8400):
|
2017-09-21 19:55:24 +02:00
|
|
|
block = create_block(self.tip, create_coinbase(height), self.block_time)
|
|
|
|
block.nVersion = 4
|
|
|
|
block.solve()
|
|
|
|
self.blocks.append(block)
|
|
|
|
self.tip = block.sha256
|
|
|
|
self.block_time += 1
|
|
|
|
height += 1
|
|
|
|
|
2017-12-12 12:52:33 +01:00
|
|
|
# We're adding new connections so terminate the network thread
|
|
|
|
self.nodes[0].disconnect_p2ps()
|
|
|
|
network_thread_join()
|
|
|
|
|
2017-09-21 19:55:24 +02:00
|
|
|
# Start node1 and node2 with assumevalid so they accept a block with a bad signature.
|
2019-10-02 02:12:16 +02:00
|
|
|
self.start_node(1, extra_args=self.extra_args + ["-assumevalid=" + hex(block102.sha256)])
|
|
|
|
self.start_node(2, extra_args=self.extra_args + ["-assumevalid=" + hex(block102.sha256)])
|
2017-12-12 12:52:33 +01:00
|
|
|
|
|
|
|
p2p0 = self.nodes[0].add_p2p_connection(BaseNode())
|
|
|
|
p2p1 = self.nodes[1].add_p2p_connection(BaseNode())
|
2017-11-08 19:10:43 +01:00
|
|
|
p2p2 = self.nodes[2].add_p2p_connection(BaseNode())
|
2017-12-12 12:52:33 +01:00
|
|
|
|
|
|
|
network_thread_start()
|
|
|
|
|
|
|
|
p2p0.wait_for_verack()
|
|
|
|
p2p1.wait_for_verack()
|
2017-11-08 19:10:43 +01:00
|
|
|
p2p2.wait_for_verack()
|
2017-09-21 19:55:24 +02:00
|
|
|
|
2019-06-21 13:55:53 +02:00
|
|
|
# Make sure nodes actually accept the many headers
|
2019-08-12 19:10:56 +02:00
|
|
|
self.mocktime = self.block_time
|
2019-08-09 01:14:11 +02:00
|
|
|
set_node_times(self.nodes, self.mocktime)
|
2019-06-21 13:55:53 +02:00
|
|
|
|
|
|
|
# send header lists to all three nodes.
|
|
|
|
# node0 does not need to receive all headers
|
|
|
|
# node1 must receive all headers as otherwise assumevalid is ignored in ConnectBlock
|
|
|
|
# node2 should NOT receive all headers to force skipping of the assumevalid check in ConnectBlock
|
2017-11-08 19:10:43 +01:00
|
|
|
p2p0.send_header_for_blocks(self.blocks[0:2000])
|
|
|
|
p2p1.send_header_for_blocks(self.blocks[0:2000])
|
|
|
|
p2p1.send_header_for_blocks(self.blocks[2000:4000])
|
|
|
|
p2p1.send_header_for_blocks(self.blocks[4000:6000])
|
|
|
|
p2p1.send_header_for_blocks(self.blocks[6000:8000])
|
|
|
|
p2p1.send_header_for_blocks(self.blocks[8000:])
|
|
|
|
p2p2.send_header_for_blocks(self.blocks[0:200])
|
2017-09-21 19:55:24 +02:00
|
|
|
|
2017-03-27 09:49:11 +02:00
|
|
|
# Send blocks to node0. Block 102 will be rejected.
|
2017-11-08 19:10:43 +01:00
|
|
|
self.send_blocks_until_disconnected(p2p0)
|
2017-03-27 09:49:11 +02:00
|
|
|
self.assert_blockchain_height(self.nodes[0], 101)
|
2017-09-21 19:55:24 +02:00
|
|
|
|
2019-06-21 13:57:51 +02:00
|
|
|
# Send 200 blocks to node1. All blocks, including block 102, will be accepted.
|
|
|
|
for i in range(200):
|
2017-11-08 19:10:43 +01:00
|
|
|
p2p1.send_message(msg_block(self.blocks[i]))
|
2019-06-21 13:57:51 +02:00
|
|
|
# Syncing so many blocks can take a while on slow systems. Give it plenty of time to sync.
|
2017-11-08 19:10:43 +01:00
|
|
|
p2p1.sync_with_ping(300)
|
2019-06-21 13:57:51 +02:00
|
|
|
assert_equal(self.nodes[1].getblock(self.nodes[1].getbestblockhash())['height'], 200)
|
2017-09-21 19:55:24 +02:00
|
|
|
|
2017-03-27 09:49:11 +02:00
|
|
|
# Send blocks to node2. Block 102 will be rejected.
|
2017-11-08 19:10:43 +01:00
|
|
|
self.send_blocks_until_disconnected(p2p2)
|
2017-03-27 09:49:11 +02:00
|
|
|
self.assert_blockchain_height(self.nodes[2], 101)
|
2017-09-21 19:55:24 +02:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2017-03-27 09:49:11 +02:00
|
|
|
AssumeValidTest().main()
|