2017-07-06 09:05:05 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <libsolidity/formal/SMTChecker.h>
|
|
|
|
|
2017-07-13 19:06:29 +00:00
|
|
|
#ifdef HAVE_Z3
|
|
|
|
#include <libsolidity/formal/Z3Interface.h>
|
|
|
|
#else
|
2017-07-13 16:22:51 +00:00
|
|
|
#include <libsolidity/formal/SMTLib2Interface.h>
|
2017-07-13 19:06:29 +00:00
|
|
|
#endif
|
2017-07-06 09:05:05 +00:00
|
|
|
|
2017-09-28 13:24:24 +00:00
|
|
|
#include <libsolidity/formal/VariableUsage.h>
|
|
|
|
|
2017-07-06 09:05:05 +00:00
|
|
|
#include <libsolidity/interface/ErrorReporter.h>
|
|
|
|
|
2017-07-14 09:49:27 +00:00
|
|
|
#include <boost/range/adaptor/map.hpp>
|
2017-09-29 14:53:26 +00:00
|
|
|
#include <boost/algorithm/string/replace.hpp>
|
2017-07-14 09:49:27 +00:00
|
|
|
|
2017-07-06 09:05:05 +00:00
|
|
|
using namespace std;
|
|
|
|
using namespace dev;
|
|
|
|
using namespace dev::solidity;
|
|
|
|
|
2017-07-13 19:06:29 +00:00
|
|
|
SMTChecker::SMTChecker(ErrorReporter& _errorReporter, ReadCallback::Callback const& _readFileCallback):
|
|
|
|
#ifdef HAVE_Z3
|
|
|
|
m_interface(make_shared<smt::Z3Interface>()),
|
|
|
|
#else
|
2017-07-13 16:22:51 +00:00
|
|
|
m_interface(make_shared<smt::SMTLib2Interface>(_readFileCallback)),
|
2017-07-13 19:06:29 +00:00
|
|
|
#endif
|
2017-07-11 11:26:43 +00:00
|
|
|
m_errorReporter(_errorReporter)
|
2017-07-06 09:05:05 +00:00
|
|
|
{
|
2017-07-13 19:06:29 +00:00
|
|
|
(void)_readFileCallback;
|
2017-07-06 09:05:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SMTChecker::analyze(SourceUnit const& _source)
|
|
|
|
{
|
2017-09-28 13:24:24 +00:00
|
|
|
m_variableUsage = make_shared<VariableUsage>(_source);
|
2017-08-11 16:54:56 +00:00
|
|
|
if (_source.annotation().experimentalFeatures.count(ExperimentalFeature::SMTChecker))
|
2017-07-11 11:26:43 +00:00
|
|
|
_source.accept(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SMTChecker::endVisit(VariableDeclaration const& _varDecl)
|
|
|
|
{
|
2017-09-28 13:24:24 +00:00
|
|
|
if (_varDecl.isLocalVariable() && _varDecl.type()->isValueType() &&_varDecl.value())
|
|
|
|
assignment(_varDecl, *_varDecl.value());
|
2017-07-11 11:26:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool SMTChecker::visit(FunctionDefinition const& _function)
|
|
|
|
{
|
|
|
|
if (!_function.modifiers().empty() || _function.isConstructor())
|
|
|
|
m_errorReporter.warning(
|
|
|
|
_function.location(),
|
|
|
|
"Assertion checker does not yet support constructors and functions with modifiers."
|
|
|
|
);
|
|
|
|
m_currentFunction = &_function;
|
2017-09-28 11:44:56 +00:00
|
|
|
// We only handle local variables, so we clear at the beginning of the function.
|
|
|
|
// If we add storage variables, those should be cleared differently.
|
|
|
|
m_interface->reset();
|
|
|
|
m_currentSequenceCounter.clear();
|
|
|
|
m_nextFreeSequenceCounter.clear();
|
|
|
|
m_conditionalExecutionHappened = false;
|
2017-09-28 13:24:24 +00:00
|
|
|
initializeLocalVariables(_function);
|
2017-07-11 11:26:43 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SMTChecker::endVisit(FunctionDefinition const&)
|
|
|
|
{
|
|
|
|
// TOOD we could check for "reachability", i.e. satisfiability here.
|
2017-09-28 11:44:56 +00:00
|
|
|
// We only handle local variables, so we clear at the beginning of the function.
|
2017-07-13 19:04:19 +00:00
|
|
|
// If we add storage variables, those should be cleared differently.
|
2017-07-11 11:26:43 +00:00
|
|
|
m_currentFunction = nullptr;
|
|
|
|
}
|
|
|
|
|
2017-07-14 09:49:27 +00:00
|
|
|
bool SMTChecker::visit(IfStatement const& _node)
|
|
|
|
{
|
|
|
|
_node.condition().accept(*this);
|
|
|
|
|
2017-09-29 14:53:26 +00:00
|
|
|
checkBooleanNotConstant(_node.condition(), "Condition is always $VALUE.");
|
2017-07-14 09:49:27 +00:00
|
|
|
|
2017-09-28 13:24:24 +00:00
|
|
|
visitBranch(_node.trueStatement(), expr(_node.condition()));
|
|
|
|
vector<Declaration const*> touchedVariables = m_variableUsage->touchedVariables(_node.trueStatement());
|
2017-07-14 09:49:27 +00:00
|
|
|
if (_node.falseStatement())
|
2017-09-28 13:24:24 +00:00
|
|
|
{
|
|
|
|
visitBranch(*_node.falseStatement(), !expr(_node.condition()));
|
|
|
|
touchedVariables += m_variableUsage->touchedVariables(*_node.falseStatement());
|
|
|
|
}
|
2017-07-14 09:49:27 +00:00
|
|
|
|
2017-09-28 11:44:56 +00:00
|
|
|
resetVariables(touchedVariables);
|
2017-07-14 09:49:27 +00:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SMTChecker::visit(WhileStatement const& _node)
|
|
|
|
{
|
2017-09-28 13:24:24 +00:00
|
|
|
auto touchedVariables = m_variableUsage->touchedVariables(_node);
|
|
|
|
resetVariables(touchedVariables);
|
2017-09-28 11:44:56 +00:00
|
|
|
if (_node.isDoWhile())
|
|
|
|
{
|
2017-09-28 13:24:24 +00:00
|
|
|
visitBranch(_node.body());
|
|
|
|
// TODO the assertions generated in the body should still be active in the condition
|
2017-09-28 11:44:56 +00:00
|
|
|
_node.condition().accept(*this);
|
2017-09-29 14:53:26 +00:00
|
|
|
checkBooleanNotConstant(_node.condition(), "Do-while loop condition is always $VALUE.");
|
2017-09-28 11:44:56 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
_node.condition().accept(*this);
|
2017-09-29 14:53:26 +00:00
|
|
|
checkBooleanNotConstant(_node.condition(), "While loop condition is always $VALUE.");
|
|
|
|
|
2017-09-28 13:24:24 +00:00
|
|
|
visitBranch(_node.body(), expr(_node.condition()));
|
2017-09-28 11:44:56 +00:00
|
|
|
}
|
2017-09-28 13:24:24 +00:00
|
|
|
resetVariables(touchedVariables);
|
2017-07-14 09:49:27 +00:00
|
|
|
|
2017-09-28 11:44:56 +00:00
|
|
|
return false;
|
2017-07-14 09:49:27 +00:00
|
|
|
}
|
|
|
|
|
2017-07-11 11:26:43 +00:00
|
|
|
void SMTChecker::endVisit(VariableDeclarationStatement const& _varDecl)
|
|
|
|
{
|
|
|
|
if (_varDecl.declarations().size() != 1)
|
|
|
|
m_errorReporter.warning(
|
|
|
|
_varDecl.location(),
|
|
|
|
"Assertion checker does not yet support such variable declarations."
|
|
|
|
);
|
2017-07-14 09:49:27 +00:00
|
|
|
else if (knownVariable(*_varDecl.declarations()[0]))
|
|
|
|
{
|
|
|
|
if (_varDecl.initialValue())
|
|
|
|
// TODO more checks?
|
2017-09-28 13:24:24 +00:00
|
|
|
assignment(*_varDecl.declarations()[0], *_varDecl.initialValue());
|
2017-07-14 09:49:27 +00:00
|
|
|
}
|
2017-07-11 11:26:43 +00:00
|
|
|
else
|
|
|
|
m_errorReporter.warning(
|
|
|
|
_varDecl.location(),
|
|
|
|
"Assertion checker does not yet implement such variable declarations."
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SMTChecker::endVisit(ExpressionStatement const&)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void SMTChecker::endVisit(Assignment const& _assignment)
|
|
|
|
{
|
|
|
|
if (_assignment.assignmentOperator() != Token::Value::Assign)
|
|
|
|
m_errorReporter.warning(
|
|
|
|
_assignment.location(),
|
|
|
|
"Assertion checker does not yet implement compound assignment."
|
|
|
|
);
|
|
|
|
else if (_assignment.annotation().type->category() != Type::Category::Integer)
|
|
|
|
m_errorReporter.warning(
|
|
|
|
_assignment.location(),
|
|
|
|
"Assertion checker does not yet implement type " + _assignment.annotation().type->toString()
|
|
|
|
);
|
|
|
|
else if (Identifier const* identifier = dynamic_cast<Identifier const*>(&_assignment.leftHandSide()))
|
|
|
|
{
|
|
|
|
Declaration const* decl = identifier->annotation().referencedDeclaration;
|
|
|
|
if (knownVariable(*decl))
|
2017-09-28 13:24:24 +00:00
|
|
|
assignment(*decl, _assignment.rightHandSide());
|
2017-07-11 11:26:43 +00:00
|
|
|
else
|
|
|
|
m_errorReporter.warning(
|
|
|
|
_assignment.location(),
|
|
|
|
"Assertion checker does not yet implement such assignments."
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
m_errorReporter.warning(
|
|
|
|
_assignment.location(),
|
|
|
|
"Assertion checker does not yet implement such assignments."
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SMTChecker::endVisit(TupleExpression const& _tuple)
|
|
|
|
{
|
|
|
|
if (_tuple.isInlineArray() || _tuple.components().size() != 1)
|
|
|
|
m_errorReporter.warning(
|
|
|
|
_tuple.location(),
|
|
|
|
"Assertion checker does not yet implement tules and inline arrays."
|
|
|
|
);
|
|
|
|
else
|
2017-07-13 16:22:51 +00:00
|
|
|
m_interface->addAssertion(expr(_tuple) == expr(*_tuple.components()[0]));
|
2017-07-11 11:26:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SMTChecker::endVisit(BinaryOperation const& _op)
|
|
|
|
{
|
|
|
|
if (Token::isArithmeticOp(_op.getOperator()))
|
|
|
|
arithmeticOperation(_op);
|
|
|
|
else if (Token::isCompareOp(_op.getOperator()))
|
|
|
|
compareOperation(_op);
|
|
|
|
else if (Token::isBooleanOp(_op.getOperator()))
|
|
|
|
booleanOperation(_op);
|
|
|
|
else
|
|
|
|
m_errorReporter.warning(
|
|
|
|
_op.location(),
|
|
|
|
"Assertion checker does not yet implement this operator."
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SMTChecker::endVisit(FunctionCall const& _funCall)
|
|
|
|
{
|
2017-10-04 11:18:40 +00:00
|
|
|
solAssert(_funCall.annotation().kind != FunctionCallKind::Unset, "");
|
|
|
|
if (_funCall.annotation().kind != FunctionCallKind::FunctionCall)
|
|
|
|
{
|
|
|
|
m_errorReporter.warning(
|
|
|
|
_funCall.location(),
|
|
|
|
"Assertion checker does not yet implement this expression."
|
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-11 11:26:43 +00:00
|
|
|
FunctionType const& funType = dynamic_cast<FunctionType const&>(*_funCall.expression().annotation().type);
|
|
|
|
|
|
|
|
std::vector<ASTPointer<Expression const>> const args = _funCall.arguments();
|
|
|
|
if (funType.kind() == FunctionType::Kind::Assert)
|
|
|
|
{
|
|
|
|
solAssert(args.size() == 1, "");
|
|
|
|
solAssert(args[0]->annotation().type->category() == Type::Category::Bool, "");
|
|
|
|
checkCondition(!(expr(*args[0])), _funCall.location(), "Assertion violation");
|
2017-07-13 16:22:51 +00:00
|
|
|
m_interface->addAssertion(expr(*args[0]));
|
2017-07-11 11:26:43 +00:00
|
|
|
}
|
|
|
|
else if (funType.kind() == FunctionType::Kind::Require)
|
|
|
|
{
|
|
|
|
solAssert(args.size() == 1, "");
|
|
|
|
solAssert(args[0]->annotation().type->category() == Type::Category::Bool, "");
|
2017-07-13 16:22:51 +00:00
|
|
|
m_interface->addAssertion(expr(*args[0]));
|
2017-07-11 11:26:43 +00:00
|
|
|
checkCondition(!(expr(*args[0])), _funCall.location(), "Unreachable code");
|
|
|
|
// TODO is there something meaningful we can check here?
|
|
|
|
// We can check whether the condition is always fulfilled or never fulfilled.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SMTChecker::endVisit(Identifier const& _identifier)
|
|
|
|
{
|
|
|
|
Declaration const* decl = _identifier.annotation().referencedDeclaration;
|
|
|
|
solAssert(decl, "");
|
2017-09-28 13:24:24 +00:00
|
|
|
if (_identifier.annotation().lValueRequested)
|
2017-07-11 11:26:43 +00:00
|
|
|
{
|
2017-09-28 13:24:24 +00:00
|
|
|
// Will be translated as part of the node that requested the lvalue.
|
2017-07-11 11:26:43 +00:00
|
|
|
}
|
2017-09-28 13:24:24 +00:00
|
|
|
else if (dynamic_cast<IntegerType const*>(_identifier.annotation().type.get()))
|
|
|
|
m_interface->addAssertion(expr(_identifier) == currentValue(*decl));
|
2017-07-11 11:26:43 +00:00
|
|
|
else if (FunctionType const* fun = dynamic_cast<FunctionType const*>(_identifier.annotation().type.get()))
|
|
|
|
{
|
|
|
|
if (fun->kind() == FunctionType::Kind::Assert || fun->kind() == FunctionType::Kind::Require)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SMTChecker::endVisit(Literal const& _literal)
|
|
|
|
{
|
|
|
|
Type const& type = *_literal.annotation().type;
|
|
|
|
if (type.category() == Type::Category::Integer || type.category() == Type::Category::RationalNumber)
|
|
|
|
{
|
|
|
|
if (RationalNumberType const* rational = dynamic_cast<RationalNumberType const*>(&type))
|
|
|
|
solAssert(!rational->isFractional(), "");
|
|
|
|
|
2017-07-13 16:22:51 +00:00
|
|
|
m_interface->addAssertion(expr(_literal) == smt::Expression(type.literalValue(&_literal)));
|
2017-07-11 11:26:43 +00:00
|
|
|
}
|
2017-09-29 14:53:26 +00:00
|
|
|
else if (type.category() == Type::Category::Bool)
|
|
|
|
m_interface->addAssertion(expr(_literal) == smt::Expression(_literal.token() == Token::TrueLiteral ? true : false));
|
2017-07-11 11:26:43 +00:00
|
|
|
else
|
|
|
|
m_errorReporter.warning(
|
|
|
|
_literal.location(),
|
2017-09-28 13:24:24 +00:00
|
|
|
"Assertion checker does not yet support the type of this literal (" +
|
2017-07-11 11:26:43 +00:00
|
|
|
_literal.annotation().type->toString() +
|
|
|
|
")."
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SMTChecker::arithmeticOperation(BinaryOperation const& _op)
|
|
|
|
{
|
|
|
|
switch (_op.getOperator())
|
|
|
|
{
|
|
|
|
case Token::Add:
|
|
|
|
case Token::Sub:
|
|
|
|
case Token::Mul:
|
|
|
|
{
|
|
|
|
solAssert(_op.annotation().commonType, "");
|
|
|
|
solAssert(_op.annotation().commonType->category() == Type::Category::Integer, "");
|
|
|
|
smt::Expression left(expr(_op.leftExpression()));
|
|
|
|
smt::Expression right(expr(_op.rightExpression()));
|
|
|
|
Token::Value op = _op.getOperator();
|
|
|
|
smt::Expression value(
|
|
|
|
op == Token::Add ? left + right :
|
|
|
|
op == Token::Sub ? left - right :
|
|
|
|
/*op == Token::Mul*/ left * right
|
|
|
|
);
|
|
|
|
|
|
|
|
// Overflow check
|
|
|
|
auto const& intType = dynamic_cast<IntegerType const&>(*_op.annotation().commonType);
|
|
|
|
checkCondition(
|
|
|
|
value < minValue(intType),
|
|
|
|
_op.location(),
|
2017-07-13 20:07:01 +00:00
|
|
|
"Underflow (resulting value less than " + formatNumber(intType.minValue()) + ")",
|
2017-07-11 11:26:43 +00:00
|
|
|
"value",
|
|
|
|
&value
|
|
|
|
);
|
|
|
|
checkCondition(
|
|
|
|
value > maxValue(intType),
|
|
|
|
_op.location(),
|
2017-07-13 20:07:01 +00:00
|
|
|
"Overflow (resulting value larger than " + formatNumber(intType.maxValue()) + ")",
|
2017-07-11 11:26:43 +00:00
|
|
|
"value",
|
|
|
|
&value
|
|
|
|
);
|
|
|
|
|
2017-07-13 16:22:51 +00:00
|
|
|
m_interface->addAssertion(expr(_op) == value);
|
2017-07-11 11:26:43 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
m_errorReporter.warning(
|
|
|
|
_op.location(),
|
|
|
|
"Assertion checker does not yet implement this operator."
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SMTChecker::compareOperation(BinaryOperation const& _op)
|
|
|
|
{
|
|
|
|
solAssert(_op.annotation().commonType, "");
|
|
|
|
if (_op.annotation().commonType->category() == Type::Category::Integer)
|
|
|
|
{
|
|
|
|
smt::Expression left(expr(_op.leftExpression()));
|
|
|
|
smt::Expression right(expr(_op.rightExpression()));
|
|
|
|
Token::Value op = _op.getOperator();
|
|
|
|
smt::Expression value = (
|
|
|
|
op == Token::Equal ? (left == right) :
|
|
|
|
op == Token::NotEqual ? (left != right) :
|
|
|
|
op == Token::LessThan ? (left < right) :
|
|
|
|
op == Token::LessThanOrEqual ? (left <= right) :
|
|
|
|
op == Token::GreaterThan ? (left > right) :
|
|
|
|
/*op == Token::GreaterThanOrEqual*/ (left >= right)
|
|
|
|
);
|
|
|
|
// TODO: check that other values for op are not possible.
|
2017-07-13 16:22:51 +00:00
|
|
|
m_interface->addAssertion(expr(_op) == value);
|
2017-07-11 11:26:43 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
m_errorReporter.warning(
|
|
|
|
_op.location(),
|
|
|
|
"Assertion checker does not yet implement the type " + _op.annotation().commonType->toString() + " for comparisons"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SMTChecker::booleanOperation(BinaryOperation const& _op)
|
|
|
|
{
|
|
|
|
solAssert(_op.getOperator() == Token::And || _op.getOperator() == Token::Or, "");
|
|
|
|
solAssert(_op.annotation().commonType, "");
|
|
|
|
if (_op.annotation().commonType->category() == Type::Category::Bool)
|
|
|
|
{
|
2017-09-28 11:44:56 +00:00
|
|
|
// @TODO check that both of them are not constant
|
2017-07-11 11:26:43 +00:00
|
|
|
if (_op.getOperator() == Token::And)
|
2017-07-13 16:22:51 +00:00
|
|
|
m_interface->addAssertion(expr(_op) == expr(_op.leftExpression()) && expr(_op.rightExpression()));
|
2017-07-11 11:26:43 +00:00
|
|
|
else
|
2017-07-13 16:22:51 +00:00
|
|
|
m_interface->addAssertion(expr(_op) == expr(_op.leftExpression()) || expr(_op.rightExpression()));
|
2017-07-11 11:26:43 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
m_errorReporter.warning(
|
|
|
|
_op.location(),
|
|
|
|
"Assertion checker does not yet implement the type " + _op.annotation().commonType->toString() + " for boolean operations"
|
2017-09-28 11:44:56 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-09-28 13:24:24 +00:00
|
|
|
void SMTChecker::assignment(Declaration const& _variable, Expression const& _value)
|
2017-09-28 11:44:56 +00:00
|
|
|
{
|
2017-09-28 13:24:24 +00:00
|
|
|
// TODO more checks?
|
|
|
|
// TODO add restrictions about type (might be assignment from smaller type)
|
|
|
|
m_interface->addAssertion(newValue(_variable) == expr(_value));
|
2017-09-28 11:44:56 +00:00
|
|
|
}
|
|
|
|
|
2017-09-28 13:24:24 +00:00
|
|
|
void SMTChecker::visitBranch(Statement const& _statement, smt::Expression _condition)
|
|
|
|
{
|
|
|
|
visitBranch(_statement, &_condition);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SMTChecker::visitBranch(Statement const& _statement, smt::Expression const* _condition)
|
2017-09-28 11:44:56 +00:00
|
|
|
{
|
|
|
|
VariableSequenceCounters sequenceCountersStart = m_currentSequenceCounter;
|
|
|
|
|
|
|
|
m_interface->push();
|
|
|
|
if (_condition)
|
|
|
|
m_interface->addAssertion(*_condition);
|
|
|
|
_statement.accept(*this);
|
|
|
|
m_interface->pop();
|
|
|
|
|
|
|
|
m_conditionalExecutionHappened = true;
|
|
|
|
m_currentSequenceCounter = sequenceCountersStart;
|
2017-07-11 11:26:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SMTChecker::checkCondition(
|
|
|
|
smt::Expression _condition,
|
|
|
|
SourceLocation const& _location,
|
|
|
|
string const& _description,
|
|
|
|
string const& _additionalValueName,
|
|
|
|
smt::Expression* _additionalValue
|
|
|
|
)
|
|
|
|
{
|
2017-07-13 16:22:51 +00:00
|
|
|
m_interface->push();
|
|
|
|
m_interface->addAssertion(_condition);
|
2017-07-11 11:26:43 +00:00
|
|
|
|
|
|
|
vector<smt::Expression> expressionsToEvaluate;
|
2017-07-13 20:07:01 +00:00
|
|
|
vector<string> expressionNames;
|
2017-07-11 11:26:43 +00:00
|
|
|
if (m_currentFunction)
|
|
|
|
{
|
|
|
|
if (_additionalValue)
|
2017-07-13 20:07:01 +00:00
|
|
|
{
|
2017-07-11 11:26:43 +00:00
|
|
|
expressionsToEvaluate.emplace_back(*_additionalValue);
|
2017-07-13 20:07:01 +00:00
|
|
|
expressionNames.push_back(_additionalValueName);
|
|
|
|
}
|
2017-07-11 11:26:43 +00:00
|
|
|
for (auto const& param: m_currentFunction->parameters())
|
|
|
|
if (knownVariable(*param))
|
2017-07-13 20:07:01 +00:00
|
|
|
{
|
2017-07-11 11:26:43 +00:00
|
|
|
expressionsToEvaluate.emplace_back(currentValue(*param));
|
2017-07-13 20:07:01 +00:00
|
|
|
expressionNames.push_back(param->name());
|
|
|
|
}
|
2017-07-11 11:26:43 +00:00
|
|
|
for (auto const& var: m_currentFunction->localVariables())
|
|
|
|
if (knownVariable(*var))
|
2017-07-13 20:07:01 +00:00
|
|
|
{
|
2017-07-11 11:26:43 +00:00
|
|
|
expressionsToEvaluate.emplace_back(currentValue(*var));
|
2017-07-13 20:07:01 +00:00
|
|
|
expressionNames.push_back(var->name());
|
|
|
|
}
|
2017-07-11 11:26:43 +00:00
|
|
|
}
|
|
|
|
smt::CheckResult result;
|
|
|
|
vector<string> values;
|
2017-09-29 14:53:26 +00:00
|
|
|
tie(result, values) = checkSatisifableAndGenerateModel(expressionsToEvaluate);
|
2017-07-13 19:06:29 +00:00
|
|
|
|
2017-09-28 11:44:56 +00:00
|
|
|
string conditionalComment;
|
|
|
|
if (m_conditionalExecutionHappened)
|
|
|
|
conditionalComment =
|
|
|
|
"\nNote that some information is erased after conditional execution of parts of the code.\n"
|
|
|
|
"You can re-introduce information using require().";
|
2017-07-11 11:26:43 +00:00
|
|
|
switch (result)
|
|
|
|
{
|
2017-08-21 15:02:47 +00:00
|
|
|
case smt::CheckResult::SATISFIABLE:
|
2017-07-11 11:26:43 +00:00
|
|
|
{
|
|
|
|
std::ostringstream message;
|
|
|
|
message << _description << " happens here";
|
|
|
|
if (m_currentFunction)
|
|
|
|
{
|
|
|
|
message << " for:\n";
|
2017-07-13 20:07:01 +00:00
|
|
|
solAssert(values.size() == expressionNames.size(), "");
|
|
|
|
for (size_t i = 0; i < values.size(); ++i)
|
2017-09-29 14:53:26 +00:00
|
|
|
message << " " << expressionNames.at(i) << " = " << values.at(i) << "\n";
|
2017-07-11 11:26:43 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
message << ".";
|
2017-09-28 11:44:56 +00:00
|
|
|
m_errorReporter.warning(_location, message.str() + conditionalComment);
|
2017-07-11 11:26:43 +00:00
|
|
|
break;
|
|
|
|
}
|
2017-08-21 15:02:47 +00:00
|
|
|
case smt::CheckResult::UNSATISFIABLE:
|
2017-07-11 11:26:43 +00:00
|
|
|
break;
|
|
|
|
case smt::CheckResult::UNKNOWN:
|
2017-09-28 11:44:56 +00:00
|
|
|
m_errorReporter.warning(_location, _description + " might happen here." + conditionalComment);
|
2017-07-11 11:26:43 +00:00
|
|
|
break;
|
|
|
|
case smt::CheckResult::ERROR:
|
|
|
|
m_errorReporter.warning(_location, "Error trying to invoke SMT solver.");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
solAssert(false, "");
|
|
|
|
}
|
2017-07-13 16:22:51 +00:00
|
|
|
m_interface->pop();
|
2017-07-11 11:26:43 +00:00
|
|
|
}
|
|
|
|
|
2017-09-29 14:53:26 +00:00
|
|
|
void SMTChecker::checkBooleanNotConstant(Expression const& _condition, string const& _description)
|
|
|
|
{
|
|
|
|
// Do not check for const-ness if this is a constant.
|
|
|
|
if (dynamic_cast<Literal const*>(&_condition))
|
|
|
|
return;
|
|
|
|
|
|
|
|
m_interface->push();
|
|
|
|
m_interface->addAssertion(expr(_condition));
|
|
|
|
auto positiveResult = checkSatisifable();
|
|
|
|
m_interface->pop();
|
|
|
|
|
|
|
|
m_interface->push();
|
|
|
|
m_interface->addAssertion(!expr(_condition));
|
|
|
|
auto negatedResult = checkSatisifable();
|
|
|
|
m_interface->pop();
|
|
|
|
|
|
|
|
if (positiveResult == smt::CheckResult::ERROR || negatedResult == smt::CheckResult::ERROR)
|
|
|
|
m_errorReporter.warning(_condition.location(), "Error trying to invoke SMT solver.");
|
|
|
|
else if (positiveResult == smt::CheckResult::SATISFIABLE && negatedResult == smt::CheckResult::SATISFIABLE)
|
|
|
|
{
|
|
|
|
// everything fine.
|
|
|
|
}
|
|
|
|
else if (positiveResult == smt::CheckResult::UNSATISFIABLE && negatedResult == smt::CheckResult::UNSATISFIABLE)
|
|
|
|
m_errorReporter.warning(_condition.location(), "Condition unreachable.");
|
|
|
|
else
|
|
|
|
{
|
|
|
|
string value;
|
|
|
|
if (positiveResult == smt::CheckResult::SATISFIABLE)
|
|
|
|
{
|
|
|
|
solAssert(negatedResult == smt::CheckResult::UNSATISFIABLE, "");
|
|
|
|
value = "true";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
solAssert(positiveResult == smt::CheckResult::UNSATISFIABLE, "");
|
|
|
|
solAssert(negatedResult == smt::CheckResult::SATISFIABLE, "");
|
|
|
|
value = "false";
|
|
|
|
}
|
|
|
|
m_errorReporter.warning(_condition.location(), boost::algorithm::replace_all_copy(_description, "$VALUE", value));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pair<smt::CheckResult, vector<string>>
|
|
|
|
SMTChecker::checkSatisifableAndGenerateModel(vector<smt::Expression> const& _expressionsToEvaluate)
|
|
|
|
{
|
|
|
|
smt::CheckResult result;
|
|
|
|
vector<string> values;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
tie(result, values) = m_interface->check(_expressionsToEvaluate);
|
|
|
|
}
|
|
|
|
catch (smt::SolverError const& _e)
|
|
|
|
{
|
|
|
|
string description("Error querying SMT solver");
|
|
|
|
if (_e.comment())
|
|
|
|
description += ": " + *_e.comment();
|
|
|
|
m_errorReporter.warning(description);
|
|
|
|
result = smt::CheckResult::ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (string& value: values)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
// Parse and re-format nicely
|
|
|
|
value = formatNumber(bigint(value));
|
|
|
|
}
|
|
|
|
catch (...) { }
|
|
|
|
}
|
|
|
|
|
|
|
|
return make_pair(result, values);
|
|
|
|
}
|
|
|
|
|
|
|
|
smt::CheckResult SMTChecker::checkSatisifable()
|
|
|
|
{
|
|
|
|
return checkSatisifableAndGenerateModel({}).first;
|
|
|
|
}
|
|
|
|
|
2017-09-28 13:24:24 +00:00
|
|
|
void SMTChecker::initializeLocalVariables(FunctionDefinition const& _function)
|
|
|
|
{
|
|
|
|
for (auto const& variable: _function.localVariables())
|
|
|
|
{
|
|
|
|
createVariable(*variable);
|
|
|
|
setZeroValue(*variable);
|
|
|
|
}
|
|
|
|
for (auto const& param: _function.parameters())
|
|
|
|
{
|
|
|
|
createVariable(*param);
|
|
|
|
setUnknownValue(*param);
|
|
|
|
}
|
|
|
|
if (_function.returnParameterList())
|
|
|
|
for (auto const& retParam: _function.returnParameters())
|
|
|
|
{
|
|
|
|
createVariable(*retParam);
|
|
|
|
setZeroValue(*retParam);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SMTChecker::resetVariables(vector<Declaration const*> _variables)
|
2017-09-28 11:44:56 +00:00
|
|
|
{
|
|
|
|
for (auto const* decl: _variables)
|
|
|
|
{
|
|
|
|
newValue(*decl);
|
2017-09-28 13:24:24 +00:00
|
|
|
setUnknownValue(*decl);
|
2017-09-28 11:44:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-28 13:24:24 +00:00
|
|
|
void SMTChecker::createVariable(VariableDeclaration const& _varDecl)
|
2017-07-11 11:26:43 +00:00
|
|
|
{
|
2017-07-14 09:49:27 +00:00
|
|
|
if (dynamic_cast<IntegerType const*>(_varDecl.type().get()))
|
2017-07-11 11:26:43 +00:00
|
|
|
{
|
|
|
|
solAssert(m_currentSequenceCounter.count(&_varDecl) == 0, "");
|
2017-07-14 09:49:27 +00:00
|
|
|
solAssert(m_nextFreeSequenceCounter.count(&_varDecl) == 0, "");
|
2017-09-28 09:29:04 +00:00
|
|
|
solAssert(m_variables.count(&_varDecl) == 0, "");
|
2017-07-11 11:26:43 +00:00
|
|
|
m_currentSequenceCounter[&_varDecl] = 0;
|
2017-07-14 09:49:27 +00:00
|
|
|
m_nextFreeSequenceCounter[&_varDecl] = 1;
|
2017-09-28 09:29:04 +00:00
|
|
|
m_variables.emplace(&_varDecl, m_interface->newFunction(uniqueSymbol(_varDecl), smt::Sort::Int, smt::Sort::Int));
|
2017-07-11 11:26:43 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
m_errorReporter.warning(
|
|
|
|
_varDecl.location(),
|
|
|
|
"Assertion checker does not yet support the type of this variable."
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
string SMTChecker::uniqueSymbol(Declaration const& _decl)
|
|
|
|
{
|
|
|
|
return _decl.name() + "_" + to_string(_decl.id());
|
|
|
|
}
|
|
|
|
|
|
|
|
string SMTChecker::uniqueSymbol(Expression const& _expr)
|
|
|
|
{
|
|
|
|
return "expr_" + to_string(_expr.id());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SMTChecker::knownVariable(Declaration const& _decl)
|
|
|
|
{
|
|
|
|
return m_currentSequenceCounter.count(&_decl);
|
|
|
|
}
|
|
|
|
|
|
|
|
smt::Expression SMTChecker::currentValue(Declaration const& _decl)
|
|
|
|
{
|
|
|
|
solAssert(m_currentSequenceCounter.count(&_decl), "");
|
2017-07-14 09:49:27 +00:00
|
|
|
return valueAtSequence(_decl, m_currentSequenceCounter.at(&_decl));
|
2017-07-11 11:26:43 +00:00
|
|
|
}
|
|
|
|
|
2017-07-14 09:49:27 +00:00
|
|
|
smt::Expression SMTChecker::valueAtSequence(const Declaration& _decl, int _sequence)
|
|
|
|
{
|
|
|
|
return var(_decl)(_sequence);
|
|
|
|
}
|
|
|
|
|
|
|
|
smt::Expression SMTChecker::newValue(Declaration const& _decl)
|
2017-07-11 11:26:43 +00:00
|
|
|
{
|
2017-07-14 09:49:27 +00:00
|
|
|
solAssert(m_nextFreeSequenceCounter.count(&_decl), "");
|
|
|
|
m_currentSequenceCounter[&_decl] = m_nextFreeSequenceCounter[&_decl]++;
|
2017-07-11 11:26:43 +00:00
|
|
|
return currentValue(_decl);
|
|
|
|
}
|
|
|
|
|
2017-09-28 13:24:24 +00:00
|
|
|
void SMTChecker::setZeroValue(Declaration const& _decl)
|
2017-07-14 09:49:27 +00:00
|
|
|
{
|
2017-09-28 13:24:24 +00:00
|
|
|
solAssert(_decl.type()->category() == Type::Category::Integer, "");
|
|
|
|
m_interface->addAssertion(currentValue(_decl) == 0);
|
|
|
|
}
|
2017-07-14 09:49:27 +00:00
|
|
|
|
2017-09-28 13:24:24 +00:00
|
|
|
void SMTChecker::setUnknownValue(Declaration const& _decl)
|
|
|
|
{
|
|
|
|
auto const& intType = dynamic_cast<IntegerType const&>(*_decl.type());
|
|
|
|
m_interface->addAssertion(currentValue(_decl) >= minValue(intType));
|
|
|
|
m_interface->addAssertion(currentValue(_decl) <= maxValue(intType));
|
2017-07-14 09:49:27 +00:00
|
|
|
}
|
|
|
|
|
2017-07-11 11:26:43 +00:00
|
|
|
smt::Expression SMTChecker::minValue(IntegerType const& _t)
|
|
|
|
{
|
|
|
|
return smt::Expression(_t.minValue());
|
|
|
|
}
|
|
|
|
|
|
|
|
smt::Expression SMTChecker::maxValue(IntegerType const& _t)
|
|
|
|
{
|
|
|
|
return smt::Expression(_t.maxValue());
|
|
|
|
}
|
|
|
|
|
|
|
|
smt::Expression SMTChecker::expr(Expression const& _e)
|
|
|
|
{
|
2017-09-28 09:29:04 +00:00
|
|
|
if (!m_expressions.count(&_e))
|
2017-07-11 11:26:43 +00:00
|
|
|
{
|
|
|
|
solAssert(_e.annotation().type, "");
|
|
|
|
switch (_e.annotation().type->category())
|
|
|
|
{
|
|
|
|
case Type::Category::RationalNumber:
|
|
|
|
{
|
|
|
|
if (RationalNumberType const* rational = dynamic_cast<RationalNumberType const*>(_e.annotation().type.get()))
|
|
|
|
solAssert(!rational->isFractional(), "");
|
2017-09-28 09:29:04 +00:00
|
|
|
m_expressions.emplace(&_e, m_interface->newInteger(uniqueSymbol(_e)));
|
2017-07-11 11:26:43 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case Type::Category::Integer:
|
2017-09-28 09:29:04 +00:00
|
|
|
m_expressions.emplace(&_e, m_interface->newInteger(uniqueSymbol(_e)));
|
2017-07-11 11:26:43 +00:00
|
|
|
break;
|
|
|
|
case Type::Category::Bool:
|
2017-09-28 09:29:04 +00:00
|
|
|
m_expressions.emplace(&_e, m_interface->newBool(uniqueSymbol(_e)));
|
2017-07-11 11:26:43 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
solAssert(false, "Type not implemented.");
|
|
|
|
}
|
|
|
|
}
|
2017-09-28 09:29:04 +00:00
|
|
|
return m_expressions.at(&_e);
|
2017-07-11 11:26:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
smt::Expression SMTChecker::var(Declaration const& _decl)
|
|
|
|
{
|
2017-09-28 09:29:04 +00:00
|
|
|
solAssert(m_variables.count(&_decl), "");
|
|
|
|
return m_variables.at(&_decl);
|
2017-07-06 09:05:05 +00:00
|
|
|
}
|