aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/formal/SolverInterface.h
blob: 17e6904c7329414bb057213e4e1e10f407b06e56 (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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
/*
    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 <liblangutil/Exceptions.h>
#include <libsolidity/interface/ReadFile.h>

#include <libdevcore/Common.h>
#include <libdevcore/Exceptions.h>

#include <boost/noncopyable.hpp>

#include <map>
#include <string>
#include <vector>
#include <cstdio>

namespace dev
{
namespace solidity
{
namespace smt
{

enum class CheckResult
{
    SATISFIABLE, UNSATISFIABLE, UNKNOWN, CONFLICTING, ERROR
};

enum class Kind
{
    Int,
    Bool,
    Function,
    Array
};

struct Sort
{
    Sort(Kind _kind):
        kind(_kind) {}
    virtual ~Sort() = default;
    Kind const kind;
    bool operator==(Sort const& _other) const { return kind == _other.kind; }
};
using SortPointer = std::shared_ptr<Sort>;

struct FunctionSort: public Sort
{
    FunctionSort(std::vector<SortPointer> _domain, SortPointer _codomain):
        Sort(Kind::Function), domain(std::move(_domain)), codomain(std::move(_codomain)) {}
    std::vector<SortPointer> domain;
    SortPointer codomain;
    bool operator==(FunctionSort const& _other) const
    {
        if (!std::equal(
            domain.begin(),
            domain.end(),
            _other.domain.begin(),
            [&](SortPointer _a, SortPointer _b) { return *_a == *_b; }
            )
        )
            return false;
        return Sort::operator==(_other) && *codomain == *_other.codomain;
    }
};

struct ArraySort: public Sort
{
    /// _domain is the sort of the indices
    /// _range is the sort of the values
    ArraySort(SortPointer _domain, SortPointer _range):
        Sort(Kind::Array), domain(std::move(_domain)), range(std::move(_range)) {}
    SortPointer domain;
    SortPointer range;
    bool operator==(ArraySort const& _other) const
    {
        return Sort::operator==(_other) && *domain == *_other.domain && *range == *_other.range;
    }
};

/// C++ representation of an SMTLIB2 expression.
class Expression
{
    friend class SolverInterface;
public:
    explicit Expression(bool _v): Expression(_v ? "true" : "false", Kind::Bool) {}
    Expression(size_t _number): Expression(std::to_string(_number), Kind::Int) {}
    Expression(u256 const& _number): Expression(_number.str(), Kind::Int) {}
    Expression(bigint const& _number): Expression(_number.str(), Kind::Int) {}

    Expression(Expression const&) = default;
    Expression(Expression&&) = default;
    Expression& operator=(Expression const&) = default;
    Expression& operator=(Expression&&) = default;

    bool hasCorrectArity() const
    {
        static std::map<std::string, unsigned> const operatorsArity{
            {"ite", 3},
            {"not", 1},
            {"and", 2},
            {"or", 2},
            {"=", 2},
            {"<", 2},
            {"<=", 2},
            {">", 2},
            {">=", 2},
            {"+", 2},
            {"-", 2},
            {"*", 2},
            {"/", 2},
            {"select", 2},
            {"store", 3}
        };
        return operatorsArity.count(name) && operatorsArity.at(name) == arguments.size();
    }

    static Expression ite(Expression _condition, Expression _trueValue, Expression _falseValue)
    {
        solAssert(*_trueValue.sort == *_falseValue.sort, "");
        return Expression("ite", std::vector<Expression>{
            std::move(_condition), std::move(_trueValue), std::move(_falseValue)
        }, _trueValue.sort);
    }

    static Expression implies(Expression _a, Expression _b)
    {
        return !std::move(_a) || std::move(_b);
    }

    /// select is the SMT representation of an array index access.
    static Expression select(Expression _array, Expression _index)
    {
        solAssert(_array.sort->kind == Kind::Array, "");
        auto const& arraySort = dynamic_cast<ArraySort const*>(_array.sort.get());
        solAssert(arraySort, "");
        solAssert(*arraySort->domain == *_index.sort, "");
        return Expression(
            "select",
            std::vector<Expression>{std::move(_array), std::move(_index)},
            arraySort->range
        );
    }

    /// store is the SMT representation of an assignment to array index.
    /// The function is pure and returns the modified array.
    static Expression store(Expression _array, Expression _index, Expression _element)
    {
        solAssert(_array.sort->kind == Kind::Array, "");
        auto const& arraySort = dynamic_cast<ArraySort const*>(_array.sort.get());
        solAssert(arraySort, "");
        solAssert(*arraySort->domain == *_index.sort, "");
        solAssert(*arraySort->range == *_element.sort, "");
        return Expression(
            "store",
            std::vector<Expression>{std::move(_array), std::move(_index), std::move(_element)},
            _array.sort
        );
    }

    friend Expression operator!(Expression _a)
    {
        return Expression("not", std::move(_a), Kind::Bool);
    }
    friend Expression operator&&(Expression _a, Expression _b)
    {
        return Expression("and", std::move(_a), std::move(_b), Kind::Bool);
    }
    friend Expression operator||(Expression _a, Expression _b)
    {
        return Expression("or", std::move(_a), std::move(_b), Kind::Bool);
    }
    friend Expression operator==(Expression _a, Expression _b)
    {
        return Expression("=", std::move(_a), std::move(_b), Kind::Bool);
    }
    friend Expression operator!=(Expression _a, Expression _b)
    {
        return !(std::move(_a) == std::move(_b));
    }
    friend Expression operator<(Expression _a, Expression _b)
    {
        return Expression("<", std::move(_a), std::move(_b), Kind::Bool);
    }
    friend Expression operator<=(Expression _a, Expression _b)
    {
        return Expression("<=", std::move(_a), std::move(_b), Kind::Bool);
    }
    friend Expression operator>(Expression _a, Expression _b)
    {
        return Expression(">", std::move(_a), std::move(_b), Kind::Bool);
    }
    friend Expression operator>=(Expression _a, Expression _b)
    {
        return Expression(">=", std::move(_a), std::move(_b), Kind::Bool);
    }
    friend Expression operator+(Expression _a, Expression _b)
    {
        return Expression("+", std::move(_a), std::move(_b), Kind::Int);
    }
    friend Expression operator-(Expression _a, Expression _b)
    {
        return Expression("-", std::move(_a), std::move(_b), Kind::Int);
    }
    friend Expression operator*(Expression _a, Expression _b)
    {
        return Expression("*", std::move(_a), std::move(_b), Kind::Int);
    }
    friend Expression operator/(Expression _a, Expression _b)
    {
        return Expression("/", std::move(_a), std::move(_b), Kind::Int);
    }
    Expression operator()(std::vector<Expression> _arguments) const
    {
        solAssert(
            sort->kind == Kind::Function,
            "Attempted function application to non-function."
        );
        auto fSort = dynamic_cast<FunctionSort const*>(sort.get());
        solAssert(fSort, "");
        return Expression(name, std::move(_arguments), fSort->codomain);
    }

    std::string name;
    std::vector<Expression> arguments;
    SortPointer sort;

private:
    /// Manual constructors, should only be used by SolverInterface and this class itself.
    Expression(std::string _name, std::vector<Expression> _arguments, SortPointer _sort):
        name(std::move(_name)), arguments(std::move(_arguments)), sort(std::move(_sort)) {}
    Expression(std::string _name, std::vector<Expression> _arguments, Kind _kind):
        Expression(std::move(_name), std::move(_arguments), std::make_shared<Sort>(_kind)) {}

    explicit Expression(std::string _name, Kind _kind):
        Expression(std::move(_name), std::vector<Expression>{}, _kind) {}
    Expression(std::string _name, Expression _arg, Kind _kind):
        Expression(std::move(_name), std::vector<Expression>{std::move(_arg)}, _kind) {}
    Expression(std::string _name, Expression _arg1, Expression _arg2, Kind _kind):
        Expression(std::move(_name), std::vector<Expression>{std::move(_arg1), std::move(_arg2)}, _kind) {}
};

DEV_SIMPLE_EXCEPTION(SolverError);

class SolverInterface
{
public:
    virtual ~SolverInterface() = default;
    virtual void reset() = 0;

    virtual void push() = 0;
    virtual void pop() = 0;

    virtual void declareVariable(std::string const& _name, Sort const& _sort) = 0;
    Expression newVariable(std::string _name, SortPointer _sort)
    {
        // Subclasses should do something here
        declareVariable(_name, *_sort);
        return Expression(std::move(_name), {}, std::move(_sort));
    }

    virtual void addAssertion(Expression const& _expr) = 0;

    /// Checks for satisfiability, evaluates the expressions if a model
    /// is available. Throws SMTSolverError on error.
    virtual std::pair<CheckResult, std::vector<std::string>>
    check(std::vector<Expression> const& _expressionsToEvaluate) = 0;

protected:
    // SMT query timeout in milliseconds.
    static int const queryTimeout = 10000;
};

}
}
}