mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
merge bitcoin#22879: Fix format string in deserialize error
This commit is contained in:
parent
825bba1312
commit
c9a645f814
@ -251,7 +251,7 @@ void CAddrMan::Unserialize(Stream& s_)
|
|||||||
throw std::ios_base::failure(strprintf(
|
throw std::ios_base::failure(strprintf(
|
||||||
"Unsupported format of addrman database: %u. It is compatible with formats >=%u, "
|
"Unsupported format of addrman database: %u. It is compatible with formats >=%u, "
|
||||||
"but the maximum supported by this version of %s is %u.",
|
"but the maximum supported by this version of %s is %u.",
|
||||||
format, lowest_compatible, PACKAGE_NAME, static_cast<uint8_t>(FILE_FORMAT)));
|
uint8_t{format}, uint8_t{lowest_compatible}, PACKAGE_NAME, uint8_t{FILE_FORMAT}));
|
||||||
}
|
}
|
||||||
|
|
||||||
s >> nKey;
|
s >> nKey;
|
||||||
|
87
test/functional/feature_addrman.py
Executable file
87
test/functional/feature_addrman.py
Executable file
@ -0,0 +1,87 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
# Copyright (c) 2021 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 addrman functionality"""
|
||||||
|
|
||||||
|
import os
|
||||||
|
import struct
|
||||||
|
|
||||||
|
from test_framework.messages import ser_uint256, hash256
|
||||||
|
from test_framework.p2p import MAGIC_BYTES
|
||||||
|
from test_framework.test_framework import BitcoinTestFramework
|
||||||
|
from test_framework.util import assert_equal
|
||||||
|
|
||||||
|
|
||||||
|
def serialize_addrman(*, format=1, lowest_compatible=3):
|
||||||
|
new = []
|
||||||
|
tried = []
|
||||||
|
INCOMPATIBILITY_BASE = 32
|
||||||
|
r = MAGIC_BYTES["regtest"]
|
||||||
|
r += struct.pack("B", format)
|
||||||
|
r += struct.pack("B", INCOMPATIBILITY_BASE + lowest_compatible)
|
||||||
|
r += ser_uint256(1)
|
||||||
|
r += struct.pack("i", len(new))
|
||||||
|
r += struct.pack("i", len(tried))
|
||||||
|
ADDRMAN_NEW_BUCKET_COUNT = 1 << 10
|
||||||
|
r += struct.pack("i", ADDRMAN_NEW_BUCKET_COUNT ^ (1 << 30))
|
||||||
|
for _ in range(ADDRMAN_NEW_BUCKET_COUNT):
|
||||||
|
r += struct.pack("i", 0)
|
||||||
|
checksum = hash256(r)
|
||||||
|
r += checksum
|
||||||
|
return r
|
||||||
|
|
||||||
|
|
||||||
|
def write_addrman(peers_dat, **kwargs):
|
||||||
|
with open(peers_dat, "wb") as f:
|
||||||
|
f.write(serialize_addrman(**kwargs))
|
||||||
|
|
||||||
|
|
||||||
|
class AddrmanTest(BitcoinTestFramework):
|
||||||
|
def set_test_params(self):
|
||||||
|
self.num_nodes = 1
|
||||||
|
|
||||||
|
def run_test(self):
|
||||||
|
peers_dat = os.path.join(self.nodes[0].datadir, self.chain, "peers.dat")
|
||||||
|
|
||||||
|
self.log.info("Check that mocked addrman is valid")
|
||||||
|
self.stop_node(0)
|
||||||
|
write_addrman(peers_dat)
|
||||||
|
with self.nodes[0].assert_debug_log(["Loaded 0 addresses from peers.dat"]):
|
||||||
|
self.start_node(0, extra_args=["-checkaddrman=1"])
|
||||||
|
assert_equal(self.nodes[0].getnodeaddresses(), [])
|
||||||
|
|
||||||
|
self.log.info("Check that addrman from future cannot be read")
|
||||||
|
self.stop_node(0)
|
||||||
|
write_addrman(peers_dat, lowest_compatible=111)
|
||||||
|
with self.nodes[0].assert_debug_log([
|
||||||
|
f'ERROR: DeserializeDB: Deserialize or I/O error - Unsupported format of addrman database: 1. It is compatible with formats >=111, but the maximum supported by this version of {self.config["environment"]["PACKAGE_NAME"]} is 3.',
|
||||||
|
"Recreating peers.dat",
|
||||||
|
]):
|
||||||
|
self.start_node(0)
|
||||||
|
assert_equal(self.nodes[0].getnodeaddresses(), [])
|
||||||
|
|
||||||
|
self.log.info("Check that corrupt addrman cannot be read")
|
||||||
|
self.stop_node(0)
|
||||||
|
with open(peers_dat, "wb") as f:
|
||||||
|
f.write(serialize_addrman()[:-1])
|
||||||
|
with self.nodes[0].assert_debug_log([
|
||||||
|
"ERROR: DeserializeDB: Deserialize or I/O error - CAutoFile::read: end of file",
|
||||||
|
"Recreating peers.dat",
|
||||||
|
]):
|
||||||
|
self.start_node(0)
|
||||||
|
assert_equal(self.nodes[0].getnodeaddresses(), [])
|
||||||
|
|
||||||
|
self.log.info("Check that missing addrman is recreated")
|
||||||
|
self.stop_node(0)
|
||||||
|
os.remove(peers_dat)
|
||||||
|
with self.nodes[0].assert_debug_log([
|
||||||
|
f"Missing or invalid file {peers_dat}",
|
||||||
|
"Recreating peers.dat",
|
||||||
|
]):
|
||||||
|
self.start_node(0)
|
||||||
|
assert_equal(self.nodes[0].getnodeaddresses(), [])
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
AddrmanTest().main()
|
@ -24,9 +24,6 @@ class AnchorsTest(BitcoinTestFramework):
|
|||||||
def set_test_params(self):
|
def set_test_params(self):
|
||||||
self.num_nodes = 1
|
self.num_nodes = 1
|
||||||
|
|
||||||
def setup_network(self):
|
|
||||||
self.setup_nodes()
|
|
||||||
|
|
||||||
def run_test(self):
|
def run_test(self):
|
||||||
node_anchors_path = os.path.join(
|
node_anchors_path = os.path.join(
|
||||||
self.nodes[0].datadir, "regtest", "anchors.dat"
|
self.nodes[0].datadir, "regtest", "anchors.dat"
|
||||||
|
@ -315,6 +315,7 @@ BASE_SCRIPTS = [
|
|||||||
'p2p_add_connections.py',
|
'p2p_add_connections.py',
|
||||||
'p2p_blockfilters.py',
|
'p2p_blockfilters.py',
|
||||||
'p2p_message_capture.py',
|
'p2p_message_capture.py',
|
||||||
|
'feature_addrman.py',
|
||||||
'feature_asmap.py',
|
'feature_asmap.py',
|
||||||
'feature_includeconf.py',
|
'feature_includeconf.py',
|
||||||
'mempool_unbroadcast.py',
|
'mempool_unbroadcast.py',
|
||||||
|
Loading…
Reference in New Issue
Block a user