2019-09-24 15:35:31 +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/>.
|
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2019-09-24 15:35:31 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface for solving Horn systems via smtlib2.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-05-18 15:42:24 +00:00
|
|
|
#include <libsmtutil/CHCSolverInterface.h>
|
2019-09-24 15:35:31 +00:00
|
|
|
|
2020-05-18 15:42:24 +00:00
|
|
|
#include <libsmtutil/SMTLib2Interface.h>
|
2019-09-24 15:35:31 +00:00
|
|
|
|
2020-05-19 12:14:46 +00:00
|
|
|
namespace solidity::smtutil
|
2019-09-24 15:35:31 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
class CHCSmtLib2Interface: public CHCSolverInterface
|
|
|
|
{
|
|
|
|
public:
|
2019-09-17 14:06:43 +00:00
|
|
|
explicit CHCSmtLib2Interface(
|
2020-12-03 21:40:30 +00:00
|
|
|
std::map<util::h256, std::string> const& _queryResponses = {},
|
2020-11-02 20:20:20 +00:00
|
|
|
frontend::ReadCallback::Callback _smtCallback = {},
|
|
|
|
std::optional<unsigned> _queryTimeout = {}
|
2019-09-17 14:06:43 +00:00
|
|
|
);
|
2019-09-24 15:35:31 +00:00
|
|
|
|
|
|
|
void reset();
|
|
|
|
|
|
|
|
void registerRelation(Expression const& _expr) override;
|
|
|
|
|
|
|
|
void addRule(Expression const& _expr, std::string const& _name) override;
|
|
|
|
|
2020-07-07 14:22:51 +00:00
|
|
|
std::pair<CheckResult, CexGraph> query(Expression const& _expr) override;
|
2019-09-24 15:35:31 +00:00
|
|
|
|
|
|
|
void declareVariable(std::string const& _name, SortPointer const& _sort) override;
|
|
|
|
|
|
|
|
std::vector<std::string> unhandledQueries() const { return m_unhandledQueries; }
|
|
|
|
|
2020-01-04 20:45:21 +00:00
|
|
|
SMTLib2Interface* smtlib2Interface() const { return m_smtlib2.get(); }
|
2019-09-24 15:35:31 +00:00
|
|
|
|
|
|
|
private:
|
2021-05-18 17:12:06 +00:00
|
|
|
std::string toSmtLibSort(Sort const& _sort);
|
|
|
|
std::string toSmtLibSort(std::vector<SortPointer> const& _sort);
|
|
|
|
|
|
|
|
void writeHeader();
|
|
|
|
std::string forall();
|
|
|
|
|
2019-09-24 15:35:31 +00:00
|
|
|
void declareFunction(std::string const& _name, SortPointer const& _sort);
|
|
|
|
|
|
|
|
void write(std::string _data);
|
|
|
|
|
|
|
|
/// Communicates with the solver via the callback. Throws SMTSolverError on error.
|
|
|
|
std::string querySolver(std::string const& _input);
|
|
|
|
|
|
|
|
/// Used to access toSmtLibSort, SExpr, and handle variables.
|
2020-01-04 20:45:21 +00:00
|
|
|
std::unique_ptr<SMTLib2Interface> m_smtlib2;
|
2019-09-24 15:35:31 +00:00
|
|
|
|
|
|
|
std::string m_accumulatedOutput;
|
|
|
|
std::set<std::string> m_variables;
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
std::map<util::h256, std::string> const& m_queryResponses;
|
2019-09-24 15:35:31 +00:00
|
|
|
std::vector<std::string> m_unhandledQueries;
|
2019-09-17 14:06:43 +00:00
|
|
|
|
2020-05-19 12:14:46 +00:00
|
|
|
frontend::ReadCallback::Callback m_smtCallback;
|
2021-05-18 17:12:06 +00:00
|
|
|
|
|
|
|
std::map<Sort const*, std::string> m_sortNames;
|
2019-09-24 15:35:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|