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 <streams.h> 6 : : #include <test/fuzz/FuzzedDataProvider.h> 7 : : #include <test/fuzz/fuzz.h> 8 : : #include <test/fuzz/util.h> 9 : : 10 : : #include <array> 11 : : #include <cstdint> 12 : : #include <iostream> 13 : : #include <optional> 14 : : #include <string> 15 : : #include <vector> 16 : : 17 [ - + ]: 611 : FUZZ_TARGET(autofile) 18 : : { 19 : 265 : FuzzedDataProvider fuzzed_data_provider{buffer.data(), buffer.size()}; 20 : 265 : FuzzedAutoFileProvider fuzzed_auto_file_provider = ConsumeAutoFile(fuzzed_data_provider); 21 : 265 : AutoFile auto_file{fuzzed_auto_file_provider.open()}; 22 [ + - + + : 19508 : LIMITED_WHILE(fuzzed_data_provider.ConsumeBool(), 10000) { + + ] 23 [ + - ]: 19243 : CallOneOf( 24 : : fuzzed_data_provider, 25 [ + - ]: 19783 : [&] { 26 : 367 : std::array<std::byte, 4096> arr{}; 27 : : try { 28 [ + + ]: 367 : auto_file.read({arr.data(), fuzzed_data_provider.ConsumeIntegralInRange<size_t>(0, 4096)}); 29 [ + - ]: 367 : } catch (const std::ios_base::failure&) { 30 : 276 : } 31 : 643 : }, 32 : 24401 : [&] { 33 : 5158 : const std::array<std::byte, 4096> arr{}; 34 : : try { 35 [ + + ]: 5158 : auto_file.write({arr.data(), fuzzed_data_provider.ConsumeIntegralInRange<size_t>(0, 4096)}); 36 [ + - ]: 5158 : } catch (const std::ios_base::failure&) { 37 : 1993 : } 38 : 7151 : }, 39 : 20524 : [&] { 40 : : try { 41 [ + + ]: 1281 : auto_file.ignore(fuzzed_data_provider.ConsumeIntegralInRange<size_t>(0, 4096)); 42 [ + - ]: 1281 : } catch (const std::ios_base::failure&) { 43 : 938 : } 44 : 2219 : }, 45 : 19806 : [&] { 46 : 563 : auto_file.fclose(); 47 : 563 : }, 48 : 26681 : [&] { 49 : 7438 : ReadFromStream(fuzzed_data_provider, auto_file); 50 : 7438 : }, 51 : 23679 : [&] { 52 : 4436 : WriteToStream(fuzzed_data_provider, auto_file); 53 : 4436 : }); 54 : 19243 : } 55 [ + - ]: 265 : (void)auto_file.Get(); 56 [ + - ]: 265 : (void)auto_file.IsNull(); 57 [ + - + + ]: 265 : if (fuzzed_data_provider.ConsumeBool()) { 58 [ + - ]: 39 : FILE* f = auto_file.release(); 59 [ + + ]: 39 : if (f != nullptr) { 60 [ + - ]: 20 : fclose(f); 61 : 20 : } 62 : 39 : } 63 : 265 : }