2018-02-06 09:57:16 +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
|
2018-02-06 09:57:16 +00:00
|
|
|
/**
|
|
|
|
* Yul interpreter module that evaluates EVM instructions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <libyul/AsmDataForward.h>
|
|
|
|
|
2020-01-06 10:52:23 +00:00
|
|
|
#include <libsolutil/CommonData.h>
|
2018-02-06 09:57:16 +00:00
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
namespace solidity::evmasm
|
2018-02-06 09:57:16 +00:00
|
|
|
{
|
|
|
|
enum class Instruction: uint8_t;
|
|
|
|
}
|
|
|
|
|
2019-12-23 15:50:30 +00:00
|
|
|
namespace solidity::yul
|
2018-02-06 09:57:16 +00:00
|
|
|
{
|
2019-04-30 13:02:52 +00:00
|
|
|
class YulString;
|
2019-05-20 12:30:32 +00:00
|
|
|
struct BuiltinFunctionForEVM;
|
2019-12-23 15:50:30 +00:00
|
|
|
}
|
2019-05-20 12:30:32 +00:00
|
|
|
|
2019-12-23 15:50:30 +00:00
|
|
|
namespace solidity::yul::test
|
2018-02-06 09:57:16 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
struct InterpreterState;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Interprets EVM instructions based on the current state and logs instructions with
|
|
|
|
* side-effects.
|
|
|
|
*
|
2019-02-18 14:16:14 +00:00
|
|
|
* Since this is mainly meant to be used for differential fuzz testing, it is focused
|
|
|
|
* on a single contract only, does not do any gas counting and differs from the correct
|
|
|
|
* implementation in many ways:
|
2018-02-06 09:57:16 +00:00
|
|
|
*
|
|
|
|
* - If memory access to a "large" memory position is performed, a deterministic
|
2019-02-18 14:16:14 +00:00
|
|
|
* value is returned. Data that is stored in a "large" memory position is not
|
|
|
|
* retained.
|
2018-02-06 09:57:16 +00:00
|
|
|
* - The blockhash instruction returns a fixed value if the argument is in range.
|
|
|
|
* - Extcodesize returns a deterministic value depending on the address.
|
|
|
|
* - Extcodecopy copies a deterministic value depending on the address.
|
|
|
|
* - And many other things
|
|
|
|
*
|
2019-02-18 14:16:14 +00:00
|
|
|
* The main focus is that the generated execution trace is the same for equivalent executions
|
2019-02-25 10:46:53 +00:00
|
|
|
* and likely to be different for non-equivalent executions.
|
2018-02-06 09:57:16 +00:00
|
|
|
*/
|
|
|
|
class EVMInstructionInterpreter
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit EVMInstructionInterpreter(InterpreterState& _state):
|
|
|
|
m_state(_state)
|
|
|
|
{}
|
2019-04-30 13:02:52 +00:00
|
|
|
/// Evaluate instruction
|
2019-12-23 15:50:30 +00:00
|
|
|
u256 eval(evmasm::Instruction _instruction, std::vector<u256> const& _arguments);
|
2019-04-30 13:02:52 +00:00
|
|
|
/// Evaluate builtin function
|
2020-07-27 14:22:05 +00:00
|
|
|
u256 evalBuiltin(
|
|
|
|
BuiltinFunctionForEVM const& _fun,
|
|
|
|
std::vector<Expression> const& _arguments,
|
|
|
|
std::vector<u256> const& _evaluatedArguments
|
|
|
|
);
|
2018-02-06 09:57:16 +00:00
|
|
|
|
|
|
|
private:
|
2019-09-02 10:06:29 +00:00
|
|
|
/// Checks if the memory access is not too large for the interpreter and adjusts
|
|
|
|
/// msize accordingly.
|
|
|
|
/// @returns false if the amount of bytes read is lager than 0xffff
|
2019-12-23 15:50:30 +00:00
|
|
|
bool accessMemory(u256 const& _offset, u256 const& _size = 32);
|
2019-09-02 10:06:29 +00:00
|
|
|
/// @returns the memory contents at the provided address.
|
|
|
|
/// Does not adjust msize, use @a accessMemory for that
|
2019-12-23 15:50:30 +00:00
|
|
|
bytes readMemory(u256 const& _offset, u256 const& _size = 32);
|
2019-09-02 10:06:29 +00:00
|
|
|
/// @returns the memory contents at the provided address.
|
|
|
|
/// Does not adjust msize, use @a accessMemory for that
|
2019-12-23 15:50:30 +00:00
|
|
|
u256 readMemoryWord(u256 const& _offset);
|
2019-09-02 10:06:29 +00:00
|
|
|
/// @returns writes a word to memory
|
|
|
|
/// Does not adjust msize, use @a accessMemory for that
|
2019-12-23 15:50:30 +00:00
|
|
|
void writeMemoryWord(u256 const& _offset, u256 const& _value);
|
2018-02-06 09:57:16 +00:00
|
|
|
|
2019-12-23 15:50:30 +00:00
|
|
|
void logTrace(evmasm::Instruction _instruction, std::vector<u256> const& _arguments = {}, bytes const& _data = {});
|
2018-02-06 09:57:16 +00:00
|
|
|
/// Appends a log to the trace representing an instruction or similar operation by string,
|
|
|
|
/// with arguments and auxiliary data (if nonempty).
|
2019-12-23 15:50:30 +00:00
|
|
|
void logTrace(std::string const& _pseudoInstruction, std::vector<u256> const& _arguments = {}, bytes const& _data = {});
|
2018-02-06 09:57:16 +00:00
|
|
|
|
|
|
|
InterpreterState& m_state;
|
|
|
|
};
|
|
|
|
|
2019-12-23 15:50:30 +00:00
|
|
|
} // solidity::yul::test
|