6#include <bitcoin-build-config.h>
31class DbNotFoundError :
public std::exception
33 using std::exception::exception;
36template <
typename Stream,
typename Data>
37bool SerializeDB(Stream& stream,
const Data&
data)
43 stream << hashwriter.GetHash();
44 }
catch (
const std::exception& e) {
45 LogError(
"%s: Serialize or I/O error - %s\n", __func__, e.what());
52template <
typename Data>
63 if (fileout.IsNull()) {
71 if (!SerializeDB(fileout,
data)) {
76 if (!fileout.Commit()) {
87 LogError(
"%s: Rename-into-place failed\n", __func__);
94template <
typename Stream,
typename Data>
95void DeserializeDB(Stream& stream, Data&&
data,
bool fCheckSum =
true)
100 verifier >> pchMsgTmp;
102 if (pchMsgTmp !=
Params().MessageStart()) {
103 throw std::runtime_error{
"Invalid network magic number"};
113 if (hashTmp != verifier.GetHash()) {
114 throw std::runtime_error{
"Checksum mismatch, data corrupted"};
119template <
typename Data>
120void DeserializeFileDB(
const fs::path& path, Data&&
data)
124 if (filein.IsNull()) {
125 throw DbNotFoundError{};
127 DeserializeDB(filein,
data);
132 : m_banlist_dat(ban_list_path +
".dat"),
133 m_banlist_json(ban_list_path +
".json")
139 std::vector<std::string> errors;
144 for (
const auto& err : errors) {
160 std::map<std::string, common::SettingsValue> settings;
161 std::vector<std::string> errors;
164 for (
const auto& err : errors) {
172 }
catch (
const std::runtime_error& e) {
183 return SerializeFileDB(
"peers", pathAddr, addr);
188 DeserializeDB(ssPeers, addr,
false);
196 auto addrman{std::make_unique<AddrMan>(netgroupman, deterministic, check_addrman)};
198 const auto start{SteadyClock::now()};
201 DeserializeFileDB(path_addr, *addrman);
202 LogPrintf(
"Loaded %i addresses from peers.dat %dms\n", addrman->Size(), Ticks<std::chrono::milliseconds>(SteadyClock::now() - start));
203 }
catch (
const DbNotFoundError&) {
205 addrman = std::make_unique<AddrMan>(netgroupman, deterministic, check_addrman);
210 return util::Error{
strprintf(
_(
"Failed to rename invalid peers.dat file. Please move or delete it and try again."))};
213 addrman = std::make_unique<AddrMan>(netgroupman, deterministic, check_addrman);
216 }
catch (
const std::exception& e) {
217 return util::Error{
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."),
231 std::vector<CAddress> anchors;
235 }
catch (
const std::exception&) {
239 fs::remove(anchors_db_path);
bool DumpPeerAddresses(const ArgsManager &args, const AddrMan &addr)
std::vector< CAddress > ReadAnchors(const fs::path &anchors_db_path)
Read the anchor IP address database (anchors.dat)
util::Result< std::unique_ptr< AddrMan > > LoadAddrman(const NetGroupManager &netgroupman, const ArgsManager &args)
Returns an error string on failure.
void ReadFromStream(AddrMan &addr, DataStream &ssPeers)
Only used by tests.
void DumpAnchors(const fs::path &anchors_db_path, const std::vector< CAddress > &anchors)
Dump the anchor IP address database (anchors.dat)
static constexpr int32_t DEFAULT_ADDRMAN_CONSISTENCY_CHECKS
Default for -checkaddrman.
bool HasTestOption(const ArgsManager &args, const std::string &test_option)
Checks if a particular test option is present in -test command-line arg options.
const CChainParams & Params()
Return the currently selected parameters.
Stochastic address manager.
fs::path GetDataDirNet() const
Get data directory path with appended network identifier.
int64_t GetIntArg(const std::string &strArg, int64_t nDefault) const
Return integer argument or default value.
Non-refcounted RAII wrapper for FILE*.
static constexpr SerParams V2_DISK
bool Write(const banmap_t &banSet)
const fs::path m_banlist_dat
bool Read(banmap_t &banSet)
Read the banlist from disk.
static constexpr const char * JSON_KEY
JSON key under which the data is stored in the json database.
const fs::path m_banlist_json
CBanDB(fs::path ban_list_path)
const MessageStartChars & MessageStart() const
Double ended buffer combining vector and stream-like interfaces.
Reads data from an underlying stream, while hashing the read data.
Writes data to an underlying source stream, while hashing the written data.
I rand() noexcept
Generate a random integer in its entire (non-negative) range.
Path class wrapper to block calls to the fs::path(std::string) implicit constructor and the fs::path:...
bool RenameOver(fs::path src, fs::path dest)
Rename src to dest.
std::array< uint8_t, 4 > MessageStartChars
bool WriteSettings(const fs::path &path, const std::map< std::string, SettingsValue > &values, std::vector< std::string > &errors)
Write settings file.
bool ReadSettings(const fs::path &path, std::map< std::string, SettingsValue > &values, std::vector< std::string > &errors)
Read settings file.
static path u8path(const std::string &utf8_str)
static auto quoted(const std::string &s)
static bool exists(const path &p)
static std::string PathToString(const path &path)
Convert path object to a byte string.
FILE * fopen(const fs::path &p, const char *mode)
void BanMapFromJson(const UniValue &bans_json, banmap_t &bans)
Convert a JSON array to a banmap_t object.
UniValue BanMapToJson(const banmap_t &bans)
Convert a banmap_t object to a JSON array.
std::map< CSubNet, CBanEntry > banmap_t
#define LOG_TIME_SECONDS(end_msg)
bilingual_str _(ConstevalStringLiteral str)
Translation function.