6#include <bitcoin-build-config.h>
38 std::vector<unsigned char> vchSourceGroupKey = netgroupman.
GetGroup(src);
39 uint64_t hash1 = (
HashWriter{} << nKey << netgroupman.
GetGroup(*
this) << vchSourceGroupKey).GetCheapHash();
46 uint64_t hash1 = (
HashWriter{} << nKey << (fNew ? uint8_t{
'N'} : uint8_t{
'K'}) << bucket <<
GetKey()).GetCheapHash();
56 if (
nTime > now + 10min) {
85 fChance *= pow(0.66, std::min(
nAttempts, 8));
91 : insecure_rand{deterministic}
92 , nKey{deterministic ?
uint256{1} : insecure_rand.rand256()}
93 , m_consistency_check_ratio{consistency_check_ratio}
94 , m_netgroupman{netgroupman}
96 for (
auto& bucket : vvNew) {
97 for (
auto& entry : bucket) {
101 for (
auto& bucket : vvTried) {
102 for (
auto& entry : bucket) {
113template <
typename Stream>
163 static constexpr uint8_t lowest_compatible = Format::V4_MULTIPORT;
172 std::unordered_map<nid_type, int> mapUnkIds;
174 for (
const auto& entry : mapInfo) {
175 mapUnkIds[entry.first] = nIds;
176 const AddrInfo& info = entry.second;
184 for (
const auto& entry : mapInfo) {
185 const AddrInfo& info = entry.second;
195 if (vvNew[bucket][i] != -1)
200 if (vvNew[bucket][i] != -1) {
201 int nIndex = mapUnkIds[vvNew[bucket][i]];
211template <
typename Stream>
219 s_ >> Using<CustomUintFormatter<1>>(
format);
228 "Corrupted addrman database: The compat value (%u) "
229 "is lower than the expected minimum value %u.",
235 "Unsupported format of addrman database: %u. It is compatible with formats >=%u, "
236 "but the maximum supported by this version of %s is %u.",
245 if (
format >= Format::V1_DETERMINISTIC) {
246 nUBuckets ^= (1 << 30);
250 throw std::ios_base::failure(
251 strprintf(
"Corrupt AddrMan serialization: nNew=%d, should be in [0, %d]",
257 throw std::ios_base::failure(
258 strprintf(
"Corrupt AddrMan serialization: nTried=%d, should be in [0, %d]",
264 for (
int n = 0; n < nNew; n++) {
269 vRandom.push_back(n);
276 for (
int n = 0; n < nTried; n++) {
282 && vvTried[nKBucket][nKBucketPos] == -1) {
285 vRandom.push_back(nIdCount);
286 mapInfo[nIdCount] = info;
287 mapAddr[info] = nIdCount;
288 vvTried[nKBucket][nKBucketPos] = nIdCount;
290 m_network_counts[info.
GetNetwork()].n_tried++;
300 std::vector<std::pair<int, int>> bucket_entries;
302 for (
int bucket = 0; bucket < nUBuckets; ++bucket) {
308 if (entry_index >= 0 && entry_index < nNew) {
309 bucket_entries.emplace_back(bucket, entry_index);
318 uint256 serialized_asmap_version;
319 if (
format >= Format::V2_ASMAP) {
320 s >> serialized_asmap_version;
323 serialized_asmap_version == supplied_asmap_version};
325 if (!restore_bucketing) {
329 for (
auto bucket_entry : bucket_entries) {
330 int bucket{bucket_entry.first};
331 const int entry_index{bucket_entry.second};
332 AddrInfo& info = mapInfo[entry_index];
343 if (restore_bucketing && vvNew[bucket][bucket_position] == -1) {
345 vvNew[bucket][bucket_position] = entry_index;
352 if (vvNew[bucket][bucket_position] == -1) {
353 vvNew[bucket][bucket_position] = entry_index;
361 for (
auto it = mapInfo.cbegin(); it != mapInfo.cend(); ) {
362 if (it->second.fInTried ==
false && it->second.nRefCount == 0) {
363 const auto itCopy = it++;
370 if (nLost + nLostUnk > 0) {
371 LogDebug(
BCLog::ADDRMAN,
"addrman lost %i new and %i tried addresses due to collisions or invalid addresses\n", nLostUnk, nLost);
375 if (check_code != 0) {
377 "Corrupt data. Consistency check failed with code %s",
386 const auto it = mapAddr.find(addr);
387 if (it == mapAddr.end())
390 *pnId = (*it).second;
391 const auto it2 = mapInfo.find((*it).second);
392 if (it2 != mapInfo.end())
393 return &(*it2).second;
402 mapInfo[nId] =
AddrInfo(addr, addrSource);
404 mapInfo[nId].nRandomPos = vRandom.size();
405 vRandom.push_back(nId);
410 return &mapInfo[nId];
417 if (nRndPos1 == nRndPos2)
420 assert(nRndPos1 < vRandom.size() && nRndPos2 < vRandom.size());
425 const auto it_1{mapInfo.find(nId1)};
426 const auto it_2{mapInfo.find(nId2)};
427 assert(it_1 != mapInfo.end());
428 assert(it_2 != mapInfo.end());
430 it_1->second.nRandomPos = nRndPos2;
431 it_2->second.nRandomPos = nRndPos1;
433 vRandom[nRndPos1] = nId2;
434 vRandom[nRndPos2] = nId1;
441 assert(mapInfo.contains(nId));
459 if (vvNew[nUBucket][nUBucketPos] != -1) {
460 nid_type nIdDelete = vvNew[nUBucket][nUBucketPos];
461 AddrInfo& infoDelete = mapInfo[nIdDelete];
464 vvNew[nUBucket][nUBucketPos] = -1;
481 if (vvNew[bucket][pos] == nId) {
482 vvNew[bucket][pos] = -1;
497 if (vvTried[nKBucket][nKBucketPos] != -1) {
499 nid_type nIdEvict = vvTried[nKBucket][nKBucketPos];
500 assert(mapInfo.contains(nIdEvict));
501 AddrInfo& infoOld = mapInfo[nIdEvict];
505 vvTried[nKBucket][nKBucketPos] = -1;
507 m_network_counts[infoOld.
GetNetwork()].n_tried--;
513 assert(vvNew[nUBucket][nUBucketPos] == -1);
517 vvNew[nUBucket][nUBucketPos] = nIdEvict;
519 m_network_counts[infoOld.
GetNetwork()].n_new++;
523 assert(vvTried[nKBucket][nKBucketPos] == -1);
525 vvTried[nKBucket][nKBucketPos] = nId;
528 m_network_counts[info.
GetNetwork()].n_tried++;
549 const auto update_interval{currently_online ? 1h : 24h};
550 if (pinfo->
nTime < addr.
nTime - update_interval - time_penalty) {
572 const int nFactor{1 << pinfo->
nRefCount};
573 if (insecure_rand.randrange(nFactor) != 0)
return false;
582 bool fInsert = vvNew[nUBucket][nUBucketPos] == -1;
583 if (vvNew[nUBucket][nUBucketPos] != nId) {
585 AddrInfo& infoExisting = mapInfo[vvNew[nUBucket][nUBucketPos]];
594 vvNew[nUBucket][nUBucketPos] = nId;
618 if (!pinfo)
return false;
641 if (test_before_evict && (vvTried[tried_bucket][tried_bucket_pos] != -1)) {
646 auto colliding_entry = mapInfo.find(vvTried[tried_bucket][tried_bucket_pos]);
648 colliding_entry != mapInfo.end() ? colliding_entry->second.ToStringAddrPort() :
"<unknown-addr>",
665 for (std::vector<CAddress>::const_iterator it = vAddr.begin(); it != vAddr.end(); it++) {
669 LogDebug(
BCLog::ADDRMAN,
"Added %i addresses (of %i) from %s: %i tried, %i new\n", added, vAddr.size(),
source.ToStringAddr(), nTried, nNew);
694std::pair<CAddress, NodeSeconds>
AddrManImpl::Select_(
bool new_only,
const std::unordered_set<Network>& networks)
const
698 if (vRandom.empty())
return {};
700 size_t new_count = nNew;
701 size_t tried_count = nTried;
703 if (!networks.empty()) {
706 for (
auto& network : networks) {
707 auto it = m_network_counts.find(network);
708 if (it == m_network_counts.end()) {
711 auto counts = it->second;
712 new_count += counts.n_new;
713 tried_count += counts.n_tried;
717 if (new_only && new_count == 0)
return {};
718 if (new_count + tried_count == 0)
return {};
723 if (new_only || tried_count == 0) {
724 search_tried =
false;
725 }
else if (new_count == 0) {
728 search_tried = insecure_rand.randbool();
734 double chance_factor = 1.0;
737 int bucket = insecure_rand.randrange(bucket_count);
746 node_id =
GetEntry(search_tried, bucket, position);
748 if (!networks.empty()) {
749 const auto it{mapInfo.find(node_id)};
750 if (
Assume(it != mapInfo.end()) && networks.contains(it->second.GetNetwork()))
break;
761 const auto it_found{mapInfo.find(node_id)};
762 assert(it_found != mapInfo.end());
763 const AddrInfo& info{it_found->second};
766 if (insecure_rand.randbits<30>() < chance_factor * info.GetChance() * (1 << 30)) {
767 LogDebug(
BCLog::ADDRMAN,
"Selected %s from %s\n", info.ToStringAddrPort(), search_tried ?
"tried" :
"new");
768 return {info, info.m_last_try};
772 chance_factor *= 1.2;
782 return vvTried[bucket][position];
786 return vvNew[bucket][position];
793std::vector<CAddress>
AddrManImpl::GetAddr_(
size_t max_addresses,
size_t max_pct, std::optional<Network> network,
const bool filtered)
const
798 size_t nNodes = vRandom.size();
800 max_pct = std::min(max_pct,
size_t{100});
801 nNodes = max_pct * nNodes / 100;
803 if (max_addresses != 0) {
804 nNodes = std::min(nNodes, max_addresses);
808 const auto now{Now<NodeSeconds>()};
809 std::vector<CAddress> addresses;
810 addresses.reserve(nNodes);
811 for (
unsigned int n = 0; n < vRandom.size(); n++) {
812 if (addresses.size() >= nNodes)
815 int nRndPos = insecure_rand.randrange(vRandom.size() - n) + n;
817 const auto it{mapInfo.find(vRandom[n])};
818 assert(it != mapInfo.end());
823 if (network != std::nullopt && ai.GetNetClass() != network)
continue;
826 if (ai.IsTerrible(now) && filtered)
continue;
828 addresses.push_back(ai);
839 std::vector<std::pair<AddrInfo, AddressPosition>> infos;
840 for (
int bucket = 0; bucket < bucket_count; ++bucket) {
850 infos.emplace_back(info, location);
871 const auto update_interval{20min};
872 if (time - info.
nTime > update_interval) {
900 bool erase_collision =
false;
903 if (!mapInfo.contains(id_new)) {
904 erase_collision =
true;
906 AddrInfo& info_new = mapInfo[id_new];
912 erase_collision =
true;
913 }
else if (vvTried[tried_bucket][tried_bucket_pos] != -1) {
916 nid_type id_old = vvTried[tried_bucket][tried_bucket_pos];
917 AddrInfo& info_old = mapInfo[id_old];
919 const auto current_time{Now<NodeSeconds>()};
923 erase_collision =
true;
931 Good_(info_new,
false, current_time);
932 erase_collision =
true;
939 Good_(info_new,
false, current_time);
940 erase_collision =
true;
943 Good_(info_new,
false, Now<NodeSeconds>());
944 erase_collision =
true;
948 if (erase_collision) {
969 if (!mapInfo.contains(id_new)) {
974 const AddrInfo& newInfo = mapInfo[id_new];
980 const AddrInfo& info_old = mapInfo[vvTried[tried_bucket][tried_bucket_pos]];
990 if (!addr_info)
return std::nullopt;
1011 if (!net.has_value()) {
1012 if (in_new.has_value()) {
1013 return *in_new ? nNew : nTried;
1015 return vRandom.size();
1018 if (
auto it = m_network_counts.find(*net); it != m_network_counts.end()) {
1019 auto net_count = it->second;
1020 if (in_new.has_value()) {
1021 return *in_new ? net_count.n_new : net_count.n_tried;
1023 return net_count.n_new + net_count.n_tried;
1039 LogError(
"ADDRMAN CONSISTENCY CHECK FAILED!!! err=%i", err);
1051 std::unordered_set<nid_type> setTried;
1052 std::unordered_map<nid_type, int> mapNew;
1053 std::unordered_map<Network, NewTriedCount> local_counts;
1055 if (vRandom.size() != (
size_t)(nTried + nNew))
1058 for (
const auto& entry : mapInfo) {
1060 const AddrInfo& info = entry.second;
1062 if (!TicksSinceEpoch<std::chrono::seconds>(info.
m_last_success)) {
1077 const auto it{mapAddr.find(info)};
1078 if (it == mapAddr.end() || it->second != n) {
1091 if (setTried.size() != (
size_t)nTried)
1093 if (mapNew.size() != (
size_t)nNew)
1098 if (vvTried[n][i] != -1) {
1099 if (!setTried.contains(vvTried[n][i]))
1101 const auto it{mapInfo.find(vvTried[n][i])};
1102 if (it == mapInfo.end() || it->second.GetTriedBucket(
nKey,
m_netgroupman) != n) {
1105 if (it->second.GetBucketPosition(
nKey,
false, n) != i) {
1108 setTried.erase(vvTried[n][i]);
1115 if (vvNew[n][i] != -1) {
1116 if (!mapNew.contains(vvNew[n][i]))
1118 const auto it{mapInfo.find(vvNew[n][i])};
1119 if (it == mapInfo.end() || it->second.GetBucketPosition(
nKey,
true, n) != i) {
1122 if (--mapNew[vvNew[n][i]] == 0)
1123 mapNew.erase(vvNew[n][i]);
1128 if (setTried.size())
1137 if (m_network_counts.size() < local_counts.size()) {
1140 for (
const auto& [net,
count] : m_network_counts) {
1141 if (local_counts[net].n_new !=
count.n_new || local_counts[net].n_tried !=
count.n_tried) {
1171 auto ret =
Good_(addr,
true, time);
1180 Attempt_(addr, fCountFailure, time);
1201std::pair<CAddress, NodeSeconds>
AddrManImpl::Select(
bool new_only,
const std::unordered_set<Network>& networks)
const
1205 auto addrRet =
Select_(new_only, networks);
1210std::vector<CAddress>
AddrManImpl::GetAddr(
size_t max_addresses,
size_t max_pct, std::optional<Network> network,
const bool filtered)
const
1214 auto addresses =
GetAddr_(max_addresses, max_pct, network, filtered);
1254 : m_impl(
std::make_unique<
AddrManImpl>(netgroupman, deterministic, consistency_check_ratio)) {}
1258template <
typename Stream>
1261 m_impl->Serialize<Stream>(s_);
1264template <
typename Stream>
1267 m_impl->Unserialize<Stream>(s_);
1278size_t AddrMan::Size(std::optional<Network> net, std::optional<bool> in_new)
const
1280 return m_impl->Size(net, in_new);
1290 return m_impl->Good(addr, time);
1295 m_impl->Attempt(addr, fCountFailure, time);
1300 m_impl->ResolveCollisions();
1305 return m_impl->SelectTriedCollision();
1308std::pair<CAddress, NodeSeconds>
AddrMan::Select(
bool new_only,
const std::unordered_set<Network>& networks)
const
1310 return m_impl->Select(new_only, networks);
1313std::vector<CAddress>
AddrMan::GetAddr(
size_t max_addresses,
size_t max_pct, std::optional<Network> network,
const bool filtered)
const
1315 return m_impl->GetAddr(max_addresses, max_pct, network, filtered);
1320 return m_impl->GetEntries(use_tried);
1325 m_impl->Connected(addr, time);
1330 m_impl->SetServices(addr, nServices);
1335 return m_impl->FindAddressEntry(addr);
static constexpr uint32_t ADDRMAN_NEW_BUCKETS_PER_SOURCE_GROUP
Over how many buckets entries with new addresses originating from a single group are spread.
static constexpr auto ADDRMAN_HORIZON
How old addresses can maximally be.
static constexpr int32_t ADDRMAN_MAX_FAILURES
How many successive failures are allowed ...
static constexpr auto ADDRMAN_MIN_FAIL
... in at least this duration
static constexpr auto ADDRMAN_TEST_WINDOW
The maximum time we'll spend trying to resolve a tried table collision.
static constexpr auto ADDRMAN_REPLACEMENT
How recent a successful connection should be before we allow an address to be evicted from tried.
static constexpr int32_t ADDRMAN_RETRIES
After how many failed attempts we give up on a new node.
static constexpr size_t ADDRMAN_SET_TRIED_COLLISION_SIZE
The maximum number of tried addr collisions to store.
static constexpr uint32_t ADDRMAN_TRIED_BUCKETS_PER_GROUP
Over how many buckets entries with tried addresses from a single group (/16 for IPv4) are spread.
static constexpr int32_t ADDRMAN_NEW_BUCKETS_PER_ADDRESS
Maximum number of times an address can occur in the new table.
static constexpr int ADDRMAN_TRIED_BUCKET_COUNT
static constexpr int ADDRMAN_BUCKET_SIZE
int64_t nid_type
User-defined type for the internally used nIds This used to be int, making it feasible for attackers ...
static constexpr int ADDRMAN_NEW_BUCKET_COUNT
#define Assume(val)
Assume is the identity function.
Extended statistics about a CAddress.
int GetNewBucket(const uint256 &nKey, const CNetAddr &src, const NetGroupManager &netgroupman) const
Calculate in which "new" bucket this entry belongs, given a certain source.
int GetTriedBucket(const uint256 &nKey, const NetGroupManager &netgroupman) const
Calculate in which "tried" bucket this entry belongs.
int nRandomPos
position in vRandom
int GetBucketPosition(const uint256 &nKey, bool fNew, int bucket) const
Calculate in which position of a bucket to store this entry.
bool fInTried
in tried set? (memory only)
NodeSeconds m_last_success
last successful connection by us
NodeSeconds m_last_count_attempt
last counted attempt (memory only)
NodeSeconds m_last_try
last try whatsoever by us (memory only)
double GetChance(NodeSeconds now=Now< NodeSeconds >()) const
Calculate the relative chance this entry should be given when selecting nodes to connect to.
bool IsTerrible(NodeSeconds now=Now< NodeSeconds >()) const
Determine whether the statistics about this entry are bad enough so that it can just be deleted.
int nRefCount
reference count in new sets (memory only)
int nAttempts
connection attempts since last successful attempt
void Connected(const CService &addr, NodeSeconds time=Now< NodeSeconds >())
We have successfully connected to this peer.
std::pair< CAddress, NodeSeconds > Select(bool new_only=false, const std::unordered_set< Network > &networks={}) const
Choose an address to connect to.
const std::unique_ptr< AddrManImpl > m_impl
void Attempt(const CService &addr, bool fCountFailure, NodeSeconds time=Now< NodeSeconds >())
Mark an entry as connection attempted to.
size_t Size(std::optional< Network > net=std::nullopt, std::optional< bool > in_new=std::nullopt) const
Return size information about addrman.
std::optional< AddressPosition > FindAddressEntry(const CAddress &addr)
Test-only function Find the address record in AddrMan and return information about its position.
std::vector< std::pair< AddrInfo, AddressPosition > > GetEntries(bool from_tried) const
Returns an information-location pair for all addresses in the selected addrman table.
std::vector< CAddress > GetAddr(size_t max_addresses, size_t max_pct, std::optional< Network > network, bool filtered=true) const
Return all or many randomly selected addresses, optionally by network.
void ResolveCollisions()
See if any to-be-evicted tried table entries have been tested and if so resolve the collisions.
bool Good(const CService &addr, NodeSeconds time=Now< NodeSeconds >())
Mark an address record as accessible and attempt to move it to addrman's tried table.
void Serialize(Stream &s_) const
void Unserialize(Stream &s_)
AddrMan(const NetGroupManager &netgroupman, bool deterministic, int32_t consistency_check_ratio)
std::pair< CAddress, NodeSeconds > SelectTriedCollision()
Randomly select an address in the tried table that another address is attempting to evict.
bool Add(const std::vector< CAddress > &vAddr, const CNetAddr &source, std::chrono::seconds time_penalty=0s)
Attempt to add one or more addresses to addrman's new table.
void SetServices(const CService &addr, ServiceFlags nServices)
Update an entry's service bits.
void ClearNew(int nUBucket, int nUBucketPos) EXCLUSIVE_LOCKS_REQUIRED(cs)
Clear a position in a "new" table. This is the only place where entries are actually deleted.
AddrInfo * Create(const CAddress &addr, const CNetAddr &addrSource, nid_type *pnId=nullptr) EXCLUSIVE_LOCKS_REQUIRED(cs)
Create a new entry and add it to the internal data structures mapInfo, mapAddr and vRandom.
void Connected_(const CService &addr, NodeSeconds time) EXCLUSIVE_LOCKS_REQUIRED(cs)
void Attempt_(const CService &addr, bool fCountFailure, NodeSeconds time) EXCLUSIVE_LOCKS_REQUIRED(cs)
static constexpr Format FILE_FORMAT
The maximum format this software knows it can unserialize.
void ResolveCollisions_() EXCLUSIVE_LOCKS_REQUIRED(cs)
std::vector< CAddress > GetAddr(size_t max_addresses, size_t max_pct, std::optional< Network > network, bool filtered=true) const EXCLUSIVE_LOCKS_REQUIRED(!cs)
void Serialize(Stream &s_) const EXCLUSIVE_LOCKS_REQUIRED(!cs)
void Delete(nid_type nId) EXCLUSIVE_LOCKS_REQUIRED(cs)
Delete an entry. It must not be in tried, and have refcount 0.
std::pair< CAddress, NodeSeconds > Select_(bool new_only, const std::unordered_set< Network > &networks) const EXCLUSIVE_LOCKS_REQUIRED(cs)
void Connected(const CService &addr, NodeSeconds time) EXCLUSIVE_LOCKS_REQUIRED(!cs)
void SetServices(const CService &addr, ServiceFlags nServices) EXCLUSIVE_LOCKS_REQUIRED(!cs)
std::optional< AddressPosition > FindAddressEntry_(const CAddress &addr) EXCLUSIVE_LOCKS_REQUIRED(cs)
void MakeTried(AddrInfo &info, nid_type nId) EXCLUSIVE_LOCKS_REQUIRED(cs)
Move an entry from the "new" table(s) to the "tried" table.
void SetServices_(const CService &addr, ServiceFlags nServices) EXCLUSIVE_LOCKS_REQUIRED(cs)
AddrInfo * Find(const CService &addr, nid_type *pnId=nullptr) EXCLUSIVE_LOCKS_REQUIRED(cs)
Find an entry.
AddrManImpl(const NetGroupManager &netgroupman, bool deterministic, int32_t consistency_check_ratio)
std::vector< std::pair< AddrInfo, AddressPosition > > GetEntries(bool from_tried) const EXCLUSIVE_LOCKS_REQUIRED(!cs)
const int32_t m_consistency_check_ratio
Perform consistency checks every m_consistency_check_ratio operations (if non-zero).
std::vector< std::pair< AddrInfo, AddressPosition > > GetEntries_(bool from_tried) const EXCLUSIVE_LOCKS_REQUIRED(cs)
void Check() const EXCLUSIVE_LOCKS_REQUIRED(cs)
Consistency check, taking into account m_consistency_check_ratio.
int CheckAddrman() const EXCLUSIVE_LOCKS_REQUIRED(cs)
Perform consistency check, regardless of m_consistency_check_ratio.
bool Add(const std::vector< CAddress > &vAddr, const CNetAddr &source, std::chrono::seconds time_penalty) EXCLUSIVE_LOCKS_REQUIRED(!cs)
std::optional< AddressPosition > FindAddressEntry(const CAddress &addr) EXCLUSIVE_LOCKS_REQUIRED(!cs)
bool Good_(const CService &addr, bool test_before_evict, NodeSeconds time) EXCLUSIVE_LOCKS_REQUIRED(cs)
std::vector< CAddress > GetAddr_(size_t max_addresses, size_t max_pct, std::optional< Network > network, bool filtered=true) const EXCLUSIVE_LOCKS_REQUIRED(cs)
Mutex cs
A mutex to protect the inner data structures.
size_t Size_(std::optional< Network > net, std::optional< bool > in_new) const EXCLUSIVE_LOCKS_REQUIRED(cs)
std::pair< CAddress, NodeSeconds > SelectTriedCollision_() EXCLUSIVE_LOCKS_REQUIRED(cs)
std::pair< CAddress, NodeSeconds > SelectTriedCollision() EXCLUSIVE_LOCKS_REQUIRED(!cs)
std::set< nid_type > m_tried_collisions
Holds addrs inserted into tried table that collide with existing entries. Test-before-evict disciplin...
static constexpr uint8_t INCOMPATIBILITY_BASE
The initial value of a field that is incremented every time an incompatible format change is made (su...
void SwapRandom(unsigned int nRandomPos1, unsigned int nRandomPos2) const EXCLUSIVE_LOCKS_REQUIRED(cs)
Swap two elements in vRandom.
std::pair< CAddress, NodeSeconds > Select(bool new_only, const std::unordered_set< Network > &networks) const EXCLUSIVE_LOCKS_REQUIRED(!cs)
void Attempt(const CService &addr, bool fCountFailure, NodeSeconds time) EXCLUSIVE_LOCKS_REQUIRED(!cs)
void Unserialize(Stream &s_) EXCLUSIVE_LOCKS_REQUIRED(!cs)
nid_type GetEntry(bool use_tried, size_t bucket, size_t position) const EXCLUSIVE_LOCKS_REQUIRED(cs)
Helper to generalize looking up an addrman entry from either table.
uint256 nKey
secret key to randomize bucket select with
void ResolveCollisions() EXCLUSIVE_LOCKS_REQUIRED(!cs)
const NetGroupManager & m_netgroupman
Reference to the netgroup manager.
bool Add_(const std::vector< CAddress > &vAddr, const CNetAddr &source, std::chrono::seconds time_penalty) EXCLUSIVE_LOCKS_REQUIRED(cs)
bool Good(const CService &addr, NodeSeconds time) EXCLUSIVE_LOCKS_REQUIRED(!cs)
size_t Size(std::optional< Network > net, std::optional< bool > in_new) const EXCLUSIVE_LOCKS_REQUIRED(!cs)
bool AddSingle(const CAddress &addr, const CNetAddr &source, std::chrono::seconds time_penalty) EXCLUSIVE_LOCKS_REQUIRED(cs)
Attempt to add a single address to addrman's new table.
Non-refcounted RAII wrapper for FILE*.
A CService with information about it as peer.
ServiceFlags nServices
Serialized as uint64_t in V1, and as CompactSize in V2.
NodeSeconds nTime
Always included in serialization. The behavior is unspecified if the value is not representable as ui...
static constexpr SerParams V1_DISK
static constexpr SerParams V2_DISK
enum Network GetNetwork() const
A combination of a network address (CNetAddr) and a (TCP) port.
std::string ToStringAddrPort() const
std::vector< unsigned char > GetKey() const
Double ended buffer combining vector and stream-like interfaces.
Reads data from an underlying stream, while hashing the read data.
A writer stream (for serialization) that computes a 256-bit hash.
Writes data to an underlying source stream, while hashing the written data.
uint256 GetAsmapVersion() const
Get the asmap version, a checksum identifying the asmap being used.
std::vector< unsigned char > GetGroup(const CNetAddr &address) const
Get the canonical identifier of the network group for address.
uint32_t GetMappedAS(const CNetAddr &address) const
Get the autonomous system on the BGP path to address.
Wrapper that overrides the GetParams() function of a stream.
constexpr bool IsNull() const
#define LogDebug(category,...)
ServiceFlags
nServices flags
Location information for an address in AddrMan.
static time_point now() noexcept
Return current system time or mocked time, if set.
#define LOG_TIME_MILLIS_WITH_CATEGORY_MSG_ONCE(end_msg, log_category)
std::chrono::time_point< NodeClock, std::chrono::seconds > NodeSeconds