mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 04:52:59 +01:00
2da9982e55
aaaaad6ac95b402fe18d019d67897ced6b316ee0 scripted-diff: Bump copyright of files changed in 2019 (MarcoFalke)
Pull request description:
ACKs for top commit:
practicalswift:
ACK aaaaad6ac95b402fe18d019d67897ced6b316ee0
promag:
ACK aaaaad6ac95b402fe18d019d67897ced6b316ee0 🎉
fanquake:
ACK aaaaad6ac95b402fe18d019d67897ced6b316ee0 - going to merge this now because the year is over and conflicts are minimal.
Tree-SHA512: 58cb1f53bc4c1395b2766f36fabc7e2332e213780a802762fff0afd59468dad0c3265f553714d761c7a2c44ff90f7dc250f04458f4b2eb8eef8b94f8c9891321
120 lines
3.0 KiB
C++
120 lines
3.0 KiB
C++
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
// Copyright (c) 2009-2019 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef BITCOIN_ADDRDB_H
|
|
#define BITCOIN_ADDRDB_H
|
|
|
|
#include <fs.h>
|
|
#include <net_types.h> // For banmap_t
|
|
#include <serialize.h>
|
|
#include <univalue.h>
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class CAddress;
|
|
class CAddrMan;
|
|
class CDataStream;
|
|
|
|
class CBanEntry
|
|
{
|
|
public:
|
|
static const int CURRENT_VERSION=1;
|
|
int nVersion;
|
|
int64_t nCreateTime;
|
|
int64_t nBanUntil;
|
|
|
|
CBanEntry()
|
|
{
|
|
SetNull();
|
|
}
|
|
|
|
explicit CBanEntry(int64_t nCreateTimeIn)
|
|
{
|
|
SetNull();
|
|
nCreateTime = nCreateTimeIn;
|
|
}
|
|
|
|
/**
|
|
* Create a ban entry from JSON.
|
|
* @param[in] json A JSON representation of a ban entry, as created by `ToJson()`.
|
|
* @throw std::runtime_error if the JSON does not have the expected fields.
|
|
*/
|
|
explicit CBanEntry(const UniValue& json);
|
|
|
|
SERIALIZE_METHODS(CBanEntry, obj)
|
|
{
|
|
uint8_t ban_reason = 2; //! For backward compatibility
|
|
READWRITE(obj.nVersion, obj.nCreateTime, obj.nBanUntil, ban_reason);
|
|
}
|
|
|
|
void SetNull()
|
|
{
|
|
nVersion = CBanEntry::CURRENT_VERSION;
|
|
nCreateTime = 0;
|
|
nBanUntil = 0;
|
|
}
|
|
|
|
/**
|
|
* Generate a JSON representation of this ban entry.
|
|
* @return JSON suitable for passing to the `CBanEntry(const UniValue&)` constructor.
|
|
*/
|
|
UniValue ToJson() const;
|
|
};
|
|
|
|
/** Access to the (IP) address database (peers.dat) */
|
|
class CAddrDB
|
|
{
|
|
private:
|
|
fs::path pathAddr;
|
|
public:
|
|
CAddrDB();
|
|
bool Write(const CAddrMan& addr);
|
|
bool Read(CAddrMan& addr);
|
|
static bool Read(CAddrMan& addr, CDataStream& ssPeers);
|
|
};
|
|
|
|
/** Access to the banlist database (banlist.json) */
|
|
class CBanDB
|
|
{
|
|
private:
|
|
/**
|
|
* JSON key under which the data is stored in the json database.
|
|
*/
|
|
static constexpr const char* JSON_KEY = "banned_nets";
|
|
|
|
const fs::path m_banlist_dat;
|
|
const fs::path m_banlist_json;
|
|
public:
|
|
explicit CBanDB(fs::path ban_list_path);
|
|
bool Write(const banmap_t& banSet);
|
|
|
|
/**
|
|
* Read the banlist from disk.
|
|
* @param[out] banSet The loaded list. Set if `true` is returned, otherwise it is left
|
|
* in an undefined state.
|
|
* @return true on success
|
|
*/
|
|
bool Read(banmap_t& banSet);
|
|
};
|
|
|
|
/**
|
|
* Dump the anchor IP address database (anchors.dat)
|
|
*
|
|
* Anchors are last known outgoing block-relay-only peers that are
|
|
* tried to re-connect to on startup.
|
|
*/
|
|
void DumpAnchors(const fs::path& anchors_db_path, const std::vector<CAddress>& anchors);
|
|
|
|
/**
|
|
* Read the anchor IP address database (anchors.dat)
|
|
*
|
|
* Deleting anchors.dat is intentional as it avoids renewed peering to anchors after
|
|
* an unclean shutdown and thus potential exploitation of the anchor peer policy.
|
|
*/
|
|
std::vector<CAddress> ReadAnchors(const fs::path& anchors_db_path);
|
|
|
|
#endif // BITCOIN_ADDRDB_H
|