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
|
|
|
|
2019-07-08 14:04:52 +00:00
|
|
|
#include <test/EVMHost.h>
|
2019-05-15 19:09:44 +00:00
|
|
|
#include <test/tools/ossfuzz/abiV2FuzzerCommon.h>
|
|
|
|
#include <test/tools/ossfuzz/protoToAbiV2.h>
|
2019-07-16 09:11:20 +00:00
|
|
|
|
2019-07-08 14:04:52 +00:00
|
|
|
#include <evmone/evmone.h>
|
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>
|
|
|
|
|
2019-11-07 12:17:38 +00:00
|
|
|
static evmc::VM evmone = evmc::VM{evmc_create_evmone()};
|
2019-07-08 14:04:52 +00:00
|
|
|
|
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;
|
|
|
|
|
2019-07-08 14:04:52 +00:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
/// Test function returns a uint256 value
|
|
|
|
static size_t const expectedOutputLength = 32;
|
2019-08-06 07:44:39 +00:00
|
|
|
/// Expected output value is decimal 0
|
2019-07-08 14:04:52 +00:00
|
|
|
static uint8_t const expectedOutput[expectedOutputLength] = {
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
2019-08-05 15:05:17 +00:00
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
|
2019-07-08 14:04:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Compares the contents of the memory address pointed to
|
|
|
|
/// by `_result` of `_length` bytes to the expected output.
|
|
|
|
/// Returns true if `_result` matches expected output, false
|
|
|
|
/// otherwise.
|
|
|
|
bool isOutputExpected(uint8_t const* _result, size_t _length)
|
|
|
|
{
|
|
|
|
if (_length != expectedOutputLength)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return (memcmp(_result, expectedOutput, expectedOutputLength) == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Accepts a reference to a user-specified input and returns an
|
|
|
|
/// evmc_message with all of its fields zero initialized except
|
|
|
|
/// gas and input fields.
|
|
|
|
/// The gas field is set to the maximum permissible value so that we
|
|
|
|
/// don't run into out of gas errors. The input field is copied from
|
|
|
|
/// user input.
|
2019-12-23 15:50:30 +00:00
|
|
|
evmc_message initializeMessage(bytes const& _input)
|
2019-07-08 14:04:52 +00:00
|
|
|
{
|
|
|
|
// Zero initialize all message fields
|
|
|
|
evmc_message msg = {};
|
|
|
|
// Gas available (value of type int64_t) is set to its maximum
|
|
|
|
// value.
|
|
|
|
msg.gas = std::numeric_limits<int64_t>::max();
|
|
|
|
msg.input_data = _input.data();
|
|
|
|
msg.input_size = _input.size();
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Accepts host context implementation, and keccak256 hash of the function
|
|
|
|
/// to be called at a specified address in the simulated blockchain as
|
|
|
|
/// input and returns the result of the execution of the called function.
|
|
|
|
evmc::result executeContract(
|
|
|
|
EVMHost& _hostContext,
|
2019-12-23 15:50:30 +00:00
|
|
|
bytes const& _functionHash,
|
2019-07-08 14:04:52 +00:00
|
|
|
evmc_address _deployedAddress
|
|
|
|
)
|
|
|
|
{
|
|
|
|
evmc_message message = initializeMessage(_functionHash);
|
|
|
|
message.destination = _deployedAddress;
|
|
|
|
message.kind = EVMC_CALL;
|
|
|
|
return _hostContext.call(message);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Accepts a reference to host context implementation and byte code
|
|
|
|
/// as input and deploys it on the simulated blockchain. Returns the
|
|
|
|
/// result of deployment.
|
2019-12-23 15:50:30 +00:00
|
|
|
evmc::result deployContract(EVMHost& _hostContext, bytes const& _code)
|
2019-07-08 14:04:52 +00:00
|
|
|
{
|
|
|
|
evmc_message message = initializeMessage(_code);
|
|
|
|
message.kind = EVMC_CREATE;
|
|
|
|
return _hostContext.call(message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-15 19:09:44 +00:00
|
|
|
DEFINE_PROTO_FUZZER(Contract const& _input)
|
|
|
|
{
|
|
|
|
string contract_source = ProtoConverter{}.contractToString(_input);
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Raw runtime byte code generated by solidity
|
2019-12-23 15:50:30 +00:00
|
|
|
bytes byteCode;
|
2019-05-15 19:09:44 +00:00
|
|
|
std::string hexEncodedInput;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
// Compile contract generated by the proto fuzzer
|
|
|
|
SolidityCompilationFramework solCompilationFramework;
|
2019-07-08 14:04:52 +00:00
|
|
|
std::string contractName = ":C";
|
2019-05-15 19:09:44 +00:00
|
|
|
byteCode = solCompilationFramework.compileContract(contract_source, contractName);
|
|
|
|
Json::Value methodIdentifiers = solCompilationFramework.getMethodIdentifiers();
|
|
|
|
// We always call the function test() that is defined in proto converter template
|
|
|
|
hexEncodedInput = methodIdentifiers["test()"].asString();
|
|
|
|
}
|
2019-08-06 07:44:39 +00:00
|
|
|
// Ignore stack too deep errors during compilation
|
2019-12-11 16:31:36 +00:00
|
|
|
catch (evmasm::StackTooDeepException const&)
|
2019-07-08 14:04:52 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2019-08-06 07:44:39 +00:00
|
|
|
// Do not ignore other compilation failures
|
|
|
|
catch (Exception const&)
|
|
|
|
{
|
|
|
|
throw;
|
|
|
|
}
|
2019-07-08 14:04:52 +00:00
|
|
|
|
|
|
|
if (const char* dump_path = getenv("PROTO_FUZZER_DUMP_CODE"))
|
2019-05-15 19:09:44 +00:00
|
|
|
{
|
2019-07-08 14:04:52 +00:00
|
|
|
ofstream of(dump_path);
|
|
|
|
of << toHex(byteCode);
|
2019-05-15 19:09:44 +00:00
|
|
|
}
|
2019-07-08 14:04:52 +00:00
|
|
|
|
|
|
|
// We target the default EVM which is the latest
|
|
|
|
langutil::EVMVersion version = {};
|
2019-11-27 16:37:26 +00:00
|
|
|
EVMHost hostContext(version, evmone);
|
2019-07-08 14:04:52 +00:00
|
|
|
|
|
|
|
// Deploy contract and signal failure if deploy failed
|
|
|
|
evmc::result createResult = deployContract(hostContext, byteCode);
|
|
|
|
solAssert(
|
|
|
|
createResult.status_code == EVMC_SUCCESS,
|
|
|
|
"Proto ABIv2 Fuzzer: Contract creation failed"
|
|
|
|
);
|
|
|
|
|
|
|
|
// Execute test function and signal failure if EVM reverted or
|
|
|
|
// did not return expected output on successful execution.
|
|
|
|
evmc::result callResult = executeContract(
|
|
|
|
hostContext,
|
|
|
|
fromHex(hexEncodedInput),
|
|
|
|
createResult.create_address
|
|
|
|
);
|
|
|
|
|
|
|
|
// We don't care about EVM One failures other than EVMC_REVERT
|
|
|
|
solAssert(callResult.status_code != EVMC_REVERT, "Proto ABIv2 fuzzer: EVM One reverted");
|
|
|
|
if (callResult.status_code == EVMC_SUCCESS)
|
|
|
|
solAssert(
|
|
|
|
isOutputExpected(callResult.output_data, callResult.output_size),
|
|
|
|
"Proto ABIv2 fuzzer: ABIv2 coding failure found"
|
|
|
|
);
|
2019-12-23 15:50:30 +00:00
|
|
|
}
|