AbsCallEdge
|
Call edge from its callsite address to the callee's address. This is to
uniquely identify call edges for abstracted vertices. We create an abstract
vertex for each call instruction even though multiple call instructions may
target the same callee. The callee address can be None for an indirect call.
|
BBLFactory
|
Per-function factory for basic blocks. Each BBL is memoized so that we do
not create multiple BBLs for the same address. As this is a per-function
structure, each different function has its own BBLFactory.
|
BuildingCtxMsg<'FnCtx, 'GlCtx>
|
Message containing the building context of a function.
|
CalleeInfo
|
Callee's abstract information.
|
CalleeKind
|
What kind of callee is this?
|
CFGAction
|
Our CFG reconstruction algorithm is performed by consuming actions
(CFGAction). Each action has a priority, which is used to determine the
order of the actions to run.
|
CFGActionQueue
|
A priority queue to store the ICFGActions.
|
CFGBuilderState
|
|
CFGBuilderTable<'FnCtx, 'GlCtx>
|
|
CFGBuildingContext<'FnCtx, 'GlCtx>
|
The context for building a control flow graph of a function. This exists per
function, and it can include a user-defined context, too.
|
CFGEvaluator
|
|
CFGResult
|
The result obtained from recovering a CFG.
|
DelayedBuilderRequest
|
This is a delayed request that is used to update the status of the CFG
builder. This is populated only when the builder is running and is consumed
after regular CFGActions are consumed.
|
ExternalFnCFGBuilder<'FnCtx, 'GlCtx>
|
The builder for an external function, which is responsible storing auxiliary
information about the function, such as caller information.
|
ExternalFunctionLoader
|
|
Function
|
Function is a chunk of code in a binary. Functions may overlap with each
other in rare cases. Function overlapping is rare because we will create a
new function when there is an incoming edge in the middle of a funcion,
|
FunctionCollection<'FnCtx, 'GlCtx>
|
Collection of recovered functions.
|
FunctionDependenceMap
|
Map from a function (callee) to its caller functions. This is not
thread-safe, and thus should be used only by TaskManager.
|
ICFGBuildable<'FnCtx, 'GlCtx>
|
The interface for building a function.
|
ICFGBuildingStrategy<'FnCtx, 'GlCtx>
|
A strategy that defines how CFGActions are handled to build a function. This
interface will be accessed in parallel by multiple threads, so every
operation should be thread-safe. Note that CFGBuildingContext as well as
'FnCtx are only accessed by a single thread, though.
|
IFunctionSummarizable<'FnCtx, 'GlCtx>
|
Interface for summarizing a function based on the given context to abstract
data.
|
IJmpTableAnalyzable<'FnCtx, 'GlCtx>
|
Interface for analyzing indirect branch instructions that use a jump table.
|
ILinkage
|
Linkage information. A symbol/identifier in C can have either internal or
external linkage.
|
IManagerAccessible<'FnCtx, 'GlCtx>
|
The interface for accessing the state of the TaskManager.
|
InternalFnCFGBuilder<'FnCtx, 'GlCtx>
|
The main builder for an internal function. This is responsible for building
the function CFG while maintaining its internal state. By "internal", we
mean that the function is defined within the target binary as opposed to
external (library) functions.
|
IntraCallTable
|
A per-function table that maintains function call information within a
function, such as callsites in the function, callees, and their
relationships.
|
IPrioritizable
|
Interface for setting the priority of an action.
|
IResettable
|
Interface for resetting the state of an object.
|
JmpTableInfo
|
|
JmpTableRecoveryNote
|
A note (or a recovery state) for jump table recovery.
|
JmpTableRecoveryNotebook
|
Global collection of jump table recovery notes. This is not thread-safe, so
it should be accessed only by TaskManager.
|
JmpTableRegistrationResult
|
The result of jump table registration.
|
JumpTableRecoveryDecision
|
Decision about what to do next in the jump table registration process.
|
RecoveryMission<'FnCtx, 'GlCtx>
|
|
TaskManagerCommand<'FnCtx, 'GlCtx>
|
Request messages for the task manager.
|
TaskScheduler<'FnCtx, 'GlCtx>
|
|
TaskWorkerCommand<'FnCtx, 'GlCtx>
|
Command to be consumed by task workers.
|
TaskWorkerCommandStatus<'FnCtx, 'GlCtx>
|
Status of a task worker command.
|
TaskWorkerCommandStream<'FnCtx, 'GlCtx>
|
Stream of commands consumed by task workers.
|
TerminationStatus<'FnCtx, 'GlCtx>
|
|