17bb230d74
7148b74dc [tests] Functional tests must explicitly set num_nodes (John Newbery) 5448a1471 [tests] don't override __init__() in individual tests (John Newbery) 6cf094a02 [tests] Avoid passing around member variables in test_framework (John Newbery) 36b626867 [tests] TestNode: separate add_node from start_node (John Newbery) be2a2ab6a [tests] fix - use rpc_timeout as rpc timeout (John Newbery) Pull request description: Some additional tidyups after the introduction of TestNode: - commit 1 makes TestNode use the correct rpc timeout. This should have been included in #11077 - commit 2 separates `add_node()` from `start_node()` as originally discussed here: https://github.com/bitcoin/bitcoin/pull/10556#discussion_r121161453 with @kallewoof . The test writer no longer needs to assign to `self.nodes` when starting/stopping nodes. - commit 3 adds a `set_test_params()` method, so individual tests don't need to override `__init__()` and call `super().__init__()` Tree-SHA512: 0adb030623b96675b5c29e2890ce99ccd837ed05f721d0c91b35378c5ac01b6658174aac12f1f77402e1d38b61f39b3c43b4df85c96952565dde1cda05b0db84
132 lines
5.5 KiB
Python
Executable File
132 lines
5.5 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
# Copyright (c) 2017 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 message sending before handshake completion.
|
|
|
|
A node should never send anything other than VERSION/VERACK/REJECT until it's
|
|
received a VERACK.
|
|
|
|
This test connects to a node and sends it a few messages, trying to intice it
|
|
into sending us something it shouldn't.
|
|
"""
|
|
|
|
from test_framework.mininode import *
|
|
from test_framework.test_framework import BitcoinTestFramework
|
|
from test_framework.util import *
|
|
|
|
banscore = 10
|
|
|
|
class CLazyNode(NodeConnCB):
|
|
def __init__(self):
|
|
super().__init__()
|
|
self.unexpected_msg = False
|
|
self.ever_connected = False
|
|
|
|
def bad_message(self, message):
|
|
self.unexpected_msg = True
|
|
self.log.info("should not have received message: %s" % message.command)
|
|
|
|
def on_open(self, conn):
|
|
self.connected = True
|
|
self.ever_connected = True
|
|
|
|
def on_version(self, conn, message): self.bad_message(message)
|
|
def on_verack(self, conn, message): self.bad_message(message)
|
|
def on_reject(self, conn, message): self.bad_message(message)
|
|
def on_inv(self, conn, message): self.bad_message(message)
|
|
def on_addr(self, conn, message): self.bad_message(message)
|
|
def on_alert(self, conn, message): self.bad_message(message)
|
|
def on_getdata(self, conn, message): self.bad_message(message)
|
|
def on_getblocks(self, conn, message): self.bad_message(message)
|
|
def on_tx(self, conn, message): self.bad_message(message)
|
|
def on_block(self, conn, message): self.bad_message(message)
|
|
def on_getaddr(self, conn, message): self.bad_message(message)
|
|
def on_headers(self, conn, message): self.bad_message(message)
|
|
def on_getheaders(self, conn, message): self.bad_message(message)
|
|
def on_ping(self, conn, message): self.bad_message(message)
|
|
def on_mempool(self, conn): self.bad_message(message)
|
|
def on_pong(self, conn, message): self.bad_message(message)
|
|
def on_sendheaders(self, conn, message): self.bad_message(message)
|
|
def on_sendcmpct(self, conn, message): self.bad_message(message)
|
|
def on_cmpctblock(self, conn, message): self.bad_message(message)
|
|
def on_getblocktxn(self, conn, message): self.bad_message(message)
|
|
def on_blocktxn(self, conn, message): self.bad_message(message)
|
|
|
|
# Node that never sends a version. We'll use this to send a bunch of messages
|
|
# anyway, and eventually get disconnected.
|
|
class CNodeNoVersionBan(CLazyNode):
|
|
# send a bunch of veracks without sending a message. This should get us disconnected.
|
|
# NOTE: implementation-specific check here. Remove if bitcoind ban behavior changes
|
|
def on_open(self, conn):
|
|
super().on_open(conn)
|
|
for i in range(banscore):
|
|
self.send_message(msg_verack())
|
|
|
|
def on_reject(self, conn, message): pass
|
|
|
|
# Node that never sends a version. This one just sits idle and hopes to receive
|
|
# any message (it shouldn't!)
|
|
class CNodeNoVersionIdle(CLazyNode):
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
# Node that sends a version but not a verack.
|
|
class CNodeNoVerackIdle(CLazyNode):
|
|
def __init__(self):
|
|
self.version_received = False
|
|
super().__init__()
|
|
|
|
def on_reject(self, conn, message): pass
|
|
def on_verack(self, conn, message): pass
|
|
# When version is received, don't reply with a verack. Instead, see if the
|
|
# node will give us a message that it shouldn't. This is not an exhaustive
|
|
# list!
|
|
def on_version(self, conn, message):
|
|
self.version_received = True
|
|
conn.send_message(msg_ping())
|
|
conn.send_message(msg_getaddr())
|
|
|
|
class P2PLeakTest(BitcoinTestFramework):
|
|
def set_test_params(self):
|
|
self.num_nodes = 1
|
|
self.extra_args = [['-banscore='+str(banscore)]]
|
|
|
|
def run_test(self):
|
|
no_version_bannode = CNodeNoVersionBan()
|
|
no_version_idlenode = CNodeNoVersionIdle()
|
|
no_verack_idlenode = CNodeNoVerackIdle()
|
|
|
|
connections = []
|
|
connections.append(NodeConn('127.0.0.1', p2p_port(0), self.nodes[0], no_version_bannode, send_version=False))
|
|
connections.append(NodeConn('127.0.0.1', p2p_port(0), self.nodes[0], no_version_idlenode, send_version=False))
|
|
connections.append(NodeConn('127.0.0.1', p2p_port(0), self.nodes[0], no_verack_idlenode))
|
|
no_version_bannode.add_connection(connections[0])
|
|
no_version_idlenode.add_connection(connections[1])
|
|
no_verack_idlenode.add_connection(connections[2])
|
|
|
|
NetworkThread().start() # Start up network handling in another thread
|
|
|
|
wait_until(lambda: no_version_bannode.ever_connected, timeout=10, lock=mininode_lock)
|
|
wait_until(lambda: no_version_idlenode.ever_connected, timeout=10, lock=mininode_lock)
|
|
wait_until(lambda: no_verack_idlenode.version_received, timeout=10, lock=mininode_lock)
|
|
|
|
# Mine a block and make sure that it's not sent to the connected nodes
|
|
self.nodes[0].generate(1)
|
|
|
|
#Give the node enough time to possibly leak out a message
|
|
time.sleep(5)
|
|
|
|
#This node should have been banned
|
|
assert not no_version_bannode.connected
|
|
|
|
[conn.disconnect_node() for conn in connections]
|
|
|
|
# Make sure no unexpected messages came in
|
|
assert(no_version_bannode.unexpected_msg == False)
|
|
assert(no_version_idlenode.unexpected_msg == False)
|
|
assert(no_verack_idlenode.unexpected_msg == False)
|
|
|
|
if __name__ == '__main__':
|
|
P2PLeakTest().main()
|