Branch data Line data Source code
1 : : // Copyright (c) 2020-2021 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 <test/fuzz/FuzzedDataProvider.h> 6 : : #include <test/fuzz/fuzz.h> 7 : : #include <test/fuzz/util.h> 8 : : #include <test/util/setup_common.h> 9 : : #include <torcontrol.h> 10 : : 11 : : #include <cstdint> 12 : : #include <string> 13 : : #include <vector> 14 : : 15 : : class DummyTorControlConnection : public TorControlConnection 16 : : { 17 : : public: 18 : 21773 : DummyTorControlConnection() : TorControlConnection{nullptr} 19 : : { 20 : 21773 : } 21 : : 22 : : bool Connect(const std::string&, const ConnectionCB&, const ConnectionCB&) 23 : : { 24 : : return true; 25 : : } 26 : : 27 : : void Disconnect() 28 : : { 29 : : } 30 : : 31 : : bool Command(const std::string&, const ReplyHandlerCB&) 32 : : { 33 : : return true; 34 : : } 35 : : }; 36 : : 37 : 1 : void initialize_torcontrol() 38 : : { 39 [ + - - + : 1 : static const auto testing_setup = MakeNoLogFileContext<>(); + - ] 40 : 1 : } 41 : : 42 [ + - - + ]: 548 : FUZZ_TARGET(torcontrol, .init = initialize_torcontrol) 43 : : { 44 : 202 : FuzzedDataProvider fuzzed_data_provider{buffer.data(), buffer.size()}; 45 : : 46 : 202 : TorController tor_controller; 47 [ + - + + : 21975 : LIMITED_WHILE(fuzzed_data_provider.ConsumeBool(), 10000) { + + ] 48 [ + - ]: 21797 : TorControlReply tor_control_reply; 49 [ + - ]: 21797 : CallOneOf( 50 : : fuzzed_data_provider, 51 : 38137 : [&] { 52 : 16340 : tor_control_reply.code = 250; 53 : 16340 : }, 54 : 26210 : [&] { 55 : 4413 : tor_control_reply.code = 510; 56 : 4413 : }, 57 : 22841 : [&] { 58 : 1044 : tor_control_reply.code = fuzzed_data_provider.ConsumeIntegral<int>(); 59 : 1044 : }); 60 : 21797 : tor_control_reply.lines = ConsumeRandomLengthStringVector(fuzzed_data_provider); 61 [ + + ]: 21797 : if (tor_control_reply.lines.empty()) { 62 : 24 : break; 63 : : } 64 [ + - ]: 21773 : DummyTorControlConnection dummy_tor_control_connection; 65 [ + - ]: 21773 : CallOneOf( 66 : : fuzzed_data_provider, 67 : 26833 : [&] { 68 : 5060 : tor_controller.add_onion_cb(dummy_tor_control_connection, tor_control_reply); 69 : 5060 : }, 70 : 23437 : [&] { 71 : 1664 : tor_controller.auth_cb(dummy_tor_control_connection, tor_control_reply); 72 : 1664 : }, 73 : 27891 : [&] { 74 : 6291 : tor_controller.authchallenge_cb(dummy_tor_control_connection, tor_control_reply); 75 : 6118 : }, 76 : 30704 : [&] { 77 : 8931 : tor_controller.protocolinfo_cb(dummy_tor_control_connection, tor_control_reply); 78 : 8931 : }); 79 [ - + + ]: 21797 : } 80 : 202 : }