2019-05-15 19:09:44 +00:00
|
|
|
/*
|
|
|
|
This file is part of solidity.
|
|
|
|
|
|
|
|
solidity is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
solidity is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with solidity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2019-05-15 19:09:44 +00:00
|
|
|
|
2021-02-02 14:23:02 +00:00
|
|
|
#include <test/tools/ossfuzz/SolidityEvmoneInterface.h>
|
2019-05-15 19:09:44 +00:00
|
|
|
#include <test/tools/ossfuzz/protoToAbiV2.h>
|
2019-07-16 09:11:20 +00:00
|
|
|
|
2019-05-15 19:09:44 +00:00
|
|
|
#include <src/libfuzzer/libfuzzer_macro.h>
|
2019-07-16 09:11:20 +00:00
|
|
|
|
2019-05-15 19:09:44 +00:00
|
|
|
#include <fstream>
|
|
|
|
|
2021-02-02 14:23:02 +00:00
|
|
|
using namespace solidity::frontend;
|
|
|
|
using namespace solidity::test::fuzzer;
|
2019-12-23 15:50:30 +00:00
|
|
|
using namespace solidity::test::abiv2fuzzer;
|
|
|
|
using namespace solidity::test;
|
|
|
|
using namespace solidity::util;
|
|
|
|
using namespace solidity;
|
2019-05-15 19:09:44 +00:00
|
|
|
using namespace std;
|
|
|
|
|
2020-12-04 14:31:32 +00:00
|
|
|
static evmc::VM evmone = evmc::VM{evmc_create_evmone()};
|
2019-07-08 14:04:52 +00:00
|
|
|
|
2019-05-15 19:09:44 +00:00
|
|
|
DEFINE_PROTO_FUZZER(Contract const& _input)
|
|
|
|
{
|
2022-08-08 08:59:58 +00:00
|
|
|
string contract_source = ProtoConverter{_input.seed()}.contractToString(_input);
|
2019-05-15 19:09:44 +00:00
|
|
|
|
|
|
|
if (const char* dump_path = getenv("PROTO_FUZZER_DUMP_PATH"))
|
|
|
|
{
|
|
|
|
// With libFuzzer binary run this to generate the solidity source file x.sol from a proto input:
|
|
|
|
// PROTO_FUZZER_DUMP_PATH=x.sol ./a.out proto-input
|
|
|
|
ofstream of(dump_path);
|
|
|
|
of << contract_source;
|
|
|
|
}
|
|
|
|
|
2019-07-08 14:04:52 +00:00
|
|
|
// We target the default EVM which is the latest
|
2021-02-02 14:23:02 +00:00
|
|
|
langutil::EVMVersion version;
|
2019-11-27 16:37:26 +00:00
|
|
|
EVMHost hostContext(version, evmone);
|
2021-04-07 10:22:21 +00:00
|
|
|
string contractName = "C";
|
2021-02-02 14:23:02 +00:00
|
|
|
string methodName = "test()";
|
2021-04-07 10:22:21 +00:00
|
|
|
StringMap source({{"test.sol", contract_source}});
|
|
|
|
CompilerInput cInput(version, source, contractName, OptimiserSettings::minimal(), {});
|
2021-02-02 14:23:02 +00:00
|
|
|
EvmoneUtility evmoneUtil(
|
2019-07-08 14:04:52 +00:00
|
|
|
hostContext,
|
2021-02-02 14:23:02 +00:00
|
|
|
cInput,
|
|
|
|
contractName,
|
|
|
|
{},
|
|
|
|
methodName
|
2019-07-08 14:04:52 +00:00
|
|
|
);
|
2021-02-02 14:23:02 +00:00
|
|
|
// Invoke test function
|
|
|
|
auto result = evmoneUtil.compileDeployAndExecute();
|
2022-08-08 08:59:58 +00:00
|
|
|
// We don't care about EVM One failures other than EVMC_REVERT
|
|
|
|
solAssert(result.status_code != EVMC_REVERT, "Proto ABIv2 fuzzer: EVM One reverted");
|
|
|
|
if (result.status_code == EVMC_SUCCESS)
|
|
|
|
if (!EvmoneUtility::zeroWord(result.output_data, result.output_size))
|
|
|
|
{
|
|
|
|
solidity::bytes res;
|
|
|
|
for (size_t i = 0; i < result.output_size; i++)
|
|
|
|
res.push_back(result.output_data[i]);
|
|
|
|
cout << solidity::util::toHex(res) << endl;
|
|
|
|
solAssert(
|
|
|
|
false,
|
|
|
|
"Proto ABIv2 fuzzer: ABIv2 coding failure found"
|
|
|
|
);
|
|
|
|
}
|
2019-12-23 15:50:30 +00:00
|
|
|
}
|