ROSE  0.11.145.0
Classes | Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | List of all members
Rose::BinaryAnalysis::Partitioner2::ModulesPe::PeDescrambler Class Reference

Description

Callback to restore PEScrambler function call edges.

This basic block callback is invoked each time the partitioner discovers a new instruction. It looks at the instruction's successors, and if the only successor is the PEScrambler dispatch function (as specified during callback construction) then the successor edge is replace with the edge to the original callee as if PEScrambler's dispatcher did the replacement.

Definition at line 82 of file ModulesPe.h.

#include <Rose/BinaryAnalysis/Partitioner2/ModulesPe.h>

Inheritance diagram for Rose::BinaryAnalysis::Partitioner2::ModulesPe::PeDescrambler:
Inheritance graph
[legend]
Collaboration diagram for Rose::BinaryAnalysis::Partitioner2::ModulesPe::PeDescrambler:
Collaboration graph
[legend]

Classes

struct  DispatchEntry
 One dispatch table entry in native format. More...
 

Public Types

typedef Sawyer::SharedPointer< PeDescramblerPtr
 Shared-ownership pointer to a PeDescrambler. More...
 
typedef std::vector< DispatchEntryDispatchTable
 The function dispatch table. More...
 
- Public Types inherited from Rose::BinaryAnalysis::Partitioner2::BasicBlockCallback
enum  Termination {
  CONTINUE_DISCOVERY,
  TERMINATE_NOW,
  TERMINATE_PRIOR
}
 Whether to terminate a basic block. More...
 
using Ptr = BasicBlockCallbackPtr
 Shared-ownership pointer to a BasicBlockCallback. More...
 

Public Member Functions

void nameKeyAddresses (const PartitionerPtr &)
 Name certain addresses in the specimen. More...
 
rose_addr_t dispatcherVa () const
 Virtual address of PEScrambler dispatch function. More...
 
rose_addr_t dispatchTableVa () const
 Virtual address of PEScrambler dispatch table. More...
 
virtual bool operator() (bool chain, const Args &) override
 Callback method. More...
 
const DispatchTabledispatchTable () const
 Dispatch table. More...
 
DispatchTabledispatchTable ()
 Dispatch table. More...
 
- Public Member Functions inherited from Sawyer::SharedObject
 SharedObject ()
 Default constructor. More...
 
 SharedObject (const SharedObject &)
 Copy constructor. More...
 
virtual ~SharedObject ()
 Virtual destructor. More...
 
SharedObjectoperator= (const SharedObject &)
 Assignment. More...
 

Static Public Member Functions

static Ptr instance (rose_addr_t dispatcherVa, rose_addr_t dispatchTableVa)
 Construct a new PeDescrambler. More...
 
static Ptr instance (rose_addr_t dispatcherVa)
 Construct a new PeDescrambler. More...
 

Protected Member Functions

 PeDescrambler (rose_addr_t dispatcherVa, rose_addr_t dispatchTableVa)
 

Member Typedef Documentation

Shared-ownership pointer to a PeDescrambler.

See Shared ownership.

Definition at line 85 of file ModulesPe.h.

The function dispatch table.

The first part of the table, up to and including the first zero-valued returnVa, has calleeVa values which are function addresses. The second part of the table's calleeVa values are addresses containing the address of a function (i.e., an extra level of indirection).

Definition at line 100 of file ModulesPe.h.

Member Function Documentation

static Ptr Rose::BinaryAnalysis::Partitioner2::ModulesPe::PeDescrambler::instance ( rose_addr_t  dispatcherVa,
rose_addr_t  dispatchTableVa 
)
inlinestatic

Construct a new PeDescrambler.

The dispatcherVa is the virtual address of the PEScrambler dispatch function. One can easily find it by looking at the call graph since it will be the function that probably has many more callers than any other function. The dispatchTableVa is the address of the PEScrambler dispatch table, which normally starts at the first byte past the end of the dispatch function.

Definition at line 124 of file ModulesPe.h.

static Ptr Rose::BinaryAnalysis::Partitioner2::ModulesPe::PeDescrambler::instance ( rose_addr_t  dispatcherVa)
inlinestatic

Construct a new PeDescrambler.

This is the same as the two-argument constructor, but the dispatch table address is assumed to be at a fixed offset from the dispatch function.

Definition at line 132 of file ModulesPe.h.

void Rose::BinaryAnalysis::Partitioner2::ModulesPe::PeDescrambler::nameKeyAddresses ( const PartitionerPtr )

Name certain addresses in the specimen.

Names the PEScrambler dispatch address and dispatch table address if they don't have names yet.

rose_addr_t Rose::BinaryAnalysis::Partitioner2::ModulesPe::PeDescrambler::dispatcherVa ( ) const
inline

Virtual address of PEScrambler dispatch function.

Definition at line 142 of file ModulesPe.h.

rose_addr_t Rose::BinaryAnalysis::Partitioner2::ModulesPe::PeDescrambler::dispatchTableVa ( ) const
inline

Virtual address of PEScrambler dispatch table.

Definition at line 145 of file ModulesPe.h.

const DispatchTable& Rose::BinaryAnalysis::Partitioner2::ModulesPe::PeDescrambler::dispatchTable ( ) const
inline

Dispatch table.

Returns a reference to the dispatch table as it currently exists in this callback. The callback extends the table only as needed in order to locate a return address, and the table is extended in arbitrary sized chunks (so it may contain data that isn't actually part of the table as far as the specimen is concerned). The caller is free to modify the table. See DispatchTable for more information.

Definition at line 155 of file ModulesPe.h.

DispatchTable& Rose::BinaryAnalysis::Partitioner2::ModulesPe::PeDescrambler::dispatchTable ( )
inline

Dispatch table.

Returns a reference to the dispatch table as it currently exists in this callback. The callback extends the table only as needed in order to locate a return address, and the table is extended in arbitrary sized chunks (so it may contain data that isn't actually part of the table as far as the specimen is concerned). The caller is free to modify the table. See DispatchTable for more information.

Definition at line 156 of file ModulesPe.h.

virtual bool Rose::BinaryAnalysis::Partitioner2::ModulesPe::PeDescrambler::operator() ( bool  chain,
const Args  
)
overridevirtual

Callback method.

This is the method invoked for the callback. The chain argument is the return value from the previous callback in the list (true for the first callback). The successor callbacks use chain to indicate whether subsequent callbacks should do anything.

Implements Rose::BinaryAnalysis::Partitioner2::BasicBlockCallback.


The documentation for this class was generated from the following file: