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
|
|
|
|
|
|
|
#include <libyul/AsmAnalysisInfo.h>
|
|
|
|
#include <libyul/AsmParser.h>
|
|
|
|
#include <libyul/AsmAnalysis.h>
|
|
|
|
#include <libyul/Dialect.h>
|
|
|
|
#include <libyul/backends/evm/EVMDialect.h>
|
|
|
|
#include <libyul/AssemblyStack.h>
|
|
|
|
|
|
|
|
#include <liblangutil/Exceptions.h>
|
|
|
|
#include <liblangutil/ErrorReporter.h>
|
|
|
|
#include <liblangutil/EVMVersion.h>
|
|
|
|
|
2020-01-06 10:52:23 +00:00
|
|
|
#include <libsolutil/CommonIO.h>
|
|
|
|
#include <libsolutil/CommonData.h>
|
2018-02-06 09:57:16 +00:00
|
|
|
|
|
|
|
#include <test/tools/ossfuzz/yulFuzzerCommon.h>
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <memory>
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
using namespace std;
|
2019-12-23 15:50:30 +00:00
|
|
|
using namespace solidity;
|
|
|
|
using namespace solidity::yul;
|
|
|
|
using namespace solidity::util;
|
|
|
|
using namespace solidity::langutil;
|
|
|
|
using namespace solidity::yul::test::yul_fuzzer;
|
2018-02-06 09:57:16 +00:00
|
|
|
|
2020-12-08 20:06:10 +00:00
|
|
|
// Prototype as we can't use the FuzzerInterface.h header.
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(uint8_t const* _data, size_t _size);
|
|
|
|
|
2018-02-06 09:57:16 +00:00
|
|
|
extern "C" int LLVMFuzzerTestOneInput(uint8_t const* _data, size_t _size)
|
|
|
|
{
|
|
|
|
if (_size > 600)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
string input(reinterpret_cast<char const*>(_data), _size);
|
|
|
|
|
2019-03-14 13:58:24 +00:00
|
|
|
if (std::any_of(input.begin(), input.end(), [](char c) {
|
|
|
|
return ((static_cast<unsigned char>(c) > 127) || !(std::isprint(c) || (c == '\n') || (c == '\t')));
|
|
|
|
}))
|
|
|
|
return 0;
|
|
|
|
|
2019-04-24 12:03:09 +00:00
|
|
|
YulStringRepository::reset();
|
|
|
|
|
2019-03-27 11:49:50 +00:00
|
|
|
AssemblyStack stack(
|
2019-04-02 09:40:59 +00:00
|
|
|
langutil::EVMVersion(),
|
2019-03-27 11:49:50 +00:00
|
|
|
AssemblyStack::Language::StrictAssembly,
|
2019-12-23 15:50:30 +00:00
|
|
|
solidity::frontend::OptimiserSettings::full()
|
2019-03-27 11:49:50 +00:00
|
|
|
);
|
2018-02-06 09:57:16 +00:00
|
|
|
try
|
|
|
|
{
|
2019-03-27 11:49:50 +00:00
|
|
|
if (
|
|
|
|
!stack.parseAndAnalyze("source", input) ||
|
|
|
|
!stack.parserResult()->code ||
|
|
|
|
!stack.parserResult()->analysisInfo
|
|
|
|
)
|
2018-02-06 09:57:16 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
catch (Exception const&)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ostringstream os1;
|
|
|
|
ostringstream os2;
|
2019-11-01 10:36:29 +00:00
|
|
|
yulFuzzerUtil::TerminationReason termReason = yulFuzzerUtil::interpret(
|
|
|
|
os1,
|
|
|
|
stack.parserResult()->code,
|
|
|
|
EVMDialect::strictAssemblyForEVMObjects(langutil::EVMVersion())
|
|
|
|
);
|
|
|
|
if (termReason == yulFuzzerUtil::TerminationReason::StepLimitReached)
|
2019-03-27 11:05:54 +00:00
|
|
|
return 0;
|
|
|
|
|
2018-02-06 09:57:16 +00:00
|
|
|
stack.optimize();
|
2019-11-01 10:36:29 +00:00
|
|
|
termReason = yulFuzzerUtil::interpret(
|
|
|
|
os2,
|
|
|
|
stack.parserResult()->code,
|
|
|
|
EVMDialect::strictAssemblyForEVMObjects(langutil::EVMVersion()),
|
2019-11-01 11:29:20 +00:00
|
|
|
(yul::test::yul_fuzzer::yulFuzzerUtil::maxSteps * 4)
|
2019-11-01 10:36:29 +00:00
|
|
|
);
|
2018-02-06 09:57:16 +00:00
|
|
|
|
|
|
|
bool isTraceEq = (os1.str() == os2.str());
|
|
|
|
yulAssert(isTraceEq, "Interpreted traces for optimized and unoptimized code differ.");
|
|
|
|
return 0;
|
|
|
|
}
|