Skip to content

Commit dd73c22

Browse files
committed
Merge bitcoin#28486: test, bench: Initialize and terminate use of Winsock properly
fd4c6a1 test: Setup networking globally (Hennadii Stepanov) Pull request description: On the master branch, when compiling without external signer support, the `bench_bitcoin.exe` does not initialize Winsock DLL that is required, for example, here: https://github.com/bitcoin/bitcoin/blob/459272d639b9547f68000d2b9a5a0d991d477de5/src/bench/addrman.cpp#L124 Moreover, Windows docs explicitly [state](https://learn.microsoft.com/en-us/windows/win32/api/winsock/nf-winsock-wsacleanup) that `WSAStartup` and `WSACleanup` must be balanced: > There must be a call to `WSACleanup` for each successful call to `WSAStartup`. Only the final `WSACleanup` function call performs the actual cleanup. The preceding calls simply decrement an internal reference count in the WS2_32.DLL. That is not the case for our unit tests because the `SetupNetworking()` call is a part of the `BasicTestingSetup` fixture and is invoked multiple times, while `~CNetCleanup()` is invoked once only, at the end of the test binary execution. This PR fixes Winsock DLL initialization and termination. More docs: - https://learn.microsoft.com/en-us/windows/win32/winsock/initializing-winsock - https://learn.microsoft.com/en-us/windows/win32/api/winsock/nf-winsock-wsastartup - https://learn.microsoft.com/en-us/windows/win32/api/winsock/nf-winsock-wsacleanup Fix bitcoin#28940. ACKs for top commit: maflcko: lgtm ACK fd4c6a1 Tree-SHA512: d360eaf776943f7f7a35ed5a5f9f3228d9e3d18eb824e5997cdc8eadddf466abe9f2da4910ee3bb86bf5411061e758259f7e1ec344f234ef7996f1bf8781dcda
2 parents d00d50e + fd4c6a1 commit dd73c22

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

src/common/system.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
int64_t GetStartupTime();
1818

1919
void SetupEnvironment();
20-
bool SetupNetworking();
20+
[[nodiscard]] bool SetupNetworking();
2121
#ifndef WIN32
2222
std::string ShellEscape(const std::string& arg);
2323
#endif

src/test/util/setup_common.cpp

+10-1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
#include <txdb.h>
5050
#include <txmempool.h>
5151
#include <util/chaintype.h>
52+
#include <util/check.h>
5253
#include <util/rbf.h>
5354
#include <util/strencodings.h>
5455
#include <util/string.h>
@@ -88,6 +89,15 @@ std::ostream& operator<<(std::ostream& os, const uint256& num)
8889
return os;
8990
}
9091

92+
struct NetworkSetup
93+
{
94+
NetworkSetup()
95+
{
96+
Assert(SetupNetworking());
97+
}
98+
};
99+
static NetworkSetup g_networksetup_instance;
100+
91101
BasicTestingSetup::BasicTestingSetup(const ChainType chainType, const std::vector<const char*>& extra_args)
92102
: m_path_root{fs::temp_directory_path() / "test_common_" PACKAGE_NAME / g_insecure_rand_ctx_temp_path.rand256().ToString()},
93103
m_args{}
@@ -130,7 +140,6 @@ BasicTestingSetup::BasicTestingSetup(const ChainType chainType, const std::vecto
130140
LogInstance().StartLogging();
131141
m_node.kernel = std::make_unique<kernel::Context>();
132142
SetupEnvironment();
133-
SetupNetworking();
134143

135144
ValidationCacheSizes validation_cache_sizes{};
136145
ApplyArgsManOptions(*m_node.args, validation_cache_sizes);

src/test/util_tests.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -1218,6 +1218,9 @@ BOOST_AUTO_TEST_CASE(test_LockDirectory)
12181218
// has released the lock as we would expect by probing it.
12191219
int processstatus;
12201220
BOOST_CHECK_EQUAL(write(fd[1], &LockCommand, 1), 1);
1221+
// The following line invokes the ~CNetCleanup dtor without
1222+
// a paired SetupNetworking call. This is acceptable as long as
1223+
// ~CNetCleanup is a no-op for non-Windows platforms.
12211224
BOOST_CHECK_EQUAL(write(fd[1], &ExitCommand, 1), 1);
12221225
BOOST_CHECK_EQUAL(waitpid(pid, &processstatus, 0), pid);
12231226
BOOST_CHECK_EQUAL(processstatus, 0);

0 commit comments

Comments
 (0)