2016-05-06 11:23:48 +02:00
|
|
|
#!/usr/bin/env python3
|
2023-08-16 19:27:31 +02:00
|
|
|
# Copyright (c) 2015-2020 The Bitcoin Core developers
|
2016-05-06 11:23:48 +02:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
2015-12-07 14:47:58 +01:00
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2019-01-07 10:55:35 +01:00
|
|
|
"""Test node responses to invalid transactions.
|
|
|
|
|
2018-02-13 10:30:41 +01:00
|
|
|
In this test we connect to one node over p2p, and test tx requests."""
|
2015-12-07 14:47:58 +01:00
|
|
|
|
2019-01-02 14:42:21 +01:00
|
|
|
from test_framework.blocktools import create_block, create_coinbase
|
Merge #13054: tests: Enable automatic detection of undefined names in Python tests scripts. Remove wildcard imports.
68400d8b96 tests: Use explicit imports (practicalswift)
Pull request description:
Enable automatic detection of undefined names in Python tests scripts. Remove wildcard imports.
Wildcard imports make it unclear which names are present in the namespace, confusing both readers and many automated tools.
An additional benefit of not using wildcard imports in tests scripts is that readers of a test script then can infer the rough testing scope just by looking at the imports.
Before this commit:
```
$ contrib/devtools/lint-python.sh | head -10
./test/functional/feature_rbf.py:8:1: F403 'from test_framework.util import *' used; unable to detect undefined names
./test/functional/feature_rbf.py:9:1: F403 'from test_framework.script import *' used; unable to detect undefined names
./test/functional/feature_rbf.py:10:1: F403 'from test_framework.mininode import *' used; unable to detect undefined names
./test/functional/feature_rbf.py:15:12: F405 bytes_to_hex_str may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:17:58: F405 CScript may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:25:13: F405 COIN may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:26:31: F405 satoshi_round may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:26:60: F405 COIN may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:30:41: F405 satoshi_round may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:30:68: F405 COIN may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
$
```
After this commit:
```
$ contrib/devtools/lint-python.sh | head -10
$
```
Tree-SHA512: 3f826d39cffb6438388e5efcb20a9622ff8238247e882d68f7b38609877421b2a8e10e9229575f8eb6a8fa42dec4256986692e92922c86171f750a0e887438d9
2018-08-13 14:24:43 +02:00
|
|
|
from test_framework.messages import (
|
2018-04-26 19:32:17 +02:00
|
|
|
COIN,
|
|
|
|
COutPoint,
|
|
|
|
CTransaction,
|
|
|
|
CTxIn,
|
|
|
|
CTxOut,
|
|
|
|
)
|
2024-01-15 20:35:29 +01:00
|
|
|
from test_framework.p2p import P2PDataStore
|
2018-02-13 10:30:41 +01:00
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
2018-04-26 19:32:17 +02:00
|
|
|
from test_framework.util import (
|
|
|
|
assert_equal,
|
|
|
|
)
|
2019-01-02 14:42:21 +01:00
|
|
|
from data import invalid_txs
|
2015-12-07 14:47:58 +01:00
|
|
|
|
2020-04-19 13:04:31 +02:00
|
|
|
|
2018-02-13 10:30:41 +01:00
|
|
|
class InvalidTxRequestTest(BitcoinTestFramework):
|
2015-12-07 14:47:58 +01:00
|
|
|
|
2017-09-01 18:47:13 +02:00
|
|
|
def set_test_params(self):
|
2015-12-07 14:47:58 +01:00
|
|
|
self.num_nodes = 1
|
2019-07-16 22:07:14 +02:00
|
|
|
self.extra_args = [[
|
|
|
|
"-acceptnonstdtxn=1",
|
2023-08-25 11:13:46 +02:00
|
|
|
"-maxorphantxsize=1",
|
2019-07-16 22:07:14 +02:00
|
|
|
]]
|
2017-09-01 18:47:13 +02:00
|
|
|
self.setup_clean_chain = True
|
2018-04-26 19:32:17 +02:00
|
|
|
|
|
|
|
def bootstrap_p2p(self, *, num_connections=1):
|
|
|
|
"""Add a P2P connection to the node.
|
|
|
|
|
|
|
|
Helper to connect and wait for version handshake."""
|
|
|
|
for _ in range(num_connections):
|
|
|
|
self.nodes[0].add_p2p_connection(P2PDataStore())
|
|
|
|
|
|
|
|
def reconnect_p2p(self, **kwargs):
|
|
|
|
"""Tear down and bootstrap the P2P connection to the node.
|
|
|
|
|
|
|
|
The node gets disconnected several times in this test. This helper
|
|
|
|
method reconnects the p2p and restarts the network thread."""
|
|
|
|
self.nodes[0].disconnect_p2ps()
|
|
|
|
self.bootstrap_p2p(**kwargs)
|
2015-12-07 14:47:58 +01:00
|
|
|
|
|
|
|
def run_test(self):
|
2018-02-13 10:30:41 +01:00
|
|
|
node = self.nodes[0] # convenience reference to the node
|
|
|
|
|
2018-04-26 19:32:17 +02:00
|
|
|
self.bootstrap_p2p() # Add one p2p connection to the node
|
2015-12-07 14:47:58 +01:00
|
|
|
|
2018-02-13 10:30:41 +01:00
|
|
|
best_block = self.nodes[0].getbestblockhash()
|
|
|
|
tip = int(best_block, 16)
|
|
|
|
best_block_time = self.nodes[0].getblock(best_block)['time']
|
|
|
|
block_time = best_block_time + 1
|
2015-12-07 14:47:58 +01:00
|
|
|
|
2018-02-13 10:30:41 +01:00
|
|
|
self.log.info("Create a new block with an anyone-can-spend coinbase.")
|
2015-12-07 14:47:58 +01:00
|
|
|
height = 1
|
2018-02-13 10:30:41 +01:00
|
|
|
block = create_block(tip, create_coinbase(height), block_time)
|
2015-12-07 14:47:58 +01:00
|
|
|
block.solve()
|
|
|
|
# Save the coinbase for later
|
2018-02-13 10:30:41 +01:00
|
|
|
block1 = block
|
|
|
|
tip = block.sha256
|
2019-10-04 13:36:18 +02:00
|
|
|
|
|
|
|
# Create a second one to test orphan resolution via block receival
|
|
|
|
height += 1
|
|
|
|
block_time += 1
|
|
|
|
block = create_block(tip, create_coinbase(height), block_time)
|
|
|
|
block.solve()
|
|
|
|
# Save the coinbase for later
|
|
|
|
block2 = block
|
|
|
|
tip = block.sha256
|
2020-09-25 14:18:21 +02:00
|
|
|
node.p2ps[0].send_blocks_and_test([block1, block2], node, success=True)
|
2015-12-07 14:47:58 +01:00
|
|
|
|
2018-02-13 10:30:41 +01:00
|
|
|
self.log.info("Mature the block.")
|
2018-09-17 20:00:41 +02:00
|
|
|
self.nodes[0].generatetoaddress(100, self.nodes[0].get_deterministic_priv_key().address)
|
2015-12-07 14:47:58 +01:00
|
|
|
|
2019-01-02 14:42:21 +01:00
|
|
|
# Iterate through a list of known invalid transaction types, ensuring each is
|
|
|
|
# rejected. Some are consensus invalid and some just violate policy.
|
|
|
|
for BadTxTemplate in invalid_txs.iter_all_templates():
|
|
|
|
self.log.info("Testing invalid transaction: %s", BadTxTemplate.__name__)
|
|
|
|
template = BadTxTemplate(spend_block=block1)
|
|
|
|
tx = template.get_tx()
|
2020-09-25 14:18:21 +02:00
|
|
|
node.p2ps[0].send_txs_and_test(
|
2019-01-02 14:42:21 +01:00
|
|
|
[tx], node, success=False,
|
|
|
|
expect_disconnect=template.expect_disconnect,
|
|
|
|
reject_reason=template.reject_reason,
|
|
|
|
)
|
|
|
|
|
|
|
|
if template.expect_disconnect:
|
|
|
|
self.log.info("Reconnecting to peer")
|
|
|
|
self.reconnect_p2p()
|
2018-04-26 19:32:17 +02:00
|
|
|
|
|
|
|
# Make two p2p connections to provide the node with orphans
|
|
|
|
# * p2ps[0] will send valid orphan txs (one with low fee)
|
|
|
|
# * p2ps[1] will send an invalid orphan tx (and is later disconnected for that)
|
|
|
|
self.reconnect_p2p(num_connections=2)
|
|
|
|
|
|
|
|
self.log.info('Test orphan transaction handling ... ')
|
2019-10-04 13:36:18 +02:00
|
|
|
self.test_orphan_tx_handling(block1.vtx[0].sha256, False)
|
2020-04-19 13:04:31 +02:00
|
|
|
|
|
|
|
self.log.info('Test orphan transaction handling, resolve via block')
|
2023-08-25 11:13:46 +02:00
|
|
|
self.restart_node(0, ["-acceptnonstdtxn=1", '-persistmempool=0', '-maxorphantxsize=1'])
|
|
|
|
|
2019-10-04 13:36:18 +02:00
|
|
|
self.reconnect_p2p(num_connections=2)
|
|
|
|
self.test_orphan_tx_handling(block2.vtx[0].sha256, True)
|
|
|
|
|
|
|
|
def test_orphan_tx_handling(self, base_tx, resolve_via_block):
|
|
|
|
node = self.nodes[0] # convenience reference to the node
|
|
|
|
|
2021-07-19 12:39:22 +02:00
|
|
|
# Create a root transaction that we withhold until all dependent transactions
|
2018-04-26 19:32:17 +02:00
|
|
|
# are sent out and in the orphan cache
|
2018-05-12 16:33:07 +02:00
|
|
|
SCRIPT_PUB_KEY_OP_TRUE = b'\x51\x75' * 15 + b'\x51'
|
2018-04-26 19:32:17 +02:00
|
|
|
tx_withhold = CTransaction()
|
2019-10-04 13:36:18 +02:00
|
|
|
tx_withhold.vin.append(CTxIn(outpoint=COutPoint(base_tx, 0)))
|
2018-05-12 16:33:07 +02:00
|
|
|
tx_withhold.vout.append(CTxOut(nValue=50 * COIN - 12000, scriptPubKey=SCRIPT_PUB_KEY_OP_TRUE))
|
2018-04-26 19:32:17 +02:00
|
|
|
tx_withhold.calc_sha256()
|
|
|
|
|
|
|
|
# Our first orphan tx with some outputs to create further orphan txs
|
|
|
|
tx_orphan_1 = CTransaction()
|
|
|
|
tx_orphan_1.vin.append(CTxIn(outpoint=COutPoint(tx_withhold.sha256, 0)))
|
2018-05-12 16:33:07 +02:00
|
|
|
tx_orphan_1.vout = [CTxOut(nValue=10 * COIN, scriptPubKey=SCRIPT_PUB_KEY_OP_TRUE)] * 3
|
2018-04-26 19:32:17 +02:00
|
|
|
tx_orphan_1.calc_sha256()
|
|
|
|
|
|
|
|
# A valid transaction with low fee
|
|
|
|
tx_orphan_2_no_fee = CTransaction()
|
|
|
|
tx_orphan_2_no_fee.vin.append(CTxIn(outpoint=COutPoint(tx_orphan_1.sha256, 0)))
|
2018-05-12 16:33:07 +02:00
|
|
|
tx_orphan_2_no_fee.vout.append(CTxOut(nValue=10 * COIN, scriptPubKey=SCRIPT_PUB_KEY_OP_TRUE))
|
2018-04-26 19:32:17 +02:00
|
|
|
|
|
|
|
# A valid transaction with sufficient fee
|
|
|
|
tx_orphan_2_valid = CTransaction()
|
|
|
|
tx_orphan_2_valid.vin.append(CTxIn(outpoint=COutPoint(tx_orphan_1.sha256, 1)))
|
2018-05-12 16:33:07 +02:00
|
|
|
tx_orphan_2_valid.vout.append(CTxOut(nValue=10 * COIN - 12000, scriptPubKey=SCRIPT_PUB_KEY_OP_TRUE))
|
2018-04-26 19:32:17 +02:00
|
|
|
tx_orphan_2_valid.calc_sha256()
|
|
|
|
|
|
|
|
# An invalid transaction with negative fee
|
|
|
|
tx_orphan_2_invalid = CTransaction()
|
|
|
|
tx_orphan_2_invalid.vin.append(CTxIn(outpoint=COutPoint(tx_orphan_1.sha256, 2)))
|
2018-05-12 16:33:07 +02:00
|
|
|
tx_orphan_2_invalid.vout.append(CTxOut(nValue=11 * COIN, scriptPubKey=SCRIPT_PUB_KEY_OP_TRUE))
|
2023-08-25 11:13:46 +02:00
|
|
|
tx_orphan_2_invalid.calc_sha256()
|
2018-04-26 19:32:17 +02:00
|
|
|
|
|
|
|
self.log.info('Send the orphans ... ')
|
|
|
|
# Send valid orphan txs from p2ps[0]
|
2020-09-25 14:18:21 +02:00
|
|
|
node.p2ps[0].send_txs_and_test([tx_orphan_1, tx_orphan_2_no_fee, tx_orphan_2_valid], node, success=False)
|
2018-04-26 19:32:17 +02:00
|
|
|
# Send invalid tx from p2ps[1]
|
|
|
|
node.p2ps[1].send_txs_and_test([tx_orphan_2_invalid], node, success=False)
|
|
|
|
|
|
|
|
assert_equal(0, node.getmempoolinfo()['size']) # Mempool should be empty
|
|
|
|
assert_equal(2, len(node.getpeerinfo())) # p2ps[1] is still connected
|
|
|
|
|
|
|
|
self.log.info('Send the withhold tx ... ')
|
2019-10-04 13:36:18 +02:00
|
|
|
if resolve_via_block:
|
|
|
|
# Test orphan handling/resolution by publishing the withhold TX via a mined block
|
|
|
|
prev_block = node.getblockheader(node.getbestblockhash())
|
|
|
|
block = create_block(int(prev_block['hash'], 16), create_coinbase(prev_block['height'] + 1), prev_block["time"] + 1)
|
|
|
|
block.vtx.append(tx_withhold)
|
|
|
|
block.hashMerkleRoot = block.calc_merkle_root()
|
|
|
|
block.solve()
|
2020-09-25 14:18:21 +02:00
|
|
|
node.p2ps[0].send_blocks_and_test([block], node, success=True)
|
2019-10-04 13:36:18 +02:00
|
|
|
else:
|
2018-09-08 06:56:51 +02:00
|
|
|
with node.assert_debug_log(expected_msgs=["bad-txns-in-belowout"]):
|
|
|
|
# Test orphan handling/resolution by publishing the withhold TX via the mempool
|
2020-09-25 14:18:21 +02:00
|
|
|
node.p2ps[0].send_txs_and_test([tx_withhold], node, success=True)
|
2018-04-26 19:32:17 +02:00
|
|
|
|
|
|
|
# Transactions that should end up in the mempool
|
|
|
|
expected_mempool = {
|
|
|
|
t.hash
|
|
|
|
for t in [
|
|
|
|
tx_withhold, # The transaction that is the root for all orphans
|
|
|
|
tx_orphan_1, # The orphan transaction that splits the coins
|
|
|
|
tx_orphan_2_valid, # The valid transaction (with sufficient fee)
|
|
|
|
]
|
|
|
|
}
|
2021-08-26 02:34:49 +02:00
|
|
|
# Transactions that do not end up in the mempool:
|
|
|
|
# tx_orphan_2_no_fee, because it has too low fee (p2ps[0] is not disconnected for relaying that tx)
|
|
|
|
# tx_orphan_2_invalid, because it has negative fee (p2ps[1] is disconnected for relaying that tx)
|
2019-10-04 13:36:18 +02:00
|
|
|
if resolve_via_block:
|
|
|
|
# This TX has appeared in a block instead of being broadcasted via the mempool
|
|
|
|
expected_mempool.remove(tx_withhold.hash)
|
2015-12-07 14:47:58 +01:00
|
|
|
|
2020-08-27 08:21:53 +02:00
|
|
|
self.wait_until(lambda: 1 == len(node.getpeerinfo()), timeout=12) # p2ps[1] is no longer connected
|
2018-04-26 19:32:17 +02:00
|
|
|
assert_equal(expected_mempool, set(node.getrawmempool()))
|
2018-03-13 22:09:43 +01:00
|
|
|
|
2023-08-25 11:13:46 +02:00
|
|
|
self.log.info('Test orphan pool overflow')
|
|
|
|
# this test is different with bitcoin due to dashpay/dash#3121
|
|
|
|
# we have a limit based on size in megabytes, not by amount of txes
|
|
|
|
# one tx is 91byte; 1Mb / 4451byte = 224; need to send at least 225
|
|
|
|
orphan_tx_pool = [CTransaction() for _ in range(225)]
|
|
|
|
for i in range(len(orphan_tx_pool)):
|
|
|
|
orphan_tx_pool[i].vin.append(CTxIn(outpoint=COutPoint(i, 333)))
|
|
|
|
for j in range(110):
|
|
|
|
orphan_tx_pool[i].vout.append(CTxOut(nValue=COIN // 10, scriptPubKey=SCRIPT_PUB_KEY_OP_TRUE))
|
|
|
|
|
|
|
|
with node.assert_debug_log(['mapOrphan overflow, removed 1 tx']):
|
2020-09-25 14:18:21 +02:00
|
|
|
node.p2ps[0].send_txs_and_test(orphan_tx_pool, node, success=False)
|
2023-08-25 11:13:46 +02:00
|
|
|
|
|
|
|
rejected_parent = CTransaction()
|
|
|
|
rejected_parent.vin.append(CTxIn(outpoint=COutPoint(tx_orphan_2_invalid.sha256, 0)))
|
|
|
|
rejected_parent.vout.append(CTxOut(nValue=11 * COIN, scriptPubKey=SCRIPT_PUB_KEY_OP_TRUE))
|
|
|
|
rejected_parent.rehash()
|
|
|
|
# TODO: somehow it fails on `block` stage without 'not keeping orphan'
|
|
|
|
#with node.assert_debug_log(['not keeping orphan with rejected parents {}'.format(rejected_parent.hash)]):
|
2020-09-25 14:18:21 +02:00
|
|
|
node.p2ps[0].send_txs_and_test([rejected_parent], node, success=False)
|
2023-08-25 11:13:46 +02:00
|
|
|
|
2015-12-07 14:47:58 +01:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
InvalidTxRequestTest().main()
|