mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Implement a Function Call Graph
This commit is contained in:
parent
64d14b4cc4
commit
4c1f8d69f9
@ -18,6 +18,8 @@ set(sources
|
||||
analysis/DocStringAnalyser.h
|
||||
analysis/DocStringTagParser.cpp
|
||||
analysis/DocStringTagParser.h
|
||||
analysis/FunctionCallGraph.cpp
|
||||
analysis/FunctionCallGraph.h
|
||||
analysis/ImmutableValidator.cpp
|
||||
analysis/ImmutableValidator.h
|
||||
analysis/GlobalContext.cpp
|
||||
|
280
libsolidity/analysis/FunctionCallGraph.cpp
Normal file
280
libsolidity/analysis/FunctionCallGraph.cpp
Normal file
@ -0,0 +1,280 @@
|
||||
/*
|
||||
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
|
||||
|
||||
#include <libsolidity/analysis/FunctionCallGraph.h>
|
||||
|
||||
#include <range/v3/view/reverse.hpp>
|
||||
#include <range/v3/view/transform.hpp>
|
||||
|
||||
using namespace std;
|
||||
using namespace ranges;
|
||||
using namespace solidity::frontend;
|
||||
|
||||
bool FunctionCallGraphBuilder::CompareByID::operator()(Node const& _lhs, Node const& _rhs) const
|
||||
{
|
||||
if (_lhs.index() != _rhs.index())
|
||||
return _lhs.index() < _rhs.index();
|
||||
|
||||
if (holds_alternative<SpecialNode>(_lhs))
|
||||
return get<SpecialNode>(_lhs) < get<SpecialNode>(_rhs);
|
||||
return get<CallableDeclaration const*>(_lhs)->id() < get<CallableDeclaration const*>(_rhs)->id();
|
||||
}
|
||||
|
||||
bool FunctionCallGraphBuilder::CompareByID::operator()(Node const& _lhs, int64_t _rhs) const
|
||||
{
|
||||
solAssert(!holds_alternative<SpecialNode>(_lhs), "");
|
||||
|
||||
return get<CallableDeclaration const*>(_lhs)->id() < _rhs;
|
||||
}
|
||||
|
||||
bool FunctionCallGraphBuilder::CompareByID::operator()(int64_t _lhs, Node const& _rhs) const
|
||||
{
|
||||
solAssert(!holds_alternative<SpecialNode>(_rhs), "");
|
||||
|
||||
return _lhs < get<CallableDeclaration const*>(_rhs)->id();
|
||||
}
|
||||
|
||||
FunctionCallGraphBuilder::ContractCallGraph FunctionCallGraphBuilder::buildCreationGraph(ContractDefinition const& _contract)
|
||||
{
|
||||
FunctionCallGraphBuilder builder(_contract);
|
||||
solAssert(builder.m_currentNode == Node(SpecialNode::Entry), "");
|
||||
|
||||
// Create graph for constructor, state vars, etc
|
||||
for (ContractDefinition const* base: _contract.annotation().linearizedBaseContracts | views::reverse)
|
||||
{
|
||||
// The constructor and functions called in state variable initial assignments should have
|
||||
// an edge from Entry
|
||||
builder.m_currentNode = SpecialNode::Entry;
|
||||
for (auto const* stateVar: base->stateVariables())
|
||||
stateVar->accept(builder);
|
||||
|
||||
if (base->constructor())
|
||||
{
|
||||
builder.functionReferenced(*base->constructor());
|
||||
|
||||
// Constructors and functions called in state variable initializers have an edge either from
|
||||
// the previous class in linearized order or from Entry if there's no class before.
|
||||
builder.m_currentNode = base->constructor();
|
||||
}
|
||||
|
||||
// Functions called from the inheritance specifier should have an edge from the constructor
|
||||
// for consistency with functions called from constructor modifiers.
|
||||
for (auto const& inheritanceSpecifier: base->baseContracts())
|
||||
inheritanceSpecifier->accept(builder);
|
||||
}
|
||||
|
||||
builder.m_currentNode = SpecialNode::Entry;
|
||||
builder.processQueue();
|
||||
|
||||
return move(builder.m_graph);
|
||||
}
|
||||
|
||||
FunctionCallGraphBuilder::ContractCallGraph FunctionCallGraphBuilder::buildDeployedGraph(
|
||||
ContractDefinition const& _contract,
|
||||
FunctionCallGraphBuilder::ContractCallGraph const& _creationGraph
|
||||
)
|
||||
{
|
||||
solAssert(&_creationGraph.contract == &_contract, "");
|
||||
|
||||
FunctionCallGraphBuilder builder(_contract);
|
||||
solAssert(builder.m_currentNode == Node(SpecialNode::Entry), "");
|
||||
|
||||
auto getSecondElement = [](auto const& _tuple){ return get<1>(_tuple); };
|
||||
|
||||
// Create graph for all publicly reachable functions
|
||||
for (FunctionTypePointer functionType: _contract.interfaceFunctionList() | views::transform(getSecondElement))
|
||||
{
|
||||
auto const* function = dynamic_cast<FunctionDefinition const*>(&functionType->declaration());
|
||||
auto const* variable = dynamic_cast<VariableDeclaration const*>(&functionType->declaration());
|
||||
|
||||
if (function)
|
||||
builder.functionReferenced(*function);
|
||||
else
|
||||
// If it's not a function, it must be a getter of a public variable; we ignore those
|
||||
solAssert(variable, "");
|
||||
}
|
||||
|
||||
if (_contract.fallbackFunction())
|
||||
builder.functionReferenced(*_contract.fallbackFunction());
|
||||
|
||||
if (_contract.receiveFunction())
|
||||
builder.functionReferenced(*_contract.receiveFunction());
|
||||
|
||||
// All functions present in internal dispatch at creation time could potentially be pointers
|
||||
// assigned to state variables and as such may be reachable after deployment as well.
|
||||
builder.m_currentNode = SpecialNode::InternalDispatch;
|
||||
for (Node const& dispatchTarget: valueOrDefault(_creationGraph.edges, SpecialNode::InternalDispatch, {}))
|
||||
{
|
||||
solAssert(!holds_alternative<SpecialNode>(dispatchTarget), "");
|
||||
solAssert(get<CallableDeclaration const*>(dispatchTarget) != nullptr, "");
|
||||
|
||||
// Visit the callable to add not only it but also everything it calls too
|
||||
builder.functionReferenced(*get<CallableDeclaration const*>(dispatchTarget), false);
|
||||
}
|
||||
|
||||
builder.m_currentNode = SpecialNode::Entry;
|
||||
builder.processQueue();
|
||||
|
||||
return move(builder.m_graph);
|
||||
}
|
||||
|
||||
bool FunctionCallGraphBuilder::visit(FunctionCall const& _functionCall)
|
||||
{
|
||||
if (*_functionCall.annotation().kind != FunctionCallKind::FunctionCall)
|
||||
return true;
|
||||
|
||||
auto const* functionType = dynamic_cast<FunctionType const*>(_functionCall.expression().annotation().type);
|
||||
solAssert(functionType, "");
|
||||
|
||||
if (functionType->kind() == FunctionType::Kind::Internal && !_functionCall.expression().annotation().calledDirectly)
|
||||
// If it's not a direct call, we don't really know which function will be called (it may even
|
||||
// change at runtime). All we can do is to add an edge to the dispatch which in turn has
|
||||
// edges to all functions could possibly be called.
|
||||
add(m_currentNode, SpecialNode::InternalDispatch);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool FunctionCallGraphBuilder::visit(EmitStatement const& _emitStatement)
|
||||
{
|
||||
auto const* functionType = dynamic_cast<FunctionType const*>(_emitStatement.eventCall().expression().annotation().type);
|
||||
solAssert(functionType, "");
|
||||
|
||||
m_graph.emittedEvents.insert(&dynamic_cast<EventDefinition const&>(functionType->declaration()));
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool FunctionCallGraphBuilder::visit(Identifier const& _identifier)
|
||||
{
|
||||
if (auto const* callable = dynamic_cast<CallableDeclaration const*>(_identifier.annotation().referencedDeclaration))
|
||||
{
|
||||
solAssert(*_identifier.annotation().requiredLookup == VirtualLookup::Virtual, "");
|
||||
|
||||
auto funType = dynamic_cast<FunctionType const*>(_identifier.annotation().type);
|
||||
|
||||
// For events kind() == Event, so we have an extra check here
|
||||
if (funType && funType->kind() == FunctionType::Kind::Internal)
|
||||
functionReferenced(callable->resolveVirtual(m_graph.contract), _identifier.annotation().calledDirectly);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool FunctionCallGraphBuilder::visit(MemberAccess const& _memberAccess)
|
||||
{
|
||||
auto functionType = dynamic_cast<FunctionType const*>(_memberAccess.annotation().type);
|
||||
auto functionDef = dynamic_cast<FunctionDefinition const*>(_memberAccess.annotation().referencedDeclaration);
|
||||
if (!functionType || !functionDef || functionType->kind() != FunctionType::Kind::Internal)
|
||||
return true;
|
||||
|
||||
// Super functions
|
||||
if (*_memberAccess.annotation().requiredLookup == VirtualLookup::Super)
|
||||
{
|
||||
if (auto const* typeType = dynamic_cast<TypeType const*>(_memberAccess.expression().annotation().type))
|
||||
if (auto const contractType = dynamic_cast<ContractType const*>(typeType->actualType()))
|
||||
{
|
||||
solAssert(contractType->isSuper(), "");
|
||||
functionDef = &functionDef->resolveVirtual(
|
||||
m_graph.contract,
|
||||
contractType->contractDefinition().superContract(m_graph.contract)
|
||||
);
|
||||
}
|
||||
}
|
||||
else
|
||||
solAssert(*_memberAccess.annotation().requiredLookup == VirtualLookup::Static, "");
|
||||
|
||||
functionReferenced(*functionDef, _memberAccess.annotation().calledDirectly);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool FunctionCallGraphBuilder::visit(ModifierInvocation const& _modifierInvocation)
|
||||
{
|
||||
if (auto const* modifier = dynamic_cast<ModifierDefinition const*>(_modifierInvocation.name().annotation().referencedDeclaration))
|
||||
{
|
||||
VirtualLookup const& requiredLookup = *_modifierInvocation.name().annotation().requiredLookup;
|
||||
|
||||
if (requiredLookup == VirtualLookup::Virtual)
|
||||
functionReferenced(modifier->resolveVirtual(m_graph.contract));
|
||||
else
|
||||
{
|
||||
solAssert(requiredLookup == VirtualLookup::Static, "");
|
||||
functionReferenced(*modifier);
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool FunctionCallGraphBuilder::visit(NewExpression const& _newExpression)
|
||||
{
|
||||
if (ContractType const* contractType = dynamic_cast<ContractType const*>(_newExpression.typeName().annotation().type))
|
||||
m_graph.createdContracts.emplace(&contractType->contractDefinition());
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
void FunctionCallGraphBuilder::enqueueCallable(CallableDeclaration const& _callable)
|
||||
{
|
||||
if (!m_graph.edges.count(&_callable))
|
||||
{
|
||||
m_visitQueue.push_back(&_callable);
|
||||
|
||||
// Insert the callable to the graph (with no edges coming out of it) to mark it as visited.
|
||||
m_graph.edges.insert({Node(&_callable), {}});
|
||||
}
|
||||
}
|
||||
|
||||
void FunctionCallGraphBuilder::processQueue()
|
||||
{
|
||||
solAssert(m_currentNode == Node(SpecialNode::Entry), "Visit queue is already being processed.");
|
||||
|
||||
while (!m_visitQueue.empty())
|
||||
{
|
||||
m_currentNode = m_visitQueue.front();
|
||||
solAssert(holds_alternative<CallableDeclaration const*>(m_currentNode), "");
|
||||
|
||||
m_visitQueue.pop_front();
|
||||
get<CallableDeclaration const*>(m_currentNode)->accept(*this);
|
||||
}
|
||||
|
||||
m_currentNode = SpecialNode::Entry;
|
||||
}
|
||||
|
||||
void FunctionCallGraphBuilder::add(Node _caller, Node _callee)
|
||||
{
|
||||
m_graph.edges[_caller].insert(_callee);
|
||||
}
|
||||
|
||||
void FunctionCallGraphBuilder::functionReferenced(CallableDeclaration const& _callable, bool _calledDirectly)
|
||||
{
|
||||
if (_calledDirectly)
|
||||
{
|
||||
solAssert(
|
||||
holds_alternative<SpecialNode>(m_currentNode) || m_graph.edges.count(m_currentNode) > 0,
|
||||
"Adding an edge from a node that has not been visited yet."
|
||||
);
|
||||
|
||||
add(m_currentNode, &_callable);
|
||||
}
|
||||
else
|
||||
add(SpecialNode::InternalDispatch, &_callable);
|
||||
|
||||
enqueueCallable(_callable);
|
||||
}
|
122
libsolidity/analysis/FunctionCallGraph.h
Normal file
122
libsolidity/analysis/FunctionCallGraph.h
Normal file
@ -0,0 +1,122 @@
|
||||
/*
|
||||
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
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <libsolidity/ast/ASTForward.h>
|
||||
#include <libsolidity/ast/ASTVisitor.h>
|
||||
|
||||
#include <deque>
|
||||
#include <variant>
|
||||
#include <vector>
|
||||
|
||||
namespace solidity::frontend
|
||||
{
|
||||
|
||||
/**
|
||||
* Creates a Function call graph for a contract at the granularity of Solidity
|
||||
* functions and modifiers. The graph can represent the situation either at contract creation
|
||||
* or after deployment. The graph does not preserve temporal relations between calls - edges
|
||||
* coming out of the same node show which calls were performed but not in what order.
|
||||
*
|
||||
* Includes the following special nodes:
|
||||
* - Entry: represents a call from the outside of the contract.
|
||||
* After deployment this is the node that connects to all the functions exposed through the
|
||||
* external interface. At contract creation it connects to the constructors and variable
|
||||
* initializers, which are not explicitly called from within another function.
|
||||
* - InternalDispatch: Represents the internal dispatch function, which calls internal functions
|
||||
* determined at runtime by values of variables and expressions. Functions that are not called
|
||||
* right away get an edge from this node.
|
||||
*
|
||||
* Nodes are a variant of either the enum SpecialNode or a CallableDeclaration which currently
|
||||
* can be a function or a modifier. There are no nodes representing event calls. Instead all
|
||||
* emitted events and created contracts are gathered in separate sets included in the graph just
|
||||
* for that purpose.
|
||||
*
|
||||
* Auto-generated getter functions for public state variables are ignored, but function calls
|
||||
* inside initial assignments are included in the creation graph.
|
||||
*
|
||||
* Only calls reachable from an Entry node are included in the graph. The map representing edges
|
||||
* is also guaranteed to contain keys representing all the reachable functions and modifiers, even
|
||||
* if they have no outgoing edges.
|
||||
*/
|
||||
class FunctionCallGraphBuilder: private ASTConstVisitor
|
||||
{
|
||||
public:
|
||||
enum class SpecialNode
|
||||
{
|
||||
InternalDispatch,
|
||||
Entry,
|
||||
};
|
||||
|
||||
using Node = std::variant<CallableDeclaration const*, SpecialNode>;
|
||||
|
||||
struct CompareByID
|
||||
{
|
||||
using is_transparent = void;
|
||||
bool operator()(Node const& _lhs, Node const& _rhs) const;
|
||||
bool operator()(Node const& _lhs, int64_t _rhs) const;
|
||||
bool operator()(int64_t _lhs, Node const& _rhs) const;
|
||||
};
|
||||
|
||||
struct ContractCallGraph
|
||||
{
|
||||
/// Contract for which this is the graph
|
||||
ContractDefinition const& contract;
|
||||
|
||||
/// Graph edges. Edges are directed and lead from the caller to the callee.
|
||||
/// The map contains a key for every possible caller, even if does not actually perform
|
||||
/// any calls.
|
||||
std::map<Node, std::set<Node, CompareByID>, CompareByID> edges;
|
||||
|
||||
/// Contracts that may get created with `new` by functions present in the graph.
|
||||
std::set<ContractDefinition const*, ASTNode::CompareByID> createdContracts;
|
||||
|
||||
/// Events that may get emitted by functions present in the graph.
|
||||
std::set<EventDefinition const*, ASTNode::CompareByID> emittedEvents;
|
||||
};
|
||||
|
||||
static ContractCallGraph buildCreationGraph(ContractDefinition const& _contract);
|
||||
static ContractCallGraph buildDeployedGraph(
|
||||
ContractDefinition const& _contract,
|
||||
FunctionCallGraphBuilder::ContractCallGraph const& _creationGraph
|
||||
);
|
||||
|
||||
private:
|
||||
FunctionCallGraphBuilder(ContractDefinition const& _contract):
|
||||
m_graph{_contract, {}, {}, {}} {}
|
||||
|
||||
bool visit(FunctionCall const& _functionCall) override;
|
||||
bool visit(EmitStatement const& _emitStatement) override;
|
||||
bool visit(Identifier const& _identifier) override;
|
||||
bool visit(MemberAccess const& _memberAccess) override;
|
||||
bool visit(ModifierInvocation const& _modifierInvocation) override;
|
||||
bool visit(NewExpression const& _newExpression) override;
|
||||
|
||||
void enqueueCallable(CallableDeclaration const& _callable);
|
||||
void processQueue();
|
||||
|
||||
void add(Node _caller, Node _callee);
|
||||
void functionReferenced(CallableDeclaration const& _callable, bool _calledDirectly = true);
|
||||
|
||||
Node m_currentNode = SpecialNode::Entry;
|
||||
ContractCallGraph m_graph;
|
||||
std::deque<CallableDeclaration const*> m_visitQueue;
|
||||
};
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user