Package ghidra.program.util
Class ContextEvaluatorAdapter
java.lang.Object
ghidra.program.util.ContextEvaluatorAdapter
- All Implemented Interfaces:
ContextEvaluator
Default behavior implementation of ContextEvaluator passed to SymbolicPropogator
Override methods to inspect context.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanallowAccess(VarnodeContext context, Address addr) Evaluate the address and check if the access to the value in the memory location to be read The address is read-only and is not close to this address.evaluateConstant(VarnodeContext context, Instruction instr, int pcodeop, Address constant, int size, DataType dataType, RefType refType) Evaluate a potential constant to be used as an address or an interesting constant that should have a reference created for it.booleanevaluateContext(VarnodeContext context, Instruction instr) Evaluate the current instruction given the final context for the instructionbooleanevaluateContextBefore(VarnodeContext context, Instruction instr) Evaluate the current instruction given the context before the instruction is evaluatedbooleanevaluateDestination(VarnodeContext context, Instruction instruction) Evaluate the instruction for an unknown destinationbooleanevaluateReference(VarnodeContext context, Instruction instr, int pcodeop, Address address, int size, DataType dataType, RefType refType) Evaluate the reference that has been found on this instruction.booleanevaluateReturn(Varnode retVN, VarnodeContext context, Instruction instruction) Evaluate the target of a returnbooleanevaluateSymbolicReference(VarnodeContext context, Instruction instr, Address address) Evaluate the reference that has been found on this instruction that points into an unknown space that has been designated as tracked.booleanFollow all branches, even if the condition evaluates to false, indicating it shouldn't be followed.unknownValue(VarnodeContext context, Instruction instruction, Varnode node) Called when a value is needed for a register that is unknown
-
Constructor Details
-
ContextEvaluatorAdapter
public ContextEvaluatorAdapter()
-
-
Method Details
-
evaluateContextBefore
Description copied from interface:ContextEvaluatorEvaluate the current instruction given the context before the instruction is evaluated- Specified by:
evaluateContextBeforein interfaceContextEvaluator- Parameters:
context- describes current state of registersinstr- instruction whose context has not yet been applied- Returns:
- true if evaluation should stop
-
evaluateContext
Description copied from interface:ContextEvaluatorEvaluate the current instruction given the final context for the instruction- Specified by:
evaluateContextin interfaceContextEvaluator- Parameters:
context- describes current state of registersinstr- instruction whose context has been applied- Returns:
- true if evaluation should stop, false to continue evaluation
-
evaluateConstant
public Address evaluateConstant(VarnodeContext context, Instruction instr, int pcodeop, Address constant, int size, DataType dataType, RefType refType) Description copied from interface:ContextEvaluatorEvaluate a potential constant to be used as an address or an interesting constant that should have a reference created for it. Computed values that are not know to be used as an address will be passed to this function. For example a value passed to a function, or a stored constant value.- Specified by:
evaluateConstantin interfaceContextEvaluator- Parameters:
context- current program contextinstr- instruction on which this reference was detectedpcodeop- the PcodeOp operation that is causing this potential constantconstant- constant value (in constant.getOffset() )size- size of constant value in bytesdataType- dataType associated with the reference if knownrefType- reference type (flow, data/read/write)- Returns:
- the original address unchanged if it should be a reference null if the constant reference should not be created a new address if the value should be a different address or address space Using something like instr.getProgram().getAddressFactory().getDefaultAddressSpace();
-
evaluateReference
public boolean evaluateReference(VarnodeContext context, Instruction instr, int pcodeop, Address address, int size, DataType dataType, RefType refType) Description copied from interface:ContextEvaluatorEvaluate the reference that has been found on this instruction. Computed values that are used as an address will be passed to this function. For example a value passed to a function, or a stored constant value.- Specified by:
evaluateReferencein interfaceContextEvaluator- Parameters:
context- current program contextinstr- instruction on which this reference was detectedpcodeop- the PcodeOp operation that is causing this referenceaddress- address being referencedsize- size of the item being referenced (only non-zero if load or store of data)dataType- dataType associated with the reference if knownrefType- reference type (flow, data/read/write)- Returns:
- false if the reference should be ignored (or has been taken care of by this routine)
-
evaluateDestination
Description copied from interface:ContextEvaluatorEvaluate the instruction for an unknown destination- Specified by:
evaluateDestinationin interfaceContextEvaluator- Parameters:
context- current register contextinstruction- instruction that has an unknown destination- Returns:
- true if the evaluation should stop, false to continue evaluation
-
evaluateReturn
Description copied from interface:ContextEvaluatorEvaluate the target of a return- Specified by:
evaluateReturnin interfaceContextEvaluator- Parameters:
retVN- varnode that is the target of a RETURN pcodeopcontext- current register contextinstruction- instruction that has an unknown destination- Returns:
- true if the evaluation should stop, false to continue evaluation
-
unknownValue
Description copied from interface:ContextEvaluatorCalled when a value is needed for a register that is unknown- Specified by:
unknownValuein interfaceContextEvaluator- Parameters:
context- current register contextinstruction- instruction that has an unknown destinationnode- varnode for the register being accessed to obtain a value- Returns:
- null if the varnode should not have an assumed value. a long value if the varnode such as a Global Register should have an assumed constant
-
followFalseConditionalBranches
public boolean followFalseConditionalBranches()Description copied from interface:ContextEvaluatorFollow all branches, even if the condition evaluates to false, indicating it shouldn't be followed.- Specified by:
followFalseConditionalBranchesin interfaceContextEvaluator- Returns:
- true if false evaluated conditional branches should be followed.
-
evaluateSymbolicReference
public boolean evaluateSymbolicReference(VarnodeContext context, Instruction instr, Address address) Description copied from interface:ContextEvaluatorEvaluate the reference that has been found on this instruction that points into an unknown space that has been designated as tracked.- Specified by:
evaluateSymbolicReferencein interfaceContextEvaluator- Parameters:
context- current program contextinstr- instruction on which this reference was detectedaddress- address being referenced- Returns:
- false if the reference should be ignored (or has been taken care of by this routine) true to allow the reference to be created
-
allowAccess
Description copied from interface:ContextEvaluatorEvaluate the address and check if the access to the value in the memory location to be read The address is read-only and is not close to this address.- Specified by:
allowAccessin interfaceContextEvaluator- Parameters:
context- current program contextaddr- Address of memory where location is attempting to be read- Returns:
- true if the access should be allowed
-