-
Notifications
You must be signed in to change notification settings - Fork 266
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge #19222: tests: Add fuzzing harness for BanMan
97846d7 tests: Add fuzzing harness for BanMan (practicalswift) deba199 tests: Add ConsumeSubNet(...). Move and increase coverage in ConsumeNetAddr(...). (practicalswift) Pull request description: Add fuzzing harness for `BanMan`. See [`doc/fuzzing.md`](https://github.com/bitcoin/bitcoin/blob/master/doc/fuzzing.md) for information on how to fuzz Bitcoin Core. Don't forget to contribute any coverage increasing inputs you find to the [Bitcoin Core fuzzing corpus repo](https://github.com/bitcoin-core/qa-assets). Happy fuzzing :) Top commit has no ACKs. Tree-SHA512: f4126c15bbb77638833367d73f58193c8f05d16bed0b1d6c33b39387d5b610ff34af78cd721adb51778062ce3ac5e79756d1c3895ef54c6c80c61dcf056e94ff
- Loading branch information
Showing
4 changed files
with
132 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
// Copyright (c) 2020 The Bitcoin Core developers | ||
// Distributed under the MIT software license, see the accompanying | ||
// file COPYING or http://www.opensource.org/licenses/mit-license.php. | ||
|
||
#include <banman.h> | ||
#include <fs.h> | ||
#include <netaddress.h> | ||
#include <test/fuzz/FuzzedDataProvider.h> | ||
#include <test/fuzz/fuzz.h> | ||
#include <test/fuzz/util.h> | ||
#include <util/system.h> | ||
|
||
#include <cstdint> | ||
#include <limits> | ||
#include <string> | ||
#include <vector> | ||
|
||
namespace { | ||
int64_t ConsumeBanTimeOffset(FuzzedDataProvider& fuzzed_data_provider) noexcept | ||
{ | ||
// Avoid signed integer overflow by capping to int32_t max: | ||
// banman.cpp:137:73: runtime error: signed integer overflow: 1591700817 + 9223372036854775807 cannot be represented in type 'long' | ||
return fuzzed_data_provider.ConsumeIntegralInRange<int64_t>(std::numeric_limits<int64_t>::min(), std::numeric_limits<int32_t>::max()); | ||
} | ||
} // namespace | ||
|
||
void initialize() | ||
{ | ||
InitializeFuzzingContext(); | ||
} | ||
|
||
void test_one_input(const std::vector<uint8_t>& buffer) | ||
{ | ||
FuzzedDataProvider fuzzed_data_provider{buffer.data(), buffer.size()}; | ||
const fs::path banlist_file = GetDataDir() / "fuzzed_banlist.dat"; | ||
fs::remove(banlist_file); | ||
{ | ||
BanMan ban_man{banlist_file, nullptr, ConsumeBanTimeOffset(fuzzed_data_provider)}; | ||
while (fuzzed_data_provider.ConsumeBool()) { | ||
switch (fuzzed_data_provider.ConsumeIntegralInRange<int>(0, 11)) { | ||
case 0: { | ||
ban_man.Ban(ConsumeNetAddr(fuzzed_data_provider), | ||
ConsumeBanTimeOffset(fuzzed_data_provider), fuzzed_data_provider.ConsumeBool()); | ||
break; | ||
} | ||
case 1: { | ||
ban_man.Ban(ConsumeSubNet(fuzzed_data_provider), | ||
ConsumeBanTimeOffset(fuzzed_data_provider), fuzzed_data_provider.ConsumeBool()); | ||
break; | ||
} | ||
case 2: { | ||
ban_man.ClearBanned(); | ||
break; | ||
} | ||
case 4: { | ||
ban_man.IsBanned(ConsumeNetAddr(fuzzed_data_provider)); | ||
break; | ||
} | ||
case 5: { | ||
ban_man.IsBanned(ConsumeSubNet(fuzzed_data_provider)); | ||
break; | ||
} | ||
case 6: { | ||
ban_man.Unban(ConsumeNetAddr(fuzzed_data_provider)); | ||
break; | ||
} | ||
case 7: { | ||
ban_man.Unban(ConsumeSubNet(fuzzed_data_provider)); | ||
break; | ||
} | ||
case 8: { | ||
banmap_t banmap; | ||
ban_man.GetBanned(banmap); | ||
break; | ||
} | ||
case 9: { | ||
ban_man.DumpBanlist(); | ||
break; | ||
} | ||
case 11: { | ||
ban_man.Discourage(ConsumeNetAddr(fuzzed_data_provider)); | ||
break; | ||
} | ||
} | ||
} | ||
} | ||
fs::remove(banlist_file); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters