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/>.
|
|
|
|
*/
|
2019-06-25 10:46:17 +00:00
|
|
|
/**
|
|
|
|
* Encodes Solidity into SMT expressions without creating
|
|
|
|
* any verification targets.
|
|
|
|
* Also implements the SSA scheme for branches.
|
|
|
|
*/
|
2017-07-06 09:05:05 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2017-09-28 13:24:24 +00:00
|
|
|
|
2019-04-17 13:55:46 +00:00
|
|
|
#include <libsolidity/formal/EncodingContext.h>
|
2018-10-22 08:29:03 +00:00
|
|
|
#include <libsolidity/formal/SymbolicVariables.h>
|
2019-04-01 09:10:28 +00:00
|
|
|
#include <libsolidity/formal/VariableUsage.h>
|
2018-01-17 20:02:23 +00:00
|
|
|
|
2019-11-15 13:48:11 +00:00
|
|
|
#include <libsolidity/ast/AST.h>
|
2017-09-28 13:24:24 +00:00
|
|
|
#include <libsolidity/ast/ASTVisitor.h>
|
2017-07-11 11:26:43 +00:00
|
|
|
#include <libsolidity/interface/ReadFile.h>
|
2019-01-23 10:22:38 +00:00
|
|
|
#include <liblangutil/ErrorReporter.h>
|
2018-11-12 11:21:25 +00:00
|
|
|
|
2017-07-06 09:05:05 +00:00
|
|
|
#include <string>
|
2018-12-17 17:26:10 +00:00
|
|
|
#include <unordered_map>
|
2017-12-11 19:09:17 +00:00
|
|
|
#include <vector>
|
2017-07-06 09:05:05 +00:00
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
namespace solidity::langutil
|
2018-11-14 16:11:55 +00:00
|
|
|
{
|
|
|
|
class ErrorReporter;
|
|
|
|
struct SourceLocation;
|
|
|
|
}
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
namespace solidity::frontend
|
2017-07-06 09:05:05 +00:00
|
|
|
{
|
|
|
|
|
2019-06-25 10:46:17 +00:00
|
|
|
class SMTEncoder: public ASTConstVisitor
|
2017-07-06 09:05:05 +00:00
|
|
|
{
|
|
|
|
public:
|
2019-07-02 10:06:52 +00:00
|
|
|
SMTEncoder(smt::EncodingContext& _context);
|
2017-07-06 09:05:05 +00:00
|
|
|
|
2019-05-09 14:06:13 +00:00
|
|
|
/// @returns the leftmost identifier in a multi-d IndexAccess.
|
|
|
|
static Expression const* leftmostBase(IndexAccess const& _indexAccess);
|
2019-03-25 12:58:22 +00:00
|
|
|
|
2019-07-17 15:54:48 +00:00
|
|
|
/// @returns the FunctionDefinition of a FunctionCall
|
|
|
|
/// if possible or nullptr.
|
|
|
|
static FunctionDefinition const* functionCallToDefinition(FunctionCall const& _funCall);
|
|
|
|
|
2019-06-25 10:46:17 +00:00
|
|
|
protected:
|
2017-07-11 11:26:43 +00:00
|
|
|
// TODO: Check that we do not have concurrent reads and writes to a variable,
|
|
|
|
// because the order of expression evaluation is undefined
|
|
|
|
// TODO: or just force a certain order, but people might have a different idea about that.
|
|
|
|
|
2018-11-16 01:09:04 +00:00
|
|
|
bool visit(ContractDefinition const& _node) override;
|
|
|
|
void endVisit(ContractDefinition const& _node) override;
|
|
|
|
void endVisit(VariableDeclaration const& _node) override;
|
2019-03-11 20:06:28 +00:00
|
|
|
bool visit(ModifierDefinition const& _node) override;
|
2018-11-16 01:09:04 +00:00
|
|
|
bool visit(FunctionDefinition const& _node) override;
|
|
|
|
void endVisit(FunctionDefinition const& _node) override;
|
2019-03-11 20:06:28 +00:00
|
|
|
bool visit(PlaceholderStatement const& _node) override;
|
2018-11-16 01:09:04 +00:00
|
|
|
bool visit(IfStatement const& _node) override;
|
2019-06-25 10:46:17 +00:00
|
|
|
bool visit(WhileStatement const&) override { return false; }
|
|
|
|
bool visit(ForStatement const&) override { return false; }
|
2018-11-16 01:09:04 +00:00
|
|
|
void endVisit(VariableDeclarationStatement const& _node) override;
|
|
|
|
void endVisit(Assignment const& _node) override;
|
|
|
|
void endVisit(TupleExpression const& _node) override;
|
2019-03-11 10:56:08 +00:00
|
|
|
bool visit(UnaryOperation const& _node) override;
|
2018-11-16 01:09:04 +00:00
|
|
|
void endVisit(UnaryOperation const& _node) override;
|
2019-03-11 10:56:08 +00:00
|
|
|
bool visit(BinaryOperation const& _node) override;
|
2018-11-16 01:09:04 +00:00
|
|
|
void endVisit(BinaryOperation const& _node) override;
|
|
|
|
void endVisit(FunctionCall const& _node) override;
|
2019-11-27 21:34:33 +00:00
|
|
|
bool visit(ModifierInvocation const& _node) override;
|
2018-11-16 01:09:04 +00:00
|
|
|
void endVisit(Identifier const& _node) override;
|
2019-11-15 13:48:11 +00:00
|
|
|
void endVisit(ElementaryTypeNameExpression const& _node) override;
|
2018-11-16 01:09:04 +00:00
|
|
|
void endVisit(Literal const& _node) override;
|
|
|
|
void endVisit(Return const& _node) override;
|
|
|
|
bool visit(MemberAccess const& _node) override;
|
2018-11-09 16:06:30 +00:00
|
|
|
void endVisit(IndexAccess const& _node) override;
|
2019-09-03 16:30:00 +00:00
|
|
|
void endVisit(IndexRangeAccess const& _node) override;
|
2019-04-05 14:41:05 +00:00
|
|
|
bool visit(InlineAssembly const& _node) override;
|
2019-08-20 13:03:45 +00:00
|
|
|
void endVisit(Break const&) override {}
|
|
|
|
void endVisit(Continue const&) override {}
|
2017-07-11 11:26:43 +00:00
|
|
|
|
2019-03-11 10:56:08 +00:00
|
|
|
/// Do not visit subtree if node is a RationalNumber.
|
|
|
|
/// Symbolic _expr is the rational literal.
|
|
|
|
bool shortcutRationalNumber(Expression const& _expr);
|
2017-07-11 11:26:43 +00:00
|
|
|
void arithmeticOperation(BinaryOperation const& _op);
|
2019-06-25 10:46:17 +00:00
|
|
|
/// @returns _op(_left, _right) with and without modular arithmetic.
|
2019-03-28 11:42:32 +00:00
|
|
|
/// Used by the function above, compound assignments and
|
|
|
|
/// unary increment/decrement.
|
2019-06-25 10:46:17 +00:00
|
|
|
virtual std::pair<smt::Expression, smt::Expression> arithmeticOperation(
|
2019-03-28 11:42:32 +00:00
|
|
|
Token _op,
|
|
|
|
smt::Expression const& _left,
|
|
|
|
smt::Expression const& _right,
|
|
|
|
TypePointer const& _commonType,
|
2019-06-24 15:37:03 +00:00
|
|
|
Expression const& _expression
|
2019-03-28 11:42:32 +00:00
|
|
|
);
|
2017-07-11 11:26:43 +00:00
|
|
|
void compareOperation(BinaryOperation const& _op);
|
|
|
|
void booleanOperation(BinaryOperation const& _op);
|
|
|
|
|
2019-09-28 19:04:49 +00:00
|
|
|
void initContract(ContractDefinition const& _contract);
|
2019-06-25 10:46:17 +00:00
|
|
|
void initFunction(FunctionDefinition const& _function);
|
2018-12-10 16:23:36 +00:00
|
|
|
void visitAssert(FunctionCall const& _funCall);
|
|
|
|
void visitRequire(FunctionCall const& _funCall);
|
|
|
|
void visitGasLeft(FunctionCall const& _funCall);
|
2018-12-20 12:20:07 +00:00
|
|
|
void visitTypeConversion(FunctionCall const& _funCall);
|
2018-12-10 16:23:36 +00:00
|
|
|
void visitFunctionIdentifier(Identifier const& _identifier);
|
2018-10-10 12:31:49 +00:00
|
|
|
|
2019-03-11 20:06:28 +00:00
|
|
|
/// Encodes a modifier or function body according to the modifier
|
|
|
|
/// visit depth.
|
|
|
|
void visitFunctionOrModifier();
|
|
|
|
|
2019-09-26 14:12:27 +00:00
|
|
|
/// Inlines a modifier or base constructor call.
|
|
|
|
void inlineModifierInvocation(ModifierInvocation const* _invocation, CallableDeclaration const* _definition);
|
|
|
|
|
|
|
|
/// Inlines the constructor hierarchy into a single constructor.
|
|
|
|
void inlineConstructorHierarchy(ContractDefinition const& _contract);
|
|
|
|
|
2019-05-14 16:57:34 +00:00
|
|
|
/// Defines a new global variable or function.
|
2018-12-10 16:23:36 +00:00
|
|
|
void defineGlobalVariable(std::string const& _name, Expression const& _expr, bool _increaseIndex = false);
|
2019-05-14 16:57:34 +00:00
|
|
|
|
2018-12-14 11:21:43 +00:00
|
|
|
/// Handles the side effects of assignment
|
|
|
|
/// to variable of some SMT array type
|
|
|
|
/// while aliasing is not supported.
|
|
|
|
void arrayAssignment();
|
|
|
|
/// Handles assignment to SMT array index.
|
2019-04-02 10:59:19 +00:00
|
|
|
void arrayIndexAssignment(Expression const& _expr, smt::Expression const& _rightHandSide);
|
2018-10-18 13:03:52 +00:00
|
|
|
|
2017-10-05 17:20:46 +00:00
|
|
|
/// Division expression in the given type. Requires special treatment because
|
|
|
|
/// of rounding for signed division.
|
|
|
|
smt::Expression division(smt::Expression _left, smt::Expression _right, IntegerType const& _type);
|
|
|
|
|
2019-06-24 15:58:56 +00:00
|
|
|
void assignment(VariableDeclaration const& _variable, Expression const& _value);
|
2019-04-29 09:39:24 +00:00
|
|
|
/// Handles assignments to variables of different types.
|
2019-06-24 15:58:56 +00:00
|
|
|
void assignment(VariableDeclaration const& _variable, smt::Expression const& _value);
|
2019-04-29 09:39:24 +00:00
|
|
|
/// Handles assignments between generic expressions.
|
|
|
|
/// Will also be used for assignments of tuple components.
|
|
|
|
void assignment(
|
|
|
|
Expression const& _left,
|
2019-04-29 11:02:27 +00:00
|
|
|
std::vector<smt::Expression> const& _right,
|
2019-04-29 09:39:24 +00:00
|
|
|
TypePointer const& _type,
|
|
|
|
langutil::SourceLocation const& _location
|
|
|
|
);
|
|
|
|
/// Computes the right hand side of a compound assignment.
|
|
|
|
smt::Expression compoundAssignment(Assignment const& _assignment);
|
2017-09-28 13:24:24 +00:00
|
|
|
|
2017-12-18 18:43:15 +00:00
|
|
|
/// Maps a variable to an SSA index.
|
2018-10-17 09:32:01 +00:00
|
|
|
using VariableIndices = std::unordered_map<VariableDeclaration const*, int>;
|
2017-12-18 18:43:15 +00:00
|
|
|
|
|
|
|
/// Visits the branch given by the statement, pushes and pops the current path conditions.
|
|
|
|
/// @param _condition if present, asserts that this condition is true within the branch.
|
2018-10-17 09:32:01 +00:00
|
|
|
/// @returns the variable indices after visiting the branch.
|
2019-03-22 16:05:58 +00:00
|
|
|
VariableIndices visitBranch(ASTNode const* _statement, smt::Expression const* _condition = nullptr);
|
|
|
|
VariableIndices visitBranch(ASTNode const* _statement, smt::Expression _condition);
|
2017-09-28 11:44:56 +00:00
|
|
|
|
2019-06-24 15:37:03 +00:00
|
|
|
using CallStackEntry = std::pair<CallableDeclaration const*, ASTNode const*>;
|
|
|
|
|
2019-09-26 14:12:27 +00:00
|
|
|
void createStateVariables(ContractDefinition const& _contract);
|
2019-08-02 16:36:26 +00:00
|
|
|
void initializeStateVariables(ContractDefinition const& _contract);
|
2019-09-26 14:12:27 +00:00
|
|
|
void createLocalVariables(FunctionDefinition const& _function);
|
2017-09-28 13:24:24 +00:00
|
|
|
void initializeLocalVariables(FunctionDefinition const& _function);
|
2019-03-11 20:06:28 +00:00
|
|
|
void initializeFunctionCallParameters(CallableDeclaration const& _function, std::vector<smt::Expression> const& _callArgs);
|
2018-04-18 21:14:45 +00:00
|
|
|
void resetStateVariables();
|
2019-02-21 12:01:58 +00:00
|
|
|
/// @returns the type without storage pointer information if it has it.
|
|
|
|
TypePointer typeWithoutPointer(TypePointer const& _type);
|
|
|
|
|
2017-12-18 18:43:15 +00:00
|
|
|
/// Given two different branches and the touched variables,
|
|
|
|
/// merge the touched variables into after-branch ite variables
|
|
|
|
/// using the branch condition as guard.
|
2019-03-22 16:05:58 +00:00
|
|
|
void mergeVariables(std::set<VariableDeclaration const*> const& _variables, smt::Expression const& _condition, VariableIndices const& _indicesEndTrue, VariableIndices const& _indicesEndFalse);
|
2017-10-05 17:31:17 +00:00
|
|
|
/// Tries to create an uninitialized variable and returns true on success.
|
|
|
|
bool createVariable(VariableDeclaration const& _varDecl);
|
2017-07-11 11:26:43 +00:00
|
|
|
|
2017-07-14 09:49:27 +00:00
|
|
|
/// @returns an expression denoting the value of the variable declared in @a _decl
|
|
|
|
/// at the current point.
|
2018-06-12 08:58:24 +00:00
|
|
|
smt::Expression currentValue(VariableDeclaration const& _decl);
|
2017-07-14 09:49:27 +00:00
|
|
|
/// @returns an expression denoting the value of the variable declared in @a _decl
|
2018-10-17 09:32:01 +00:00
|
|
|
/// at the given index. Does not ensure that this index exists.
|
|
|
|
smt::Expression valueAtIndex(VariableDeclaration const& _decl, int _index);
|
2019-08-07 08:48:09 +00:00
|
|
|
/// Returns the expression corresponding to the AST node.
|
|
|
|
/// If _targetType is not null apply conversion.
|
|
|
|
/// Throws if the expression does not exist.
|
|
|
|
smt::Expression expr(Expression const& _e, TypePointer _targetType = nullptr);
|
2017-10-05 13:23:25 +00:00
|
|
|
/// Creates the expression (value can be arbitrary)
|
|
|
|
void createExpr(Expression const& _e);
|
|
|
|
/// Creates the expression and sets its value.
|
|
|
|
void defineExpr(Expression const& _e, smt::Expression _value);
|
2017-07-11 11:26:43 +00:00
|
|
|
|
2017-12-11 19:09:17 +00:00
|
|
|
/// Adds a new path condition
|
|
|
|
void pushPathCondition(smt::Expression const& _e);
|
|
|
|
/// Remove the last path condition
|
|
|
|
void popPathCondition();
|
|
|
|
/// Returns the conjunction of all path conditions or True if empty
|
|
|
|
smt::Expression currentPathConditions();
|
2019-06-24 15:37:03 +00:00
|
|
|
/// @returns a human-readable call stack. Used for models.
|
|
|
|
langutil::SecondarySourceLocation callStackMessage(std::vector<CallStackEntry> const& _callStack);
|
2019-03-11 20:06:28 +00:00
|
|
|
/// Copies and pops the last called node.
|
2019-05-06 18:03:11 +00:00
|
|
|
CallStackEntry popCallStack();
|
|
|
|
/// Adds (_definition, _node) to the callstack.
|
|
|
|
void pushCallStack(CallStackEntry _entry);
|
2017-12-13 16:59:36 +00:00
|
|
|
/// Add to the solver: the given expression implied by the current path conditions
|
|
|
|
void addPathImpliedExpression(smt::Expression const& _e);
|
2017-12-11 19:09:17 +00:00
|
|
|
|
2018-10-15 15:32:17 +00:00
|
|
|
/// Copy the SSA indices of m_variables.
|
2018-10-17 09:32:01 +00:00
|
|
|
VariableIndices copyVariableIndices();
|
|
|
|
/// Resets the variable indices.
|
|
|
|
void resetVariableIndices(VariableIndices const& _indices);
|
2019-09-26 14:12:27 +00:00
|
|
|
/// Used when starting a new block.
|
|
|
|
void clearIndices(ContractDefinition const* _contract, FunctionDefinition const* _function = nullptr);
|
|
|
|
|
2018-10-15 15:32:17 +00:00
|
|
|
|
2019-04-01 09:10:28 +00:00
|
|
|
/// @returns variables that are touched in _node's subtree.
|
|
|
|
std::set<VariableDeclaration const*> touchedVariables(ASTNode const& _node);
|
|
|
|
|
2019-04-29 09:39:24 +00:00
|
|
|
/// @returns the VariableDeclaration referenced by an Identifier or nullptr.
|
|
|
|
VariableDeclaration const* identifierToVariable(Expression const& _expr);
|
|
|
|
|
2019-08-02 18:43:54 +00:00
|
|
|
/// Creates symbolic expressions for the returned values
|
|
|
|
/// and set them as the components of the symbolic tuple.
|
|
|
|
void createReturnedExpressions(FunctionCall const& _funCall);
|
|
|
|
|
2019-06-25 10:46:17 +00:00
|
|
|
/// @returns a note to be added to warnings.
|
|
|
|
std::string extraComment();
|
|
|
|
|
2019-05-09 10:16:52 +00:00
|
|
|
smt::VariableUsage m_variableUsage;
|
2018-12-14 11:21:43 +00:00
|
|
|
bool m_arrayAssignmentHappened = false;
|
2019-01-23 10:22:38 +00:00
|
|
|
// True if the "No SMT solver available" warning was already created.
|
|
|
|
bool m_noSolverWarning = false;
|
2019-05-13 14:53:38 +00:00
|
|
|
|
2018-10-25 14:00:09 +00:00
|
|
|
/// Stores the instances of an Uninterpreted Function applied to arguments.
|
2018-11-09 16:06:30 +00:00
|
|
|
/// These may be direct application of UFs or Array index access.
|
2018-10-25 14:00:09 +00:00
|
|
|
/// Used to retrieve models.
|
2018-11-09 16:06:30 +00:00
|
|
|
std::set<Expression const*> m_uninterpretedTerms;
|
2017-12-11 19:09:17 +00:00
|
|
|
std::vector<smt::Expression> m_pathConditions;
|
2019-06-25 10:46:17 +00:00
|
|
|
/// Local SMTEncoder ErrorReporter.
|
2019-01-23 10:22:38 +00:00
|
|
|
/// This is necessary to show the "No SMT solver available"
|
|
|
|
/// warning before the others in case it's needed.
|
|
|
|
langutil::ErrorReporter m_errorReporter;
|
|
|
|
langutil::ErrorList m_smtErrors;
|
2017-07-11 11:26:43 +00:00
|
|
|
|
2019-05-06 18:03:11 +00:00
|
|
|
/// Stores the current function/modifier call/invocation path.
|
|
|
|
std::vector<CallStackEntry> m_callStack;
|
2018-10-10 12:31:49 +00:00
|
|
|
/// Returns true if the current function was not visited by
|
|
|
|
/// a function call.
|
|
|
|
bool isRootFunction();
|
|
|
|
/// Returns true if _funDef was already visited.
|
|
|
|
bool visitedFunction(FunctionDefinition const* _funDef);
|
2019-02-06 10:12:02 +00:00
|
|
|
|
2019-03-11 20:06:28 +00:00
|
|
|
/// Depth of visit to modifiers.
|
|
|
|
/// When m_modifierDepth == #modifiers the function can be visited
|
|
|
|
/// when placeholder is visited.
|
|
|
|
/// Needs to be a stack because of function calls.
|
|
|
|
std::vector<int> m_modifierDepthStack;
|
2019-04-17 13:55:46 +00:00
|
|
|
|
2019-09-26 14:12:27 +00:00
|
|
|
std::map<ContractDefinition const*, ModifierInvocation const*> m_baseConstructorCalls;
|
|
|
|
|
2019-08-02 16:36:26 +00:00
|
|
|
ContractDefinition const* m_currentContract = nullptr;
|
|
|
|
|
2019-04-17 13:55:46 +00:00
|
|
|
/// Stores the context of the encoding.
|
2019-06-25 10:46:17 +00:00
|
|
|
smt::EncodingContext& m_context;
|
2017-07-06 09:05:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|