Coverage Report

Created: 2026-08-14 17:52

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/root/bitcoin/src/test/fuzz/socks5.cpp
Line
Count
Source
1
// Copyright (c) 2020-present The Bitcoin Core developers
2
// Distributed under the MIT software license, see the accompanying
3
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5
#include <netaddress.h>
6
#include <netbase.h>
7
#include <test/fuzz/FuzzedDataProvider.h>
8
#include <test/fuzz/fuzz.h>
9
#include <test/fuzz/util.h>
10
#include <test/fuzz/util/net.h>
11
#include <test/util/setup_common.h>
12
#include <test/util/time.h>
13
#include <util/time.h>
14
15
#include <cstdint>
16
#include <string>
17
#include <vector>
18
19
extern std::chrono::milliseconds g_socks5_recv_timeout;
20
21
namespace {
22
decltype(g_socks5_recv_timeout) default_socks5_recv_timeout;
23
};
24
25
void initialize_socks5()
26
0
{
27
0
    static const auto testing_setup = MakeNoLogFileContext<const BasicTestingSetup>();
28
0
    default_socks5_recv_timeout = g_socks5_recv_timeout;
29
0
}
30
31
FUZZ_TARGET(socks5, .init = initialize_socks5)
32
0
{
33
0
    g_socks5_interrupt.reset();
34
0
    FuzzedDataProvider fuzzed_data_provider{buffer.data(), buffer.size()};
35
0
    FakeNodeClock clock{ConsumeTime(fuzzed_data_provider)};
36
0
    FakeSteadyClock steady_clock;
37
0
    ProxyCredentials proxy_credentials;
38
0
    proxy_credentials.username = fuzzed_data_provider.ConsumeRandomLengthString(512);
39
0
    proxy_credentials.password = fuzzed_data_provider.ConsumeRandomLengthString(512);
40
0
    if (fuzzed_data_provider.ConsumeBool()) {
  Branch (40:9): [True: 0, False: 0]
41
0
        g_socks5_interrupt();
42
0
    }
43
    // Set FUZZED_SOCKET_FAKE_LATENCY=1 to exercise recv timeout code paths. This
44
    // will slow down fuzzing.
45
0
    g_socks5_recv_timeout = (fuzzed_data_provider.ConsumeBool() && std::getenv("FUZZED_SOCKET_FAKE_LATENCY") != nullptr) ? 1ms : default_socks5_recv_timeout;
  Branch (45:30): [True: 0, False: 0]
  Branch (45:68): [True: 0, False: 0]
46
0
    FuzzedSock fuzzed_sock = ConsumeSock(fuzzed_data_provider, steady_clock);
47
    // This Socks5(...) fuzzing harness would have caught CVE-2017-18350 within
48
    // a few seconds of fuzzing.
49
0
    auto str_dest = fuzzed_data_provider.ConsumeRandomLengthString(512);
50
0
    auto port = fuzzed_data_provider.ConsumeIntegral<uint16_t>();
51
0
    auto* auth = fuzzed_data_provider.ConsumeBool() ? &proxy_credentials : nullptr;
  Branch (51:18): [True: 0, False: 0]
52
0
    (void)Socks5(str_dest, port, auth, fuzzed_sock);
53
0
}