Bitcoin Core 31.99.0
P2P Digital Currency
addrman.cpp
Go to the documentation of this file.
1// Copyright (c) 2012 Pieter Wuille
2// Copyright (c) 2012-present The Bitcoin Core developers
3// Distributed under the MIT software license, see the accompanying
4// file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
6#include <bitcoin-build-config.h> // IWYU pragma: keep
7
8#include <addrman.h>
9#include <addrman_impl.h>
10
11#include <hash.h>
12#include <logging/timer.h>
13#include <netaddress.h>
14#include <netgroup.h>
15#include <protocol.h>
16#include <random.h>
17#include <serialize.h>
18#include <streams.h>
19#include <tinyformat.h>
20#include <uint256.h>
21#include <util/check.h>
22#include <util/log.h>
23#include <util/time.h>
24
25#include <cmath>
26#include <optional>
27
28
29int AddrInfo::GetTriedBucket(const uint256& nKey, const NetGroupManager& netgroupman) const
30{
31 uint64_t hash1 = (HashWriter{} << nKey << GetKey()).GetCheapHash();
32 uint64_t hash2 = (HashWriter{} << nKey << netgroupman.GetGroup(*this) << (hash1 % ADDRMAN_TRIED_BUCKETS_PER_GROUP)).GetCheapHash();
33 return hash2 % ADDRMAN_TRIED_BUCKET_COUNT;
34}
35
36int AddrInfo::GetNewBucket(const uint256& nKey, const CNetAddr& src, const NetGroupManager& netgroupman) const
37{
38 std::vector<unsigned char> vchSourceGroupKey = netgroupman.GetGroup(src);
39 uint64_t hash1 = (HashWriter{} << nKey << netgroupman.GetGroup(*this) << vchSourceGroupKey).GetCheapHash();
40 uint64_t hash2 = (HashWriter{} << nKey << vchSourceGroupKey << (hash1 % ADDRMAN_NEW_BUCKETS_PER_SOURCE_GROUP)).GetCheapHash();
41 return hash2 % ADDRMAN_NEW_BUCKET_COUNT;
42}
43
44int AddrInfo::GetBucketPosition(const uint256& nKey, bool fNew, int bucket) const
45{
46 uint64_t hash1 = (HashWriter{} << nKey << (fNew ? uint8_t{'N'} : uint8_t{'K'}) << bucket << GetKey()).GetCheapHash();
47 return hash1 % ADDRMAN_BUCKET_SIZE;
48}
49
51{
52 if (now - m_last_try <= 1min) { // never remove things tried in the last minute
53 return false;
54 }
55
56 if (nTime > now + 10min) { // came in a flying DeLorean
57 return true;
58 }
59
60 if (now - nTime > ADDRMAN_HORIZON) { // not seen in recent history
61 return true;
62 }
63
64 if (TicksSinceEpoch<std::chrono::seconds>(m_last_success) == 0 && nAttempts >= ADDRMAN_RETRIES) { // tried N times and never a success
65 return true;
66 }
67
68 if (now - m_last_success > ADDRMAN_MIN_FAIL && nAttempts >= ADDRMAN_MAX_FAILURES) { // N successive failures in the last week
69 return true;
70 }
71
72 return false;
73}
74
76{
77 double fChance = 1.0;
78
79 // deprioritize very recent attempts away
80 if (now - m_last_try < 10min) {
81 fChance *= 0.01;
82 }
83
84 // deprioritize 66% after each failed attempt, but at most 1/28th to avoid the search taking forever or overly penalizing outages.
85 fChance *= pow(0.66, std::min(nAttempts, 8));
86
87 return fChance;
88}
89
90AddrManImpl::AddrManImpl(const NetGroupManager& netgroupman, bool deterministic, int32_t consistency_check_ratio)
91 : insecure_rand{deterministic}
92 , nKey{deterministic ? uint256{1} : insecure_rand.rand256()}
93 , m_consistency_check_ratio{consistency_check_ratio}
94 , m_netgroupman{netgroupman}
95{
96 for (auto& bucket : vvNew) {
97 for (auto& entry : bucket) {
98 entry = -1;
99 }
100 }
101 for (auto& bucket : vvTried) {
102 for (auto& entry : bucket) {
103 entry = -1;
104 }
105 }
106}
107
109{
110 nKey.SetNull();
111}
112
113template <typename Stream>
114void AddrManImpl::Serialize(Stream& s_) const
115{
116 LOCK(cs);
117
156 // Always serialize in the latest version (FILE_FORMAT).
158
159 s << static_cast<uint8_t>(FILE_FORMAT);
160
161 // Increment `lowest_compatible` iff a newly introduced format is incompatible with
162 // the previous one.
163 static constexpr uint8_t lowest_compatible = Format::V4_MULTIPORT;
164 s << static_cast<uint8_t>(INCOMPATIBILITY_BASE + lowest_compatible);
165
166 s << nKey;
167 s << nNew;
168 s << nTried;
169
170 int nUBuckets = ADDRMAN_NEW_BUCKET_COUNT ^ (1 << 30);
171 s << nUBuckets;
172 std::unordered_map<nid_type, int> mapUnkIds;
173 int nIds = 0;
174 for (const auto& entry : mapInfo) {
175 mapUnkIds[entry.first] = nIds;
176 const AddrInfo& info = entry.second;
177 if (info.nRefCount) {
178 assert(nIds != nNew); // this means nNew was wrong, oh ow
179 s << info;
180 nIds++;
181 }
182 }
183 nIds = 0;
184 for (const auto& entry : mapInfo) {
185 const AddrInfo& info = entry.second;
186 if (info.fInTried) {
187 assert(nIds != nTried); // this means nTried was wrong, oh ow
188 s << info;
189 nIds++;
190 }
191 }
192 for (int bucket = 0; bucket < ADDRMAN_NEW_BUCKET_COUNT; bucket++) {
193 int nSize = 0;
194 for (int i = 0; i < ADDRMAN_BUCKET_SIZE; i++) {
195 if (vvNew[bucket][i] != -1)
196 nSize++;
197 }
198 s << nSize;
199 for (int i = 0; i < ADDRMAN_BUCKET_SIZE; i++) {
200 if (vvNew[bucket][i] != -1) {
201 int nIndex = mapUnkIds[vvNew[bucket][i]];
202 s << nIndex;
203 }
204 }
205 }
206 // Store asmap version after bucket entries so that it
207 // can be ignored by older clients for backward compatibility.
209}
210
211template <typename Stream>
213{
214 LOCK(cs);
215
216 assert(vRandom.empty());
217
219 s_ >> Using<CustomUintFormatter<1>>(format);
220
221 const auto ser_params = (format >= Format::V3_BIP155 ? CAddress::V2_DISK : CAddress::V1_DISK);
222 ParamsStream s{s_, ser_params};
223
224 uint8_t compat;
225 s >> compat;
226 if (compat < INCOMPATIBILITY_BASE) {
227 throw std::ios_base::failure(strprintf(
228 "Corrupted addrman database: The compat value (%u) "
229 "is lower than the expected minimum value %u.",
230 compat, INCOMPATIBILITY_BASE));
231 }
232 const uint8_t lowest_compatible = compat - INCOMPATIBILITY_BASE;
233 if (lowest_compatible > FILE_FORMAT) {
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.",
237 uint8_t{format}, lowest_compatible, CLIENT_NAME, uint8_t{FILE_FORMAT}));
238 }
239
240 s >> nKey;
241 s >> nNew;
242 s >> nTried;
243 int nUBuckets = 0;
244 s >> nUBuckets;
245 if (format >= Format::V1_DETERMINISTIC) {
246 nUBuckets ^= (1 << 30);
247 }
248
249 if (nNew > ADDRMAN_NEW_BUCKET_COUNT * ADDRMAN_BUCKET_SIZE || nNew < 0) {
250 throw std::ios_base::failure(
251 strprintf("Corrupt AddrMan serialization: nNew=%d, should be in [0, %d]",
252 nNew,
254 }
255
256 if (nTried > ADDRMAN_TRIED_BUCKET_COUNT * ADDRMAN_BUCKET_SIZE || nTried < 0) {
257 throw std::ios_base::failure(
258 strprintf("Corrupt AddrMan serialization: nTried=%d, should be in [0, %d]",
259 nTried,
261 }
262
263 // Deserialize entries from the new table.
264 for (int n = 0; n < nNew; n++) {
265 AddrInfo& info = mapInfo[n];
266 s >> info;
267 mapAddr[info] = n;
268 info.nRandomPos = vRandom.size();
269 vRandom.push_back(n);
270 m_network_counts[info.GetNetwork()].n_new++;
271 }
272 nIdCount = nNew;
273
274 // Deserialize entries from the tried table.
275 int nLost = 0;
276 for (int n = 0; n < nTried; n++) {
277 AddrInfo info;
278 s >> info;
279 int nKBucket = info.GetTriedBucket(nKey, m_netgroupman);
280 int nKBucketPos = info.GetBucketPosition(nKey, false, nKBucket);
281 if (info.IsValid()
282 && vvTried[nKBucket][nKBucketPos] == -1) {
283 info.nRandomPos = vRandom.size();
284 info.fInTried = true;
285 vRandom.push_back(nIdCount);
286 mapInfo[nIdCount] = info;
287 mapAddr[info] = nIdCount;
288 vvTried[nKBucket][nKBucketPos] = nIdCount;
289 nIdCount++;
290 m_network_counts[info.GetNetwork()].n_tried++;
291 } else {
292 nLost++;
293 }
294 }
295 nTried -= nLost;
296
297 // Store positions in the new table buckets to apply later (if possible).
298 // An entry may appear in up to ADDRMAN_NEW_BUCKETS_PER_ADDRESS buckets,
299 // so we store all bucket-entry_index pairs to iterate through later.
300 std::vector<std::pair<int, int>> bucket_entries;
301
302 for (int bucket = 0; bucket < nUBuckets; ++bucket) {
303 int num_entries{0};
304 s >> num_entries;
305 for (int n = 0; n < num_entries; ++n) {
306 int entry_index{0};
307 s >> entry_index;
308 if (entry_index >= 0 && entry_index < nNew) {
309 bucket_entries.emplace_back(bucket, entry_index);
310 }
311 }
312 }
313
314 // If the bucket count and asmap version haven't changed, then attempt
315 // to restore the entries to the buckets/positions they were in before
316 // serialization.
317 uint256 supplied_asmap_version{m_netgroupman.GetAsmapVersion()};
318 uint256 serialized_asmap_version;
319 if (format >= Format::V2_ASMAP) {
320 s >> serialized_asmap_version;
321 }
322 const bool restore_bucketing{nUBuckets == ADDRMAN_NEW_BUCKET_COUNT &&
323 serialized_asmap_version == supplied_asmap_version};
324
325 if (!restore_bucketing) {
326 LogDebug(BCLog::ADDRMAN, "Bucketing method was updated, re-bucketing addrman entries from disk\n");
327 }
328
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];
333
334 // Don't store the entry in the new bucket if it's not a valid address for our addrman
335 if (!info.IsValid()) continue;
336
337 // The entry shouldn't appear in more than
338 // ADDRMAN_NEW_BUCKETS_PER_ADDRESS. If it has already, just skip
339 // this bucket_entry.
340 if (info.nRefCount >= ADDRMAN_NEW_BUCKETS_PER_ADDRESS) continue;
341
342 int bucket_position = info.GetBucketPosition(nKey, true, bucket);
343 if (restore_bucketing && vvNew[bucket][bucket_position] == -1) {
344 // Bucketing has not changed, using existing bucket positions for the new table
345 vvNew[bucket][bucket_position] = entry_index;
346 ++info.nRefCount;
347 } else {
348 // In case the new table data cannot be used (bucket count wrong or new asmap),
349 // try to give them a reference based on their primary source address.
350 bucket = info.GetNewBucket(nKey, m_netgroupman);
351 bucket_position = info.GetBucketPosition(nKey, true, bucket);
352 if (vvNew[bucket][bucket_position] == -1) {
353 vvNew[bucket][bucket_position] = entry_index;
354 ++info.nRefCount;
355 }
356 }
357 }
358
359 // Prune new entries with refcount 0 (as a result of collisions or invalid address).
360 int nLostUnk = 0;
361 for (auto it = mapInfo.cbegin(); it != mapInfo.cend(); ) {
362 if (it->second.fInTried == false && it->second.nRefCount == 0) {
363 const auto itCopy = it++;
364 Delete(itCopy->first);
365 ++nLostUnk;
366 } else {
367 ++it;
368 }
369 }
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);
372 }
373
374 const int check_code{CheckAddrman()};
375 if (check_code != 0) {
376 throw std::ios_base::failure(strprintf(
377 "Corrupt data. Consistency check failed with code %s",
378 check_code));
379 }
380}
381
383{
385
386 const auto it = mapAddr.find(addr);
387 if (it == mapAddr.end())
388 return nullptr;
389 if (pnId)
390 *pnId = (*it).second;
391 const auto it2 = mapInfo.find((*it).second);
392 if (it2 != mapInfo.end())
393 return &(*it2).second;
394 return nullptr;
395}
396
397AddrInfo* AddrManImpl::Create(const CAddress& addr, const CNetAddr& addrSource, nid_type* pnId)
398{
400
401 nid_type nId = nIdCount++;
402 mapInfo[nId] = AddrInfo(addr, addrSource);
403 mapAddr[addr] = nId;
404 mapInfo[nId].nRandomPos = vRandom.size();
405 vRandom.push_back(nId);
406 nNew++;
407 m_network_counts[addr.GetNetwork()].n_new++;
408 if (pnId)
409 *pnId = nId;
410 return &mapInfo[nId];
411}
412
413void AddrManImpl::SwapRandom(unsigned int nRndPos1, unsigned int nRndPos2) const
414{
416
417 if (nRndPos1 == nRndPos2)
418 return;
419
420 assert(nRndPos1 < vRandom.size() && nRndPos2 < vRandom.size());
421
422 nid_type nId1 = vRandom[nRndPos1];
423 nid_type nId2 = vRandom[nRndPos2];
424
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());
429
430 it_1->second.nRandomPos = nRndPos2;
431 it_2->second.nRandomPos = nRndPos1;
432
433 vRandom[nRndPos1] = nId2;
434 vRandom[nRndPos2] = nId1;
435}
436
438{
440
441 assert(mapInfo.contains(nId));
442 AddrInfo& info = mapInfo[nId];
443 assert(!info.fInTried);
444 assert(info.nRefCount == 0);
445
446 SwapRandom(info.nRandomPos, vRandom.size() - 1);
447 m_network_counts[info.GetNetwork()].n_new--;
448 vRandom.pop_back();
449 mapAddr.erase(info);
450 mapInfo.erase(nId);
451 nNew--;
452}
453
454void AddrManImpl::ClearNew(int nUBucket, int nUBucketPos)
455{
457
458 // if there is an entry in the specified bucket, delete it.
459 if (vvNew[nUBucket][nUBucketPos] != -1) {
460 nid_type nIdDelete = vvNew[nUBucket][nUBucketPos];
461 AddrInfo& infoDelete = mapInfo[nIdDelete];
462 assert(infoDelete.nRefCount > 0);
463 infoDelete.nRefCount--;
464 vvNew[nUBucket][nUBucketPos] = -1;
465 LogDebug(BCLog::ADDRMAN, "Removed %s from new[%i][%i]\n", infoDelete.ToStringAddrPort(), nUBucket, nUBucketPos);
466 if (infoDelete.nRefCount == 0) {
467 Delete(nIdDelete);
468 }
469 }
470}
471
473{
475
476 // remove the entry from all new buckets
477 const int start_bucket{info.GetNewBucket(nKey, m_netgroupman)};
478 for (int n = 0; n < ADDRMAN_NEW_BUCKET_COUNT; ++n) {
479 const int bucket{(start_bucket + n) % ADDRMAN_NEW_BUCKET_COUNT};
480 const int pos{info.GetBucketPosition(nKey, true, bucket)};
481 if (vvNew[bucket][pos] == nId) {
482 vvNew[bucket][pos] = -1;
483 info.nRefCount--;
484 if (info.nRefCount == 0) break;
485 }
486 }
487 nNew--;
488 m_network_counts[info.GetNetwork()].n_new--;
489
490 assert(info.nRefCount == 0);
491
492 // which tried bucket to move the entry to
493 int nKBucket = info.GetTriedBucket(nKey, m_netgroupman);
494 int nKBucketPos = info.GetBucketPosition(nKey, false, nKBucket);
495
496 // first make space to add it (the existing tried entry there is moved to new, deleting whatever is there).
497 if (vvTried[nKBucket][nKBucketPos] != -1) {
498 // find an item to evict
499 nid_type nIdEvict = vvTried[nKBucket][nKBucketPos];
500 assert(mapInfo.contains(nIdEvict));
501 AddrInfo& infoOld = mapInfo[nIdEvict];
502
503 // Remove the to-be-evicted item from the tried set.
504 infoOld.fInTried = false;
505 vvTried[nKBucket][nKBucketPos] = -1;
506 nTried--;
507 m_network_counts[infoOld.GetNetwork()].n_tried--;
508
509 // find which new bucket it belongs to
510 int nUBucket = infoOld.GetNewBucket(nKey, m_netgroupman);
511 int nUBucketPos = infoOld.GetBucketPosition(nKey, true, nUBucket);
512 ClearNew(nUBucket, nUBucketPos);
513 assert(vvNew[nUBucket][nUBucketPos] == -1);
514
515 // Enter it into the new set again.
516 infoOld.nRefCount = 1;
517 vvNew[nUBucket][nUBucketPos] = nIdEvict;
518 nNew++;
519 m_network_counts[infoOld.GetNetwork()].n_new++;
520 LogDebug(BCLog::ADDRMAN, "Moved %s from tried[%i][%i] to new[%i][%i] to make space\n",
521 infoOld.ToStringAddrPort(), nKBucket, nKBucketPos, nUBucket, nUBucketPos);
522 }
523 assert(vvTried[nKBucket][nKBucketPos] == -1);
524
525 vvTried[nKBucket][nKBucketPos] = nId;
526 nTried++;
527 info.fInTried = true;
528 m_network_counts[info.GetNetwork()].n_tried++;
529}
530
531bool AddrManImpl::AddSingle(const CAddress& addr, const CNetAddr& source, std::chrono::seconds time_penalty)
532{
534
535 if (!addr.IsRoutable())
536 return false;
537
538 nid_type nId;
539 AddrInfo* pinfo = Find(addr, &nId);
540
541 // Do not set a penalty for a source's self-announcement
542 if (addr == source) {
543 time_penalty = 0s;
544 }
545
546 if (pinfo) {
547 // periodically update nTime
548 const bool currently_online{NodeClock::now() - addr.nTime < 24h};
549 const auto update_interval{currently_online ? 1h : 24h};
550 if (pinfo->nTime < addr.nTime - update_interval - time_penalty) {
551 pinfo->nTime = std::max(NodeSeconds{0s}, addr.nTime - time_penalty);
552 }
553
554 // add services
555 pinfo->nServices = ServiceFlags(pinfo->nServices | addr.nServices);
556
557 // do not update if no new information is present
558 if (addr.nTime <= pinfo->nTime) {
559 return false;
560 }
561
562 // do not update if the entry was already in the "tried" table
563 if (pinfo->fInTried)
564 return false;
565
566 // do not update if the max reference count is reached
568 return false;
569
570 // stochastic test: previous nRefCount == N: 2^N times harder to increase it
571 if (pinfo->nRefCount > 0) {
572 const int nFactor{1 << pinfo->nRefCount};
573 if (insecure_rand.randrange(nFactor) != 0) return false;
574 }
575 } else {
576 pinfo = Create(addr, source, &nId);
577 pinfo->nTime = std::max(NodeSeconds{0s}, pinfo->nTime - time_penalty);
578 }
579
580 int nUBucket = pinfo->GetNewBucket(nKey, source, m_netgroupman);
581 int nUBucketPos = pinfo->GetBucketPosition(nKey, true, nUBucket);
582 bool fInsert = vvNew[nUBucket][nUBucketPos] == -1;
583 if (vvNew[nUBucket][nUBucketPos] != nId) {
584 if (!fInsert) {
585 AddrInfo& infoExisting = mapInfo[vvNew[nUBucket][nUBucketPos]];
586 if (infoExisting.IsTerrible() || (infoExisting.nRefCount > 1 && pinfo->nRefCount == 0)) {
587 // Overwrite the existing new table entry.
588 fInsert = true;
589 }
590 }
591 if (fInsert) {
592 ClearNew(nUBucket, nUBucketPos);
593 pinfo->nRefCount++;
594 vvNew[nUBucket][nUBucketPos] = nId;
595 const auto mapped_as{m_netgroupman.GetMappedAS(addr)};
596 LogDebug(BCLog::ADDRMAN, "Added %s%s to new[%i][%i]\n",
597 addr.ToStringAddrPort(), (mapped_as ? strprintf(" mapped to AS%i", mapped_as) : ""), nUBucket, nUBucketPos);
598 } else {
599 if (pinfo->nRefCount == 0) {
600 Delete(nId);
601 }
602 }
603 }
604 return fInsert;
605}
606
607bool AddrManImpl::Good_(const CService& addr, bool test_before_evict, NodeSeconds time)
608{
610
611 nid_type nId;
612
613 m_last_good = time;
614
615 AddrInfo* pinfo = Find(addr, &nId);
616
617 // if not found, bail out
618 if (!pinfo) return false;
619
620 AddrInfo& info = *pinfo;
621
622 // update info
623 info.m_last_success = time;
624 info.m_last_try = time;
625 info.nAttempts = 0;
626 // nTime is not updated here, to avoid leaking information about
627 // currently-connected peers.
628
629 // if it is already in the tried set, don't do anything else
630 if (info.fInTried) return false;
631
632 // if it is not in new, something bad happened
633 if (!Assume(info.nRefCount > 0)) return false;
634
635
636 // which tried bucket to move the entry to
637 int tried_bucket = info.GetTriedBucket(nKey, m_netgroupman);
638 int tried_bucket_pos = info.GetBucketPosition(nKey, false, tried_bucket);
639
640 // Will moving this address into tried evict another entry?
641 if (test_before_evict && (vvTried[tried_bucket][tried_bucket_pos] != -1)) {
643 m_tried_collisions.insert(nId);
644 }
645 // Output the entry we'd be colliding with, for debugging purposes
646 auto colliding_entry = mapInfo.find(vvTried[tried_bucket][tried_bucket_pos]);
647 LogDebug(BCLog::ADDRMAN, "Collision with %s while attempting to move %s to tried table. Collisions=%d",
648 colliding_entry != mapInfo.end() ? colliding_entry->second.ToStringAddrPort() : "<unknown-addr>",
649 addr.ToStringAddrPort(),
650 m_tried_collisions.size());
651 return false;
652 } else {
653 // move nId to the tried tables
654 MakeTried(info, nId);
655 const auto mapped_as{m_netgroupman.GetMappedAS(addr)};
656 LogDebug(BCLog::ADDRMAN, "Moved %s%s to tried[%i][%i]\n",
657 addr.ToStringAddrPort(), (mapped_as ? strprintf(" mapped to AS%i", mapped_as) : ""), tried_bucket, tried_bucket_pos);
658 return true;
659 }
660}
661
662bool AddrManImpl::Add_(const std::vector<CAddress>& vAddr, const CNetAddr& source, std::chrono::seconds time_penalty)
663{
664 int added{0};
665 for (std::vector<CAddress>::const_iterator it = vAddr.begin(); it != vAddr.end(); it++) {
666 added += AddSingle(*it, source, time_penalty) ? 1 : 0;
667 }
668 if (added > 0) {
669 LogDebug(BCLog::ADDRMAN, "Added %i addresses (of %i) from %s: %i tried, %i new\n", added, vAddr.size(), source.ToStringAddr(), nTried, nNew);
670 }
671 return added > 0;
672}
673
674void AddrManImpl::Attempt_(const CService& addr, bool fCountFailure, NodeSeconds time)
675{
677
678 AddrInfo* pinfo = Find(addr);
679
680 // if not found, bail out
681 if (!pinfo)
682 return;
683
684 AddrInfo& info = *pinfo;
685
686 // update info
687 info.m_last_try = time;
688 if (fCountFailure && info.m_last_count_attempt < m_last_good) {
689 info.m_last_count_attempt = time;
690 info.nAttempts++;
691 }
692}
693
694std::pair<CAddress, NodeSeconds> AddrManImpl::Select_(bool new_only, const std::unordered_set<Network>& networks) const
695{
697
698 if (vRandom.empty()) return {};
699
700 size_t new_count = nNew;
701 size_t tried_count = nTried;
702
703 if (!networks.empty()) {
704 new_count = 0;
705 tried_count = 0;
706 for (auto& network : networks) {
707 auto it = m_network_counts.find(network);
708 if (it == m_network_counts.end()) {
709 continue;
710 }
711 auto counts = it->second;
712 new_count += counts.n_new;
713 tried_count += counts.n_tried;
714 }
715 }
716
717 if (new_only && new_count == 0) return {};
718 if (new_count + tried_count == 0) return {};
719
720 // Decide if we are going to search the new or tried table
721 // If either option is viable, use a 50% chance to choose
722 bool search_tried;
723 if (new_only || tried_count == 0) {
724 search_tried = false;
725 } else if (new_count == 0) {
726 search_tried = true;
727 } else {
728 search_tried = insecure_rand.randbool();
729 }
730
731 const int bucket_count{search_tried ? ADDRMAN_TRIED_BUCKET_COUNT : ADDRMAN_NEW_BUCKET_COUNT};
732
733 // Loop through the addrman table until we find an appropriate entry
734 double chance_factor = 1.0;
735 while (1) {
736 // Pick a bucket, and an initial position in that bucket.
737 int bucket = insecure_rand.randrange(bucket_count);
738 int initial_position = insecure_rand.randrange(ADDRMAN_BUCKET_SIZE);
739
740 // Iterate over the positions of that bucket, starting at the initial one,
741 // and looping around.
742 int i, position;
743 nid_type node_id;
744 for (i = 0; i < ADDRMAN_BUCKET_SIZE; ++i) {
745 position = (initial_position + i) % ADDRMAN_BUCKET_SIZE;
746 node_id = GetEntry(search_tried, bucket, position);
747 if (node_id != -1) {
748 if (!networks.empty()) {
749 const auto it{mapInfo.find(node_id)};
750 if (Assume(it != mapInfo.end()) && networks.contains(it->second.GetNetwork())) break;
751 } else {
752 break;
753 }
754 }
755 }
756
757 // If the bucket is entirely empty, start over with a (likely) different one.
758 if (i == ADDRMAN_BUCKET_SIZE) continue;
759
760 // Find the entry to return.
761 const auto it_found{mapInfo.find(node_id)};
762 assert(it_found != mapInfo.end());
763 const AddrInfo& info{it_found->second};
764
765 // With probability GetChance() * chance_factor, return the entry.
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};
769 }
770
771 // Otherwise start over with a (likely) different bucket, and increased chance factor.
772 chance_factor *= 1.2;
773 }
774}
775
776nid_type AddrManImpl::GetEntry(bool use_tried, size_t bucket, size_t position) const
777{
779
780 if (use_tried) {
781 if (Assume(position < ADDRMAN_BUCKET_SIZE) && Assume(bucket < ADDRMAN_TRIED_BUCKET_COUNT)) {
782 return vvTried[bucket][position];
783 }
784 } else {
785 if (Assume(position < ADDRMAN_BUCKET_SIZE) && Assume(bucket < ADDRMAN_NEW_BUCKET_COUNT)) {
786 return vvNew[bucket][position];
787 }
788 }
789
790 return -1;
791}
792
793std::vector<CAddress> AddrManImpl::GetAddr_(size_t max_addresses, size_t max_pct, std::optional<Network> network, const bool filtered) const
794{
796 Assume(max_pct <= 100);
797
798 size_t nNodes = vRandom.size();
799 if (max_pct != 0) {
800 max_pct = std::min(max_pct, size_t{100});
801 nNodes = max_pct * nNodes / 100;
802 }
803 if (max_addresses != 0) {
804 nNodes = std::min(nNodes, max_addresses);
805 }
806
807 // gather a list of random nodes, skipping those of low quality
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)
813 break;
814
815 int nRndPos = insecure_rand.randrange(vRandom.size() - n) + n;
816 SwapRandom(n, nRndPos);
817 const auto it{mapInfo.find(vRandom[n])};
818 assert(it != mapInfo.end());
819
820 const AddrInfo& ai{it->second};
821
822 // Filter by network (optional)
823 if (network != std::nullopt && ai.GetNetClass() != network) continue;
824
825 // Filter for quality
826 if (ai.IsTerrible(now) && filtered) continue;
827
828 addresses.push_back(ai);
829 }
830 LogDebug(BCLog::ADDRMAN, "GetAddr returned %d random addresses\n", addresses.size());
831 return addresses;
832}
833
834std::vector<std::pair<AddrInfo, AddressPosition>> AddrManImpl::GetEntries_(bool from_tried) const
835{
837
838 const int bucket_count = from_tried ? ADDRMAN_TRIED_BUCKET_COUNT : ADDRMAN_NEW_BUCKET_COUNT;
839 std::vector<std::pair<AddrInfo, AddressPosition>> infos;
840 for (int bucket = 0; bucket < bucket_count; ++bucket) {
841 for (int position = 0; position < ADDRMAN_BUCKET_SIZE; ++position) {
842 nid_type id = GetEntry(from_tried, bucket, position);
843 if (id >= 0) {
844 AddrInfo info = mapInfo.at(id);
846 from_tried,
847 /*multiplicity_in=*/from_tried ? 1 : info.nRefCount,
848 bucket,
849 position);
850 infos.emplace_back(info, location);
851 }
852 }
853 }
854
855 return infos;
856}
857
859{
861
862 AddrInfo* pinfo = Find(addr);
863
864 // if not found, bail out
865 if (!pinfo)
866 return;
867
868 AddrInfo& info = *pinfo;
869
870 // update info
871 const auto update_interval{20min};
872 if (time - info.nTime > update_interval) {
873 info.nTime = time;
874 }
875}
876
878{
880
881 AddrInfo* pinfo = Find(addr);
882
883 // if not found, bail out
884 if (!pinfo)
885 return;
886
887 AddrInfo& info = *pinfo;
888
889 // update info
890 info.nServices = nServices;
891}
892
894{
896
897 for (std::set<nid_type>::iterator it = m_tried_collisions.begin(); it != m_tried_collisions.end();) {
898 nid_type id_new = *it;
899
900 bool erase_collision = false;
901
902 // If id_new not found in mapInfo remove it from m_tried_collisions
903 if (!mapInfo.contains(id_new)) {
904 erase_collision = true;
905 } else {
906 AddrInfo& info_new = mapInfo[id_new];
907
908 // Which tried bucket to move the entry to.
909 int tried_bucket = info_new.GetTriedBucket(nKey, m_netgroupman);
910 int tried_bucket_pos = info_new.GetBucketPosition(nKey, false, tried_bucket);
911 if (!info_new.IsValid()) { // id_new may no longer map to a valid address
912 erase_collision = true;
913 } else if (vvTried[tried_bucket][tried_bucket_pos] != -1) { // The position in the tried bucket is not empty
914
915 // Get the to-be-evicted address that is being tested
916 nid_type id_old = vvTried[tried_bucket][tried_bucket_pos];
917 AddrInfo& info_old = mapInfo[id_old];
918
919 const auto current_time{Now<NodeSeconds>()};
920
921 // Has successfully connected in last X hours
922 if (current_time - info_old.m_last_success < ADDRMAN_REPLACEMENT) {
923 erase_collision = true;
924 } else if (current_time - info_old.m_last_try < ADDRMAN_REPLACEMENT) { // attempted to connect and failed in last X hours
925
926 // Give address at least 60 seconds to successfully connect
927 if (current_time - info_old.m_last_try > 60s) {
928 LogDebug(BCLog::ADDRMAN, "Replacing %s with %s in tried table\n", info_old.ToStringAddrPort(), info_new.ToStringAddrPort());
929
930 // Replaces an existing address already in the tried table with the new address
931 Good_(info_new, false, current_time);
932 erase_collision = true;
933 }
934 } else if (current_time - info_new.m_last_success > ADDRMAN_TEST_WINDOW) {
935 // If the collision hasn't resolved in some reasonable amount of time,
936 // just evict the old entry -- we must not be able to
937 // connect to it for some reason.
938 LogDebug(BCLog::ADDRMAN, "Unable to test; replacing %s with %s in tried table anyway\n", info_old.ToStringAddrPort(), info_new.ToStringAddrPort());
939 Good_(info_new, false, current_time);
940 erase_collision = true;
941 }
942 } else { // Collision is not actually a collision anymore
943 Good_(info_new, false, Now<NodeSeconds>());
944 erase_collision = true;
945 }
946 }
947
948 if (erase_collision) {
949 m_tried_collisions.erase(it++);
950 } else {
951 it++;
952 }
953 }
954}
955
956std::pair<CAddress, NodeSeconds> AddrManImpl::SelectTriedCollision_()
957{
959
960 if (m_tried_collisions.size() == 0) return {};
961
962 std::set<nid_type>::iterator it = m_tried_collisions.begin();
963
964 // Selects a random element from m_tried_collisions
965 std::advance(it, insecure_rand.randrange(m_tried_collisions.size()));
966 nid_type id_new = *it;
967
968 // If id_new not found in mapInfo remove it from m_tried_collisions
969 if (!mapInfo.contains(id_new)) {
970 m_tried_collisions.erase(it);
971 return {};
972 }
973
974 const AddrInfo& newInfo = mapInfo[id_new];
975
976 // which tried bucket to move the entry to
977 int tried_bucket = newInfo.GetTriedBucket(nKey, m_netgroupman);
978 int tried_bucket_pos = newInfo.GetBucketPosition(nKey, false, tried_bucket);
979
980 const AddrInfo& info_old = mapInfo[vvTried[tried_bucket][tried_bucket_pos]];
981 return {info_old, info_old.m_last_try};
982}
983
984std::optional<AddressPosition> AddrManImpl::FindAddressEntry_(const CAddress& addr)
985{
987
988 AddrInfo* addr_info = Find(addr);
989
990 if (!addr_info) return std::nullopt;
991
992 if(addr_info->fInTried) {
993 int bucket{addr_info->GetTriedBucket(nKey, m_netgroupman)};
994 return AddressPosition(/*tried_in=*/true,
995 /*multiplicity_in=*/1,
996 /*bucket_in=*/bucket,
997 /*position_in=*/addr_info->GetBucketPosition(nKey, false, bucket));
998 } else {
999 int bucket{addr_info->GetNewBucket(nKey, m_netgroupman)};
1000 return AddressPosition(/*tried_in=*/false,
1001 /*multiplicity_in=*/addr_info->nRefCount,
1002 /*bucket_in=*/bucket,
1003 /*position_in=*/addr_info->GetBucketPosition(nKey, true, bucket));
1004 }
1005}
1006
1007size_t AddrManImpl::Size_(std::optional<Network> net, std::optional<bool> in_new) const
1008{
1010
1011 if (!net.has_value()) {
1012 if (in_new.has_value()) {
1013 return *in_new ? nNew : nTried;
1014 } else {
1015 return vRandom.size();
1016 }
1017 }
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;
1022 } else {
1023 return net_count.n_new + net_count.n_tried;
1024 }
1025 }
1026 return 0;
1027}
1028
1030{
1032
1033 // Run consistency checks 1 in m_consistency_check_ratio times if enabled
1034 if (m_consistency_check_ratio == 0) return;
1035 if (insecure_rand.randrange(m_consistency_check_ratio) >= 1) return;
1036
1037 const int err{CheckAddrman()};
1038 if (err) {
1039 LogError("ADDRMAN CONSISTENCY CHECK FAILED!!! err=%i", err);
1040 assert(false);
1041 }
1042}
1043
1045{
1047
1049 strprintf("new %i, tried %i, total %u", nNew, nTried, vRandom.size()), BCLog::ADDRMAN);
1050
1051 std::unordered_set<nid_type> setTried;
1052 std::unordered_map<nid_type, int> mapNew;
1053 std::unordered_map<Network, NewTriedCount> local_counts;
1054
1055 if (vRandom.size() != (size_t)(nTried + nNew))
1056 return -7;
1057
1058 for (const auto& entry : mapInfo) {
1059 nid_type n = entry.first;
1060 const AddrInfo& info = entry.second;
1061 if (info.fInTried) {
1062 if (!TicksSinceEpoch<std::chrono::seconds>(info.m_last_success)) {
1063 return -1;
1064 }
1065 if (info.nRefCount)
1066 return -2;
1067 setTried.insert(n);
1068 local_counts[info.GetNetwork()].n_tried++;
1069 } else {
1071 return -3;
1072 if (!info.nRefCount)
1073 return -4;
1074 mapNew[n] = info.nRefCount;
1075 local_counts[info.GetNetwork()].n_new++;
1076 }
1077 const auto it{mapAddr.find(info)};
1078 if (it == mapAddr.end() || it->second != n) {
1079 return -5;
1080 }
1081 if (info.nRandomPos < 0 || (size_t)info.nRandomPos >= vRandom.size() || vRandom[info.nRandomPos] != n)
1082 return -14;
1083 if (info.m_last_try < NodeSeconds{0s}) {
1084 return -6;
1085 }
1086 if (info.m_last_success < NodeSeconds{0s}) {
1087 return -8;
1088 }
1089 }
1090
1091 if (setTried.size() != (size_t)nTried)
1092 return -9;
1093 if (mapNew.size() != (size_t)nNew)
1094 return -10;
1095
1096 for (int n = 0; n < ADDRMAN_TRIED_BUCKET_COUNT; n++) {
1097 for (int i = 0; i < ADDRMAN_BUCKET_SIZE; i++) {
1098 if (vvTried[n][i] != -1) {
1099 if (!setTried.contains(vvTried[n][i]))
1100 return -11;
1101 const auto it{mapInfo.find(vvTried[n][i])};
1102 if (it == mapInfo.end() || it->second.GetTriedBucket(nKey, m_netgroupman) != n) {
1103 return -17;
1104 }
1105 if (it->second.GetBucketPosition(nKey, false, n) != i) {
1106 return -18;
1107 }
1108 setTried.erase(vvTried[n][i]);
1109 }
1110 }
1111 }
1112
1113 for (int n = 0; n < ADDRMAN_NEW_BUCKET_COUNT; n++) {
1114 for (int i = 0; i < ADDRMAN_BUCKET_SIZE; i++) {
1115 if (vvNew[n][i] != -1) {
1116 if (!mapNew.contains(vvNew[n][i]))
1117 return -12;
1118 const auto it{mapInfo.find(vvNew[n][i])};
1119 if (it == mapInfo.end() || it->second.GetBucketPosition(nKey, true, n) != i) {
1120 return -19;
1121 }
1122 if (--mapNew[vvNew[n][i]] == 0)
1123 mapNew.erase(vvNew[n][i]);
1124 }
1125 }
1126 }
1127
1128 if (setTried.size())
1129 return -13;
1130 if (mapNew.size())
1131 return -15;
1132 if (nKey.IsNull())
1133 return -16;
1134
1135 // It's possible that m_network_counts may have all-zero entries that local_counts
1136 // doesn't have if addrs from a network were being added and then removed again in the past.
1137 if (m_network_counts.size() < local_counts.size()) {
1138 return -20;
1139 }
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) {
1142 return -21;
1143 }
1144 }
1145
1146 return 0;
1147}
1148
1149size_t AddrManImpl::Size(std::optional<Network> net, std::optional<bool> in_new) const
1150{
1151 LOCK(cs);
1152 Check();
1153 auto ret = Size_(net, in_new);
1154 Check();
1155 return ret;
1156}
1157
1158bool AddrManImpl::Add(const std::vector<CAddress>& vAddr, const CNetAddr& source, std::chrono::seconds time_penalty)
1159{
1160 LOCK(cs);
1161 Check();
1162 auto ret = Add_(vAddr, source, time_penalty);
1163 Check();
1164 return ret;
1165}
1166
1168{
1169 LOCK(cs);
1170 Check();
1171 auto ret = Good_(addr, /*test_before_evict=*/true, time);
1172 Check();
1173 return ret;
1174}
1175
1176void AddrManImpl::Attempt(const CService& addr, bool fCountFailure, NodeSeconds time)
1177{
1178 LOCK(cs);
1179 Check();
1180 Attempt_(addr, fCountFailure, time);
1181 Check();
1182}
1183
1185{
1186 LOCK(cs);
1187 Check();
1189 Check();
1190}
1191
1192std::pair<CAddress, NodeSeconds> AddrManImpl::SelectTriedCollision()
1193{
1194 LOCK(cs);
1195 Check();
1196 auto ret = SelectTriedCollision_();
1197 Check();
1198 return ret;
1199}
1200
1201std::pair<CAddress, NodeSeconds> AddrManImpl::Select(bool new_only, const std::unordered_set<Network>& networks) const
1202{
1203 LOCK(cs);
1204 Check();
1205 auto addrRet = Select_(new_only, networks);
1206 Check();
1207 return addrRet;
1208}
1209
1210std::vector<CAddress> AddrManImpl::GetAddr(size_t max_addresses, size_t max_pct, std::optional<Network> network, const bool filtered) const
1211{
1212 LOCK(cs);
1213 Check();
1214 auto addresses = GetAddr_(max_addresses, max_pct, network, filtered);
1215 Check();
1216 return addresses;
1217}
1218
1219std::vector<std::pair<AddrInfo, AddressPosition>> AddrManImpl::GetEntries(bool from_tried) const
1220{
1221 LOCK(cs);
1222 Check();
1223 auto addrInfos = GetEntries_(from_tried);
1224 Check();
1225 return addrInfos;
1226}
1227
1229{
1230 LOCK(cs);
1231 Check();
1232 Connected_(addr, time);
1233 Check();
1234}
1235
1237{
1238 LOCK(cs);
1239 Check();
1240 SetServices_(addr, nServices);
1241 Check();
1242}
1243
1244std::optional<AddressPosition> AddrManImpl::FindAddressEntry(const CAddress& addr)
1245{
1246 LOCK(cs);
1247 Check();
1248 auto entry = FindAddressEntry_(addr);
1249 Check();
1250 return entry;
1251}
1252
1253AddrMan::AddrMan(const NetGroupManager& netgroupman, bool deterministic, int32_t consistency_check_ratio)
1254 : m_impl(std::make_unique<AddrManImpl>(netgroupman, deterministic, consistency_check_ratio)) {}
1255
1256AddrMan::~AddrMan() = default;
1257
1258template <typename Stream>
1259void AddrMan::Serialize(Stream& s_) const
1260{
1261 m_impl->Serialize<Stream>(s_);
1262}
1263
1264template <typename Stream>
1265void AddrMan::Unserialize(Stream& s_)
1266{
1267 m_impl->Unserialize<Stream>(s_);
1268}
1269
1270// explicit instantiation
1272template void AddrMan::Serialize(DataStream&) const;
1273template void AddrMan::Unserialize(AutoFile&);
1275template void AddrMan::Unserialize(DataStream&);
1277
1278size_t AddrMan::Size(std::optional<Network> net, std::optional<bool> in_new) const
1279{
1280 return m_impl->Size(net, in_new);
1281}
1282
1283bool AddrMan::Add(const std::vector<CAddress>& vAddr, const CNetAddr& source, std::chrono::seconds time_penalty)
1284{
1285 return m_impl->Add(vAddr, source, time_penalty);
1286}
1287
1288bool AddrMan::Good(const CService& addr, NodeSeconds time)
1289{
1290 return m_impl->Good(addr, time);
1291}
1292
1293void AddrMan::Attempt(const CService& addr, bool fCountFailure, NodeSeconds time)
1294{
1295 m_impl->Attempt(addr, fCountFailure, time);
1296}
1297
1299{
1300 m_impl->ResolveCollisions();
1301}
1302
1303std::pair<CAddress, NodeSeconds> AddrMan::SelectTriedCollision()
1304{
1305 return m_impl->SelectTriedCollision();
1306}
1307
1308std::pair<CAddress, NodeSeconds> AddrMan::Select(bool new_only, const std::unordered_set<Network>& networks) const
1309{
1310 return m_impl->Select(new_only, networks);
1311}
1312
1313std::vector<CAddress> AddrMan::GetAddr(size_t max_addresses, size_t max_pct, std::optional<Network> network, const bool filtered) const
1314{
1315 return m_impl->GetAddr(max_addresses, max_pct, network, filtered);
1316}
1317
1318std::vector<std::pair<AddrInfo, AddressPosition>> AddrMan::GetEntries(bool use_tried) const
1319{
1320 return m_impl->GetEntries(use_tried);
1321}
1322
1324{
1325 m_impl->Connected(addr, time);
1326}
1327
1328void AddrMan::SetServices(const CService& addr, ServiceFlags nServices)
1329{
1330 m_impl->SetServices(addr, nServices);
1331}
1332
1333std::optional<AddressPosition> AddrMan::FindAddressEntry(const CAddress& addr)
1334{
1335 return m_impl->FindAddressEntry(addr);
1336}
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.
Definition: addrman.h:29
static constexpr auto ADDRMAN_HORIZON
How old addresses can maximally be.
Definition: addrman.h:33
static constexpr int32_t ADDRMAN_MAX_FAILURES
How many successive failures are allowed ...
Definition: addrman.h:37
static constexpr auto ADDRMAN_MIN_FAIL
... in at least this duration
Definition: addrman.h:39
static constexpr auto ADDRMAN_TEST_WINDOW
The maximum time we'll spend trying to resolve a tried table collision.
Definition: addrman.h:45
static constexpr auto ADDRMAN_REPLACEMENT
How recent a successful connection should be before we allow an address to be evicted from tried.
Definition: addrman.h:41
static constexpr int32_t ADDRMAN_RETRIES
After how many failed attempts we give up on a new node.
Definition: addrman.h:35
static constexpr size_t ADDRMAN_SET_TRIED_COLLISION_SIZE
The maximum number of tried addr collisions to store.
Definition: addrman.h:43
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.
Definition: addrman.h:27
static constexpr int32_t ADDRMAN_NEW_BUCKETS_PER_ADDRESS
Maximum number of times an address can occur in the new table.
Definition: addrman.h:31
static constexpr int ADDRMAN_TRIED_BUCKET_COUNT
Definition: addrman_impl.h:27
static constexpr int ADDRMAN_BUCKET_SIZE
Definition: addrman_impl.h:33
int64_t nid_type
User-defined type for the internally used nIds This used to be int, making it feasible for attackers ...
Definition: addrman_impl.h:40
static constexpr int ADDRMAN_NEW_BUCKET_COUNT
Definition: addrman_impl.h:30
int ret
#define Assume(val)
Assume is the identity function.
Definition: check.h:128
Extended statistics about a CAddress.
Definition: addrman_impl.h:46
int GetNewBucket(const uint256 &nKey, const CNetAddr &src, const NetGroupManager &netgroupman) const
Calculate in which "new" bucket this entry belongs, given a certain source.
Definition: addrman.cpp:36
int GetTriedBucket(const uint256 &nKey, const NetGroupManager &netgroupman) const
Calculate in which "tried" bucket this entry belongs.
Definition: addrman.cpp:29
int nRandomPos
position in vRandom
Definition: addrman_impl.h:70
int GetBucketPosition(const uint256 &nKey, bool fNew, int bucket) const
Calculate in which position of a bucket to store this entry.
Definition: addrman.cpp:44
bool fInTried
in tried set? (memory only)
Definition: addrman_impl.h:67
NodeSeconds m_last_success
last successful connection by us
Definition: addrman_impl.h:58
NodeSeconds m_last_count_attempt
last counted attempt (memory only)
Definition: addrman_impl.h:52
NodeSeconds m_last_try
last try whatsoever by us (memory only)
Definition: addrman_impl.h:49
double GetChance(NodeSeconds now=Now< NodeSeconds >()) const
Calculate the relative chance this entry should be given when selecting nodes to connect to.
Definition: addrman.cpp:75
bool IsTerrible(NodeSeconds now=Now< NodeSeconds >()) const
Determine whether the statistics about this entry are bad enough so that it can just be deleted.
Definition: addrman.cpp:50
int nRefCount
reference count in new sets (memory only)
Definition: addrman_impl.h:64
int nAttempts
connection attempts since last successful attempt
Definition: addrman_impl.h:61
void Connected(const CService &addr, NodeSeconds time=Now< NodeSeconds >())
We have successfully connected to this peer.
Definition: addrman.cpp:1323
std::pair< CAddress, NodeSeconds > Select(bool new_only=false, const std::unordered_set< Network > &networks={}) const
Choose an address to connect to.
Definition: addrman.cpp:1308
const std::unique_ptr< AddrManImpl > m_impl
Definition: addrman.h:116
void Attempt(const CService &addr, bool fCountFailure, NodeSeconds time=Now< NodeSeconds >())
Mark an entry as connection attempted to.
Definition: addrman.cpp:1293
size_t Size(std::optional< Network > net=std::nullopt, std::optional< bool > in_new=std::nullopt) const
Return size information about addrman.
Definition: addrman.cpp:1278
std::optional< AddressPosition > FindAddressEntry(const CAddress &addr)
Test-only function Find the address record in AddrMan and return information about its position.
Definition: addrman.cpp:1333
std::vector< std::pair< AddrInfo, AddressPosition > > GetEntries(bool from_tried) const
Returns an information-location pair for all addresses in the selected addrman table.
Definition: addrman.cpp:1318
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.
Definition: addrman.cpp:1313
void ResolveCollisions()
See if any to-be-evicted tried table entries have been tested and if so resolve the collisions.
Definition: addrman.cpp:1298
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.
Definition: addrman.cpp:1288
void Serialize(Stream &s_) const
Definition: addrman.cpp:1259
void Unserialize(Stream &s_)
Definition: addrman.cpp:1265
AddrMan(const NetGroupManager &netgroupman, bool deterministic, int32_t consistency_check_ratio)
Definition: addrman.cpp:1253
std::pair< CAddress, NodeSeconds > SelectTriedCollision()
Randomly select an address in the tried table that another address is attempting to evict.
Definition: addrman.cpp:1303
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.
Definition: addrman.cpp:1283
void SetServices(const CService &addr, ServiceFlags nServices)
Update an entry's service bits.
Definition: addrman.cpp:1328
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.
Definition: addrman.cpp:454
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.
Definition: addrman.cpp:397
void Connected_(const CService &addr, NodeSeconds time) EXCLUSIVE_LOCKS_REQUIRED(cs)
Definition: addrman.cpp:858
void Attempt_(const CService &addr, bool fCountFailure, NodeSeconds time) EXCLUSIVE_LOCKS_REQUIRED(cs)
Definition: addrman.cpp:674
static constexpr Format FILE_FORMAT
The maximum format this software knows it can unserialize.
Definition: addrman_impl.h:179
void ResolveCollisions_() EXCLUSIVE_LOCKS_REQUIRED(cs)
Definition: addrman.cpp:893
std::vector< CAddress > GetAddr(size_t max_addresses, size_t max_pct, std::optional< Network > network, bool filtered=true) const EXCLUSIVE_LOCKS_REQUIRED(!cs)
Definition: addrman.cpp:1210
void Serialize(Stream &s_) const EXCLUSIVE_LOCKS_REQUIRED(!cs)
Definition: addrman.cpp:114
void Delete(nid_type nId) EXCLUSIVE_LOCKS_REQUIRED(cs)
Delete an entry. It must not be in tried, and have refcount 0.
Definition: addrman.cpp:437
std::pair< CAddress, NodeSeconds > Select_(bool new_only, const std::unordered_set< Network > &networks) const EXCLUSIVE_LOCKS_REQUIRED(cs)
Definition: addrman.cpp:694
void Connected(const CService &addr, NodeSeconds time) EXCLUSIVE_LOCKS_REQUIRED(!cs)
Definition: addrman.cpp:1228
void SetServices(const CService &addr, ServiceFlags nServices) EXCLUSIVE_LOCKS_REQUIRED(!cs)
Definition: addrman.cpp:1236
std::optional< AddressPosition > FindAddressEntry_(const CAddress &addr) EXCLUSIVE_LOCKS_REQUIRED(cs)
Definition: addrman.cpp:984
void MakeTried(AddrInfo &info, nid_type nId) EXCLUSIVE_LOCKS_REQUIRED(cs)
Move an entry from the "new" table(s) to the "tried" table.
Definition: addrman.cpp:472
void SetServices_(const CService &addr, ServiceFlags nServices) EXCLUSIVE_LOCKS_REQUIRED(cs)
Definition: addrman.cpp:877
AddrInfo * Find(const CService &addr, nid_type *pnId=nullptr) EXCLUSIVE_LOCKS_REQUIRED(cs)
Find an entry.
Definition: addrman.cpp:382
AddrManImpl(const NetGroupManager &netgroupman, bool deterministic, int32_t consistency_check_ratio)
Definition: addrman.cpp:90
std::vector< std::pair< AddrInfo, AddressPosition > > GetEntries(bool from_tried) const EXCLUSIVE_LOCKS_REQUIRED(!cs)
Definition: addrman.cpp:1219
const int32_t m_consistency_check_ratio
Perform consistency checks every m_consistency_check_ratio operations (if non-zero).
Definition: addrman_impl.h:221
std::vector< std::pair< AddrInfo, AddressPosition > > GetEntries_(bool from_tried) const EXCLUSIVE_LOCKS_REQUIRED(cs)
Definition: addrman.cpp:834
void Check() const EXCLUSIVE_LOCKS_REQUIRED(cs)
Consistency check, taking into account m_consistency_check_ratio.
Definition: addrman.cpp:1029
int CheckAddrman() const EXCLUSIVE_LOCKS_REQUIRED(cs)
Perform consistency check, regardless of m_consistency_check_ratio.
Definition: addrman.cpp:1044
bool Add(const std::vector< CAddress > &vAddr, const CNetAddr &source, std::chrono::seconds time_penalty) EXCLUSIVE_LOCKS_REQUIRED(!cs)
Definition: addrman.cpp:1158
std::optional< AddressPosition > FindAddressEntry(const CAddress &addr) EXCLUSIVE_LOCKS_REQUIRED(!cs)
Definition: addrman.cpp:1244
bool Good_(const CService &addr, bool test_before_evict, NodeSeconds time) EXCLUSIVE_LOCKS_REQUIRED(cs)
Definition: addrman.cpp:607
std::vector< CAddress > GetAddr_(size_t max_addresses, size_t max_pct, std::optional< Network > network, bool filtered=true) const EXCLUSIVE_LOCKS_REQUIRED(cs)
Definition: addrman.cpp:793
Mutex cs
A mutex to protect the inner data structures.
Definition: addrman_impl.h:157
size_t Size_(std::optional< Network > net, std::optional< bool > in_new) const EXCLUSIVE_LOCKS_REQUIRED(cs)
Definition: addrman.cpp:1007
std::pair< CAddress, NodeSeconds > SelectTriedCollision_() EXCLUSIVE_LOCKS_REQUIRED(cs)
Definition: addrman.cpp:956
std::pair< CAddress, NodeSeconds > SelectTriedCollision() EXCLUSIVE_LOCKS_REQUIRED(!cs)
Definition: addrman.cpp:1192
std::set< nid_type > m_tried_collisions
Holds addrs inserted into tried table that collide with existing entries. Test-before-evict disciplin...
Definition: addrman_impl.h:218
static constexpr uint8_t INCOMPATIBILITY_BASE
The initial value of a field that is incremented every time an incompatible format change is made (su...
Definition: addrman_impl.h:186
void SwapRandom(unsigned int nRandomPos1, unsigned int nRandomPos2) const EXCLUSIVE_LOCKS_REQUIRED(cs)
Swap two elements in vRandom.
Definition: addrman.cpp:413
std::pair< CAddress, NodeSeconds > Select(bool new_only, const std::unordered_set< Network > &networks) const EXCLUSIVE_LOCKS_REQUIRED(!cs)
Definition: addrman.cpp:1201
void Attempt(const CService &addr, bool fCountFailure, NodeSeconds time) EXCLUSIVE_LOCKS_REQUIRED(!cs)
Definition: addrman.cpp:1176
void Unserialize(Stream &s_) EXCLUSIVE_LOCKS_REQUIRED(!cs)
Definition: addrman.cpp:212
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.
Definition: addrman.cpp:776
uint256 nKey
secret key to randomize bucket select with
Definition: addrman_impl.h:163
void ResolveCollisions() EXCLUSIVE_LOCKS_REQUIRED(!cs)
Definition: addrman.cpp:1184
const NetGroupManager & m_netgroupman
Reference to the netgroup manager.
Definition: addrman_impl.h:224
bool Add_(const std::vector< CAddress > &vAddr, const CNetAddr &source, std::chrono::seconds time_penalty) EXCLUSIVE_LOCKS_REQUIRED(cs)
Definition: addrman.cpp:662
bool Good(const CService &addr, NodeSeconds time) EXCLUSIVE_LOCKS_REQUIRED(!cs)
Definition: addrman.cpp:1167
size_t Size(std::optional< Network > net, std::optional< bool > in_new) const EXCLUSIVE_LOCKS_REQUIRED(!cs)
Definition: addrman.cpp:1149
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.
Definition: addrman.cpp:531
Non-refcounted RAII wrapper for FILE*.
Definition: streams.h:395
A CService with information about it as peer.
Definition: protocol.h:379
ServiceFlags nServices
Serialized as uint64_t in V1, and as CompactSize in V2.
Definition: protocol.h:471
NodeSeconds nTime
Always included in serialization. The behavior is unspecified if the value is not representable as ui...
Definition: protocol.h:469
static constexpr SerParams V1_DISK
Definition: protocol.h:422
static constexpr SerParams V2_DISK
Definition: protocol.h:423
Network address.
Definition: netaddress.h:113
bool IsRoutable() const
Definition: netaddress.cpp:462
bool IsValid() const
Definition: netaddress.cpp:424
enum Network GetNetwork() const
Definition: netaddress.cpp:496
A combination of a network address (CNetAddr) and a (TCP) port.
Definition: netaddress.h:530
std::string ToStringAddrPort() const
Definition: netaddress.cpp:903
std::vector< unsigned char > GetKey() const
Definition: netaddress.cpp:895
Double ended buffer combining vector and stream-like interfaces.
Definition: streams.h:165
Reads data from an underlying stream, while hashing the read data.
Definition: hash.h:159
A writer stream (for serialization) that computes a 256-bit hash.
Definition: hash.h:109
Writes data to an underlying source stream, while hashing the written data.
Definition: hash.h:193
Netgroup manager.
Definition: netgroup.h:17
uint256 GetAsmapVersion() const
Get the asmap version, a checksum identifying the asmap being used.
Definition: netgroup.cpp:14
std::vector< unsigned char > GetGroup(const CNetAddr &address) const
Get the canonical identifier of the network group for address.
Definition: netgroup.cpp:19
uint32_t GetMappedAS(const CNetAddr &address) const
Get the autonomous system on the BGP path to address.
Definition: netgroup.cpp:82
Wrapper that overrides the GetParams() function of a stream.
Definition: serialize.h:1169
constexpr bool IsNull() const
Definition: uint256.h:49
constexpr void SetNull()
Definition: uint256.h:56
256-bit opaque blob.
Definition: uint256.h:196
#define LogError(...)
Definition: log.h:127
#define LogDebug(category,...)
Definition: log.h:143
@ ADDRMAN
Definition: categories.h:25
void format(std::ostream &out, FormatStringCheck< sizeof...(Args)> fmt, const Args &... args)
Format list of arguments to the stream according to given format string.
Definition: tinyformat.h:1079
ServiceFlags
nServices flags
Definition: protocol.h:321
const char * source
Definition: rpcconsole.cpp:63
Location information for an address in AddrMan.
Definition: addrman.h:60
Definition: gen.cpp:103
static time_point now() noexcept
Return current system time or mocked time, if set.
Definition: time.cpp:38
#define LOCK(cs)
Definition: sync.h:268
const size_t num_entries
Definition: dbwrapper.cpp:376
static int count
#define LOG_TIME_MILLIS_WITH_CATEGORY_MSG_ONCE(end_msg, log_category)
Definition: timer.h:105
#define strprintf
Format arguments and return the string or write to given std::ostream (see tinyformat::format doc for...
Definition: tinyformat.h:1172
std::chrono::time_point< NodeClock, std::chrono::seconds > NodeSeconds
Definition: time.h:35
AssertLockHeld(pool.cs)
assert(!tx.IsCoinBase())