mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-12 06:58:57 +01:00
refactor: Make FEELER_SLEEP_WINDOW type safe (std::chrono)
This commit is contained in:
10
src/net.cpp
10
src/net.cpp
@@ -86,8 +86,8 @@ static constexpr int DNSSEEDS_DELAY_PEER_THRESHOLD = 1000; // "many" vs "few" pe
|
|||||||
/** The default timeframe for -maxuploadtarget. 1 day. */
|
/** The default timeframe for -maxuploadtarget. 1 day. */
|
||||||
static constexpr std::chrono::seconds MAX_UPLOAD_TIMEFRAME{60 * 60 * 24};
|
static constexpr std::chrono::seconds MAX_UPLOAD_TIMEFRAME{60 * 60 * 24};
|
||||||
|
|
||||||
// We add a random period time (0 to 1 seconds) to feeler connections to prevent synchronization.
|
// A random time period (0 to 1 seconds) is added to feeler connections to prevent synchronization.
|
||||||
#define FEELER_SLEEP_WINDOW 1
|
static constexpr auto FEELER_SLEEP_WINDOW{1s};
|
||||||
|
|
||||||
/** Used to pass flags to the Bind() function */
|
/** Used to pass flags to the Bind() function */
|
||||||
enum BindFlags {
|
enum BindFlags {
|
||||||
@@ -1574,6 +1574,7 @@ int CConnman::GetExtraBlockRelayCount() const
|
|||||||
void CConnman::ThreadOpenConnections(const std::vector<std::string> connect)
|
void CConnman::ThreadOpenConnections(const std::vector<std::string> connect)
|
||||||
{
|
{
|
||||||
SetSyscallSandboxPolicy(SyscallSandboxPolicy::NET_OPEN_CONNECTION);
|
SetSyscallSandboxPolicy(SyscallSandboxPolicy::NET_OPEN_CONNECTION);
|
||||||
|
FastRandomContext rng;
|
||||||
// Connect to specific addresses
|
// Connect to specific addresses
|
||||||
if (!connect.empty())
|
if (!connect.empty())
|
||||||
{
|
{
|
||||||
@@ -1827,12 +1828,11 @@ void CConnman::ThreadOpenConnections(const std::vector<std::string> connect)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (addrConnect.IsValid()) {
|
if (addrConnect.IsValid()) {
|
||||||
|
|
||||||
if (fFeeler) {
|
if (fFeeler) {
|
||||||
// Add small amount of random noise before connection to avoid synchronization.
|
// Add small amount of random noise before connection to avoid synchronization.
|
||||||
int randsleep = GetRand<int>(FEELER_SLEEP_WINDOW * 1000);
|
if (!interruptNet.sleep_for(rng.rand_uniform_duration<CThreadInterrupt::Clock>(FEELER_SLEEP_WINDOW))) {
|
||||||
if (!interruptNet.sleep_for(std::chrono::milliseconds(randsleep)))
|
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
LogPrint(BCLog::NET, "Making feeler connection to %s\n", addrConnect.ToString());
|
LogPrint(BCLog::NET, "Making feeler connection to %s\n", addrConnect.ToString());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
17
src/random.h
17
src/random.h
@@ -11,6 +11,7 @@
|
|||||||
#include <span.h>
|
#include <span.h>
|
||||||
#include <uint256.h>
|
#include <uint256.h>
|
||||||
|
|
||||||
|
#include <cassert>
|
||||||
#include <chrono>
|
#include <chrono>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <limits>
|
#include <limits>
|
||||||
@@ -236,13 +237,19 @@ public:
|
|||||||
template <typename Tp>
|
template <typename Tp>
|
||||||
Tp rand_uniform_delay(const Tp& time, typename Tp::duration range)
|
Tp rand_uniform_delay(const Tp& time, typename Tp::duration range)
|
||||||
{
|
{
|
||||||
using Dur = typename Tp::duration;
|
return time + rand_uniform_duration<Tp>(range);
|
||||||
Dur dur{range.count() > 0 ? /* interval [0..range) */ Dur{randrange(range.count())} :
|
|
||||||
range.count() < 0 ? /* interval (range..0] */ -Dur{randrange(-range.count())} :
|
|
||||||
/* interval [0..0] */ Dur{0}};
|
|
||||||
return time + dur;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Generate a uniform random duration in the range from 0 (inclusive) to range (exclusive). */
|
||||||
|
template <typename Chrono>
|
||||||
|
typename Chrono::duration rand_uniform_duration(typename Chrono::duration range) noexcept
|
||||||
|
{
|
||||||
|
using Dur = typename Chrono::duration;
|
||||||
|
return range.count() > 0 ? /* interval [0..range) */ Dur{randrange(range.count())} :
|
||||||
|
range.count() < 0 ? /* interval (range..0] */ -Dur{randrange(-range.count())} :
|
||||||
|
/* interval [0..0] */ Dur{0};
|
||||||
|
};
|
||||||
|
|
||||||
// Compatibility with the C++11 UniformRandomBitGenerator concept
|
// Compatibility with the C++11 UniformRandomBitGenerator concept
|
||||||
typedef uint64_t result_type;
|
typedef uint64_t result_type;
|
||||||
static constexpr uint64_t min() { return 0; }
|
static constexpr uint64_t min() { return 0; }
|
||||||
|
|||||||
@@ -53,6 +53,16 @@ BOOST_AUTO_TEST_CASE(fastrandom_tests)
|
|||||||
BOOST_CHECK_EQUAL(ctx1.randbits(3), ctx2.randbits(3));
|
BOOST_CHECK_EQUAL(ctx1.randbits(3), ctx2.randbits(3));
|
||||||
BOOST_CHECK(ctx1.rand256() == ctx2.rand256());
|
BOOST_CHECK(ctx1.rand256() == ctx2.rand256());
|
||||||
BOOST_CHECK(ctx1.randbytes(50) == ctx2.randbytes(50));
|
BOOST_CHECK(ctx1.randbytes(50) == ctx2.randbytes(50));
|
||||||
|
{
|
||||||
|
struct MicroClock {
|
||||||
|
using duration = std::chrono::microseconds;
|
||||||
|
};
|
||||||
|
FastRandomContext ctx{true};
|
||||||
|
// Check with clock type
|
||||||
|
BOOST_CHECK_EQUAL(47222, ctx.rand_uniform_duration<MicroClock>(1s).count());
|
||||||
|
// Check with time-point type
|
||||||
|
BOOST_CHECK_EQUAL(2782, ctx.rand_uniform_duration<SteadySeconds>(9h).count());
|
||||||
|
}
|
||||||
|
|
||||||
// Check that a nondeterministic ones are not
|
// Check that a nondeterministic ones are not
|
||||||
g_mock_deterministic_tests = false;
|
g_mock_deterministic_tests = false;
|
||||||
|
|||||||
Reference in New Issue
Block a user