mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-07-28 18:15:05 +02:00
Merge bitcoin/bitcoin#29412: p2p: Don't process mutated blocks
d8087adc7e
[test] IsBlockMutated unit tests (dergoegge)1ed2c98297
Add transaction_identifier::size to allow Span conversion (dergoegge)1ec6bbeb8d
[validation] Cache merkle root and witness commitment checks (dergoegge)5bf4f5ba32
[test] Add regression test for #27608 (dergoegge)49257c0304
[net processing] Don't process mutated blocks (dergoegge)2d8495e080
[validation] Merkle root malleation should be caught by IsBlockMutated (dergoegge)66abce1d98
[validation] Introduce IsBlockMutated (dergoegge)e7669e1343
[refactor] Cleanup merkle root checks (dergoegge)95bddb930a
[validation] Isolate merkle root checks (dergoegge) Pull request description: This PR proposes to check for mutated blocks early as a defense-in-depth mitigation against attacks leveraging mutated blocks. We introduce `IsBlockMutated` which catches all known forms of block malleation and use it to do an early mutation check whenever we receive a `block` message. We have observed attacks that abused mutated blocks in the past, which could have been prevented by simply not processing mutated blocks (e.g. https://github.com/bitcoin/bitcoin/pull/27608 for which a regression test is included in this PR). ACKs for top commit: achow101: ACKd8087adc7e
maflcko: ACKd8087adc7e
🏄 fjahr: Code review ACKd8087adc7e
sr-gi: Code review ACKd8087adc7e
Tree-SHA512: 618ff4ea7f168e10f07504d3651290efbb1bb2ab3b838ffff3527c028caf6c52dedad18d04d3dbc627977479710930e200f2dfae18a08f627efe7e64a57e535f
This commit is contained in:
96
test/functional/p2p_mutated_blocks.py
Executable file
96
test/functional/p2p_mutated_blocks.py
Executable file
@@ -0,0 +1,96 @@
|
||||
#!/usr/bin/env python3
|
||||
# Copyright (c) The Bitcoin Core developers
|
||||
# Distributed under the MIT software license, see the accompanying
|
||||
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||
|
||||
"""
|
||||
Test that an attacker can't degrade compact block relay by sending unsolicited
|
||||
mutated blocks to clear in-flight blocktxn requests from other honest peers.
|
||||
"""
|
||||
|
||||
from test_framework.p2p import P2PInterface
|
||||
from test_framework.messages import (
|
||||
BlockTransactions,
|
||||
msg_cmpctblock,
|
||||
msg_block,
|
||||
msg_blocktxn,
|
||||
HeaderAndShortIDs,
|
||||
)
|
||||
from test_framework.test_framework import BitcoinTestFramework
|
||||
from test_framework.blocktools import (
|
||||
COINBASE_MATURITY,
|
||||
create_block,
|
||||
add_witness_commitment,
|
||||
NORMAL_GBT_REQUEST_PARAMS,
|
||||
)
|
||||
from test_framework.util import assert_equal
|
||||
from test_framework.wallet import MiniWallet
|
||||
import copy
|
||||
|
||||
class MutatedBlocksTest(BitcoinTestFramework):
|
||||
def set_test_params(self):
|
||||
self.setup_clean_chain = True
|
||||
self.num_nodes = 1
|
||||
|
||||
def run_test(self):
|
||||
self.wallet = MiniWallet(self.nodes[0])
|
||||
self.generate(self.wallet, COINBASE_MATURITY)
|
||||
|
||||
honest_relayer = self.nodes[0].add_outbound_p2p_connection(P2PInterface(), p2p_idx=0, connection_type="outbound-full-relay")
|
||||
attacker = self.nodes[0].add_p2p_connection(P2PInterface())
|
||||
|
||||
# Create new block with two transactions (coinbase + 1 self-transfer).
|
||||
# The self-transfer transaction is needed to trigger a compact block
|
||||
# `getblocktxn` roundtrip.
|
||||
tx = self.wallet.create_self_transfer()["tx"]
|
||||
block = create_block(tmpl=self.nodes[0].getblocktemplate(NORMAL_GBT_REQUEST_PARAMS), txlist=[tx])
|
||||
add_witness_commitment(block)
|
||||
block.solve()
|
||||
|
||||
# Create mutated version of the block by changing the transaction
|
||||
# version on the self-transfer.
|
||||
mutated_block = copy.deepcopy(block)
|
||||
mutated_block.vtx[1].nVersion = 4
|
||||
|
||||
# Announce the new block via a compact block through the honest relayer
|
||||
cmpctblock = HeaderAndShortIDs()
|
||||
cmpctblock.initialize_from_block(block, use_witness=True)
|
||||
honest_relayer.send_message(msg_cmpctblock(cmpctblock.to_p2p()))
|
||||
|
||||
# Wait for a `getblocktxn` that attempts to fetch the self-transfer
|
||||
def self_transfer_requested():
|
||||
if not honest_relayer.last_message.get('getblocktxn'):
|
||||
return False
|
||||
|
||||
get_block_txn = honest_relayer.last_message['getblocktxn']
|
||||
return get_block_txn.block_txn_request.blockhash == block.sha256 and \
|
||||
get_block_txn.block_txn_request.indexes == [1]
|
||||
honest_relayer.wait_until(self_transfer_requested, timeout=5)
|
||||
|
||||
# Block at height 101 should be the only one in flight from peer 0
|
||||
peer_info_prior_to_attack = self.nodes[0].getpeerinfo()
|
||||
assert_equal(peer_info_prior_to_attack[0]['id'], 0)
|
||||
assert_equal([101], peer_info_prior_to_attack[0]["inflight"])
|
||||
|
||||
# Attempt to clear the honest relayer's download request by sending the
|
||||
# mutated block (as the attacker).
|
||||
with self.nodes[0].assert_debug_log(expected_msgs=["bad-txnmrklroot, hashMerkleRoot mismatch"]):
|
||||
attacker.send_message(msg_block(mutated_block))
|
||||
# Attacker should get disconnected for sending a mutated block
|
||||
attacker.wait_for_disconnect(timeout=5)
|
||||
|
||||
# Block at height 101 should *still* be the only block in-flight from
|
||||
# peer 0
|
||||
peer_info_after_attack = self.nodes[0].getpeerinfo()
|
||||
assert_equal(peer_info_after_attack[0]['id'], 0)
|
||||
assert_equal([101], peer_info_after_attack[0]["inflight"])
|
||||
|
||||
# The honest relayer should be able to complete relaying the block by
|
||||
# sending the blocktxn that was requested.
|
||||
block_txn = msg_blocktxn()
|
||||
block_txn.block_transactions = BlockTransactions(blockhash=block.sha256, transactions=[tx])
|
||||
honest_relayer.send_and_ping(block_txn)
|
||||
assert_equal(self.nodes[0].getbestblockhash(), block.hash)
|
||||
|
||||
if __name__ == '__main__':
|
||||
MutatedBlocksTest().main()
|
@@ -308,6 +308,7 @@ BASE_SCRIPTS = [
|
||||
'wallet_crosschain.py',
|
||||
'mining_basic.py',
|
||||
'feature_signet.py',
|
||||
'p2p_mutated_blocks.py',
|
||||
'wallet_implicitsegwit.py --legacy-wallet',
|
||||
'rpc_named_arguments.py',
|
||||
'feature_startupnotify.py',
|
||||
|
Reference in New Issue
Block a user