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 <span.h>
6 : : #include <streams.h>
7 : : #include <test/fuzz/FuzzedDataProvider.h>
8 : : #include <test/fuzz/fuzz.h>
9 : : #include <test/fuzz/util.h>
10 : :
11 : : #include <array>
12 : : #include <cstddef>
13 : : #include <cstdio>
14 : : #include <iostream>
15 : : #include <vector>
16 : :
17 [ + - ]: 777 : FUZZ_TARGET(autofile)
18 : : {
19 : 365 : FuzzedDataProvider fuzzed_data_provider{buffer.data(), buffer.size()};
20 : 365 : FuzzedFileProvider fuzzed_file_provider{fuzzed_data_provider};
21 : 365 : AutoFile auto_file{
22 : : fuzzed_file_provider.open(),
23 : 365 : ConsumeRandomLengthByteVector<std::byte>(fuzzed_data_provider),
24 [ + - ]: 365 : };
25 [ + + + + ]: 8031 : LIMITED_WHILE(fuzzed_data_provider.ConsumeBool(), 100)
26 : : {
27 [ + - ]: 7666 : CallOneOf(
28 : : fuzzed_data_provider,
29 : 430 : [&] {
30 : 430 : std::array<std::byte, 4096> arr{};
31 : 430 : try {
32 [ + + ]: 430 : auto_file.read({arr.data(), fuzzed_data_provider.ConsumeIntegralInRange<size_t>(0, 4096)});
33 [ - + ]: 256 : } catch (const std::ios_base::failure&) {
34 : 256 : }
35 : 430 : },
36 : 1356 : [&] {
37 : 1356 : const std::array<std::byte, 4096> arr{};
38 : 1356 : try {
39 [ + + ]: 1356 : auto_file.write({arr.data(), fuzzed_data_provider.ConsumeIntegralInRange<size_t>(0, 4096)});
40 [ - + ]: 828 : } catch (const std::ios_base::failure&) {
41 : 828 : }
42 : 1356 : },
43 : 584 : [&] {
44 : 584 : try {
45 [ + + ]: 584 : auto_file.ignore(fuzzed_data_provider.ConsumeIntegralInRange<size_t>(0, 4096));
46 [ - + ]: 368 : } catch (const std::ios_base::failure&) {
47 : 368 : }
48 : 584 : },
49 : 510 : [&] {
50 : 510 : auto_file.fclose();
51 : 510 : },
52 : 2886 : [&] {
53 : 2886 : ReadFromStream(fuzzed_data_provider, auto_file);
54 : 2886 : },
55 : 1900 : [&] {
56 : 1900 : WriteToStream(fuzzed_data_provider, auto_file);
57 : 1900 : });
58 : : }
59 : 365 : (void)auto_file.IsNull();
60 [ + + ]: 365 : if (fuzzed_data_provider.ConsumeBool()) {
61 [ + + ]: 109 : FILE* f = auto_file.release();
62 [ + + ]: 109 : if (f != nullptr) {
63 [ + - ]: 86 : fclose(f);
64 : : }
65 : : }
66 : 365 : }
|