Branch data Line data Source code
1 : : // Copyright (c) 2020-2022 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 <blockfilter.h> 6 : : #include <clientversion.h> 7 : : #include <common/args.h> 8 : : #include <common/settings.h> 9 : : #include <common/system.h> 10 : : #include <common/url.h> 11 : : #include <netbase.h> 12 : : #include <outputtype.h> 13 : : #include <rpc/client.h> 14 : : #include <rpc/request.h> 15 : : #include <rpc/server.h> 16 : : #include <rpc/util.h> 17 [ + - ]: 173 : #include <script/descriptor.h> 18 [ + - ]: 173 : #include <script/script.h> 19 : : #include <serialize.h> 20 : : #include <streams.h> 21 : : #include <test/fuzz/FuzzedDataProvider.h> 22 : : #include <test/fuzz/fuzz.h> 23 : : #include <test/fuzz/util.h> 24 : : #include <util/error.h> 25 [ + - ]: 173 : #include <util/fees.h> 26 : : #include <util/strencodings.h> 27 : 173 : #include <util/string.h> 28 : : #include <util/translation.h> 29 : : 30 : : #include <cassert> 31 : : #include <cstdint> 32 : : #include <cstdlib> 33 : : #include <ios> 34 : : #include <stdexcept> 35 : : #include <string> 36 : : #include <vector> 37 : : 38 : : enum class FeeEstimateMode; 39 : : 40 [ - + ]: 682 : FUZZ_TARGET(string) 41 : : { 42 : 336 : FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size()); 43 : 336 : const std::string random_string_1 = fuzzed_data_provider.ConsumeRandomLengthString(32); 44 [ - + ]: 336 : const std::string random_string_2 = fuzzed_data_provider.ConsumeRandomLengthString(32); 45 : 336 : const std::vector<std::string> random_string_vector = ConsumeRandomLengthStringVector(fuzzed_data_provider); 46 : : 47 [ + - ]: 336 : (void)AmountErrMsg(random_string_1, random_string_2); 48 [ + - ]: 336 : (void)AmountHighWarn(random_string_1); 49 : : BlockFilterType block_filter_type; 50 [ + - ]: 336 : (void)BlockFilterTypeByName(random_string_1, block_filter_type); 51 [ - + + - ]: 336 : (void)Capitalize(random_string_1); 52 [ + - ]: 336 : (void)CopyrightHolders(random_string_1); 53 : : FeeEstimateMode fee_estimate_mode; 54 [ + - ]: 336 : (void)FeeModeFromString(random_string_1, fee_estimate_mode); 55 [ + - ]: 336 : const auto width{fuzzed_data_provider.ConsumeIntegralInRange<size_t>(1, 1000)}; 56 [ + - + - ]: 336 : (void)FormatParagraph(random_string_1, width, fuzzed_data_provider.ConsumeIntegralInRange<size_t>(0, width)); 57 [ + - + - ]: 336 : (void)FormatSubVersion(random_string_1, fuzzed_data_provider.ConsumeIntegral<int>(), random_string_vector); 58 [ + - ]: 336 : (void)GetDescriptorChecksum(random_string_1); 59 [ + - ]: 336 : (void)HelpExampleCli(random_string_1, random_string_2); 60 [ + - ]: 336 : (void)HelpExampleRpc(random_string_1, random_string_2); 61 [ + - ]: 336 : (void)HelpMessageGroup(random_string_1); 62 [ + - ]: 336 : (void)HelpMessageOpt(random_string_1, random_string_2); 63 [ + - ]: 336 : (void)IsDeprecatedRPCEnabled(random_string_1); 64 [ + - ]: 336 : (void)Join(random_string_vector, random_string_1); 65 [ + - - + ]: 336 : (void)JSONRPCError(fuzzed_data_provider.ConsumeIntegral<int>(), random_string_1); 66 : 336 : const common::Settings settings; 67 [ + - ]: 336 : (void)OnlyHasDefaultSectionSetting(settings, random_string_1, random_string_2); 68 [ + - ]: 336 : (void)ParseNetwork(random_string_1); 69 [ + - ]: 336 : (void)ParseOutputType(random_string_1); 70 [ + - ]: 336 : (void)RemovePrefix(random_string_1, random_string_2); 71 [ - + ]: 336 : (void)ResolveErrMsg(random_string_1, random_string_2); 72 : : try { 73 [ + + ]: 336 : (void)RPCConvertNamedValues(random_string_1, random_string_vector); 74 [ + - ]: 509 : } catch (const std::runtime_error&) { 75 [ + - ]: 179 : } 76 : : try { 77 [ + + ]: 336 : (void)RPCConvertValues(random_string_1, random_string_vector); 78 [ + - ]: 336 : } catch (const std::runtime_error&) { 79 [ + - ]: 182 : } 80 [ + - ]: 336 : (void)SanitizeString(random_string_1); 81 [ + - + - ]: 336 : (void)SanitizeString(random_string_1, fuzzed_data_provider.ConsumeIntegralInRange<int>(0, 3)); 82 : : #ifndef WIN32 83 [ - + ]: 336 : (void)ShellEscape(random_string_1); 84 : : #endif // WIN32 85 : : uint16_t port_out; 86 : 336 : std::string host_out; 87 [ + - ]: 336 : SplitHostPort(random_string_1, port_out, host_out); 88 [ + - ]: 336 : (void)TimingResistantEqual(random_string_1, random_string_2); 89 [ + - ]: 336 : (void)ToLower(random_string_1); 90 [ + - ]: 336 : (void)ToUpper(random_string_1); 91 [ + - ]: 336 : (void)TrimString(random_string_1); 92 [ + - ]: 336 : (void)TrimString(random_string_1, random_string_2); 93 [ + - ]: 336 : (void)urlDecode(random_string_1); 94 : 336 : (void)ContainsNoNUL(random_string_1); 95 [ - + ]: 336 : (void)_(random_string_1.c_str()); 96 : : try { 97 [ - + - + ]: 336 : throw scriptnum_error{random_string_1}; 98 [ + - ]: 336 : } catch (const std::runtime_error&) { 99 [ + - ]: 336 : } 100 : : 101 : : { 102 [ + - ]: 336 : DataStream data_stream{}; 103 : 336 : std::string s; 104 [ + - ]: 336 : auto limited_string = LIMITED_STRING(s, 10); 105 [ + - ]: 336 : data_stream << random_string_1; 106 : : try { 107 [ + + ]: 336 : data_stream >> limited_string; 108 [ + - - + ]: 259 : assert(data_stream.empty()); 109 [ - + ]: 259 : assert(s.size() <= random_string_1.size()); 110 [ - + ]: 259 : assert(s.size() <= 10); 111 [ + + ]: 259 : if (!random_string_1.empty()) { 112 [ + - ]: 249 : assert(!s.empty()); 113 : 249 : } 114 [ + - ]: 336 : } catch (const std::ios_base::failure&) { 115 [ + - ]: 77 : } 116 : 336 : } 117 : : { 118 [ + - ]: 336 : DataStream data_stream{}; 119 [ + - ]: 336 : const auto limited_string = LIMITED_STRING(random_string_1, 10); 120 [ + - ]: 336 : data_stream << limited_string; 121 : 336 : std::string deserialized_string; 122 [ + - ]: 336 : data_stream >> deserialized_string; 123 [ + - - + ]: 336 : assert(data_stream.empty()); 124 [ + - ]: 336 : assert(deserialized_string == random_string_1); 125 : 336 : } 126 : : { 127 : : int64_t amount_out; 128 [ + - + - ]: 336 : (void)ParseFixedPoint(random_string_1, fuzzed_data_provider.ConsumeIntegralInRange<int>(0, 1024), &amount_out); 129 : : } 130 : : { 131 [ + - + - ]: 336 : const auto single_split{SplitString(random_string_1, fuzzed_data_provider.ConsumeIntegral<char>())}; 132 [ - + ]: 336 : assert(single_split.size() >= 1); 133 [ - + ]: 336 : const auto any_split{SplitString(random_string_1, random_string_2)}; 134 [ + - ]: 336 : assert(any_split.size() >= 1); 135 : 336 : } 136 : : { 137 [ + - + - ]: 336 : (void)Untranslated(random_string_1); 138 [ + - - + ]: 336 : const bilingual_str bs1{random_string_1, random_string_2}; 139 [ - + - + ]: 336 : const bilingual_str bs2{random_string_2, random_string_1}; 140 [ - + + - ]: 336 : (void)(bs1 + bs2); 141 : 336 : } 142 : 1110 : }