merge bitcoin#24201: Avoid InitError when downgrading peers.dat

This commit is contained in:
Kittywhiskers Van Gogh 2022-01-29 21:58:59 +09:00
parent cdcaf2278c
commit 40a22e457a
No known key found for this signature in database
GPG Key ID: 30CD0C065E5C4AAD
4 changed files with 34 additions and 20 deletions

View File

@ -206,6 +206,15 @@ std::optional<bilingual_str> LoadAddrman(const std::vector<bool>& asmap, const A
addrman = std::make_unique<AddrMan>(asmap, /* deterministic */ false, /* consistency_check_ratio */ check_addrman); addrman = std::make_unique<AddrMan>(asmap, /* deterministic */ false, /* consistency_check_ratio */ check_addrman);
LogPrintf("Creating peers.dat because of invalid or corrupt file (%s)\n", e.what()); LogPrintf("Creating peers.dat because of invalid or corrupt file (%s)\n", e.what());
DumpPeerAddresses(args, *addrman); DumpPeerAddresses(args, *addrman);
} catch (const InvalidAddrManVersionError&) {
if (!RenameOver(path_addr, (fs::path)path_addr + ".bak")) {
addrman = nullptr;
return strprintf(_("Failed to rename invalid peers.dat file. Please move or delete it and try again."));
}
// Addrman can be in an inconsistent state after failure, reset it
addrman = std::make_unique<AddrMan>(asmap, /* deterministic */ false, /* consistency_check_ratio */ check_addrman);
LogPrintf("Creating new peers.dat because the file version was not compatible (%s). Original backed up to peers.dat.bak\n", fs::quoted(fs::PathToString(path_addr)));
DumpPeerAddresses(args, *addrman);
} catch (const std::exception& e) { } catch (const std::exception& e) {
addrman = nullptr; addrman = nullptr;
return strprintf(_("Invalid or corrupt peers.dat (%s). If you believe this is a bug, please report it to %s. As a workaround, you can move the file (%s) out of the way (rename, move, or delete) to have a new one created on the next start."), return strprintf(_("Invalid or corrupt peers.dat (%s). If you believe this is a bug, please report it to %s. As a workaround, you can move the file (%s) out of the way (rename, move, or delete) to have a new one created on the next start."),

View File

@ -250,7 +250,7 @@ void AddrManImpl::Unserialize(Stream& s_)
s >> compat; s >> compat;
const uint8_t lowest_compatible = compat - INCOMPATIBILITY_BASE; const uint8_t lowest_compatible = compat - INCOMPATIBILITY_BASE;
if (lowest_compatible > FILE_FORMAT) { if (lowest_compatible > FILE_FORMAT) {
throw std::ios_base::failure(strprintf( throw InvalidAddrManVersionError(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.",
uint8_t{format}, uint8_t{lowest_compatible}, PACKAGE_NAME, uint8_t{FILE_FORMAT})); uint8_t{format}, uint8_t{lowest_compatible}, PACKAGE_NAME, uint8_t{FILE_FORMAT}));

View File

@ -17,6 +17,22 @@
#include <utility> #include <utility>
#include <vector> #include <vector>
class DbInconsistentError : public std::exception
{
using std::exception::exception;
const std::string error;
public:
explicit DbInconsistentError(const std::string _error) : error{_error} {}
const char* what() const noexcept override { return error.c_str(); }
};
class InvalidAddrManVersionError : public std::ios_base::failure
{
public:
InvalidAddrManVersionError(std::string msg) : std::ios_base::failure(msg) { }
};
class AddrInfo; class AddrInfo;
class AddrManImpl; class AddrManImpl;
@ -48,16 +64,6 @@ struct AddressPosition {
: tried{tried_in}, multiplicity{multiplicity_in}, bucket{bucket_in}, position{position_in} {} : tried{tried_in}, multiplicity{multiplicity_in}, bucket{bucket_in}, position{position_in} {}
}; };
class DbInconsistentError : public std::exception
{
using std::exception::exception;
const std::string error;
public:
explicit DbInconsistentError(const std::string _error) : error{_error} {}
const char* what() const noexcept override { return error.c_str(); }
};
/** Stochastic address manager /** Stochastic address manager
* *
* Design goals: * Design goals:

View File

@ -67,17 +67,16 @@ class AddrmanTest(BitcoinTestFramework):
self.start_node(0, extra_args=["-checkaddrman=1"]) self.start_node(0, extra_args=["-checkaddrman=1"])
assert_equal(self.nodes[0].getnodeaddresses(), []) assert_equal(self.nodes[0].getnodeaddresses(), [])
self.log.info("Check that addrman from future cannot be read") self.log.info("Check that addrman from future is overwritten with new addrman")
self.stop_node(0) self.stop_node(0)
write_addrman(peers_dat, lowest_compatible=111) write_addrman(peers_dat, lowest_compatible=111)
self.nodes[0].assert_start_raises_init_error( assert_equal(os.path.exists(peers_dat + ".bak"), False)
expected_msg=init_error( with self.nodes[0].assert_debug_log([
"Unsupported format of addrman database: 1. It is compatible with " f'Creating new peers.dat because the file version was not compatible ("{peers_dat}"). Original backed up to peers.dat.bak',
"formats >=111, but the maximum supported by this version of " ]):
f"{self.config['environment']['PACKAGE_NAME']} is 4.: (.+)" self.start_node(0)
), assert_equal(self.nodes[0].getnodeaddresses(), [])
match=ErrorMatch.FULL_REGEX, assert_equal(os.path.exists(peers_dat + ".bak"), True)
)
self.log.info("Check that corrupt addrman cannot be read (EOF)") self.log.info("Check that corrupt addrman cannot be read (EOF)")
self.stop_node(0) self.stop_node(0)