Package ghidra.app.util.bin.format.pe
Class BoundImportDataDirectory
java.lang.Object
ghidra.app.util.bin.format.pe.DataDirectory
ghidra.app.util.bin.format.pe.BoundImportDataDirectory
- All Implemented Interfaces:
PeMarkupable
Points to an array of IMAGE_BOUND_IMPORT_DESCRIPTORs.
-
Field Summary
Fields inherited from class ghidra.app.util.bin.format.pe.DataDirectory
hasParsed, IMAGE_SIZEOF_IMAGE_DIRECTORY_ENTRY, ntHeader, reader, size, TITLE, virtualAddress -
Method Summary
Modifier and TypeMethodDescriptionvoidReturns the array of bound import descriptors defined in this bound import data directory.voidmarkup(Program program, boolean isBinary, TaskMonitor monitor, MessageLog log, NTHeader nt) Marks up a PE structure.booleanparse()Parses this data directory.voidwriteBytes(RandomAccessFile raf, DataConverter dc, PortableExecutable template) Directories that are not contained inside of sections should override this method to write their bytes into the specified file.Methods inherited from class ghidra.app.util.bin.format.pe.DataDirectory
createDirectoryBookmark, createFragment, createTerminatedString, getPointer, getSize, getVirtualAddress, hasParsedCorrectly, processDataDirectory, setBookmark, setEolComment, setPlateComment, setPreComment, setSize, setVirtualAddress, toString, va, validateSize
-
Method Details
-
getBoundImportDescriptors
Returns the array of bound import descriptors defined in this bound import data directory.- Returns:
- the array of bound import descriptors defined in this bound import data directory
-
markup
public void markup(Program program, boolean isBinary, TaskMonitor monitor, MessageLog log, NTHeader nt) throws DuplicateNameException, CodeUnitInsertionException Description copied from interface:PeMarkupableMarks up a PE structure.- Parameters:
program- The program to markup.isBinary- True if the program is binary; otherwise, false.monitor- The monitor.log- The log.nt- The PE's NT Header structure.- Throws:
DuplicateNameExceptionCodeUnitInsertionException
-
getDirectoryName
- Specified by:
getDirectoryNamein classDataDirectory
-
parse
Description copied from class:DataDirectoryParses this data directory.- Specified by:
parsein classDataDirectory- Returns:
- True if parsing completed successfully; otherwise, false.
- Throws:
IOException- If there was an IO problem while parsing.
-
writeBytes
public void writeBytes(RandomAccessFile raf, DataConverter dc, PortableExecutable template) throws IOException Description copied from class:DataDirectoryDirectories that are not contained inside of sections should override this method to write their bytes into the specified file.- Overrides:
writeBytesin classDataDirectory- Parameters:
raf- the random access file used for outputdc- the data converter for endiannesstemplate- the original unadulterated PE- Throws:
IOException- if an I/O error occurs
-
addDescriptor
-