8 #include <chainparams.h>
31 return std::clamp<int32_t>(g_setup->
m_node.
args->
GetIntArg(
"-checkaddrman", 0), 0, 1000000);
38 g_setup = testing_setup.get();
56 }
catch (
const std::exception&) {
70 static const std::map<uint8_t, uint8_t> net_len_map = {{1,
ADDR_IPV4_SIZE},
75 uint8_t net = fast_random_context.
randrange(5) + 1;
83 s << fast_random_context.
randbytes(net_len_map.at(net));
91 v4_addr.s_addr = 0x05050505;
111 for (
size_t i = 0; i < num_sources; ++i) {
112 const auto source =
RandAddr(fuzzed_data_provider, fast_random_context);
113 const size_t num_addresses = fast_random_context.randrange(500) + 1;
115 for (
size_t j = 0; j < num_addresses; ++j) {
117 const std::chrono::seconds time_penalty{fast_random_context.randrange(100000001)};
118 addrman.
Add({addr},
source, time_penalty);
120 if (n > 0 && addrman.
Size() % n == 0) {
121 addrman.
Good(addr, Now<NodeSeconds>());
125 if (fast_random_context.randrange(10) == 0 && prev_source.IsValid()) {
126 addrman.
Add({addr}, prev_source, time_penalty);
161 auto addrinfo_hasher = [](
const AddrInfo& a) {
163 auto addr_key = a.GetKey();
164 auto source_key = a.source.GetAddrBytes();
165 hasher.
Write(TicksSinceEpoch<std::chrono::seconds>(a.m_last_success));
166 hasher.
Write(a.nAttempts);
167 hasher.
Write(a.nRefCount);
168 hasher.
Write(a.fInTried);
169 hasher.
Write(a.GetNetwork());
170 hasher.
Write(a.source.GetNetwork());
171 hasher.
Write(addr_key.size());
172 hasher.
Write(source_key.size());
173 hasher.
Write(addr_key.data(), addr_key.size());
174 hasher.
Write(source_key.data(), source_key.size());
180 std::tie(
static_cast<const CService&
>(rhs), rhs.source, rhs.m_last_success, rhs.nAttempts, rhs.nRefCount, rhs.fInTried);
183 using Addresses = std::unordered_set<
AddrInfo, decltype(addrinfo_hasher), decltype(addrinfo_eq)>;
185 const size_t num_addresses{
m_impl->mapInfo.size()};
187 Addresses addresses{num_addresses, addrinfo_hasher, addrinfo_eq};
188 for (
const auto& [
id, addr] :
m_impl->mapInfo) {
189 addresses.insert(addr);
192 Addresses other_addresses{num_addresses, addrinfo_hasher, addrinfo_eq};
193 for (
const auto& [
id, addr] : other.
m_impl->mapInfo) {
194 other_addresses.insert(addr);
197 if (addresses != other_addresses) {
202 if (
id == -1 && other_id == -1) {
205 if ((
id == -1 && other_id != -1) || (
id != -1 && other_id == -1)) {
208 return m_impl->mapInfo.at(
id) == other.
m_impl->mapInfo.at(other_id);
216 if (!IdsReferToSameAddress(
m_impl->vvNew[i][j], other.
m_impl->vvNew[i][j])) {
225 if (!IdsReferToSameAddress(
m_impl->vvTried[i][j], other.
m_impl->vvTried[i][j])) {
240 auto addr_man_ptr = std::make_unique<AddrManDeterministic>(netgroupman, fuzzed_data_provider);
244 const auto ser_version{fuzzed_data_provider.
ConsumeIntegral<int32_t>()};
248 }
catch (
const std::ios_base::failure&) {
249 addr_man_ptr = std::make_unique<AddrManDeterministic>(netgroupman, fuzzed_data_provider);
255 fuzzed_data_provider,
263 std::vector<CAddress> addresses;
265 const std::optional<CAddress> opt_address = ConsumeDeserializable<CAddress>(fuzzed_data_provider);
269 addresses.push_back(*opt_address);
271 const std::optional<CNetAddr> opt_net_addr = ConsumeDeserializable<CNetAddr>(fuzzed_data_provider);
273 addr_man.
Add(addresses, *opt_net_addr, std::chrono::seconds{
ConsumeTime(fuzzed_data_provider, 0, 100000000)});
277 const std::optional<CService> opt_service = ConsumeDeserializable<CService>(fuzzed_data_provider);
283 const std::optional<CService> opt_service = ConsumeDeserializable<CService>(fuzzed_data_provider);
289 const std::optional<CService> opt_service = ConsumeDeserializable<CService>(fuzzed_data_provider);
295 const std::optional<CService> opt_service = ConsumeDeserializable<CService>(fuzzed_data_provider);
301 const AddrMan& const_addr_man{addr_man};
303 fuzzed_data_provider.ConsumeIntegralInRange<
size_t>(0, 4096),
304 fuzzed_data_provider.ConsumeIntegralInRange<
size_t>(0, 4096),
306 (void)const_addr_man.Select(fuzzed_data_provider.ConsumeBool());
307 (void)const_addr_man.Size();
309 data_stream << const_addr_man;
325 data_stream << addr_man1;
326 data_stream >> addr_man2;
327 assert(addr_man1 == addr_man2);
void ReadFromStream(AddrMan &addr, CDataStream &ssPeers)
Only used by tests.
static constexpr int ADDRMAN_TRIED_BUCKET_COUNT
static constexpr int ADDRMAN_BUCKET_SIZE
static constexpr int ADDRMAN_NEW_BUCKET_COUNT
static int32_t GetCheckRatio(const NodeContext &node_ctx)
Extended statistics about a CAddress.
CNetAddr source
where knowledge about this address first came from
bool fInTried
in tried set? (memory only)
NodeSeconds m_last_success
last successful connection by us
int nRefCount
reference count in new sets (memory only)
int nAttempts
connection attempts since last successful attempt
AddrManDeterministic(const NetGroupManager &netgroupman, FuzzedDataProvider &fuzzed_data_provider)
bool operator==(const AddrManDeterministic &other) const
Compare with another AddrMan.
Stochastic address manager.
void Connected(const CService &addr, NodeSeconds time=Now< NodeSeconds >())
We have successfully connected to this peer.
const std::unique_ptr< AddrManImpl > m_impl
std::vector< CAddress > GetAddr(size_t max_addresses, size_t max_pct, std::optional< Network > network) const
Return all or many randomly selected addresses, optionally by network.
void Attempt(const CService &addr, bool fCountFailure, NodeSeconds time=Now< NodeSeconds >())
Mark an entry as connection attempted to.
size_t Size(std::optional< Network > net=std::nullopt, std::optional< bool > in_new=std::nullopt) const
Return size information about addrman.
void ResolveCollisions()
See if any to-be-evicted tried table entries have been tested and if so resolve the collisions.
bool Good(const CService &addr, NodeSeconds time=Now< NodeSeconds >())
Mark an address record as accessible and attempt to move it to addrman's tried table.
std::pair< CAddress, NodeSeconds > SelectTriedCollision()
Randomly select an address in the tried table that another address is attempting to evict.
bool Add(const std::vector< CAddress > &vAddr, const CNetAddr &source, std::chrono::seconds time_penalty=0s)
Attempt to add one or more addresses to addrman's new table.
void SetServices(const CService &addr, ServiceFlags nServices)
Update an entry's service bits.
int64_t GetIntArg(const std::string &strArg, int64_t nDefault) const
Return integer argument or default value.
A CService with information about it as peer.
static const std::string REGTEST
A combination of a network address (CNetAddr) and a (TCP) port.
uint64_t Finalize() const
Compute the 64-bit SipHash-2-4 of the data written so far.
CSipHasher & Write(uint64_t data)
Hash a 64-bit integer worth of data It is treated as if this was the little-endian interpretation of ...
std::vector< unsigned char > randbytes(size_t len)
Generate random bytes.
uint64_t randrange(uint64_t range) noexcept
Generate a random integer in the range [0..range).
T ConsumeIntegralInRange(T min, T max)
#define LIMITED_WHILE(condition, limit)
Can be used to limit a theoretically unbounded loop.
static constexpr size_t ADDR_CJDNS_SIZE
Size of CJDNS address (in bytes).
static constexpr int ADDRV2_FORMAT
A flag that is ORed into the protocol version to designate that addresses should be serialized in (un...
static constexpr size_t ADDR_TORV3_SIZE
Size of TORv3 address (in bytes).
static constexpr size_t ADDR_I2P_SIZE
Size of I2P address (in bytes).
static constexpr size_t ADDR_IPV4_SIZE
Size of IPv4 address (in bytes).
static constexpr size_t ADDR_IPV6_SIZE
Size of IPv6 address (in bytes).
#define WITH_LOCK(cs, code)
Run code while locking a mutex.
NetGroupManager ConsumeNetGroupManager(FuzzedDataProvider &fuzzed_data_provider) noexcept
FUZZ_TARGET_INIT(data_stream_addr_man, initialize_addrman)
void FillAddrman(AddrMan &addrman, FuzzedDataProvider &fuzzed_data_provider)
Fill addrman with lots of addresses from lots of sources.
CNetAddr RandAddr(FuzzedDataProvider &fuzzed_data_provider, FastRandomContext &fast_random_context)
Generate a random address.
void initialize_addrman()
CNetAddr ConsumeNetAddr(FuzzedDataProvider &fuzzed_data_provider) noexcept
int64_t ConsumeTime(FuzzedDataProvider &fuzzed_data_provider, const std::optional< int64_t > &min, const std::optional< int64_t > &max) noexcept
WeakEnumType ConsumeWeakEnum(FuzzedDataProvider &fuzzed_data_provider, const WeakEnumType(&all_types)[size]) noexcept
CDataStream ConsumeDataStream(FuzzedDataProvider &fuzzed_data_provider, const std::optional< size_t > &max_length=std::nullopt) noexcept
std::vector< uint8_t > ConsumeRandomLengthByteVector(FuzzedDataProvider &fuzzed_data_provider, const std::optional< size_t > &max_length=std::nullopt) noexcept
uint256 ConsumeUInt256(FuzzedDataProvider &fuzzed_data_provider) noexcept
size_t CallOneOf(FuzzedDataProvider &fuzzed_data_provider, Callables... callables)
std::vector< bool > ConsumeRandomLengthBitVector(FuzzedDataProvider &fuzzed_data_provider, const std::optional< size_t > &max_length=std::nullopt) noexcept
constexpr ServiceFlags ALL_SERVICE_FLAGS[]
#define EXCLUSIVE_LOCKS_REQUIRED(...)
void SetMockTime(int64_t nMockTimeIn)
DEPRECATED Use SetMockTime with chrono type.
std::chrono::time_point< NodeClock, std::chrono::seconds > NodeSeconds
bool SanityCheckASMap(const std::vector< bool > &asmap, int bits)
static const int INIT_PROTO_VERSION
initial proto version, to be increased after version/verack negotiation
static const int PROTOCOL_VERSION
network protocol versioning