mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
Merge #18109: tests: Avoid hitting some known minor tinyformat issues when fuzzing strprintf(...)
470e2ac602ed2d6e62e5c80f27cd0a60c7cf6bce tests: Avoid hitting some known minor tinyformat issues when fuzzing strprintf(...) (practicalswift) Pull request description: Avoid hitting some known minor tinyformat issues when fuzzing `strprintf(...)`. These can be removed when the issues have been resolved upstreams :) Note to reviewers: The `%c` and `%*` issues are also present for `%<some junk>c` and `%<some junk>*`. That is why simply matching on `"%c"` or `"%*"` is not enough. Note that the intentionally trivial skipping logic overshoots somewhat (`c[…]%` is filtered in addition to `%[…]c`). Top commit has no ACKs. Tree-SHA512: 2b002981e8b3f2ee021c3013f1260654ac7e158699313849c9e9660462bb8cd521544935799bb8daa74925959dc04d63440e647495e0b008cfe1b8a8b2202d40
This commit is contained in:
parent
0e898ee80d
commit
2388159c5b
@ -8,7 +8,6 @@
|
|||||||
#include <util/strencodings.h>
|
#include <util/strencodings.h>
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <cassert>
|
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
@ -27,7 +26,7 @@ void test_one_input(const std::vector<uint8_t>& buffer)
|
|||||||
// * strprintf("%.222222200000000$", 1.1);
|
// * strprintf("%.222222200000000$", 1.1);
|
||||||
//
|
//
|
||||||
// Upstream bug report: https://github.com/c42f/tinyformat/issues/70
|
// Upstream bug report: https://github.com/c42f/tinyformat/issues/70
|
||||||
if (format_string.find("%") != std::string::npos && digits_in_format_specifier >= 7) {
|
if (format_string.find('%') != std::string::npos && digits_in_format_specifier >= 7) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -35,7 +34,7 @@ void test_one_input(const std::vector<uint8_t>& buffer)
|
|||||||
// * strprintf("%1$*1$*", -11111111);
|
// * strprintf("%1$*1$*", -11111111);
|
||||||
//
|
//
|
||||||
// Upstream bug report: https://github.com/c42f/tinyformat/issues/70
|
// Upstream bug report: https://github.com/c42f/tinyformat/issues/70
|
||||||
if (format_string.find("%") != std::string::npos && format_string.find("$") != std::string::npos && format_string.find("*") != std::string::npos && digits_in_format_specifier > 0) {
|
if (format_string.find('%') != std::string::npos && format_string.find('$') != std::string::npos && format_string.find('*') != std::string::npos && digits_in_format_specifier > 0) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -96,7 +95,7 @@ void test_one_input(const std::vector<uint8_t>& buffer)
|
|||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
switch (fuzzed_data_provider.ConsumeIntegralInRange(0, 13)) {
|
switch (fuzzed_data_provider.ConsumeIntegralInRange(0, 5)) {
|
||||||
case 0:
|
case 0:
|
||||||
(void)strprintf(format_string, fuzzed_data_provider.ConsumeRandomLengthString(32));
|
(void)strprintf(format_string, fuzzed_data_provider.ConsumeRandomLengthString(32));
|
||||||
break;
|
break;
|
||||||
@ -115,32 +114,52 @@ void test_one_input(const std::vector<uint8_t>& buffer)
|
|||||||
case 5:
|
case 5:
|
||||||
(void)strprintf(format_string, fuzzed_data_provider.ConsumeBool());
|
(void)strprintf(format_string, fuzzed_data_provider.ConsumeBool());
|
||||||
break;
|
break;
|
||||||
case 6:
|
}
|
||||||
|
} catch (const tinyformat::format_error&) {
|
||||||
|
}
|
||||||
|
|
||||||
|
if (format_string.find('%') != std::string::npos && format_string.find('c') != std::string::npos) {
|
||||||
|
// Avoid triggering the following:
|
||||||
|
// * strprintf("%c", 1.31783e+38);
|
||||||
|
// tinyformat.h:244:36: runtime error: 1.31783e+38 is outside the range of representable values of type 'char'
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (format_string.find('%') != std::string::npos && format_string.find('*') != std::string::npos) {
|
||||||
|
// Avoid triggering the following:
|
||||||
|
// * strprintf("%*", -2.33527e+38);
|
||||||
|
// tinyformat.h:283:65: runtime error: -2.33527e+38 is outside the range of representable values of type 'int'
|
||||||
|
// * strprintf("%*", -2147483648);
|
||||||
|
// tinyformat.h:763:25: runtime error: negation of -2147483648 cannot be represented in type 'int'; cast to an unsigned type to negate this value to itself
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
switch (fuzzed_data_provider.ConsumeIntegralInRange(0, 7)) {
|
||||||
|
case 0:
|
||||||
(void)strprintf(format_string, fuzzed_data_provider.ConsumeFloatingPoint<float>());
|
(void)strprintf(format_string, fuzzed_data_provider.ConsumeFloatingPoint<float>());
|
||||||
break;
|
break;
|
||||||
case 7:
|
case 1:
|
||||||
(void)strprintf(format_string, fuzzed_data_provider.ConsumeFloatingPoint<double>());
|
(void)strprintf(format_string, fuzzed_data_provider.ConsumeFloatingPoint<double>());
|
||||||
break;
|
break;
|
||||||
case 8:
|
case 2:
|
||||||
(void)strprintf(format_string, fuzzed_data_provider.ConsumeIntegral<int16_t>());
|
(void)strprintf(format_string, fuzzed_data_provider.ConsumeIntegral<int16_t>());
|
||||||
break;
|
break;
|
||||||
case 9:
|
case 3:
|
||||||
(void)strprintf(format_string, fuzzed_data_provider.ConsumeIntegral<uint16_t>());
|
(void)strprintf(format_string, fuzzed_data_provider.ConsumeIntegral<uint16_t>());
|
||||||
break;
|
break;
|
||||||
case 10:
|
case 4:
|
||||||
(void)strprintf(format_string, fuzzed_data_provider.ConsumeIntegral<int32_t>());
|
(void)strprintf(format_string, fuzzed_data_provider.ConsumeIntegral<int32_t>());
|
||||||
break;
|
break;
|
||||||
case 11:
|
case 5:
|
||||||
(void)strprintf(format_string, fuzzed_data_provider.ConsumeIntegral<uint32_t>());
|
(void)strprintf(format_string, fuzzed_data_provider.ConsumeIntegral<uint32_t>());
|
||||||
break;
|
break;
|
||||||
case 12:
|
case 6:
|
||||||
(void)strprintf(format_string, fuzzed_data_provider.ConsumeIntegral<int64_t>());
|
(void)strprintf(format_string, fuzzed_data_provider.ConsumeIntegral<int64_t>());
|
||||||
break;
|
break;
|
||||||
case 13:
|
case 7:
|
||||||
(void)strprintf(format_string, fuzzed_data_provider.ConsumeIntegral<uint64_t>());
|
(void)strprintf(format_string, fuzzed_data_provider.ConsumeIntegral<uint64_t>());
|
||||||
break;
|
break;
|
||||||
default:
|
|
||||||
assert(false);
|
|
||||||
}
|
}
|
||||||
} catch (const tinyformat::format_error&) {
|
} catch (const tinyformat::format_error&) {
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user