Class NTHeader

java.lang.Object
ghidra.app.util.bin.format.pe.NTHeader
All Implemented Interfaces:
OffsetValidator, StructConverter

public class NTHeader extends Object implements StructConverter, OffsetValidator
A class to represent the IMAGE_NT_HEADERS32 and IMAGE_NT_HEADERS64 structs as defined in winnt.h.
 typedef struct _IMAGE_NT_HEADERS {
    DWORD Signature;
    IMAGE_FILE_HEADER FileHeader;
    IMAGE_OPTIONAL_HEADER32 OptionalHeader;
 };
 
  • Field Details

    • SIZEOF_SIGNATURE

      public static final int SIZEOF_SIGNATURE
      The size of the NT header signature.
      See Also:
    • MAX_SANE_COUNT

      public static final int MAX_SANE_COUNT
      See Also:
  • Constructor Details

  • Method Details

    • getName

      public String getName()
      Returns the name to use when converting into a structure data type.
      Returns:
      the name to use when converting into a structure data type
    • isRVAResoltionSectionAligned

      public boolean isRVAResoltionSectionAligned()
    • getFileHeader

      public FileHeader getFileHeader()
      Returns the file header.
      Returns:
      the file header
    • getOptionalHeader

      public OptionalHeader getOptionalHeader()
      Returns the optional header.
      Returns:
      the optional header
    • toDataType

      public DataType toDataType() throws DuplicateNameException, IOException
      Description copied from interface: StructConverter
      Returns a structure datatype representing the contents of the implementor of this interface.

      For example, given:

       class A {
           int foo;
           double bar;
       }
       

      The return value should be a structure data type with two data type components; an INT and a DOUBLE. The structure should contain field names and, if possible, field comments.

      Specified by:
      toDataType in interface StructConverter
      Returns:
      returns a structure datatype representing the implementor of this interface
      Throws:
      DuplicateNameException - when a datatype of the same name already exists
      IOException
      See Also:
    • rvaToPointer

      public int rvaToPointer(int rva)
      Converts a relative virtual address (RVA) into a pointer.
      Parameters:
      rva - the relative virtual address
      Returns:
      the pointer into binary image, 0 if not valid
    • rvaToPointer

      public long rvaToPointer(long rva)
      Converts a relative virtual address (RVA) into a pointer.
      Parameters:
      rva - the relative virtual address
      Returns:
      the pointer into binary image, -1 if not valid
    • checkPointer

      public boolean checkPointer(long ptr)
      Specified by:
      checkPointer in interface OffsetValidator
    • checkRVA

      public boolean checkRVA(long rva)
      Specified by:
      checkRVA in interface OffsetValidator
    • vaToPointer

      public int vaToPointer(int va)
      Converts a virtual address (VA) into a pointer.
      Parameters:
      va - the virtual address
      Returns:
      the pointer into binary image, 0 if not valid
    • vaToPointer

      public long vaToPointer(long va)
      Converts a virtual address (VA) into a pointer.
      Parameters:
      va - the virtual address
      Returns:
      the pointer into binary image, 0 if not valid