Skip to content

Commit

Permalink
PE: Fix import parser for non-well-formed import table
Browse files Browse the repository at this point in the history
  • Loading branch information
kkent030315 committed Oct 29, 2024
1 parent d096260 commit a36498f
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 4 deletions.
50 changes: 46 additions & 4 deletions src/pe/import.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ impl<'a> SyntheticImportLookupTableEntry<'a> {
use self::SyntheticImportLookupTableEntry::*;
if bitfield.is_ordinal() {
let ordinal = bitfield.to_ordinal();
debug!("importing by ordinal {:#x}", ordinal);
debug!("importing by ordinal {:#x} ({})", ordinal, ordinal);
OrdinalNumber(ordinal)
} else {
let rva = bitfield.to_rva();
Expand Down Expand Up @@ -171,13 +171,21 @@ pub struct ImportDirectoryEntry {
pub const SIZEOF_IMPORT_DIRECTORY_ENTRY: usize = 20;

impl ImportDirectoryEntry {
/// Whether the entire fields are set to zero
pub fn is_null(&self) -> bool {
(self.import_lookup_table_rva == 0)
&& (self.time_date_stamp == 0)
&& (self.forwarder_chain == 0)
&& (self.name_rva == 0)
&& (self.import_address_table_rva == 0)
}

/// Whether the entry is _possibly_ valid.
///
/// At least [`Self::name_rva`] or [`Self::import_address_table_rva`] must be non-zero
pub fn is_possibly_valid(&self) -> bool {
self.name_rva != 0 && self.import_address_table_rva != 0
}
}

#[derive(Debug)]
Expand Down Expand Up @@ -342,8 +350,8 @@ impl<'a> ImportData<'a> {
loop {
let import_directory_entry: ImportDirectoryEntry =
bytes.gread_with(offset, scroll::LE)?;
debug!("{:#?}", import_directory_entry);
if import_directory_entry.is_null() {
debug!("{:#?} at {:#x}", import_directory_entry, offset);
if import_directory_entry.is_null() || !import_directory_entry.is_possibly_valid() {
break;
} else {
let entry = SyntheticImportDirectoryEntry::parse_with_opts::<T>(
Expand All @@ -353,7 +361,7 @@ impl<'a> ImportData<'a> {
file_alignment,
opts,
)?;
debug!("entry {:#?}", entry);
debug!("entry {:#?} at {:#x}", entry, offset);
import_data.push(entry);
}
}
Expand Down Expand Up @@ -415,3 +423,37 @@ impl<'a> Import<'a> {
Ok(imports)
}
}

#[cfg(test)]
mod tests {
const NOT_WELL_FORMED_IMPORT: &[u8] =
include_bytes!("../../tests/bins/pe/not_well_formed_import.exe.bin");
const WELL_FORMED_IMPORT: &[u8] =
include_bytes!("../../tests/bins/pe/well_formed_import.exe.bin");

#[test]
fn parse_non_well_formed_import_table() {
let binary = crate::pe::PE::parse(NOT_WELL_FORMED_IMPORT).expect("Unable to parse binary");
assert_eq!(binary.import_data.is_some(), true);
assert_eq!(binary.imports.len(), 1);
assert_eq!(binary.imports[0].name, "ORDINAL 51398");
assert_eq!(binary.imports[0].dll, "abcd.dll");
assert_eq!(binary.imports[0].ordinal, 51398);
assert_eq!(binary.imports[0].offset, 0x7014);
assert_eq!(binary.imports[0].rva, 0);
assert_eq!(binary.imports[0].size, 8);
}

#[test]
fn parse_well_formed_import_table() {
let binary = crate::pe::PE::parse(WELL_FORMED_IMPORT).expect("Unable to parse binary");
assert_eq!(binary.import_data.is_some(), true);
assert_eq!(binary.imports.len(), 1);
assert_eq!(binary.imports[0].name, "GetLastError");
assert_eq!(binary.imports[0].dll, "KERNEL32.dll");
assert_eq!(binary.imports[0].ordinal, 647);
assert_eq!(binary.imports[0].offset, 0x2000);
assert_eq!(binary.imports[0].rva, 0x21B8);
assert_eq!(binary.imports[0].size, 8);
}
}
Binary file added tests/bins/pe/not_well_formed_import.exe.bin
Binary file not shown.
Binary file added tests/bins/pe/well_formed_import.exe.bin
Binary file not shown.

0 comments on commit a36498f

Please sign in to comment.