2016-03-19 16:58:06 -03:00
|
|
|
#!/usr/bin/env python3
|
2024-05-25 04:20:20 -04:00
|
|
|
# Copyright (c) 2014-present The Bitcoin Core developers
|
2015-06-16 13:21:03 -03:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2017-04-19 12:14:53 -03:00
|
|
|
"""Test node disconnect and ban behavior"""
|
2017-05-09 18:20:24 -03:00
|
|
|
import time
|
2023-01-02 15:26:23 -03:00
|
|
|
from pathlib import Path
|
2015-06-16 13:21:03 -03:00
|
|
|
|
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
2017-08-16 13:17:34 -03:00
|
|
|
from test_framework.util import (
|
|
|
|
assert_equal,
|
2017-07-12 10:33:46 -04:00
|
|
|
assert_raises_rpc_error,
|
2017-08-16 13:17:34 -03:00
|
|
|
)
|
2015-06-16 13:21:03 -03:00
|
|
|
|
2017-04-19 12:14:53 -03:00
|
|
|
class DisconnectBanTest(BitcoinTestFramework):
|
2017-06-09 18:21:21 -04:00
|
|
|
def set_test_params(self):
|
2017-04-19 12:25:31 -03:00
|
|
|
self.num_nodes = 2
|
2019-12-06 11:37:49 -03:00
|
|
|
self.supports_cli = False
|
2016-05-14 08:01:31 -03:00
|
|
|
|
2015-06-16 13:21:03 -03:00
|
|
|
def run_test(self):
|
2024-05-25 04:20:20 -04:00
|
|
|
self.log.info("Connect nodes both ways")
|
2020-09-04 16:37:24 -04:00
|
|
|
# By default, the test framework sets up an addnode connection from
|
|
|
|
# node 1 --> node0. By connecting node0 --> node 1, we're left with
|
|
|
|
# the two nodes being connected both ways.
|
|
|
|
# Topology will look like: node0 <--> node1
|
2020-09-17 04:46:07 -03:00
|
|
|
self.connect_nodes(0, 1)
|
2019-09-16 10:22:49 -03:00
|
|
|
|
2017-04-19 12:30:36 -03:00
|
|
|
self.log.info("Test setban and listbanned RPCs")
|
|
|
|
|
|
|
|
self.log.info("setban: successfully ban single IP address")
|
2017-04-19 12:25:31 -03:00
|
|
|
assert_equal(len(self.nodes[1].getpeerinfo()), 2) # node1 should have 2 connections to node0 at this point
|
2018-11-13 15:42:36 -03:00
|
|
|
self.nodes[1].setban(subnet="127.0.0.1", command="add")
|
2020-08-17 11:50:47 -04:00
|
|
|
self.wait_until(lambda: len(self.nodes[1].getpeerinfo()) == 0, timeout=10)
|
2017-04-19 12:25:31 -03:00
|
|
|
assert_equal(len(self.nodes[1].getpeerinfo()), 0) # all nodes must be disconnected at this point
|
|
|
|
assert_equal(len(self.nodes[1].listbanned()), 1)
|
2017-04-19 12:30:36 -03:00
|
|
|
|
|
|
|
self.log.info("clearbanned: successfully clear ban list")
|
2017-04-19 12:25:31 -03:00
|
|
|
self.nodes[1].clearbanned()
|
|
|
|
assert_equal(len(self.nodes[1].listbanned()), 0)
|
2023-01-02 15:26:23 -03:00
|
|
|
|
|
|
|
self.log.info('Test banlist database recreation')
|
|
|
|
self.stop_node(1)
|
|
|
|
target_file = self.nodes[1].chain_path / "banlist.json"
|
|
|
|
Path.unlink(target_file)
|
|
|
|
with self.nodes[1].assert_debug_log(["Recreating the banlist database"]):
|
|
|
|
self.start_node(1)
|
|
|
|
|
|
|
|
assert Path.exists(target_file)
|
|
|
|
assert_equal(self.nodes[1].listbanned(), [])
|
|
|
|
|
2017-04-19 12:25:31 -03:00
|
|
|
self.nodes[1].setban("127.0.0.0/24", "add")
|
2017-04-19 12:30:36 -03:00
|
|
|
|
|
|
|
self.log.info("setban: fail to ban an already banned subnet")
|
2017-04-19 12:25:31 -03:00
|
|
|
assert_equal(len(self.nodes[1].listbanned()), 1)
|
2017-07-12 10:33:46 -04:00
|
|
|
assert_raises_rpc_error(-23, "IP/Subnet already banned", self.nodes[1].setban, "127.0.0.1", "add")
|
2017-04-19 12:30:36 -03:00
|
|
|
|
|
|
|
self.log.info("setban: fail to ban an invalid subnet")
|
2017-07-12 10:33:46 -04:00
|
|
|
assert_raises_rpc_error(-30, "Error: Invalid IP/Subnet", self.nodes[1].setban, "127.0.0.1/42", "add")
|
2017-04-19 12:25:31 -03:00
|
|
|
assert_equal(len(self.nodes[1].listbanned()), 1) # still only one banned ip because 127.0.0.1 is within the range of 127.0.0.0/24
|
2017-04-19 12:30:36 -03:00
|
|
|
|
2023-01-05 15:11:32 -03:00
|
|
|
self.log.info("setban: fail to ban with past absolute timestamp")
|
|
|
|
assert_raises_rpc_error(-8, "Error: Absolute timestamp is in the past", self.nodes[1].setban, "127.27.0.1", "add", 123, True)
|
|
|
|
|
2017-04-19 12:30:36 -03:00
|
|
|
self.log.info("setban remove: fail to unban a non-banned subnet")
|
2017-07-12 10:33:46 -04:00
|
|
|
assert_raises_rpc_error(-30, "Error: Unban failed", self.nodes[1].setban, "127.0.0.1", "remove")
|
2017-04-19 12:25:31 -03:00
|
|
|
assert_equal(len(self.nodes[1].listbanned()), 1)
|
2017-04-19 12:30:36 -03:00
|
|
|
|
|
|
|
self.log.info("setban remove: successfully unban subnet")
|
2017-04-19 12:25:31 -03:00
|
|
|
self.nodes[1].setban("127.0.0.0/24", "remove")
|
|
|
|
assert_equal(len(self.nodes[1].listbanned()), 0)
|
|
|
|
self.nodes[1].clearbanned()
|
|
|
|
assert_equal(len(self.nodes[1].listbanned()), 0)
|
2015-06-19 10:27:37 -03:00
|
|
|
|
2017-04-19 12:30:36 -03:00
|
|
|
self.log.info("setban: test persistence across node restart")
|
2017-05-09 18:20:24 -03:00
|
|
|
# Set the mocktime so we can control when bans expire
|
|
|
|
old_time = int(time.time())
|
|
|
|
self.nodes[1].setmocktime(old_time)
|
2022-01-06 15:33:43 -03:00
|
|
|
self.nodes[1].setban("127.0.0.0/32", "add")
|
|
|
|
self.nodes[1].setban("127.0.0.0/24", "add")
|
2024-03-20 18:52:26 -03:00
|
|
|
self.nodes[1].setban("pg6mmjiyjmcrsslvykfwnntlaru7p5svn6y2ymmju6nubxndf4pscryd.onion", "add")
|
2017-04-19 12:25:31 -03:00
|
|
|
self.nodes[1].setban("192.168.0.1", "add", 1) # ban for 1 seconds
|
|
|
|
self.nodes[1].setban("2001:4d48:ac57:400:cacf:e9ff:fe1d:9c63/19", "add", 1000) # ban for 1000 seconds
|
|
|
|
listBeforeShutdown = self.nodes[1].listbanned()
|
2017-04-19 13:42:39 -03:00
|
|
|
assert_equal("192.168.0.1/32", listBeforeShutdown[2]['address'])
|
2023-01-06 09:12:02 -03:00
|
|
|
|
|
|
|
self.log.info("setban: test banning with absolute timestamp")
|
2024-05-25 04:20:20 -04:00
|
|
|
self.nodes[1].setban("192.168.0.2", "add", old_time + 120, absolute=True)
|
2023-01-06 09:12:02 -03:00
|
|
|
|
2024-03-20 18:52:26 -03:00
|
|
|
# Move time forward by 3 seconds so the fourth ban has expired
|
2017-05-09 18:20:24 -03:00
|
|
|
self.nodes[1].setmocktime(old_time + 3)
|
2024-03-20 18:52:26 -03:00
|
|
|
assert_equal(len(self.nodes[1].listbanned()), 5)
|
2015-06-19 10:27:37 -03:00
|
|
|
|
2021-12-27 11:39:07 -03:00
|
|
|
self.log.info("Test ban_duration and time_remaining")
|
|
|
|
for ban in self.nodes[1].listbanned():
|
2024-03-20 18:52:26 -03:00
|
|
|
if ban["address"] in ["127.0.0.0/32", "127.0.0.0/24", "pg6mmjiyjmcrsslvykfwnntlaru7p5svn6y2ymmju6nubxndf4pscryd.onion"]:
|
2021-12-27 11:39:07 -03:00
|
|
|
assert_equal(ban["ban_duration"], 86400)
|
|
|
|
assert_equal(ban["time_remaining"], 86397)
|
|
|
|
elif ban["address"] == "2001:4d48:ac57:400:cacf:e9ff:fe1d:9c63/19":
|
|
|
|
assert_equal(ban["ban_duration"], 1000)
|
|
|
|
assert_equal(ban["time_remaining"], 997)
|
2023-01-06 09:12:02 -03:00
|
|
|
elif ban["address"] == "192.168.0.2/32":
|
|
|
|
assert_equal(ban["ban_duration"], 120)
|
|
|
|
assert_equal(ban["time_remaining"], 117)
|
2021-12-27 11:39:07 -03:00
|
|
|
|
2024-06-04 15:50:09 -04:00
|
|
|
# Keep mocktime, to avoid ban expiry when restart takes longer than
|
|
|
|
# time_remaining
|
|
|
|
self.restart_node(1, extra_args=[f"-mocktime={old_time+4}"])
|
2015-06-19 10:27:37 -03:00
|
|
|
|
2017-04-19 12:25:31 -03:00
|
|
|
listAfterShutdown = self.nodes[1].listbanned()
|
2015-07-05 10:44:22 -03:00
|
|
|
assert_equal("127.0.0.0/24", listAfterShutdown[0]['address'])
|
|
|
|
assert_equal("127.0.0.0/32", listAfterShutdown[1]['address'])
|
2023-01-06 09:12:02 -03:00
|
|
|
assert_equal("192.168.0.2/32", listAfterShutdown[2]['address'])
|
|
|
|
assert_equal("/19" in listAfterShutdown[3]['address'], True)
|
2024-03-20 18:52:26 -03:00
|
|
|
assert_equal("pg6mmjiyjmcrsslvykfwnntlaru7p5svn6y2ymmju6nubxndf4pscryd.onion", listAfterShutdown[4]['address'])
|
2015-06-19 10:27:37 -03:00
|
|
|
|
2017-04-19 12:25:31 -03:00
|
|
|
# Clear ban lists
|
|
|
|
self.nodes[1].clearbanned()
|
2024-05-25 04:20:20 -04:00
|
|
|
self.log.info("Connect nodes both ways")
|
2020-09-17 04:46:07 -03:00
|
|
|
self.connect_nodes(0, 1)
|
|
|
|
self.connect_nodes(1, 0)
|
2017-04-19 12:25:31 -03:00
|
|
|
|
2017-04-25 11:11:31 -03:00
|
|
|
self.log.info("Test disconnectnode RPCs")
|
2017-04-19 12:30:36 -03:00
|
|
|
|
2017-04-19 14:44:16 -03:00
|
|
|
self.log.info("disconnectnode: fail to disconnect when calling with address and nodeid")
|
|
|
|
address1 = self.nodes[0].getpeerinfo()[0]['addr']
|
2022-12-12 10:08:21 -03:00
|
|
|
node1 = self.nodes[0].getpeerinfo()[0]["id"]
|
2017-07-12 10:33:46 -04:00
|
|
|
assert_raises_rpc_error(-32602, "Only one of address and nodeid should be provided.", self.nodes[0].disconnectnode, address=address1, nodeid=node1)
|
2017-04-19 14:44:16 -03:00
|
|
|
|
|
|
|
self.log.info("disconnectnode: fail to disconnect when calling with junk address")
|
2017-07-12 10:33:46 -04:00
|
|
|
assert_raises_rpc_error(-29, "Node not found in connected nodes", self.nodes[0].disconnectnode, address="221B Baker Street")
|
2017-04-19 14:44:16 -03:00
|
|
|
|
2017-04-19 14:35:51 -03:00
|
|
|
self.log.info("disconnectnode: successfully disconnect node by address")
|
|
|
|
address1 = self.nodes[0].getpeerinfo()[0]['addr']
|
|
|
|
self.nodes[0].disconnectnode(address=address1)
|
2023-02-20 10:35:20 -03:00
|
|
|
self.wait_until(lambda: len(self.nodes[1].getpeerinfo()) == 1, timeout=10)
|
2017-04-19 14:35:51 -03:00
|
|
|
assert not [node for node in self.nodes[0].getpeerinfo() if node['addr'] == address1]
|
2015-06-16 13:21:03 -03:00
|
|
|
|
2017-04-19 12:30:36 -03:00
|
|
|
self.log.info("disconnectnode: successfully reconnect node")
|
2020-09-17 04:46:07 -03:00
|
|
|
self.connect_nodes(0, 1) # reconnect the node
|
2017-04-19 14:44:16 -03:00
|
|
|
assert_equal(len(self.nodes[0].getpeerinfo()), 2)
|
2017-04-19 14:35:51 -03:00
|
|
|
assert [node for node in self.nodes[0].getpeerinfo() if node['addr'] == address1]
|
2015-06-16 13:21:03 -03:00
|
|
|
|
2017-04-19 14:44:16 -03:00
|
|
|
self.log.info("disconnectnode: successfully disconnect node by node id")
|
|
|
|
id1 = self.nodes[0].getpeerinfo()[0]['id']
|
|
|
|
self.nodes[0].disconnectnode(nodeid=id1)
|
2023-02-20 10:35:20 -03:00
|
|
|
self.wait_until(lambda: len(self.nodes[1].getpeerinfo()) == 1, timeout=10)
|
2017-04-19 14:44:16 -03:00
|
|
|
assert not [node for node in self.nodes[0].getpeerinfo() if node['id'] == id1]
|
|
|
|
|
2015-06-16 13:21:03 -03:00
|
|
|
if __name__ == '__main__':
|
2024-07-16 17:05:14 -04:00
|
|
|
DisconnectBanTest(__file__).main()
|