30 static auto testing_setup = MakeNoLogFileContext<TestingSetup>();
31 g_setup = testing_setup.get();
36 const auto wallet_path = g_setup->m_args.GetDataDirNet() /
"fuzzed_wallet.dat";
40 outfile <<
Span{buffer};
47 fs::path bdb_ro_dumpfile{g_setup->m_args.GetDataDirNet() /
"fuzzed_dumpfile_bdb_ro.dump"};
49 remove(bdb_ro_dumpfile);
54 bool bdb_ro_err =
false;
55 bool bdb_ro_strict_err =
false;
64 if (error.
original.starts_with(
"AutoFile::ignore: end of file") ||
65 error.
original.starts_with(
"AutoFile::read: end of file") ||
66 error.
original.starts_with(
"AutoFile::seek: ") ||
67 error.
original ==
"Not a BDB file" ||
68 error.
original ==
"Unexpected page type, should be 9 (BTree Metadata)" ||
69 error.
original ==
"Unexpected database flags, should only be 0x20 (subdatabases)" ||
70 error.
original ==
"Unexpected outer database root page type" ||
71 error.
original ==
"Unexpected number of entries in outer database root page" ||
72 error.
original ==
"Subdatabase page number has unexpected length" ||
73 error.
original ==
"Unknown record type in records page" ||
74 error.
original ==
"Unknown record type in internal page" ||
75 error.
original ==
"Unexpected page size" ||
76 error.
original ==
"Unexpected page type" ||
77 error.
original ==
"Page number mismatch" ||
78 error.
original ==
"Bad btree level" ||
80 error.
original ==
"Meta page number mismatch" ||
81 error.
original ==
"Data record position not in page" ||
82 error.
original ==
"Internal record position not in page" ||
83 error.
original ==
"LSNs are not reset, this database is not completely flushed. Please reopen then close the database with a version that has BDB support" ||
84 error.
original ==
"Records page has odd number of records" ||
85 error.
original ==
"Bad overflow record page type") {
87 }
else if (error.
original ==
"Subdatabase last page is greater than database last page" ||
88 error.
original ==
"Page number is greater than database last page" ||
89 error.
original ==
"Last page number could not fit in file" ||
90 error.
original ==
"Subdatabase has an unexpected name" ||
91 error.
original ==
"Unsupported BDB data file version number" ||
92 error.
original ==
"BDB builtin encryption is not supported") {
94 bdb_ro_strict_err =
true;
97 throw std::runtime_error(error.
original);
103 fs::path bdb_dumpfile{g_setup->m_args.GetDataDirNet() /
"fuzzed_dumpfile_bdb.dump"};
105 remove(bdb_dumpfile);
111 if (bdb_ro_err && !db) {
115 if (bdb_ro_strict_err) {
121 }
catch (
const std::runtime_error& e) {
122 if (bdb_ro_err)
return;
128 std::ifstream bdb_ro_dump(bdb_ro_dumpfile, std::ios_base::binary | std::ios_base::in);
129 std::ifstream bdb_dump(bdb_dumpfile, std::ios_base::binary | std::ios_base::in);
131 std::istreambuf_iterator<char>(bdb_ro_dump.rdbuf()),
132 std::istreambuf_iterator<char>(),
133 std::istreambuf_iterator<char>(bdb_dump.rdbuf())));
std::unique_ptr< BerkeleyRODatabase > MakeBerkeleyRODatabase(const fs::path &path, const DatabaseOptions &options, DatabaseStatus &status, bilingual_str &error)
Return object giving access to Berkeley Read Only database at specified path.
FILE * fopen(const fs::path &p, const char *mode)
Non-refcounted RAII wrapper for FILE*.
FUZZ_TARGET(wallet_bdb_parser,.init=initialize_wallet_bdb_parser)
std::unique_ptr< BerkeleyDatabase > MakeBerkeleyDatabase(const fs::path &path, const DatabaseOptions &options, DatabaseStatus &status, bilingual_str &error)
Return object giving access to Berkeley database at specified path.
static std::string PathToString(const path &path)
Convert path object to a byte string.
bool DumpWallet(const ArgsManager &args, WalletDatabase &db, bilingual_str &error)
void initialize_wallet_bdb_parser()
A Span is an object that can refer to a contiguous sequence of objects.
static bool exists(const path &p)
Path class wrapper to block calls to the fs::path(std::string) implicit constructor and the fs::path:...
Testing setup that configures a complete environment.