Branch data Line data Source code
1 : : // Copyright (c) 2020-present 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 <span.h>
6 : : #include <streams.h>
7 : : #include <test/fuzz/fuzz.h>
8 : : #include <test/fuzz/FuzzedDataProvider.h>
9 : : #include <test/fuzz/util.h>
10 : : #include <util/obfuscation.h>
11 : :
12 : : #include <array>
13 : : #include <cstddef>
14 : : #include <cstdio>
15 : : #include <iostream>
16 : : #include <vector>
17 : :
18 [ + - ]: 813 : FUZZ_TARGET(autofile)
19 : : {
20 : 339 : FuzzedDataProvider fuzzed_data_provider{buffer.data(), buffer.size()};
21 : 339 : FuzzedFileProvider fuzzed_file_provider{fuzzed_data_provider};
22 : 339 : const auto key_bytes{ConsumeFixedLengthByteVector<std::byte>(fuzzed_data_provider, Obfuscation::KEY_SIZE)};
23 : 339 : AutoFile auto_file{
24 : : fuzzed_file_provider.open(),
25 : 339 : Obfuscation{std::span{key_bytes}.first<Obfuscation::KEY_SIZE>()},
26 [ + - - + : 678 : };
+ - ]
27 [ + + + + ]: 8228 : LIMITED_WHILE (fuzzed_data_provider.ConsumeBool(), 100) {
28 [ + - ]: 7889 : CallOneOf(
29 : : fuzzed_data_provider,
30 : 579 : [&] {
31 : 579 : std::array<std::byte, 4096> arr{};
32 : 579 : try {
33 [ + + ]: 579 : auto_file.read({arr.data(), fuzzed_data_provider.ConsumeIntegralInRange<size_t>(0, 4096)});
34 [ - + ]: 398 : } catch (const std::ios_base::failure&) {
35 : 398 : }
36 : 579 : },
37 : 1058 : [&] {
38 : 1058 : const std::array<std::byte, 4096> arr{};
39 : 1058 : try {
40 [ + + ]: 1058 : auto_file.write({arr.data(), fuzzed_data_provider.ConsumeIntegralInRange<size_t>(0, 4096)});
41 [ - + ]: 570 : } catch (const std::ios_base::failure&) {
42 : 570 : }
43 : 1058 : },
44 : 971 : [&] {
45 : 971 : try {
46 [ + + ]: 971 : auto_file.ignore(fuzzed_data_provider.ConsumeIntegralInRange<size_t>(0, 4096));
47 [ - + ]: 547 : } catch (const std::ios_base::failure&) {
48 : 547 : }
49 : 971 : },
50 : 271 : [&] {
51 : 271 : (void)auto_file.fclose();
52 : 271 : },
53 : 2855 : [&] {
54 : 2855 : ReadFromStream(fuzzed_data_provider, auto_file);
55 : 2855 : },
56 : 2155 : [&] {
57 : 2155 : WriteToStream(fuzzed_data_provider, auto_file);
58 : 2155 : });
59 : : }
60 : 339 : (void)auto_file.IsNull();
61 [ + + ]: 339 : if (fuzzed_data_provider.ConsumeBool()) {
62 [ + + ]: 24 : FILE* f = auto_file.release();
63 [ + + ]: 24 : if (f != nullptr) {
64 [ + - ]: 16 : fclose(f);
65 : : }
66 : : } else {
67 [ + - ]: 315 : (void)auto_file.fclose();
68 : : }
69 : 339 : }
|