Header menu logo B2R2

CFGBuildingContext<'FnCtx, 'GlCtx> Type

The context for building a control flow graph of a function. This exists per function, and it can include a user-defined context, too.

Record fields

Record Field Description

ActionQueue

Full Usage: ActionQueue

Field type: CFGActionQueue

The action queue for the CFG building process.

Field type: CFGActionQueue

BBLFactory

Full Usage: BBLFactory

Field type: BBLFactory

The basic block factory.

Field type: BBLFactory

BinHandle

Full Usage: BinHandle

Field type: BinHandle

The binary handle.

Field type: BinHandle

CFG

Full Usage: CFG

Field type: LowUIRCFG
Modifiers: mutable

The control flow graph in LowUIR.

Field type: LowUIRCFG

CPState

Full Usage: CPState

Field type: VarBasedDataFlowState<Lattice>

The state of constant propagation.

Field type: VarBasedDataFlowState<Lattice>

CallerVertices

Full Usage: CallerVertices

Field type: Dictionary<Addr, IVertex<LowUIRBasicBlock>>

From a call site of a caller vertex to the caller vertex itself.

Field type: Dictionary<Addr, IVertex<LowUIRBasicBlock>>

Callers

Full Usage: Callers

Field type: HashSet<Addr>

Set of callers of this function.

Field type: HashSet<Addr>

ExnInfo

Full Usage: ExnInfo

Field type: ExceptionInfo

The exception information of the binary.

Field type: ExceptionInfo

FunctionAddress

Full Usage: FunctionAddress

Field type: Addr

The address of the function that is being built.

Field type: Addr

FunctionMode

Full Usage: FunctionMode

Field type: ArchOperationMode

Function operation mode (for ARM Thumb).

Field type: ArchOperationMode

FunctionName

Full Usage: FunctionName

Field type: string

Function name.

Field type: string

IntraCallTable

Full Usage: IntraCallTable

Field type: IntraCallTable

Table for maintaining intra-function call information of this function.

Field type: IntraCallTable

IsExternal

Full Usage: IsExternal

Field type: bool

Is this an external function or not.

Field type: bool

JumpTableRecoveryStatus

Full Usage: JumpTableRecoveryStatus

Field type: Stack<Addr * int>

Which jump table entry is currently being recovered? (table addr, index)

Field type: Stack<Addr * int>

JumpTables

Full Usage: JumpTables

Field type: List<JmpTableInfo>

Jump tables associated with this function.

Field type: List<JmpTableInfo>

ManagerChannel

Full Usage: ManagerChannel

Field type: IManagerAccessible<'FnCtx, 'GlCtx>
Modifiers: mutable

The channel for accessing the state of the TaskManager.

Field type: IManagerAccessible<'FnCtx, 'GlCtx>

NonReturningStatus

Full Usage: NonReturningStatus

Field type: NonReturningStatus
Modifiers: mutable

Is this function a no-return function?

Field type: NonReturningStatus

PendingCallActions

Full Usage: PendingCallActions

Field type: Dictionary<Addr, List<CFGAction>>

Pending call-edge connection actions (e.g., MakeCall, MakeTlCall, etc) for each callee address. This is to remember the actions that are waiting for the callee to be built.

Field type: Dictionary<Addr, List<CFGAction>>

ThreadID

Full Usage: ThreadID

Field type: int
Modifiers: mutable

Thread ID that is currently building this function.

Field type: int

UnwindingBytes

Full Usage: UnwindingBytes

Field type: int
Modifiers: mutable

The number of unwinding bytes of the stack when this function returns.

Field type: int

UserContext

Full Usage: UserContext

Field type: 'FnCtx
Modifiers: mutable

The user-defined per-function context.

Field type: 'FnCtx

Vertices

Full Usage: Vertices

Field type: Dictionary<ProgramPoint, IVertex<LowUIRBasicBlock>>

Mapping from a program point to a vertex in the LowUIRCFG.

Field type: Dictionary<ProgramPoint, IVertex<LowUIRBasicBlock>>

VisitedPPoints

Full Usage: VisitedPPoints

Field type: HashSet<ProgramPoint>

The set of visited BBL program points. This is to prevent visiting the same basic block multiple times when constructing the CFG.

Field type: HashSet<ProgramPoint>

Instance members

Instance member Description

this.AnalyzeGap

Full Usage: this.AnalyzeGap

Parameters:
    nextFnAddrOpt : uint64 option

Returns: AddrRange list

Find a gap between the current function and the next function. This function finds every gap between the current function and the next function. If there are multiple gaps, return all of them.

nextFnAddrOpt : uint64 option
Returns: AddrRange list

this.FindOverlap

Full Usage: this.FindOverlap

Parameters:
    nextFnAddrOpt : Addr option

Returns: IVertex<LowUIRBasicBlock> option

Find the first overlapping vertex in the CFG. We consider two cases: (1) two vertices share the same address, or (2) a vertex is beyond the range of the current function. If there's no such an overlap, return None. This function will check for the first case by traversing the vertices in the ascending order of addresses. This is crucial for the correctness of the rollback mechanism as we need to figure out which vertex is causing the overlap. Since we run this function after fully over-appriximating the CFG, we can assume that the first overlapping vertex is the problematic one. We then check the second case by assuming that the current function's boundary is determined by the next function's address. If there's a vertex that is located beyond the boundary, we consider it as an overlap. This function will return only the first overlapping vertex even though there may be multiple overlapping vertices.

nextFnAddrOpt : Addr option
Returns: IVertex<LowUIRBasicBlock> option

this.Reset

Full Usage: this.Reset

Reset the context to its initial state.

this.ScanBBLs

Full Usage: this.ScanBBLs

Parameters:
Returns: Result<List<ProgramPoint * ProgramPoint>, ErrorCase>

Scan basic blocks starting from the given entry points. This function returns a sequence of divided edges created by discovering new basic blocks. By discovering new basic blocks, existing blocks can be divided into multiple blocks.

mode : ArchOperationMode
entryPoints : IEnumerable<Addr>
Returns: Result<List<ProgramPoint * ProgramPoint>, ErrorCase>

Type something to start searching.