2018-01-17 20:02:23 +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/>.
|
|
|
|
*/
|
|
|
|
|
2018-10-22 08:29:03 +00:00
|
|
|
#include <libsolidity/formal/SymbolicVariables.h>
|
2018-01-17 20:02:23 +00:00
|
|
|
|
2018-10-17 13:56:44 +00:00
|
|
|
#include <libsolidity/formal/SymbolicTypes.h>
|
2018-10-22 08:29:03 +00:00
|
|
|
#include <libsolidity/ast/AST.h>
|
|
|
|
|
2018-01-17 20:02:23 +00:00
|
|
|
using namespace std;
|
|
|
|
using namespace dev;
|
2019-05-09 10:16:52 +00:00
|
|
|
using namespace dev::solidity::smt;
|
2018-01-17 20:02:23 +00:00
|
|
|
|
2018-10-22 08:29:03 +00:00
|
|
|
SymbolicVariable::SymbolicVariable(
|
2019-05-09 10:16:52 +00:00
|
|
|
solidity::TypePointer _type,
|
2019-08-07 08:48:09 +00:00
|
|
|
solidity::TypePointer _originalType,
|
2019-04-12 12:44:18 +00:00
|
|
|
string _uniqueName,
|
2019-07-03 14:05:56 +00:00
|
|
|
EncodingContext& _context
|
2018-10-22 08:29:03 +00:00
|
|
|
):
|
2019-08-07 08:48:09 +00:00
|
|
|
m_type(_type),
|
|
|
|
m_originalType(_originalType),
|
2019-04-12 12:44:18 +00:00
|
|
|
m_uniqueName(move(_uniqueName)),
|
2019-07-03 14:05:56 +00:00
|
|
|
m_context(_context),
|
2019-05-09 08:56:58 +00:00
|
|
|
m_ssa(make_unique<SSAVariable>())
|
2018-10-22 08:29:03 +00:00
|
|
|
{
|
2019-04-12 12:44:18 +00:00
|
|
|
solAssert(m_type, "");
|
|
|
|
m_sort = smtSort(*m_type);
|
|
|
|
solAssert(m_sort, "");
|
|
|
|
}
|
|
|
|
|
|
|
|
SymbolicVariable::SymbolicVariable(
|
2019-05-09 10:16:52 +00:00
|
|
|
SortPointer _sort,
|
2019-04-12 12:44:18 +00:00
|
|
|
string _uniqueName,
|
2019-07-03 14:05:56 +00:00
|
|
|
EncodingContext& _context
|
2019-04-12 12:44:18 +00:00
|
|
|
):
|
|
|
|
m_sort(move(_sort)),
|
|
|
|
m_uniqueName(move(_uniqueName)),
|
2019-07-03 14:05:56 +00:00
|
|
|
m_context(_context),
|
2019-05-09 08:56:58 +00:00
|
|
|
m_ssa(make_unique<SSAVariable>())
|
2019-04-12 12:44:18 +00:00
|
|
|
{
|
|
|
|
solAssert(m_sort, "");
|
2018-10-22 08:29:03 +00:00
|
|
|
}
|
|
|
|
|
2019-08-07 08:48:09 +00:00
|
|
|
Expression SymbolicVariable::currentValue(solidity::TypePointer const&) const
|
2018-12-05 08:56:52 +00:00
|
|
|
{
|
|
|
|
return valueAtIndex(m_ssa->index());
|
|
|
|
}
|
|
|
|
|
2018-10-25 14:00:09 +00:00
|
|
|
string SymbolicVariable::currentName() const
|
|
|
|
{
|
|
|
|
return uniqueSymbol(m_ssa->index());
|
|
|
|
}
|
|
|
|
|
2019-05-09 10:16:52 +00:00
|
|
|
Expression SymbolicVariable::valueAtIndex(int _index) const
|
2018-12-05 08:56:52 +00:00
|
|
|
{
|
2019-07-03 14:05:56 +00:00
|
|
|
return m_context.newVariable(uniqueSymbol(_index), m_sort);
|
2018-12-05 08:56:52 +00:00
|
|
|
}
|
|
|
|
|
2019-07-03 14:16:42 +00:00
|
|
|
string SymbolicVariable::nameAtIndex(int _index) const
|
|
|
|
{
|
|
|
|
return uniqueSymbol(_index);
|
|
|
|
}
|
|
|
|
|
2018-10-22 08:29:03 +00:00
|
|
|
string SymbolicVariable::uniqueSymbol(unsigned _index) const
|
|
|
|
{
|
|
|
|
return m_uniqueName + "_" + to_string(_index);
|
|
|
|
}
|
|
|
|
|
2019-07-25 12:10:09 +00:00
|
|
|
Expression SymbolicVariable::resetIndex()
|
|
|
|
{
|
|
|
|
m_ssa->resetIndex();
|
|
|
|
return currentValue();
|
|
|
|
}
|
|
|
|
|
2019-05-09 10:16:52 +00:00
|
|
|
Expression SymbolicVariable::increaseIndex()
|
2018-12-05 08:56:52 +00:00
|
|
|
{
|
|
|
|
++(*m_ssa);
|
|
|
|
return currentValue();
|
|
|
|
}
|
|
|
|
|
2018-10-22 08:29:03 +00:00
|
|
|
SymbolicBoolVariable::SymbolicBoolVariable(
|
2019-05-09 10:16:52 +00:00
|
|
|
solidity::TypePointer _type,
|
2019-04-12 12:44:18 +00:00
|
|
|
string _uniqueName,
|
2019-07-03 14:05:56 +00:00
|
|
|
EncodingContext& _context
|
2018-10-22 08:29:03 +00:00
|
|
|
):
|
2019-08-07 08:48:09 +00:00
|
|
|
SymbolicVariable(_type, _type, move(_uniqueName), _context)
|
2018-10-22 08:29:03 +00:00
|
|
|
{
|
2019-05-09 10:16:52 +00:00
|
|
|
solAssert(m_type->category() == solidity::Type::Category::Bool, "");
|
2018-10-22 08:29:03 +00:00
|
|
|
}
|
|
|
|
|
2018-02-28 17:00:13 +00:00
|
|
|
SymbolicIntVariable::SymbolicIntVariable(
|
2019-05-09 10:16:52 +00:00
|
|
|
solidity::TypePointer _type,
|
2019-08-07 08:48:09 +00:00
|
|
|
solidity::TypePointer _originalType,
|
2019-04-12 12:44:18 +00:00
|
|
|
string _uniqueName,
|
2019-07-03 14:05:56 +00:00
|
|
|
EncodingContext& _context
|
2018-02-28 17:00:13 +00:00
|
|
|
):
|
2019-08-07 08:48:09 +00:00
|
|
|
SymbolicVariable(_type, _originalType, move(_uniqueName), _context)
|
2018-01-17 20:02:23 +00:00
|
|
|
{
|
2018-10-18 13:03:52 +00:00
|
|
|
solAssert(isNumber(m_type->category()), "");
|
2018-04-05 10:20:41 +00:00
|
|
|
}
|
|
|
|
|
2018-10-22 08:29:03 +00:00
|
|
|
SymbolicAddressVariable::SymbolicAddressVariable(
|
2019-04-12 12:44:18 +00:00
|
|
|
string _uniqueName,
|
2019-07-03 14:05:56 +00:00
|
|
|
EncodingContext& _context
|
2018-10-22 08:29:03 +00:00
|
|
|
):
|
2019-08-07 08:48:09 +00:00
|
|
|
SymbolicIntVariable(TypeProvider::uint(160), TypeProvider::uint(160), move(_uniqueName), _context)
|
2018-10-22 08:29:03 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SymbolicFixedBytesVariable::SymbolicFixedBytesVariable(
|
2019-08-07 08:48:09 +00:00
|
|
|
solidity::TypePointer _originalType,
|
2018-10-22 08:29:03 +00:00
|
|
|
unsigned _numBytes,
|
2019-04-12 12:44:18 +00:00
|
|
|
string _uniqueName,
|
2019-07-03 14:05:56 +00:00
|
|
|
EncodingContext& _context
|
2018-10-22 08:29:03 +00:00
|
|
|
):
|
2019-08-07 08:48:09 +00:00
|
|
|
SymbolicIntVariable(TypeProvider::uint(_numBytes * 8), _originalType, move(_uniqueName), _context)
|
2018-10-22 08:29:03 +00:00
|
|
|
{
|
|
|
|
}
|
2018-12-10 10:34:29 +00:00
|
|
|
|
|
|
|
SymbolicFunctionVariable::SymbolicFunctionVariable(
|
2019-05-09 10:16:52 +00:00
|
|
|
solidity::TypePointer _type,
|
2019-04-12 12:44:18 +00:00
|
|
|
string _uniqueName,
|
2019-07-03 14:05:56 +00:00
|
|
|
EncodingContext& _context
|
2018-12-10 10:34:29 +00:00
|
|
|
):
|
2019-08-07 08:48:09 +00:00
|
|
|
SymbolicVariable(_type, _type, move(_uniqueName), _context),
|
2019-07-03 14:05:56 +00:00
|
|
|
m_declaration(m_context.newVariable(currentName(), m_sort))
|
2018-12-10 10:34:29 +00:00
|
|
|
{
|
2019-05-09 10:16:52 +00:00
|
|
|
solAssert(m_type->category() == solidity::Type::Category::Function, "");
|
2018-12-10 10:34:29 +00:00
|
|
|
}
|
|
|
|
|
2019-07-03 14:16:42 +00:00
|
|
|
SymbolicFunctionVariable::SymbolicFunctionVariable(
|
|
|
|
SortPointer _sort,
|
|
|
|
string _uniqueName,
|
|
|
|
EncodingContext& _context
|
|
|
|
):
|
|
|
|
SymbolicVariable(move(_sort), move(_uniqueName), _context),
|
|
|
|
m_declaration(m_context.newVariable(currentName(), m_sort))
|
|
|
|
{
|
|
|
|
solAssert(m_sort->kind == Kind::Function, "");
|
|
|
|
}
|
|
|
|
|
2019-11-10 17:58:29 +00:00
|
|
|
Expression SymbolicFunctionVariable::currentValue(solidity::TypePointer const& _targetType) const
|
2018-12-10 10:34:29 +00:00
|
|
|
{
|
2019-11-10 17:58:29 +00:00
|
|
|
return m_abstract.currentValue(_targetType);
|
|
|
|
}
|
|
|
|
|
|
|
|
Expression SymbolicFunctionVariable::currentFunctionValue() const
|
|
|
|
{
|
|
|
|
return m_declaration;
|
|
|
|
}
|
|
|
|
|
|
|
|
Expression SymbolicFunctionVariable::valueAtIndex(int _index) const
|
|
|
|
{
|
|
|
|
return m_abstract.valueAtIndex(_index);
|
|
|
|
}
|
|
|
|
|
|
|
|
Expression SymbolicFunctionVariable::functionValueAtIndex(int _index) const
|
|
|
|
{
|
|
|
|
return SymbolicVariable::valueAtIndex(_index);
|
|
|
|
}
|
|
|
|
|
|
|
|
Expression SymbolicFunctionVariable::resetIndex()
|
|
|
|
{
|
|
|
|
SymbolicVariable::resetIndex();
|
|
|
|
return m_abstract.resetIndex();
|
2018-12-10 10:34:29 +00:00
|
|
|
}
|
|
|
|
|
2019-05-09 10:16:52 +00:00
|
|
|
Expression SymbolicFunctionVariable::increaseIndex()
|
2018-12-10 10:34:29 +00:00
|
|
|
{
|
|
|
|
++(*m_ssa);
|
|
|
|
resetDeclaration();
|
2019-11-10 17:58:29 +00:00
|
|
|
m_abstract.increaseIndex();
|
|
|
|
return m_abstract.currentValue();
|
2018-12-10 10:34:29 +00:00
|
|
|
}
|
|
|
|
|
2019-05-09 10:16:52 +00:00
|
|
|
Expression SymbolicFunctionVariable::operator()(vector<Expression> _arguments) const
|
2018-12-10 10:34:29 +00:00
|
|
|
{
|
|
|
|
return m_declaration(_arguments);
|
|
|
|
}
|
2018-11-09 16:06:30 +00:00
|
|
|
|
2019-11-10 17:58:29 +00:00
|
|
|
void SymbolicFunctionVariable::resetDeclaration()
|
|
|
|
{
|
|
|
|
m_declaration = m_context.newVariable(currentName(), m_sort);
|
|
|
|
}
|
|
|
|
|
2018-11-09 16:06:30 +00:00
|
|
|
SymbolicMappingVariable::SymbolicMappingVariable(
|
2019-05-09 10:16:52 +00:00
|
|
|
solidity::TypePointer _type,
|
2019-04-12 12:44:18 +00:00
|
|
|
string _uniqueName,
|
2019-07-03 14:05:56 +00:00
|
|
|
EncodingContext& _context
|
2018-11-09 16:06:30 +00:00
|
|
|
):
|
2019-08-07 08:48:09 +00:00
|
|
|
SymbolicVariable(_type, _type, move(_uniqueName), _context)
|
2018-11-09 16:06:30 +00:00
|
|
|
{
|
|
|
|
solAssert(isMapping(m_type->category()), "");
|
|
|
|
}
|
2019-02-20 11:34:52 +00:00
|
|
|
|
|
|
|
SymbolicArrayVariable::SymbolicArrayVariable(
|
2019-05-09 10:16:52 +00:00
|
|
|
solidity::TypePointer _type,
|
2019-08-07 08:48:09 +00:00
|
|
|
solidity::TypePointer _originalType,
|
2019-04-12 12:44:18 +00:00
|
|
|
string _uniqueName,
|
2019-07-03 14:05:56 +00:00
|
|
|
EncodingContext& _context
|
2019-02-20 11:34:52 +00:00
|
|
|
):
|
2019-08-07 08:48:09 +00:00
|
|
|
SymbolicVariable(_type, _originalType, move(_uniqueName), _context)
|
2019-02-20 11:34:52 +00:00
|
|
|
{
|
|
|
|
solAssert(isArray(m_type->category()), "");
|
|
|
|
}
|
2019-03-06 00:10:43 +00:00
|
|
|
|
2019-08-07 08:48:09 +00:00
|
|
|
Expression SymbolicArrayVariable::currentValue(solidity::TypePointer const& _targetType) const
|
|
|
|
{
|
|
|
|
if (_targetType)
|
|
|
|
// StringLiterals are encoded as SMT arrays in the generic case,
|
|
|
|
// but they can also be compared/assigned to fixed bytes, in which
|
|
|
|
// case they'd need to be encoded as numbers.
|
|
|
|
if (auto strType = dynamic_cast<StringLiteralType const*>(m_originalType))
|
|
|
|
if (_targetType->category() == solidity::Type::Category::FixedBytes)
|
|
|
|
return smt::Expression(u256(toHex(asBytes(strType->value()), HexPrefix::Add)));
|
|
|
|
|
|
|
|
return SymbolicVariable::currentValue(_targetType);
|
|
|
|
}
|
|
|
|
|
2019-03-06 00:10:43 +00:00
|
|
|
SymbolicEnumVariable::SymbolicEnumVariable(
|
2019-05-09 10:16:52 +00:00
|
|
|
solidity::TypePointer _type,
|
2019-04-12 12:44:18 +00:00
|
|
|
string _uniqueName,
|
2019-07-03 14:05:56 +00:00
|
|
|
EncodingContext& _context
|
2019-03-06 00:10:43 +00:00
|
|
|
):
|
2019-08-07 08:48:09 +00:00
|
|
|
SymbolicVariable(_type, _type, move(_uniqueName), _context)
|
2019-03-06 00:10:43 +00:00
|
|
|
{
|
|
|
|
solAssert(isEnum(m_type->category()), "");
|
|
|
|
}
|
2019-04-26 12:57:29 +00:00
|
|
|
|
|
|
|
SymbolicTupleVariable::SymbolicTupleVariable(
|
2019-05-09 10:16:52 +00:00
|
|
|
solidity::TypePointer _type,
|
2019-04-26 12:57:29 +00:00
|
|
|
string _uniqueName,
|
2019-07-03 14:05:56 +00:00
|
|
|
EncodingContext& _context
|
2019-04-26 12:57:29 +00:00
|
|
|
):
|
2019-08-07 08:48:09 +00:00
|
|
|
SymbolicVariable(_type, _type, move(_uniqueName), _context)
|
2019-04-26 12:57:29 +00:00
|
|
|
{
|
|
|
|
solAssert(isTuple(m_type->category()), "");
|
2019-11-15 13:48:11 +00:00
|
|
|
auto const& tupleType = dynamic_cast<TupleType const&>(*m_type);
|
|
|
|
auto const& componentsTypes = tupleType.components();
|
|
|
|
for (unsigned i = 0; i < componentsTypes.size(); ++i)
|
|
|
|
if (componentsTypes.at(i))
|
|
|
|
{
|
|
|
|
string componentName = m_uniqueName + "_component_" + to_string(i);
|
|
|
|
auto result = smt::newSymbolicVariable(*componentsTypes.at(i), componentName, m_context);
|
|
|
|
solAssert(result.second, "");
|
|
|
|
m_components.emplace_back(move(result.second));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
m_components.emplace_back(nullptr);
|
2019-04-26 12:57:29 +00:00
|
|
|
}
|