aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/formal/SMTChecker.h
blob: 95e01708a74e2e90c29e7c21a1cd66dc181830ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
/*
    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/>.
*/

#pragma once


#include <libsolidity/formal/SolverInterface.h>
#include <libsolidity/formal/SymbolicVariable.h>

#include <libsolidity/ast/ASTVisitor.h>

#include <libsolidity/interface/ReadFile.h>

#include <unordered_map>
#include <string>
#include <vector>

namespace dev
{
namespace solidity
{

class VariableUsage;
class ErrorReporter;

class SMTChecker: private ASTConstVisitor
{
public:
    SMTChecker(ErrorReporter& _errorReporter, ReadCallback::Callback const& _readCallback);

    void analyze(SourceUnit const& _sources);

private:
    // 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.

    virtual bool visit(ContractDefinition const& _node) override;
    virtual void endVisit(ContractDefinition const& _node) override;
    virtual void endVisit(VariableDeclaration const& _node) override;
    virtual bool visit(FunctionDefinition const& _node) override;
    virtual void endVisit(FunctionDefinition const& _node) override;
    virtual bool visit(IfStatement const& _node) override;
    virtual bool visit(WhileStatement const& _node) override;
    virtual bool visit(ForStatement const& _node) override;
    virtual void endVisit(VariableDeclarationStatement const& _node) override;
    virtual void endVisit(Assignment const& _node) override;
    virtual void endVisit(TupleExpression const& _node) override;
    virtual void endVisit(UnaryOperation const& _node) override;
    virtual void endVisit(BinaryOperation const& _node) override;
    virtual void endVisit(FunctionCall const& _node) override;
    virtual void endVisit(Identifier const& _node) override;
    virtual void endVisit(Literal const& _node) override;
    virtual void endVisit(Return const& _node) override;
    virtual bool visit(MemberAccess const& _node) override;

    void arithmeticOperation(BinaryOperation const& _op);
    void compareOperation(BinaryOperation const& _op);
    void booleanOperation(BinaryOperation const& _op);

    void visitAssert(FunctionCall const&);
    void visitRequire(FunctionCall const&);
    void visitGasLeft(FunctionCall const&);
    void visitBlockHash(FunctionCall const&);
    /// Visits the FunctionDefinition of the called function
    /// if available and inlines the return value.
    void inlineFunctionCall(FunctionCall const&);

    void defineSpecialVariable(std::string const& _name, Expression const& _expr, bool _increaseIndex = false);

    /// 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);

    void assignment(VariableDeclaration const& _variable, Expression const& _value, SourceLocation const& _location);
    void assignment(VariableDeclaration const& _variable, smt::Expression const& _value, SourceLocation const& _location);

    /// Maps a variable to an SSA index.
    using VariableIndices = std::unordered_map<VariableDeclaration const*, int>;

    /// 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.
    /// @returns the variable indices after visiting the branch.
    VariableIndices visitBranch(Statement const& _statement, smt::Expression const* _condition = nullptr);
    VariableIndices visitBranch(Statement const& _statement, smt::Expression _condition);

    /// Check that a condition can be satisfied.
    void checkCondition(
        smt::Expression _condition,
        SourceLocation const& _location,
        std::string const& _description,
        std::string const& _additionalValueName = "",
        smt::Expression* _additionalValue = nullptr
    );
    /// Checks that a boolean condition is not constant. Do not warn if the expression
    /// is a literal constant.
    /// @param _description the warning string, $VALUE will be replaced by the constant value.
    void checkBooleanNotConstant(
        Expression const& _condition,
        std::string const& _description
    );
    /// Checks that the value is in the range given by the type.
    void checkUnderOverflow(smt::Expression _value, IntegerType const& _Type, SourceLocation const& _location);


    std::pair<smt::CheckResult, std::vector<std::string>>
    checkSatisfiableAndGenerateModel(std::vector<smt::Expression> const& _expressionsToEvaluate);

    smt::CheckResult checkSatisfiable();

    void initializeLocalVariables(FunctionDefinition const& _function);
    void initializeFunctionCallParameters(FunctionDefinition const& _function, std::vector<smt::Expression> const& _callArgs);
    void resetStateVariables();
    void resetVariables(std::vector<VariableDeclaration const*> _variables);
    /// Given two different branches and the touched variables,
    /// merge the touched variables into after-branch ite variables
    /// using the branch condition as guard.
    void mergeVariables(std::vector<VariableDeclaration const*> const& _variables, smt::Expression const& _condition, VariableIndices const& _indicesEndTrue, VariableIndices const& _indicesEndFalse);
    /// Tries to create an uninitialized variable and returns true on success.
    /// This fails if the type is not supported.
    bool createVariable(VariableDeclaration const& _varDecl);

    /// @returns true if _delc is a variable that is known at the current point, i.e.
    /// has a valid index
    bool knownVariable(VariableDeclaration const& _decl);
    /// @returns an expression denoting the value of the variable declared in @a _decl
    /// at the current point.
    smt::Expression currentValue(VariableDeclaration const& _decl);
    /// @returns an expression denoting the value of the variable declared in @a _decl
    /// at the given index. Does not ensure that this index exists.
    smt::Expression valueAtIndex(VariableDeclaration const& _decl, int _index);
    /// Allocates a new index for the declaration, updates the current
    /// index to this value and returns the expression.
    smt::Expression newValue(VariableDeclaration const& _decl);

    /// Sets the value of the declaration to zero.
    void setZeroValue(VariableDeclaration const& _decl);
    /// Resets the variable to an unknown value (in its range).
    void setUnknownValue(VariableDeclaration const& decl);

    /// Returns the expression corresponding to the AST node. Throws if the expression does not exist.
    smt::Expression expr(Expression const& _e);
    /// Creates the expression (value can be arbitrary)
    void createExpr(Expression const& _e);
    /// Checks if expression was created
    bool knownExpr(Expression const& _e) const;
    /// Creates the expression and sets its value.
    void defineExpr(Expression const& _e, smt::Expression _value);

    /// Checks if special variable was seen.
    bool knownSpecialVariable(std::string const& _var) const;

    /// 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();
    /// Conjoin the current path conditions with the given parameter and add to the solver
    void addPathConjoinedExpression(smt::Expression const& _e);
    /// Add to the solver: the given expression implied by the current path conditions
    void addPathImpliedExpression(smt::Expression const& _e);

    /// Removes local variables from the context.
    void removeLocalVariables();

    /// Copy the SSA indices of m_variables.
    VariableIndices copyVariableIndices();
    /// Resets the variable indices.
    void resetVariableIndices(VariableIndices const& _indices);

    std::shared_ptr<smt::SolverInterface> m_interface;
    std::shared_ptr<VariableUsage> m_variableUsage;
    bool m_loopExecutionHappened = false;
    /// An Expression may have multiple smt::Expression due to
    /// repeated calls to the same function.
    std::unordered_map<Expression const*, std::shared_ptr<SymbolicVariable>> m_expressions;
    std::unordered_map<VariableDeclaration const*, std::shared_ptr<SymbolicVariable>> m_variables;
    std::unordered_map<std::string, std::shared_ptr<SymbolicVariable>> m_specialVariables;
    std::vector<smt::Expression> m_pathConditions;
    ErrorReporter& m_errorReporter;

    /// Stores the current path of function calls.
    std::vector<FunctionDefinition const*> m_functionPath;
    /// 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);
};

}
}