IContentAddressable Type
Can be used to access the binary content of a file via a virtual address or a file offset.
Instance members
Instance member | Description | ||
|
|||
Full Usage:
this.GetOffset
Parameters:
Addr
-
Virtual address.
Returns: int
Returns an offset to the binary for a given virtual address.
Modifiers: abstract |
|
||
Full Usage:
this.IsExecutableAddr
Parameters:
Addr
Returns: bool
Returns true if the address is executable, false otherwise.
Modifiers: abstract |
Check if the given address is executable address for this binary. We say a given address is executable if the address is within an executable segment. Note we consider the addresses of known read-only sections (such as .rodata) as non-executable, even though those sections are within an executable segment. For object files, we simply consider a .text section's address range as executable.
|
||
Full Usage:
this.IsInFileAddr
Parameters:
Addr
Returns: bool
Returns true if the address is within a mapped address range, false
otherwise.
Modifiers: abstract |
Check if the given address is valid and there is an actual mapping from the associated binary file to the corresponding memory. Unlike IsValidAddr, this function checks if we can decide the actual value of the given address from the binary. For example, a program header of an ELF file may contain 100 bytes in size, but when it is mapped to a segment in memory, the size of the segment can be larger than the size of the program header. This function checks if the given address is in the range of the segment that has a direct mapping to the file's program header.
|
||
Full Usage:
this.IsInFileRange
Parameters:
AddrRange
Returns: bool
Returns true if the whole range of addresses is within a valid range,
false otherwise.
Modifiers: abstract |
|
||
Full Usage:
this.IsValidAddr
Parameters:
Addr
Returns: bool
Returns true if the address is within a valid range, false otherwise.
Modifiers: abstract |
|||
Full Usage:
this.IsValidRange
Parameters:
AddrRange
Returns: bool
Returns true if the whole range of addresses is within a valid range,
false otherwise.
Modifiers: abstract |
|
||
|
|||
Full Usage:
this.ReadByte
Parameters:
int
Returns: byte
Modifiers: abstract |
|||
|
|||
|
|||
Full Usage:
this.Slice
Parameters:
BinFilePointer
size : int
Returns: ByteSpan
Modifiers: abstract |
|||
|
|||
|
|||
|
|||
|
|||
Full Usage:
this.ToBinFilePointer
Parameters:
string
Returns: BinFilePointer
Modifiers: abstract |
|||
Full Usage:
this.ToBinFilePointer
Parameters:
Addr
Returns: BinFilePointer
Modifiers: abstract |