solidity/libsolidity/formal/EncodingContext.h

189 lines
6.3 KiB
C
Raw Normal View History

2019-04-17 13:55:46 +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/>.
*/
// SPDX-License-Identifier: GPL-3.0
2019-04-17 13:55:46 +00:00
#pragma once
2020-03-24 19:15:15 +00:00
#include <libsolidity/formal/SymbolicState.h>
2019-04-17 13:55:46 +00:00
#include <libsolidity/formal/SymbolicVariables.h>
2020-05-18 15:42:24 +00:00
#include <libsmtutil/SolverInterface.h>
#include <map>
2019-12-11 16:31:36 +00:00
namespace solidity::frontend::smt
2019-04-17 13:55:46 +00:00
{
/**
* Stores the context of the SMT encoding.
*/
class EncodingContext
{
public:
EncodingContext();
2019-04-17 13:55:46 +00:00
/// Resets the entire context except for symbolic variables which stay
/// alive because of state variables and inlined function calls.
/// To be used in the beginning of a root function visit.
2019-04-17 13:55:46 +00:00
void reset();
/// Resets the fresh id for slack variables.
void resetUniqueId();
/// Returns the current fresh slack id and increments it.
unsigned newUniqueId();
/// Clears the entire context, erasing everything.
/// To be used before a model checking engine starts.
void clear();
2019-04-17 13:55:46 +00:00
/// Sets the current solver used by the current engine for
/// SMT variable declaration.
2020-05-19 12:14:46 +00:00
void setSolver(smtutil::SolverInterface* _solver)
{
solAssert(_solver, "");
m_solver = _solver;
}
/// Sets whether the context should conjoin assertions in the assertion stack.
void setAssertionAccumulation(bool _acc) { m_accumulateAssertions = _acc; }
/// Forwards variable creation to the solver.
2020-05-19 12:14:46 +00:00
smtutil::Expression newVariable(std::string _name, smtutil::SortPointer _sort)
{
solAssert(m_solver, "");
return m_solver->newVariable(move(_name), move(_sort));
}
struct IdCompare
{
bool operator()(ASTNode const* lhs, ASTNode const* rhs) const
{
return lhs->id() < rhs->id();
}
};
/// Variables.
//@{
/// @returns the symbolic representation of a program variable.
2019-12-11 16:31:36 +00:00
std::shared_ptr<SymbolicVariable> variable(frontend::VariableDeclaration const& _varDecl);
/// @returns all symbolic variables.
std::map<frontend::VariableDeclaration const*, std::shared_ptr<SymbolicVariable>, IdCompare> const& variables() const { return m_variables; }
/// Creates a symbolic variable and
/// @returns true if a variable's type is not supported and is therefore abstract.
2019-12-11 16:31:36 +00:00
bool createVariable(frontend::VariableDeclaration const& _varDecl);
/// @returns true if variable was created.
2019-12-11 16:31:36 +00:00
bool knownVariable(frontend::VariableDeclaration const& _varDecl);
/// Resets a specific variable.
2019-12-11 16:31:36 +00:00
void resetVariable(frontend::VariableDeclaration const& _variable);
/// Resets a set of variables.
2019-12-11 16:31:36 +00:00
void resetVariables(std::set<frontend::VariableDeclaration const*> const& _variables);
/// Resets variables according to a predicate.
2019-12-11 16:31:36 +00:00
void resetVariables(std::function<bool(frontend::VariableDeclaration const&)> const& _filter);
///Resets all variables.
void resetAllVariables();
2019-04-17 13:55:46 +00:00
/// Allocates a new index for the declaration, updates the current
/// index to this value and returns the expression.
2020-05-19 12:14:46 +00:00
smtutil::Expression newValue(frontend::VariableDeclaration const& _decl);
/// Sets the value of the declaration to zero.
2019-12-11 16:31:36 +00:00
void setZeroValue(frontend::VariableDeclaration const& _decl);
void setZeroValue(SymbolicVariable& _variable);
/// Resets the variable to an unknown value (in its range).
2019-12-11 16:31:36 +00:00
void setUnknownValue(frontend::VariableDeclaration const& decl);
void setUnknownValue(SymbolicVariable& _variable);
//@}
/// Expressions.
////@{
/// @returns the symbolic representation of an AST node expression.
2019-12-11 16:31:36 +00:00
std::shared_ptr<SymbolicVariable> expression(frontend::Expression const& _e);
/// @returns all symbolic expressions.
std::map<frontend::Expression const*, std::shared_ptr<SymbolicVariable>, IdCompare> const& expressions() const { return m_expressions; }
/// Creates the expression (value can be arbitrary).
/// @returns true if type is not supported.
2019-12-11 16:31:36 +00:00
bool createExpression(frontend::Expression const& _e, std::shared_ptr<SymbolicVariable> _symbExpr = nullptr);
/// Checks if expression was created.
2019-12-11 16:31:36 +00:00
bool knownExpression(frontend::Expression const& _e) const;
//@}
/// Global variables and functions.
//@{
/// Global variables and functions.
std::shared_ptr<SymbolicVariable> globalSymbol(std::string const& _name);
/// @returns all symbolic globals.
std::map<std::string, std::shared_ptr<SymbolicVariable>> const& globalSymbols() const { return m_globalContext; }
/// Defines a new global variable or function
/// and @returns true if type was abstracted.
2019-12-11 16:31:36 +00:00
bool createGlobalSymbol(std::string const& _name, frontend::Expression const& _expr);
/// Checks if special variable or function was seen.
bool knownGlobalSymbol(std::string const& _var) const;
//@}
/// Solver.
//@{
/// @returns conjunction of all added assertions.
2020-05-19 12:14:46 +00:00
smtutil::Expression assertions();
void pushSolver();
void popSolver();
2020-05-19 12:14:46 +00:00
void addAssertion(smtutil::Expression const& _e);
2020-07-13 20:40:33 +00:00
size_t solverStackHeigh() { return m_assertions.size(); } const
2020-05-19 12:14:46 +00:00
smtutil::SolverInterface* solver()
{
solAssert(m_solver, "");
return m_solver;
}
//@}
2020-03-24 19:15:15 +00:00
SymbolicState& state() { return m_state; }
2019-04-11 16:14:48 +00:00
2020-03-24 19:15:15 +00:00
private:
/// Symbolic expressions.
//{@
/// Symbolic variables.
std::map<frontend::VariableDeclaration const*, std::shared_ptr<SymbolicVariable>, IdCompare> m_variables;
/// Symbolic expressions.
std::map<frontend::Expression const*, std::shared_ptr<SymbolicVariable>, IdCompare> m_expressions;
/// Symbolic representation of global symbols including
/// variables and functions.
std::map<std::string, std::shared_ptr<smt::SymbolicVariable>> m_globalContext;
2020-03-24 19:15:15 +00:00
/// Symbolic representation of the blockchain state.
SymbolicState m_state;
//@}
/// Solver related.
//@{
/// Solver can be SMT solver or Horn solver in the future.
2020-05-19 12:14:46 +00:00
smtutil::SolverInterface* m_solver = nullptr;
/// Assertion stack.
2020-05-19 12:14:46 +00:00
std::vector<smtutil::Expression> m_assertions;
/// Whether to conjoin assertions in the assertion stack.
bool m_accumulateAssertions = true;
//@}
/// Central source of unique ids.
unsigned m_nextUniqueId = 0;
2019-04-17 13:55:46 +00:00
};
}