Branch data Line data Source code
1 : : // Copyright (c) 2012 Pieter Wuille
2 : : // Copyright (c) 2012-2022 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.h>
13 : : #include <logging/timer.h>
14 : : #include <netaddress.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/time.h>
23 : :
24 : : #include <cmath>
25 : : #include <optional>
26 : :
27 : : /** Over how many buckets entries with tried addresses from a single group (/16 for IPv4) are spread */
28 : : static constexpr uint32_t ADDRMAN_TRIED_BUCKETS_PER_GROUP{8};
29 : : /** Over how many buckets entries with new addresses originating from a single group are spread */
30 : : static constexpr uint32_t ADDRMAN_NEW_BUCKETS_PER_SOURCE_GROUP{64};
31 : : /** Maximum number of times an address can occur in the new table */
32 : : static constexpr int32_t ADDRMAN_NEW_BUCKETS_PER_ADDRESS{8};
33 : : /** How old addresses can maximally be */
34 : : static constexpr auto ADDRMAN_HORIZON{30 * 24h};
35 : : /** After how many failed attempts we give up on a new node */
36 : : static constexpr int32_t ADDRMAN_RETRIES{3};
37 : : /** How many successive failures are allowed ... */
38 : : static constexpr int32_t ADDRMAN_MAX_FAILURES{10};
39 : : /** ... in at least this duration */
40 : : static constexpr auto ADDRMAN_MIN_FAIL{7 * 24h};
41 : : /** How recent a successful connection should be before we allow an address to be evicted from tried */
42 : : static constexpr auto ADDRMAN_REPLACEMENT{4h};
43 : : /** The maximum number of tried addr collisions to store */
44 : : static constexpr size_t ADDRMAN_SET_TRIED_COLLISION_SIZE{10};
45 : : /** The maximum time we'll spend trying to resolve a tried table collision */
46 : : static constexpr auto ADDRMAN_TEST_WINDOW{40min};
47 : :
48 : 13680253 : int AddrInfo::GetTriedBucket(const uint256& nKey, const NetGroupManager& netgroupman) const
49 : : {
50 [ + - + - ]: 13680253 : uint64_t hash1 = (HashWriter{} << nKey << GetKey()).GetCheapHash();
51 [ + - + - : 13680253 : uint64_t hash2 = (HashWriter{} << nKey << netgroupman.GetGroup(*this) << (hash1 % ADDRMAN_TRIED_BUCKETS_PER_GROUP)).GetCheapHash();
+ - ]
52 : 13680253 : return hash2 % ADDRMAN_TRIED_BUCKET_COUNT;
53 : : }
54 : :
55 : 13458491 : int AddrInfo::GetNewBucket(const uint256& nKey, const CNetAddr& src, const NetGroupManager& netgroupman) const
56 : : {
57 : 13458491 : std::vector<unsigned char> vchSourceGroupKey = netgroupman.GetGroup(src);
58 [ + - + - : 26916982 : uint64_t hash1 = (HashWriter{} << nKey << netgroupman.GetGroup(*this) << vchSourceGroupKey).GetCheapHash();
+ - + - +
- ]
59 [ + - + - : 13458491 : uint64_t hash2 = (HashWriter{} << nKey << vchSourceGroupKey << (hash1 % ADDRMAN_NEW_BUCKETS_PER_SOURCE_GROUP)).GetCheapHash();
+ - + - +
- ]
60 : 13458491 : return hash2 % ADDRMAN_NEW_BUCKET_COUNT;
61 : 13458491 : }
62 : :
63 : 40084699 : int AddrInfo::GetBucketPosition(const uint256& nKey, bool fNew, int bucket) const
64 : : {
65 [ + + + - : 53764952 : uint64_t hash1 = (HashWriter{} << nKey << (fNew ? uint8_t{'N'} : uint8_t{'K'}) << bucket << GetKey()).GetCheapHash();
+ - ]
66 : 40084699 : return hash1 % ADDRMAN_BUCKET_SIZE;
67 : : }
68 : :
69 : 7138114 : bool AddrInfo::IsTerrible(NodeSeconds now) const
70 : : {
71 [ + + ]: 7138114 : if (now - m_last_try <= 1min) { // never remove things tried in the last minute
72 : : return false;
73 : : }
74 : :
75 [ + + ]: 6294161 : if (nTime > now + 10min) { // came in a flying DeLorean
76 : : return true;
77 : : }
78 : :
79 [ + + ]: 3049130 : if (now - nTime > ADDRMAN_HORIZON) { // not seen in recent history
80 : : return true;
81 : : }
82 : :
83 [ + + + - ]: 146317 : if (TicksSinceEpoch<std::chrono::seconds>(m_last_success) == 0 && nAttempts >= ADDRMAN_RETRIES) { // tried N times and never a success
84 : : return true;
85 : : }
86 : :
87 [ + + + + ]: 146317 : if (now - m_last_success > ADDRMAN_MIN_FAIL && nAttempts >= ADDRMAN_MAX_FAILURES) { // N successive failures in the last week
88 : 16 : return true;
89 : : }
90 : :
91 : : return false;
92 : : }
93 : :
94 : 2232 : double AddrInfo::GetChance(NodeSeconds now) const
95 : : {
96 : 2232 : double fChance = 1.0;
97 : :
98 : : // deprioritize very recent attempts away
99 [ + + ]: 2232 : if (now - m_last_try < 10min) {
100 : 808 : fChance *= 0.01;
101 : : }
102 : :
103 : : // deprioritize 66% after each failed attempt, but at most 1/28th to avoid the search taking forever or overly penalizing outages.
104 [ + + ]: 2232 : fChance *= pow(0.66, std::min(nAttempts, 8));
105 : :
106 : 2232 : return fChance;
107 : : }
108 : :
109 : 10918 : AddrManImpl::AddrManImpl(const NetGroupManager& netgroupman, bool deterministic, int32_t consistency_check_ratio)
110 : 10918 : : insecure_rand{deterministic}
111 [ + + ]: 10918 : , nKey{deterministic ? uint256{1} : insecure_rand.rand256()}
112 : 10918 : , m_consistency_check_ratio{consistency_check_ratio}
113 : 21836 : , m_netgroupman{netgroupman}
114 : : {
115 [ + + ]: 11190950 : for (auto& bucket : vvNew) {
116 [ + + ]: 726702080 : for (auto& entry : bucket) {
117 : 715522048 : entry = -1;
118 : : }
119 : : }
120 [ + + ]: 2805926 : for (auto& bucket : vvTried) {
121 [ + + ]: 181675520 : for (auto& entry : bucket) {
122 : 178880512 : entry = -1;
123 : : }
124 : : }
125 : 10918 : }
126 : :
127 : 10918 : AddrManImpl::~AddrManImpl()
128 : : {
129 : 10918 : nKey.SetNull();
130 : 10918 : }
131 : :
132 : : template <typename Stream>
133 : 2691 : void AddrManImpl::Serialize(Stream& s_) const
134 : : {
135 [ + - ]: 2691 : LOCK(cs);
136 : :
137 : : /**
138 : : * Serialized format.
139 : : * * format version byte (@see `Format`)
140 : : * * lowest compatible format version byte. This is used to help old software decide
141 : : * whether to parse the file. For example:
142 : : * * Bitcoin Core version N knows how to parse up to format=3. If a new format=4 is
143 : : * introduced in version N+1 that is compatible with format=3 and it is known that
144 : : * version N will be able to parse it, then version N+1 will write
145 : : * (format=4, lowest_compatible=3) in the first two bytes of the file, and so
146 : : * version N will still try to parse it.
147 : : * * Bitcoin Core version N+2 introduces a new incompatible format=5. It will write
148 : : * (format=5, lowest_compatible=5) and so any versions that do not know how to parse
149 : : * format=5 will not try to read the file.
150 : : * * nKey
151 : : * * nNew
152 : : * * nTried
153 : : * * number of "new" buckets XOR 2**30
154 : : * * all new addresses (total count: nNew)
155 : : * * all tried addresses (total count: nTried)
156 : : * * for each new bucket:
157 : : * * number of elements
158 : : * * for each element: index in the serialized "all new addresses"
159 : : * * asmap checksum
160 : : *
161 : : * 2**30 is xorred with the number of buckets to make addrman deserializer v0 detect it
162 : : * as incompatible. This is necessary because it did not check the version number on
163 : : * deserialization.
164 : : *
165 : : * vvNew, vvTried, mapInfo, mapAddr and vRandom are never encoded explicitly;
166 : : * they are instead reconstructed from the other information.
167 : : *
168 : : * This format is more complex, but significantly smaller (at most 1.5 MiB), and supports
169 : : * changes to the ADDRMAN_ parameters without breaking the on-disk structure.
170 : : *
171 : : * We don't use SERIALIZE_METHODS since the serialization and deserialization code has
172 : : * very little in common.
173 : : */
174 : :
175 : : // Always serialize in the latest version (FILE_FORMAT).
176 : 2691 : ParamsStream s{s_, CAddress::V2_DISK};
177 : :
178 [ + - ]: 2691 : s << static_cast<uint8_t>(FILE_FORMAT);
179 : :
180 : : // Increment `lowest_compatible` iff a newly introduced format is incompatible with
181 : : // the previous one.
182 : : static constexpr uint8_t lowest_compatible = Format::V4_MULTIPORT;
183 [ + - ]: 2691 : s << static_cast<uint8_t>(INCOMPATIBILITY_BASE + lowest_compatible);
184 : :
185 [ + - ]: 2691 : s << nKey;
186 [ + - ]: 2691 : s << nNew;
187 [ + - ]: 2691 : s << nTried;
188 : :
189 [ + - ]: 2691 : int nUBuckets = ADDRMAN_NEW_BUCKET_COUNT ^ (1 << 30);
190 : 2691 : s << nUBuckets;
191 : 2691 : std::unordered_map<nid_type, int> mapUnkIds;
192 : 2691 : int nIds = 0;
193 [ + + ]: 6958279 : for (const auto& entry : mapInfo) {
194 [ + - ]: 6955588 : mapUnkIds[entry.first] = nIds;
195 : 6955588 : const AddrInfo& info = entry.second;
196 [ + + ]: 6955588 : if (info.nRefCount) {
197 [ - + ]: 3854263 : assert(nIds != nNew); // this means nNew was wrong, oh ow
198 : 3854263 : s << info;
199 : 3854263 : nIds++;
200 : : }
201 : : }
202 : 2691 : nIds = 0;
203 [ + + ]: 6958279 : for (const auto& entry : mapInfo) {
204 : 6955588 : const AddrInfo& info = entry.second;
205 [ + + ]: 6955588 : if (info.fInTried) {
206 [ - + ]: 3101325 : assert(nIds != nTried); // this means nTried was wrong, oh ow
207 : 3101325 : s << info;
208 : 3101325 : nIds++;
209 : : }
210 : : }
211 [ + + ]: 2758275 : for (int bucket = 0; bucket < ADDRMAN_NEW_BUCKET_COUNT; bucket++) {
212 : : int nSize = 0;
213 [ + + ]: 179112960 : for (int i = 0; i < ADDRMAN_BUCKET_SIZE; i++) {
214 [ + + ]: 176357376 : if (vvNew[bucket][i] != -1)
215 : 4024683 : nSize++;
216 : : }
217 : 179112960 : s << nSize;
218 [ + + ]: 179112960 : for (int i = 0; i < ADDRMAN_BUCKET_SIZE; i++) {
219 [ + + ]: 176357376 : if (vvNew[bucket][i] != -1) {
220 [ + - + - ]: 4024683 : int nIndex = mapUnkIds[vvNew[bucket][i]];
221 : 176357376 : s << nIndex;
222 : : }
223 : : }
224 : : }
225 : : // Store asmap checksum after bucket entries so that it
226 : : // can be ignored by older clients for backward compatibility.
227 [ + - ]: 5382 : s << m_netgroupman.GetAsmapChecksum();
228 [ + - ]: 5382 : }
229 : :
230 : : template <typename Stream>
231 : 5113 : void AddrManImpl::Unserialize(Stream& s_)
232 : : {
233 : 5113 : LOCK(cs);
234 : :
235 [ - + ]: 5113 : assert(vRandom.empty());
236 : :
237 : : Format format;
238 [ + + ]: 5113 : s_ >> Using<CustomUintFormatter<1>>(format);
239 : :
240 [ + + + + ]: 5010 : const auto ser_params = (format >= Format::V3_BIP155 ? CAddress::V2_DISK : CAddress::V1_DISK);
241 [ + + ]: 5010 : ParamsStream s{s_, ser_params};
242 : :
243 : : uint8_t compat;
244 : 4893 : s >> compat;
245 [ + + ]: 4893 : if (compat < INCOMPATIBILITY_BASE) {
246 [ + - + - ]: 890 : throw std::ios_base::failure(strprintf(
247 : : "Corrupted addrman database: The compat value (%u) "
248 : : "is lower than the expected minimum value %u.",
249 : : compat, INCOMPATIBILITY_BASE));
250 : : }
251 : 4448 : const uint8_t lowest_compatible = compat - INCOMPATIBILITY_BASE;
252 [ + + ]: 4448 : if (lowest_compatible > FILE_FORMAT) {
253 : 1572 : throw InvalidAddrManVersionError(strprintf(
254 : : "Unsupported format of addrman database: %u. It is compatible with formats >=%u, "
255 : : "but the maximum supported by this version of %s is %u.",
256 [ + - ]: 786 : uint8_t{format}, lowest_compatible, CLIENT_NAME, uint8_t{FILE_FORMAT}));
257 : : }
258 : :
259 [ + + ]: 3662 : s >> nKey;
260 [ + + ]: 3652 : s >> nNew;
261 [ + + ]: 3650 : s >> nTried;
262 [ + + ]: 3648 : int nUBuckets = 0;
263 : 3644 : s >> nUBuckets;
264 [ + + ]: 3644 : if (format >= Format::V1_DETERMINISTIC) {
265 : 2440 : nUBuckets ^= (1 << 30);
266 : : }
267 : :
268 [ + + ]: 3644 : if (nNew > ADDRMAN_NEW_BUCKET_COUNT * ADDRMAN_BUCKET_SIZE || nNew < 0) {
269 [ + - ]: 30 : throw std::ios_base::failure(
270 : 15 : strprintf("Corrupt AddrMan serialization: nNew=%d, should be in [0, %d]",
271 : 15 : nNew,
272 [ + - ]: 15 : ADDRMAN_NEW_BUCKET_COUNT * ADDRMAN_BUCKET_SIZE));
273 : : }
274 : :
275 [ + + ]: 3629 : if (nTried > ADDRMAN_TRIED_BUCKET_COUNT * ADDRMAN_BUCKET_SIZE || nTried < 0) {
276 [ + - ]: 36 : throw std::ios_base::failure(
277 : 18 : strprintf("Corrupt AddrMan serialization: nTried=%d, should be in [0, %d]",
278 : 18 : nTried,
279 [ + - ]: 18 : ADDRMAN_TRIED_BUCKET_COUNT * ADDRMAN_BUCKET_SIZE));
280 : : }
281 : :
282 : : // Deserialize entries from the new table.
283 [ + + ]: 3628786 : for (int n = 0; n < nNew; n++) {
284 [ + - + + ]: 3625871 : AddrInfo& info = mapInfo[n];
285 : 3625175 : s >> info;
286 [ + - ]: 3625175 : mapAddr[info] = n;
287 [ + - ]: 3625175 : info.nRandomPos = vRandom.size();
288 [ + - ]: 3625175 : vRandom.push_back(n);
289 [ + - + - ]: 3625175 : m_network_counts[info.GetNetwork()].n_new++;
290 : : }
291 : 2915 : nIdCount = nNew;
292 : :
293 : : // Deserialize entries from the tried table.
294 : 2915 : int nLost = 0;
295 [ + + ]: 3113958 : for (int n = 0; n < nTried; n++) {
296 [ + - ]: 3111043 : AddrInfo info;
297 : 3110664 : s >> info;
298 [ + - ]: 3110664 : int nKBucket = info.GetTriedBucket(nKey, m_netgroupman);
299 [ + - ]: 3110664 : int nKBucketPos = info.GetBucketPosition(nKey, false, nKBucket);
300 [ + - ]: 3110664 : if (info.IsValid()
301 [ + + + + ]: 3110664 : && vvTried[nKBucket][nKBucketPos] == -1) {
302 [ + - ]: 3072399 : info.nRandomPos = vRandom.size();
303 : 3072399 : info.fInTried = true;
304 [ + - ]: 3072399 : vRandom.push_back(nIdCount);
305 [ + - ]: 3072399 : mapInfo[nIdCount] = info;
306 [ + - ]: 3072399 : mapAddr[info] = nIdCount;
307 : 3072399 : vvTried[nKBucket][nKBucketPos] = nIdCount;
308 : 3072399 : nIdCount++;
309 [ + - + - ]: 3072399 : m_network_counts[info.GetNetwork()].n_tried++;
310 : : } else {
311 : 38265 : nLost++;
312 : : }
313 : : }
314 : 2536 : nTried -= nLost;
315 : :
316 : : // Store positions in the new table buckets to apply later (if possible).
317 : : // An entry may appear in up to ADDRMAN_NEW_BUCKETS_PER_ADDRESS buckets,
318 : : // so we store all bucket-entry_index pairs to iterate through later.
319 : 2536 : std::vector<std::pair<int, int>> bucket_entries;
320 : :
321 [ + + ]: 1305799 : for (int bucket = 0; bucket < nUBuckets; ++bucket) {
322 [ + + ]: 1303344 : int num_entries{0};
323 : 1303312 : s >> num_entries;
324 [ + + ]: 5915679 : for (int n = 0; n < num_entries; ++n) {
325 [ + + ]: 4612416 : int entry_index{0};
326 : 4612367 : s >> entry_index;
327 [ + + + + ]: 4612367 : if (entry_index >= 0 && entry_index < nNew) {
328 [ + - ]: 4534614 : bucket_entries.emplace_back(bucket, entry_index);
329 : : }
330 : : }
331 : : }
332 : :
333 : : // If the bucket count and asmap checksum haven't changed, then attempt
334 : : // to restore the entries to the buckets/positions they were in before
335 : : // serialization.
336 [ + - ]: 2455 : uint256 supplied_asmap_checksum{m_netgroupman.GetAsmapChecksum()};
337 : 2455 : uint256 serialized_asmap_checksum;
338 [ + + ]: 2455 : if (format >= Format::V2_ASMAP) {
339 : 2440 : s >> serialized_asmap_checksum;
340 : : }
341 [ + + ]: 2440 : const bool restore_bucketing{nUBuckets == ADDRMAN_NEW_BUCKET_COUNT &&
342 [ + + ]: 1233 : serialized_asmap_checksum == supplied_asmap_checksum};
343 : :
344 : : if (!restore_bucketing) {
345 [ + - - + : 1212 : LogDebug(BCLog::ADDRMAN, "Bucketing method was updated, re-bucketing addrman entries from disk\n");
- - ]
346 : : }
347 : :
348 [ + + ]: 3822922 : for (auto bucket_entry : bucket_entries) {
349 : 3820482 : int bucket{bucket_entry.first};
350 : 3820482 : const int entry_index{bucket_entry.second};
351 [ + - ]: 3820482 : AddrInfo& info = mapInfo[entry_index];
352 : :
353 : : // Don't store the entry in the new bucket if it's not a valid address for our addrman
354 [ + - + + ]: 3820482 : if (!info.IsValid()) continue;
355 : :
356 : : // The entry shouldn't appear in more than
357 : : // ADDRMAN_NEW_BUCKETS_PER_ADDRESS. If it has already, just skip
358 : : // this bucket_entry.
359 [ + + ]: 3767152 : if (info.nRefCount >= ADDRMAN_NEW_BUCKETS_PER_ADDRESS) continue;
360 : :
361 [ + - ]: 3766210 : int bucket_position = info.GetBucketPosition(nKey, true, bucket);
362 [ + + + + ]: 3766210 : if (restore_bucketing && vvNew[bucket][bucket_position] == -1) {
363 : : // Bucketing has not changed, using existing bucket positions for the new table
364 : 3452903 : vvNew[bucket][bucket_position] = entry_index;
365 : 3452903 : ++info.nRefCount;
366 : : } else {
367 : : // In case the new table data cannot be used (bucket count wrong or new asmap),
368 : : // try to give them a reference based on their primary source address.
369 [ + - ]: 313307 : bucket = info.GetNewBucket(nKey, m_netgroupman);
370 [ + - ]: 313307 : bucket_position = info.GetBucketPosition(nKey, true, bucket);
371 [ + + ]: 313307 : if (vvNew[bucket][bucket_position] == -1) {
372 : 1678 : vvNew[bucket][bucket_position] = entry_index;
373 : 1678 : ++info.nRefCount;
374 : : }
375 : : }
376 : : }
377 : :
378 : : // Prune new entries with refcount 0 (as a result of collisions or invalid address).
379 : 2440 : int nLostUnk = 0;
380 [ + + ]: 6561842 : for (auto it = mapInfo.cbegin(); it != mapInfo.cend(); ) {
381 [ + + + + ]: 6559402 : if (it->second.fInTried == false && it->second.nRefCount == 0) {
382 [ + - ]: 171589 : const auto itCopy = it++;
383 [ + - ]: 171589 : Delete(itCopy->first);
384 : 171589 : ++nLostUnk;
385 : : } else {
386 : 6387813 : ++it;
387 : : }
388 : : }
389 [ + + ]: 2440 : if (nLost + nLostUnk > 0) {
390 [ + - - + : 598 : LogDebug(BCLog::ADDRMAN, "addrman lost %i new and %i tried addresses due to collisions or invalid addresses\n", nLostUnk, nLost);
- - ]
391 : : }
392 : :
393 [ + - ]: 2440 : const int check_code{CheckAddrman()};
394 [ + + ]: 2440 : if (check_code != 0) {
395 [ + - + - ]: 506 : throw std::ios_base::failure(strprintf(
396 : : "Corrupt data. Consistency check failed with code %s",
397 : : check_code));
398 : : }
399 [ + - ]: 4723 : }
400 : :
401 : 17613170 : AddrInfo* AddrManImpl::Find(const CService& addr, nid_type* pnId)
402 : : {
403 : 17613170 : AssertLockHeld(cs);
404 : :
405 : 17613170 : const auto it = mapAddr.find(addr);
406 [ + + ]: 17613170 : if (it == mapAddr.end())
407 : : return nullptr;
408 [ + + ]: 7255493 : if (pnId)
409 : 7235906 : *pnId = (*it).second;
410 : 7255493 : const auto it2 = mapInfo.find((*it).second);
411 [ + - ]: 7255493 : if (it2 != mapInfo.end())
412 : 7255493 : return &(*it2).second;
413 : : return nullptr;
414 : : }
415 : :
416 : 9512761 : AddrInfo* AddrManImpl::Create(const CAddress& addr, const CNetAddr& addrSource, nid_type* pnId)
417 : : {
418 : 9512761 : AssertLockHeld(cs);
419 : :
420 : 9512761 : nid_type nId = nIdCount++;
421 [ + - ]: 9512761 : mapInfo[nId] = AddrInfo(addr, addrSource);
422 : 9512761 : mapAddr[addr] = nId;
423 : 9512761 : mapInfo[nId].nRandomPos = vRandom.size();
424 : 9512761 : vRandom.push_back(nId);
425 : 9512761 : nNew++;
426 : 9512761 : m_network_counts[addr.GetNetwork()].n_new++;
427 [ + - ]: 9512761 : if (pnId)
428 : 9512761 : *pnId = nId;
429 : 9512761 : return &mapInfo[nId];
430 : : }
431 : :
432 : 7295675 : void AddrManImpl::SwapRandom(unsigned int nRndPos1, unsigned int nRndPos2) const
433 : : {
434 : 7295675 : AssertLockHeld(cs);
435 : :
436 [ + + ]: 7295675 : if (nRndPos1 == nRndPos2)
437 : : return;
438 : :
439 [ + - - + ]: 6399752 : assert(nRndPos1 < vRandom.size() && nRndPos2 < vRandom.size());
440 : :
441 : 6399752 : nid_type nId1 = vRandom[nRndPos1];
442 : 6399752 : nid_type nId2 = vRandom[nRndPos2];
443 : :
444 : 6399752 : const auto it_1{mapInfo.find(nId1)};
445 : 6399752 : const auto it_2{mapInfo.find(nId2)};
446 [ - + ]: 6399752 : assert(it_1 != mapInfo.end());
447 [ - + ]: 6399752 : assert(it_2 != mapInfo.end());
448 : :
449 : 6399752 : it_1->second.nRandomPos = nRndPos2;
450 : 6399752 : it_2->second.nRandomPos = nRndPos1;
451 : :
452 : 6399752 : vRandom[nRndPos1] = nId2;
453 : 6399752 : vRandom[nRndPos2] = nId1;
454 : : }
455 : :
456 : 2701986 : void AddrManImpl::Delete(nid_type nId)
457 : : {
458 : 2701986 : AssertLockHeld(cs);
459 : :
460 [ - + ]: 2701986 : assert(mapInfo.count(nId) != 0);
461 : 2701986 : AddrInfo& info = mapInfo[nId];
462 [ - + ]: 2701986 : assert(!info.fInTried);
463 [ - + ]: 2701986 : assert(info.nRefCount == 0);
464 : :
465 : 2701986 : SwapRandom(info.nRandomPos, vRandom.size() - 1);
466 : 2701986 : m_network_counts[info.GetNetwork()].n_new--;
467 : 2701986 : vRandom.pop_back();
468 : 2701986 : mapAddr.erase(info);
469 : 2701986 : mapInfo.erase(nId);
470 : 2701986 : nNew--;
471 : 2701986 : }
472 : :
473 : 8986489 : void AddrManImpl::ClearNew(int nUBucket, int nUBucketPos)
474 : : {
475 : 8986489 : AssertLockHeld(cs);
476 : :
477 : : // if there is an entry in the specified bucket, delete it.
478 [ + + ]: 8986489 : if (vvNew[nUBucket][nUBucketPos] != -1) {
479 : 1814296 : nid_type nIdDelete = vvNew[nUBucket][nUBucketPos];
480 : 1814296 : AddrInfo& infoDelete = mapInfo[nIdDelete];
481 [ - + ]: 1814296 : assert(infoDelete.nRefCount > 0);
482 : 1814296 : infoDelete.nRefCount--;
483 : 1814296 : vvNew[nUBucket][nUBucketPos] = -1;
484 [ - + - - ]: 1814296 : LogDebug(BCLog::ADDRMAN, "Removed %s from new[%i][%i]\n", infoDelete.ToStringAddrPort(), nUBucket, nUBucketPos);
485 [ + + ]: 1814296 : if (infoDelete.nRefCount == 0) {
486 : 1714182 : Delete(nIdDelete);
487 : : }
488 : : }
489 : 8986489 : }
490 : :
491 : 3103669 : void AddrManImpl::MakeTried(AddrInfo& info, nid_type nId)
492 : : {
493 : 3103669 : AssertLockHeld(cs);
494 : :
495 : : // remove the entry from all new buckets
496 : 3103669 : const int start_bucket{info.GetNewBucket(nKey, m_netgroupman)};
497 [ + - ]: 8829305 : for (int n = 0; n < ADDRMAN_NEW_BUCKET_COUNT; ++n) {
498 : 8829305 : const int bucket{(start_bucket + n) % ADDRMAN_NEW_BUCKET_COUNT};
499 : 8829305 : const int pos{info.GetBucketPosition(nKey, true, bucket)};
500 [ + + ]: 8829305 : if (vvNew[bucket][pos] == nId) {
501 : 3116350 : vvNew[bucket][pos] = -1;
502 : 3116350 : info.nRefCount--;
503 [ + + ]: 3116350 : if (info.nRefCount == 0) break;
504 : : }
505 : : }
506 : 3103669 : nNew--;
507 : 3103669 : m_network_counts[info.GetNetwork()].n_new--;
508 : :
509 [ - + ]: 3103669 : assert(info.nRefCount == 0);
510 : :
511 : : // which tried bucket to move the entry to
512 : 3103669 : int nKBucket = info.GetTriedBucket(nKey, m_netgroupman);
513 : 3103669 : int nKBucketPos = info.GetBucketPosition(nKey, false, nKBucket);
514 : :
515 : : // first make space to add it (the existing tried entry there is moved to new, deleting whatever is there).
516 [ + + ]: 3103669 : if (vvTried[nKBucket][nKBucketPos] != -1) {
517 : : // find an item to evict
518 : 2610 : nid_type nIdEvict = vvTried[nKBucket][nKBucketPos];
519 [ - + ]: 2610 : assert(mapInfo.count(nIdEvict) == 1);
520 : 2610 : AddrInfo& infoOld = mapInfo[nIdEvict];
521 : :
522 : : // Remove the to-be-evicted item from the tried set.
523 : 2610 : infoOld.fInTried = false;
524 : 2610 : vvTried[nKBucket][nKBucketPos] = -1;
525 : 2610 : nTried--;
526 : 2610 : m_network_counts[infoOld.GetNetwork()].n_tried--;
527 : :
528 : : // find which new bucket it belongs to
529 : 2610 : int nUBucket = infoOld.GetNewBucket(nKey, m_netgroupman);
530 : 2610 : int nUBucketPos = infoOld.GetBucketPosition(nKey, true, nUBucket);
531 : 2610 : ClearNew(nUBucket, nUBucketPos);
532 [ - + ]: 2610 : assert(vvNew[nUBucket][nUBucketPos] == -1);
533 : :
534 : : // Enter it into the new set again.
535 : 2610 : infoOld.nRefCount = 1;
536 : 2610 : vvNew[nUBucket][nUBucketPos] = nIdEvict;
537 : 2610 : nNew++;
538 : 2610 : m_network_counts[infoOld.GetNetwork()].n_new++;
539 [ - + - - ]: 2610 : LogDebug(BCLog::ADDRMAN, "Moved %s from tried[%i][%i] to new[%i][%i] to make space\n",
540 : : infoOld.ToStringAddrPort(), nKBucket, nKBucketPos, nUBucket, nUBucketPos);
541 : : }
542 [ - + ]: 3103669 : assert(vvTried[nKBucket][nKBucketPos] == -1);
543 : :
544 : 3103669 : vvTried[nKBucket][nKBucketPos] = nId;
545 : 3103669 : nTried++;
546 : 3103669 : info.fInTried = true;
547 : 3103669 : m_network_counts[info.GetNetwork()].n_tried++;
548 : 3103669 : }
549 : :
550 : 12097531 : bool AddrManImpl::AddSingle(const CAddress& addr, const CNetAddr& source, std::chrono::seconds time_penalty)
551 : : {
552 : 12097531 : AssertLockHeld(cs);
553 : :
554 [ + + ]: 12097531 : if (!addr.IsRoutable())
555 : : return false;
556 : :
557 : 12002984 : nid_type nId;
558 : 12002984 : AddrInfo* pinfo = Find(addr, &nId);
559 : :
560 : : // Do not set a penalty for a source's self-announcement
561 [ + + ]: 12002984 : if (addr == source) {
562 : 265099 : time_penalty = 0s;
563 : : }
564 : :
565 [ + + ]: 12002984 : if (pinfo) {
566 : : // periodically update nTime
567 : 2490223 : const bool currently_online{NodeClock::now() - addr.nTime < 24h};
568 [ + + ]: 2490223 : const auto update_interval{currently_online ? 1h : 24h};
569 [ + + ]: 2490223 : if (pinfo->nTime < addr.nTime - update_interval - time_penalty) {
570 : 156285 : pinfo->nTime = std::max(NodeSeconds{0s}, addr.nTime - time_penalty);
571 : : }
572 : :
573 : : // add services
574 : 2490223 : pinfo->nServices = ServiceFlags(pinfo->nServices | addr.nServices);
575 : :
576 : : // do not update if no new information is present
577 [ + + ]: 2490223 : if (addr.nTime <= pinfo->nTime) {
578 : : return false;
579 : : }
580 : :
581 : : // do not update if the entry was already in the "tried" table
582 [ + + ]: 2014797 : if (pinfo->fInTried)
583 : : return false;
584 : :
585 : : // do not update if the max reference count is reached
586 [ + + ]: 1224411 : if (pinfo->nRefCount == ADDRMAN_NEW_BUCKETS_PER_ADDRESS)
587 : : return false;
588 : :
589 : : // stochastic test: previous nRefCount == N: 2^N times harder to increase it
590 [ + - ]: 1222761 : if (pinfo->nRefCount > 0) {
591 : 1222761 : const int nFactor{1 << pinfo->nRefCount};
592 [ + + ]: 1222761 : if (insecure_rand.randrange(nFactor) != 0) return false;
593 : : }
594 : : } else {
595 : 9512761 : pinfo = Create(addr, source, &nId);
596 : 9512761 : pinfo->nTime = std::max(NodeSeconds{0s}, pinfo->nTime - time_penalty);
597 : : }
598 : :
599 : 10038905 : int nUBucket = pinfo->GetNewBucket(nKey, source, m_netgroupman);
600 : 10038905 : int nUBucketPos = pinfo->GetBucketPosition(nKey, true, nUBucket);
601 : 10038905 : bool fInsert = vvNew[nUBucket][nUBucketPos] == -1;
602 [ + + ]: 10038905 : if (vvNew[nUBucket][nUBucketPos] != nId) {
603 [ + + ]: 9819902 : if (!fInsert) {
604 : 2650099 : AddrInfo& infoExisting = mapInfo[vvNew[nUBucket][nUBucketPos]];
605 [ + + + + : 2650099 : if (infoExisting.IsTerrible() || (infoExisting.nRefCount > 1 && pinfo->nRefCount == 0)) {
+ + ]
606 : : // Overwrite the existing new table entry.
607 : : fInsert = true;
608 : : }
609 : : }
610 [ + + ]: 8005826 : if (fInsert) {
611 : 8983879 : ClearNew(nUBucket, nUBucketPos);
612 : 8983879 : pinfo->nRefCount++;
613 : 8983879 : vvNew[nUBucket][nUBucketPos] = nId;
614 : 8983879 : const auto mapped_as{m_netgroupman.GetMappedAS(addr)};
615 [ - + - - : 8983879 : LogDebug(BCLog::ADDRMAN, "Added %s%s to new[%i][%i]\n",
- - - - ]
616 : : addr.ToStringAddrPort(), (mapped_as ? strprintf(" mapped to AS%i", mapped_as) : ""), nUBucket, nUBucketPos);
617 : : } else {
618 [ + + ]: 836023 : if (pinfo->nRefCount == 0) {
619 : 816215 : Delete(nId);
620 : : }
621 : : }
622 : : }
623 : : return fInsert;
624 : : }
625 : :
626 : 5557090 : bool AddrManImpl::Good_(const CService& addr, bool test_before_evict, NodeSeconds time)
627 : : {
628 : 5557090 : AssertLockHeld(cs);
629 : :
630 : 5557090 : nid_type nId;
631 : :
632 : 5557090 : m_last_good = time;
633 : :
634 : 5557090 : AddrInfo* pinfo = Find(addr, &nId);
635 : :
636 : : // if not found, bail out
637 [ + + ]: 5557090 : if (!pinfo) return false;
638 : :
639 : 4745683 : AddrInfo& info = *pinfo;
640 : :
641 : : // update info
642 : 4745683 : info.m_last_success = time;
643 : 4745683 : info.m_last_try = time;
644 : 4745683 : info.nAttempts = 0;
645 : : // nTime is not updated here, to avoid leaking information about
646 : : // currently-connected peers.
647 : :
648 : : // if it is already in the tried set, don't do anything else
649 [ + + ]: 4745683 : if (info.fInTried) return false;
650 : :
651 : : // if it is not in new, something bad happened
652 [ + - ]: 4322367 : if (!Assume(info.nRefCount > 0)) return false;
653 : :
654 : :
655 : : // which tried bucket to move the entry to
656 : 4322367 : int tried_bucket = info.GetTriedBucket(nKey, m_netgroupman);
657 : 4322367 : int tried_bucket_pos = info.GetBucketPosition(nKey, false, tried_bucket);
658 : :
659 : : // Will moving this address into tried evict another entry?
660 [ + + + + ]: 4322367 : if (test_before_evict && (vvTried[tried_bucket][tried_bucket_pos] != -1)) {
661 [ + + ]: 1218698 : if (m_tried_collisions.size() < ADDRMAN_SET_TRIED_COLLISION_SIZE) {
662 : 25052 : m_tried_collisions.insert(nId);
663 : : }
664 : : // Output the entry we'd be colliding with, for debugging purposes
665 : 1218698 : auto colliding_entry = mapInfo.find(vvTried[tried_bucket][tried_bucket_pos]);
666 [ - + - - : 1218698 : LogDebug(BCLog::ADDRMAN, "Collision with %s while attempting to move %s to tried table. Collisions=%d\n",
- - - - -
- ]
667 : : colliding_entry != mapInfo.end() ? colliding_entry->second.ToStringAddrPort() : "",
668 : : addr.ToStringAddrPort(),
669 : : m_tried_collisions.size());
670 : 1218698 : return false;
671 : : } else {
672 : : // move nId to the tried tables
673 : 3103669 : MakeTried(info, nId);
674 : 3103669 : const auto mapped_as{m_netgroupman.GetMappedAS(addr)};
675 [ - + - - : 3103669 : LogDebug(BCLog::ADDRMAN, "Moved %s%s to tried[%i][%i]\n",
- - - - ]
676 : : addr.ToStringAddrPort(), (mapped_as ? strprintf(" mapped to AS%i", mapped_as) : ""), tried_bucket, tried_bucket_pos);
677 : 3103669 : return true;
678 : : }
679 : : }
680 : :
681 : 9593303 : bool AddrManImpl::Add_(const std::vector<CAddress>& vAddr, const CNetAddr& source, std::chrono::seconds time_penalty)
682 : : {
683 : 9593303 : int added{0};
684 [ + + ]: 21690834 : for (std::vector<CAddress>::const_iterator it = vAddr.begin(); it != vAddr.end(); it++) {
685 [ + + ]: 15211183 : added += AddSingle(*it, source, time_penalty) ? 1 : 0;
686 : : }
687 [ + + ]: 9593303 : if (added > 0) {
688 [ - + - - ]: 7514746 : LogDebug(BCLog::ADDRMAN, "Added %i addresses (of %i) from %s: %i tried, %i new\n", added, vAddr.size(), source.ToStringAddr(), nTried, nNew);
689 : : }
690 : 9593303 : return added > 0;
691 : : }
692 : :
693 : 5494 : void AddrManImpl::Attempt_(const CService& addr, bool fCountFailure, NodeSeconds time)
694 : : {
695 : 5494 : AssertLockHeld(cs);
696 : :
697 : 5494 : AddrInfo* pinfo = Find(addr);
698 : :
699 : : // if not found, bail out
700 [ + + ]: 5494 : if (!pinfo)
701 : : return;
702 : :
703 : 3206 : AddrInfo& info = *pinfo;
704 : :
705 : : // update info
706 : 3206 : info.m_last_try = time;
707 [ + + + + ]: 3206 : if (fCountFailure && info.m_last_count_attempt < m_last_good) {
708 : 1909 : info.m_last_count_attempt = time;
709 : 1909 : info.nAttempts++;
710 : : }
711 : : }
712 : :
713 : 1516 : std::pair<CAddress, NodeSeconds> AddrManImpl::Select_(bool new_only, const std::unordered_set<Network>& networks) const
714 : : {
715 : 1516 : AssertLockHeld(cs);
716 : :
717 [ + + ]: 1516 : if (vRandom.empty()) return {};
718 : :
719 : 973 : size_t new_count = nNew;
720 : 973 : size_t tried_count = nTried;
721 : :
722 [ + + ]: 973 : if (!networks.empty()) {
723 : 245 : new_count = 0;
724 : 245 : tried_count = 0;
725 [ + + ]: 1357 : for (auto& network : networks) {
726 : 1112 : auto it = m_network_counts.find(network);
727 [ + + ]: 1112 : if (it == m_network_counts.end()) {
728 : 632 : continue;
729 : : }
730 : 480 : auto counts = it->second;
731 : 480 : new_count += counts.n_new;
732 : 480 : tried_count += counts.n_tried;
733 : : }
734 : : }
735 : :
736 [ + + ]: 973 : if (new_only && new_count == 0) return {};
737 [ + + ]: 954 : if (new_count + tried_count == 0) return {};
738 : :
739 : : // Decide if we are going to search the new or tried table
740 : : // If either option is viable, use a 50% chance to choose
741 : 925 : bool search_tried;
742 [ + + ]: 925 : if (new_only || tried_count == 0) {
743 : : search_tried = false;
744 [ + + ]: 199 : } else if (new_count == 0) {
745 : : search_tried = true;
746 : : } else {
747 : 154 : search_tried = insecure_rand.randbool();
748 : : }
749 : :
750 [ + + ]: 154 : const int bucket_count{search_tried ? ADDRMAN_TRIED_BUCKET_COUNT : ADDRMAN_NEW_BUCKET_COUNT};
751 : :
752 : : // Loop through the addrman table until we find an appropriate entry
753 : 925 : double chance_factor = 1.0;
754 : 1098327 : while (1) {
755 : : // Pick a bucket, and an initial position in that bucket.
756 : 1098327 : int bucket = insecure_rand.randrange(bucket_count);
757 : 1098327 : int initial_position = insecure_rand.randrange(ADDRMAN_BUCKET_SIZE);
758 : :
759 : : // Iterate over the positions of that bucket, starting at the initial one,
760 : : // and looping around.
761 : 1098327 : int i, position;
762 : 1098327 : nid_type node_id;
763 [ + + ]: 71309928 : for (i = 0; i < ADDRMAN_BUCKET_SIZE; ++i) {
764 : 70213833 : position = (initial_position + i) % ADDRMAN_BUCKET_SIZE;
765 : 70213833 : node_id = GetEntry(search_tried, bucket, position);
766 [ + + ]: 70213833 : if (node_id != -1) {
767 [ + + ]: 20565 : if (!networks.empty()) {
768 : 18632 : const auto it{mapInfo.find(node_id)};
769 [ + - + + ]: 18632 : if (Assume(it != mapInfo.end()) && networks.contains(it->second.GetNetwork())) break;
770 : : } else {
771 : : break;
772 : : }
773 : : }
774 : : }
775 : :
776 : : // If the bucket is entirely empty, start over with a (likely) different one.
777 [ + + ]: 1098327 : if (i == ADDRMAN_BUCKET_SIZE) continue;
778 : :
779 : : // Find the entry to return.
780 : 2232 : const auto it_found{mapInfo.find(node_id)};
781 [ - + ]: 2232 : assert(it_found != mapInfo.end());
782 : 2232 : const AddrInfo& info{it_found->second};
783 : :
784 : : // With probability GetChance() * chance_factor, return the entry.
785 [ + + ]: 2232 : if (insecure_rand.randbits<30>() < chance_factor * info.GetChance() * (1 << 30)) {
786 [ - + - - : 925 : LogDebug(BCLog::ADDRMAN, "Selected %s from %s\n", info.ToStringAddrPort(), search_tried ? "tried" : "new");
- - ]
787 : 925 : return {info, info.m_last_try};
788 : : }
789 : :
790 : : // Otherwise start over with a (likely) different bucket, and increased chance factor.
791 : 1307 : chance_factor *= 1.2;
792 : : }
793 : : }
794 : :
795 : 70295753 : nid_type AddrManImpl::GetEntry(bool use_tried, size_t bucket, size_t position) const
796 : : {
797 : 70295753 : AssertLockHeld(cs);
798 : :
799 [ + + ]: 70295753 : if (use_tried) {
800 [ + - + - ]: 7264343 : if (Assume(position < ADDRMAN_BUCKET_SIZE) && Assume(bucket < ADDRMAN_TRIED_BUCKET_COUNT)) {
801 : 7264343 : return vvTried[bucket][position];
802 : : }
803 : : } else {
804 [ + - + - ]: 63031410 : if (Assume(position < ADDRMAN_BUCKET_SIZE) && Assume(bucket < ADDRMAN_NEW_BUCKET_COUNT)) {
805 : 63031410 : return vvNew[bucket][position];
806 : : }
807 : : }
808 : :
809 : : return -1;
810 : : }
811 : :
812 : 9050 : std::vector<CAddress> AddrManImpl::GetAddr_(size_t max_addresses, size_t max_pct, std::optional<Network> network, const bool filtered) const
813 : : {
814 : 9050 : AssertLockHeld(cs);
815 : :
816 [ + + ]: 9050 : size_t nNodes = vRandom.size();
817 [ + + ]: 9050 : if (max_pct != 0) {
818 : 2743 : nNodes = max_pct * nNodes / 100;
819 : : }
820 [ + + ]: 9050 : if (max_addresses != 0) {
821 [ + + ]: 4927 : nNodes = std::min(nNodes, max_addresses);
822 : : }
823 : :
824 : : // gather a list of random nodes, skipping those of low quality
825 : 9050 : const auto now{Now<NodeSeconds>()};
826 : 9050 : std::vector<CAddress> addresses;
827 [ + - ]: 9050 : addresses.reserve(nNodes);
828 [ + + ]: 4602739 : for (unsigned int n = 0; n < vRandom.size(); n++) {
829 [ + + ]: 4593783 : if (addresses.size() >= nNodes)
830 : : break;
831 : :
832 : 4593689 : int nRndPos = insecure_rand.randrange(vRandom.size() - n) + n;
833 [ + - ]: 4593689 : SwapRandom(n, nRndPos);
834 : 4593689 : const auto it{mapInfo.find(vRandom[n])};
835 [ - + ]: 4593689 : assert(it != mapInfo.end());
836 : :
837 [ + + ]: 4593689 : const AddrInfo& ai{it->second};
838 : :
839 : : // Filter by network (optional)
840 [ + + + - : 4593689 : if (network != std::nullopt && ai.GetNetClass() != network) continue;
+ + ]
841 : :
842 : : // Filter for quality
843 [ + - + + : 4488015 : if (ai.IsTerrible(now) && filtered) continue;
+ + ]
844 : :
845 [ + - ]: 417094 : addresses.push_back(ai);
846 : : }
847 [ + - + + : 9050 : LogDebug(BCLog::ADDRMAN, "GetAddr returned %d random addresses\n", addresses.size());
+ - ]
848 : 9050 : return addresses;
849 : 0 : }
850 : :
851 : 2 : std::vector<std::pair<AddrInfo, AddressPosition>> AddrManImpl::GetEntries_(bool from_tried) const
852 : : {
853 : 2 : AssertLockHeld(cs);
854 : :
855 [ + + ]: 2 : const int bucket_count = from_tried ? ADDRMAN_TRIED_BUCKET_COUNT : ADDRMAN_NEW_BUCKET_COUNT;
856 : 2 : std::vector<std::pair<AddrInfo, AddressPosition>> infos;
857 [ + + ]: 1282 : for (int bucket = 0; bucket < bucket_count; ++bucket) {
858 [ + + ]: 83200 : for (int position = 0; position < ADDRMAN_BUCKET_SIZE; ++position) {
859 [ + - ]: 81920 : nid_type id = GetEntry(from_tried, bucket, position);
860 [ - + ]: 81920 : if (id >= 0) {
861 [ # # ]: 0 : AddrInfo info = mapInfo.at(id);
862 : 0 : AddressPosition location = AddressPosition(
863 : : from_tried,
864 : : /*multiplicity_in=*/from_tried ? 1 : info.nRefCount,
865 : : bucket,
866 [ # # # # ]: 0 : position);
867 [ # # ]: 0 : infos.emplace_back(info, location);
868 : 0 : }
869 : : }
870 : : }
871 : :
872 : 2 : return infos;
873 : 0 : }
874 : :
875 : 20180 : void AddrManImpl::Connected_(const CService& addr, NodeSeconds time)
876 : : {
877 : 20180 : AssertLockHeld(cs);
878 : :
879 : 20180 : AddrInfo* pinfo = Find(addr);
880 : :
881 : : // if not found, bail out
882 [ + + ]: 20180 : if (!pinfo)
883 : : return;
884 : :
885 : 7758 : AddrInfo& info = *pinfo;
886 : :
887 : : // update info
888 : 7758 : const auto update_interval{20min};
889 [ + + ]: 7758 : if (time - info.nTime > update_interval) {
890 : 796 : info.nTime = time;
891 : : }
892 : : }
893 : :
894 : 27422 : void AddrManImpl::SetServices_(const CService& addr, ServiceFlags nServices)
895 : : {
896 : 27422 : AssertLockHeld(cs);
897 : :
898 : 27422 : AddrInfo* pinfo = Find(addr);
899 : :
900 : : // if not found, bail out
901 [ + + ]: 27422 : if (!pinfo)
902 : : return;
903 : :
904 : 8623 : AddrInfo& info = *pinfo;
905 : :
906 : : // update info
907 : 8623 : info.nServices = nServices;
908 : : }
909 : :
910 : 5194 : void AddrManImpl::ResolveCollisions_()
911 : : {
912 : 5194 : AssertLockHeld(cs);
913 : :
914 [ + + ]: 28419 : for (std::set<nid_type>::iterator it = m_tried_collisions.begin(); it != m_tried_collisions.end();) {
915 : 23225 : nid_type id_new = *it;
916 : :
917 : 23225 : bool erase_collision = false;
918 : :
919 : : // If id_new not found in mapInfo remove it from m_tried_collisions
920 [ + + ]: 23225 : if (mapInfo.count(id_new) != 1) {
921 : : erase_collision = true;
922 : : } else {
923 : 23085 : AddrInfo& info_new = mapInfo[id_new];
924 : :
925 : : // Which tried bucket to move the entry to.
926 : 23085 : int tried_bucket = info_new.GetTriedBucket(nKey, m_netgroupman);
927 : 23085 : int tried_bucket_pos = info_new.GetBucketPosition(nKey, false, tried_bucket);
928 [ + - ]: 23085 : if (!info_new.IsValid()) { // id_new may no longer map to a valid address
929 : : erase_collision = true;
930 [ + - ]: 23085 : } else if (vvTried[tried_bucket][tried_bucket_pos] != -1) { // The position in the tried bucket is not empty
931 : :
932 : : // Get the to-be-evicted address that is being tested
933 : 23085 : nid_type id_old = vvTried[tried_bucket][tried_bucket_pos];
934 : 23085 : AddrInfo& info_old = mapInfo[id_old];
935 : :
936 : 23085 : const auto current_time{Now<NodeSeconds>()};
937 : :
938 : : // Has successfully connected in last X hours
939 [ + + ]: 23085 : if (current_time - info_old.m_last_success < ADDRMAN_REPLACEMENT) {
940 : : erase_collision = true;
941 [ + + ]: 15912 : } else if (current_time - info_old.m_last_try < ADDRMAN_REPLACEMENT) { // attempted to connect and failed in last X hours
942 : :
943 : : // Give address at least 60 seconds to successfully connect
944 [ - + ]: 517 : if (current_time - info_old.m_last_try > 60s) {
945 [ # # # # : 0 : LogDebug(BCLog::ADDRMAN, "Replacing %s with %s in tried table\n", info_old.ToStringAddrPort(), info_new.ToStringAddrPort());
# # ]
946 : :
947 : : // Replaces an existing address already in the tried table with the new address
948 : 0 : Good_(info_new, false, current_time);
949 : 0 : erase_collision = true;
950 : : }
951 [ + + ]: 15395 : } else if (current_time - info_new.m_last_success > ADDRMAN_TEST_WINDOW) {
952 : : // If the collision hasn't resolved in some reasonable amount of time,
953 : : // just evict the old entry -- we must not be able to
954 : : // connect to it for some reason.
955 [ - + - - : 2610 : LogDebug(BCLog::ADDRMAN, "Unable to test; replacing %s with %s in tried table anyway\n", info_old.ToStringAddrPort(), info_new.ToStringAddrPort());
- - ]
956 : 2610 : Good_(info_new, false, current_time);
957 : 2610 : erase_collision = true;
958 : : }
959 : : } else { // Collision is not actually a collision anymore
960 : 0 : Good_(info_new, false, Now<NodeSeconds>());
961 : 0 : erase_collision = true;
962 : : }
963 : : }
964 : :
965 : 2610 : if (erase_collision) {
966 : 9923 : m_tried_collisions.erase(it++);
967 : : } else {
968 : 13302 : it++;
969 : : }
970 : : }
971 : 5194 : }
972 : :
973 : 67857 : std::pair<CAddress, NodeSeconds> AddrManImpl::SelectTriedCollision_()
974 : : {
975 : 67857 : AssertLockHeld(cs);
976 : :
977 [ + + ]: 67857 : if (m_tried_collisions.size() == 0) return {};
978 : :
979 : 52170 : std::set<nid_type>::iterator it = m_tried_collisions.begin();
980 : :
981 : : // Selects a random element from m_tried_collisions
982 : 52170 : std::advance(it, insecure_rand.randrange(m_tried_collisions.size()));
983 : 52170 : nid_type id_new = *it;
984 : :
985 : : // If id_new not found in mapInfo remove it from m_tried_collisions
986 [ + + ]: 52170 : if (mapInfo.count(id_new) != 1) {
987 : 173 : m_tried_collisions.erase(it);
988 : 173 : return {};
989 : : }
990 : :
991 : 51997 : const AddrInfo& newInfo = mapInfo[id_new];
992 : :
993 : : // which tried bucket to move the entry to
994 : 51997 : int tried_bucket = newInfo.GetTriedBucket(nKey, m_netgroupman);
995 : 51997 : int tried_bucket_pos = newInfo.GetBucketPosition(nKey, false, tried_bucket);
996 : :
997 : 51997 : const AddrInfo& info_old = mapInfo[vvTried[tried_bucket][tried_bucket_pos]];
998 : 51997 : return {info_old, info_old.m_last_try};
999 : : }
1000 : :
1001 : 0 : std::optional<AddressPosition> AddrManImpl::FindAddressEntry_(const CAddress& addr)
1002 : : {
1003 : 0 : AssertLockHeld(cs);
1004 : :
1005 : 0 : AddrInfo* addr_info = Find(addr);
1006 : :
1007 [ # # ]: 0 : if (!addr_info) return std::nullopt;
1008 : :
1009 [ # # ]: 0 : if(addr_info->fInTried) {
1010 : 0 : int bucket{addr_info->GetTriedBucket(nKey, m_netgroupman)};
1011 : 0 : return AddressPosition(/*tried_in=*/true,
1012 : : /*multiplicity_in=*/1,
1013 : : /*bucket_in=*/bucket,
1014 : 0 : /*position_in=*/addr_info->GetBucketPosition(nKey, false, bucket));
1015 : : } else {
1016 : 0 : int bucket{addr_info->GetNewBucket(nKey, m_netgroupman)};
1017 : 0 : return AddressPosition(/*tried_in=*/false,
1018 : : /*multiplicity_in=*/addr_info->nRefCount,
1019 : : /*bucket_in=*/bucket,
1020 : 0 : /*position_in=*/addr_info->GetBucketPosition(nKey, true, bucket));
1021 : : }
1022 : : }
1023 : :
1024 : 6907650 : size_t AddrManImpl::Size_(std::optional<Network> net, std::optional<bool> in_new) const
1025 : : {
1026 : 6907650 : AssertLockHeld(cs);
1027 : :
1028 [ + + ]: 6907650 : if (!net.has_value()) {
1029 [ + + ]: 6907451 : if (in_new.has_value()) {
1030 [ + + ]: 63 : return *in_new ? nNew : nTried;
1031 : : } else {
1032 : 6907388 : return vRandom.size();
1033 : : }
1034 : : }
1035 [ + + ]: 199 : if (auto it = m_network_counts.find(*net); it != m_network_counts.end()) {
1036 [ + + ]: 99 : auto net_count = it->second;
1037 [ + + ]: 99 : if (in_new.has_value()) {
1038 [ + + ]: 75 : return *in_new ? net_count.n_new : net_count.n_tried;
1039 : : } else {
1040 : 24 : return net_count.n_new + net_count.n_tried;
1041 : : }
1042 : : }
1043 : : return 0;
1044 : : }
1045 : :
1046 : 44384296 : void AddrManImpl::Check() const
1047 : : {
1048 : 44384296 : AssertLockHeld(cs);
1049 : :
1050 : : // Run consistency checks 1 in m_consistency_check_ratio times if enabled
1051 [ - + ]: 44384296 : if (m_consistency_check_ratio == 0) return;
1052 [ # # ]: 0 : if (insecure_rand.randrange(m_consistency_check_ratio) >= 1) return;
1053 : :
1054 : 0 : const int err{CheckAddrman()};
1055 [ # # ]: 0 : if (err) {
1056 : 0 : LogPrintf("ADDRMAN CONSISTENCY CHECK FAILED!!! err=%i\n", err);
1057 : 0 : assert(false);
1058 : : }
1059 : : }
1060 : :
1061 : 2440 : int AddrManImpl::CheckAddrman() const
1062 : : {
1063 : 2440 : AssertLockHeld(cs);
1064 : :
1065 [ + - + - ]: 4880 : LOG_TIME_MILLIS_WITH_CATEGORY_MSG_ONCE(
1066 : : strprintf("new %i, tried %i, total %u", nNew, nTried, vRandom.size()), BCLog::ADDRMAN);
1067 : :
1068 [ + - ]: 2440 : std::unordered_set<nid_type> setTried;
1069 [ + - ]: 2440 : std::unordered_map<nid_type, int> mapNew;
1070 : 2440 : std::unordered_map<Network, NewTriedCount> local_counts;
1071 : :
1072 [ + - ]: 2440 : if (vRandom.size() != (size_t)(nTried + nNew))
1073 : : return -7;
1074 : :
1075 [ + + ]: 6389153 : for (const auto& entry : mapInfo) {
1076 : 6386961 : nid_type n = entry.first;
1077 : 6386961 : const AddrInfo& info = entry.second;
1078 [ + + ]: 6386961 : if (info.fInTried) {
1079 [ + + ]: 3068871 : if (!TicksSinceEpoch<std::chrono::seconds>(info.m_last_success)) {
1080 : : return -1;
1081 : : }
1082 [ + - ]: 3068845 : if (info.nRefCount)
1083 : : return -2;
1084 [ + - ]: 3068845 : setTried.insert(n);
1085 [ + - + - ]: 3068845 : local_counts[info.GetNetwork()].n_tried++;
1086 : : } else {
1087 [ + - ]: 3318090 : if (info.nRefCount < 0 || info.nRefCount > ADDRMAN_NEW_BUCKETS_PER_ADDRESS)
1088 : : return -3;
1089 [ + - ]: 3318090 : if (!info.nRefCount)
1090 : : return -4;
1091 [ + - ]: 3318090 : mapNew[n] = info.nRefCount;
1092 [ + - + - ]: 3318090 : local_counts[info.GetNetwork()].n_new++;
1093 : : }
1094 [ + - ]: 6386935 : const auto it{mapAddr.find(info)};
1095 [ + + + + ]: 6386935 : if (it == mapAddr.end() || it->second != n) {
1096 : : return -5;
1097 : : }
1098 [ + - + - : 6386907 : if (info.nRandomPos < 0 || (size_t)info.nRandomPos >= vRandom.size() || vRandom[info.nRandomPos] != n)
+ - ]
1099 : : return -14;
1100 [ + - ]: 6386907 : if (info.m_last_try < NodeSeconds{0s}) {
1101 : : return -6;
1102 : : }
1103 [ + + ]: 6386907 : if (info.m_last_success < NodeSeconds{0s}) {
1104 : : return -8;
1105 : : }
1106 : : }
1107 : :
1108 [ + - ]: 2192 : if (setTried.size() != (size_t)nTried)
1109 : : return -9;
1110 [ + - ]: 2192 : if (mapNew.size() != (size_t)nNew)
1111 : : return -10;
1112 : :
1113 [ + + ]: 563344 : for (int n = 0; n < ADDRMAN_TRIED_BUCKET_COUNT; n++) {
1114 [ + + ]: 36474880 : for (int i = 0; i < ADDRMAN_BUCKET_SIZE; i++) {
1115 [ + + ]: 35913728 : if (vvTried[n][i] != -1) {
1116 [ + - ]: 3068471 : if (!setTried.count(vvTried[n][i]))
1117 : : return -11;
1118 : 3068471 : const auto it{mapInfo.find(vvTried[n][i])};
1119 [ + - + - : 3068471 : if (it == mapInfo.end() || it->second.GetTriedBucket(nKey, m_netgroupman) != n) {
+ - ]
1120 : 0 : return -17;
1121 : : }
1122 [ + - + - ]: 3068471 : if (it->second.GetBucketPosition(nKey, false, n) != i) {
1123 : : return -18;
1124 : : }
1125 : 3068471 : setTried.erase(vvTried[n][i]);
1126 : : }
1127 : : }
1128 : : }
1129 : :
1130 [ + + ]: 2246800 : for (int n = 0; n < ADDRMAN_NEW_BUCKET_COUNT; n++) {
1131 [ + + ]: 145899520 : for (int i = 0; i < ADDRMAN_BUCKET_SIZE; i++) {
1132 [ + + ]: 143654912 : if (vvNew[n][i] != -1) {
1133 [ + - ]: 3454109 : if (!mapNew.count(vvNew[n][i]))
1134 : : return -12;
1135 : 3454109 : const auto it{mapInfo.find(vvNew[n][i])};
1136 [ + - + - : 3454109 : if (it == mapInfo.end() || it->second.GetBucketPosition(nKey, true, n) != i) {
+ - ]
1137 : 0 : return -19;
1138 : : }
1139 [ + - + + ]: 3454109 : if (--mapNew[vvNew[n][i]] == 0)
1140 : 3317737 : mapNew.erase(vvNew[n][i]);
1141 : : }
1142 : : }
1143 : : }
1144 : :
1145 [ + - ]: 2192 : if (setTried.size())
1146 : : return -13;
1147 [ + - ]: 2192 : if (mapNew.size())
1148 : : return -15;
1149 [ + + ]: 2192 : if (nKey.IsNull())
1150 : : return -16;
1151 : :
1152 : : // It's possible that m_network_counts may have all-zero entries that local_counts
1153 : : // doesn't have if addrs from a network were being added and then removed again in the past.
1154 [ + - ]: 2187 : if (m_network_counts.size() < local_counts.size()) {
1155 : : return -20;
1156 : : }
1157 [ + - + + ]: 9303 : for (const auto& [net, count] : m_network_counts) {
1158 [ + - + - : 14232 : if (local_counts[net].n_new != count.n_new || local_counts[net].n_tried != count.n_tried) {
+ - ]
1159 : 0 : return -21;
1160 : : }
1161 : : }
1162 : :
1163 : : return 0;
1164 : 2440 : }
1165 : :
1166 : 6907650 : size_t AddrManImpl::Size(std::optional<Network> net, std::optional<bool> in_new) const
1167 : : {
1168 : 6907650 : LOCK(cs);
1169 [ + - ]: 6907650 : Check();
1170 [ + - ]: 6907650 : auto ret = Size_(net, in_new);
1171 [ + - ]: 6907650 : Check();
1172 [ + - ]: 6907650 : return ret;
1173 : 6907650 : }
1174 : :
1175 : 9593303 : bool AddrManImpl::Add(const std::vector<CAddress>& vAddr, const CNetAddr& source, std::chrono::seconds time_penalty)
1176 : : {
1177 : 9593303 : LOCK(cs);
1178 [ + - ]: 9593303 : Check();
1179 [ + - ]: 9593303 : auto ret = Add_(vAddr, source, time_penalty);
1180 [ + - ]: 9593303 : Check();
1181 [ + - ]: 9593303 : return ret;
1182 : 9593303 : }
1183 : :
1184 : 5554480 : bool AddrManImpl::Good(const CService& addr, NodeSeconds time)
1185 : : {
1186 : 5554480 : LOCK(cs);
1187 [ + - ]: 5554480 : Check();
1188 [ + - ]: 5554480 : auto ret = Good_(addr, /*test_before_evict=*/true, time);
1189 [ + - ]: 5554480 : Check();
1190 [ + - ]: 5554480 : return ret;
1191 : 5554480 : }
1192 : :
1193 : 5494 : void AddrManImpl::Attempt(const CService& addr, bool fCountFailure, NodeSeconds time)
1194 : : {
1195 : 5494 : LOCK(cs);
1196 [ + - ]: 5494 : Check();
1197 [ + - ]: 5494 : Attempt_(addr, fCountFailure, time);
1198 [ + - ]: 5494 : Check();
1199 : 5494 : }
1200 : :
1201 : 5194 : void AddrManImpl::ResolveCollisions()
1202 : : {
1203 : 5194 : LOCK(cs);
1204 [ + - ]: 5194 : Check();
1205 [ + - ]: 5194 : ResolveCollisions_();
1206 [ + - ]: 5194 : Check();
1207 : 5194 : }
1208 : :
1209 : 67857 : std::pair<CAddress, NodeSeconds> AddrManImpl::SelectTriedCollision()
1210 : : {
1211 : 67857 : LOCK(cs);
1212 [ + - ]: 67857 : Check();
1213 [ + - ]: 67857 : auto ret = SelectTriedCollision_();
1214 [ + - ]: 67857 : Check();
1215 [ + - ]: 67857 : return ret;
1216 : 67857 : }
1217 : :
1218 : 1516 : std::pair<CAddress, NodeSeconds> AddrManImpl::Select(bool new_only, const std::unordered_set<Network>& networks) const
1219 : : {
1220 : 1516 : LOCK(cs);
1221 [ + - ]: 1516 : Check();
1222 [ + - ]: 1516 : auto addrRet = Select_(new_only, networks);
1223 [ + - ]: 1516 : Check();
1224 [ + - ]: 1516 : return addrRet;
1225 : 1516 : }
1226 : :
1227 : 9050 : std::vector<CAddress> AddrManImpl::GetAddr(size_t max_addresses, size_t max_pct, std::optional<Network> network, const bool filtered) const
1228 : : {
1229 : 9050 : LOCK(cs);
1230 [ + - ]: 9050 : Check();
1231 [ + - ]: 9050 : auto addresses = GetAddr_(max_addresses, max_pct, network, filtered);
1232 [ + - ]: 9050 : Check();
1233 [ + - ]: 9050 : return addresses;
1234 : 9050 : }
1235 : :
1236 : 2 : std::vector<std::pair<AddrInfo, AddressPosition>> AddrManImpl::GetEntries(bool from_tried) const
1237 : : {
1238 : 2 : LOCK(cs);
1239 [ + - ]: 2 : Check();
1240 [ + - ]: 2 : auto addrInfos = GetEntries_(from_tried);
1241 [ + - ]: 2 : Check();
1242 [ + - ]: 2 : return addrInfos;
1243 : 2 : }
1244 : :
1245 : 20180 : void AddrManImpl::Connected(const CService& addr, NodeSeconds time)
1246 : : {
1247 : 20180 : LOCK(cs);
1248 [ + - ]: 20180 : Check();
1249 [ + - ]: 20180 : Connected_(addr, time);
1250 [ + - ]: 20180 : Check();
1251 : 20180 : }
1252 : :
1253 : 27422 : void AddrManImpl::SetServices(const CService& addr, ServiceFlags nServices)
1254 : : {
1255 : 27422 : LOCK(cs);
1256 [ + - ]: 27422 : Check();
1257 [ + - ]: 27422 : SetServices_(addr, nServices);
1258 [ + - ]: 27422 : Check();
1259 : 27422 : }
1260 : :
1261 : 0 : std::optional<AddressPosition> AddrManImpl::FindAddressEntry(const CAddress& addr)
1262 : : {
1263 : 0 : LOCK(cs);
1264 [ # # ]: 0 : Check();
1265 [ # # ]: 0 : auto entry = FindAddressEntry_(addr);
1266 [ # # ]: 0 : Check();
1267 [ # # ]: 0 : return entry;
1268 : 0 : }
1269 : :
1270 : 10918 : AddrMan::AddrMan(const NetGroupManager& netgroupman, bool deterministic, int32_t consistency_check_ratio)
1271 : 10918 : : m_impl(std::make_unique<AddrManImpl>(netgroupman, deterministic, consistency_check_ratio)) {}
1272 : :
1273 : 10918 : AddrMan::~AddrMan() = default;
1274 : :
1275 : : template <typename Stream>
1276 : 2691 : void AddrMan::Serialize(Stream& s_) const
1277 : : {
1278 : 2691 : m_impl->Serialize<Stream>(s_);
1279 : 2691 : }
1280 : :
1281 : : template <typename Stream>
1282 : 5113 : void AddrMan::Unserialize(Stream& s_)
1283 : : {
1284 : 5113 : m_impl->Unserialize<Stream>(s_);
1285 : 2187 : }
1286 : :
1287 : : // explicit instantiation
1288 : : template void AddrMan::Serialize(HashedSourceWriter<AutoFile>&) const;
1289 : : template void AddrMan::Serialize(DataStream&) const;
1290 : : template void AddrMan::Unserialize(AutoFile&);
1291 : : template void AddrMan::Unserialize(HashVerifier<AutoFile>&);
1292 : : template void AddrMan::Unserialize(DataStream&);
1293 : : template void AddrMan::Unserialize(HashVerifier<DataStream>&);
1294 : :
1295 : 6907650 : size_t AddrMan::Size(std::optional<Network> net, std::optional<bool> in_new) const
1296 : : {
1297 : 6907650 : return m_impl->Size(net, in_new);
1298 : : }
1299 : :
1300 : 9593303 : bool AddrMan::Add(const std::vector<CAddress>& vAddr, const CNetAddr& source, std::chrono::seconds time_penalty)
1301 : : {
1302 : 9593303 : return m_impl->Add(vAddr, source, time_penalty);
1303 : : }
1304 : :
1305 : 5554480 : bool AddrMan::Good(const CService& addr, NodeSeconds time)
1306 : : {
1307 : 5554480 : return m_impl->Good(addr, time);
1308 : : }
1309 : :
1310 : 5494 : void AddrMan::Attempt(const CService& addr, bool fCountFailure, NodeSeconds time)
1311 : : {
1312 : 5494 : m_impl->Attempt(addr, fCountFailure, time);
1313 : 5494 : }
1314 : :
1315 : 5194 : void AddrMan::ResolveCollisions()
1316 : : {
1317 : 5194 : m_impl->ResolveCollisions();
1318 : 5194 : }
1319 : :
1320 : 67857 : std::pair<CAddress, NodeSeconds> AddrMan::SelectTriedCollision()
1321 : : {
1322 : 67857 : return m_impl->SelectTriedCollision();
1323 : : }
1324 : :
1325 : 1516 : std::pair<CAddress, NodeSeconds> AddrMan::Select(bool new_only, const std::unordered_set<Network>& networks) const
1326 : : {
1327 : 1516 : return m_impl->Select(new_only, networks);
1328 : : }
1329 : :
1330 : 9050 : std::vector<CAddress> AddrMan::GetAddr(size_t max_addresses, size_t max_pct, std::optional<Network> network, const bool filtered) const
1331 : : {
1332 : 9050 : return m_impl->GetAddr(max_addresses, max_pct, network, filtered);
1333 : : }
1334 : :
1335 : 2 : std::vector<std::pair<AddrInfo, AddressPosition>> AddrMan::GetEntries(bool use_tried) const
1336 : : {
1337 : 2 : return m_impl->GetEntries(use_tried);
1338 : : }
1339 : :
1340 : 20180 : void AddrMan::Connected(const CService& addr, NodeSeconds time)
1341 : : {
1342 : 20180 : m_impl->Connected(addr, time);
1343 : 20180 : }
1344 : :
1345 : 27422 : void AddrMan::SetServices(const CService& addr, ServiceFlags nServices)
1346 : : {
1347 : 27422 : m_impl->SetServices(addr, nServices);
1348 : 27422 : }
1349 : :
1350 : 0 : std::optional<AddressPosition> AddrMan::FindAddressEntry(const CAddress& addr)
1351 : : {
1352 : 0 : return m_impl->FindAddressEntry(addr);
1353 : : }
|