Skip to content

Commit

Permalink
pe: cache DataAfterSection for performance
Browse files Browse the repository at this point in the history
  • Loading branch information
williballenthin committed Jul 21, 2023
1 parent 722143e commit c3d72ed
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions objfile/pe.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,16 @@ import (
)

type peFile struct {
pe *pe.File
pe *pe.File
dataAfterSectionCache map[*pe.Section][]byte
}

func openPE(r io.ReaderAt) (rawFile, error) {
f, err := pe.NewFile(r)
if err != nil {
return nil, err
}
return &peFile{f}, nil
return &peFile{f, make(map[*pe.Section][]byte)}, nil
}

func (f *peFile) read_memory(VA uint64, size uint64) (data []byte, err error) {
Expand Down Expand Up @@ -127,6 +128,15 @@ func (f *peFile) symbols() ([]Sym, error) {
return syms, nil
}

func (f *peFile) dataAfterSection(sec *pe.Section) []byte {
if data, ok := f.dataAfterSectionCache[sec]; ok {
return data
}
data, _ := sec.Data()
f.dataAfterSectionCache[sec] = data
return data
}

func (f *peFile) pcln_scan() (candidates []PclntabCandidate, err error) {
var imageBase uint64
switch oh := f.pe.OptionalHeader.(type) {
Expand Down Expand Up @@ -176,7 +186,7 @@ func (f *peFile) pcln_scan() (candidates []PclntabCandidate, err error) {
// 2) if not found, byte scan for it
for _, sec := range f.pe.Sections {
// malware can split the pclntab across multiple sections, re-merge
data := f.pe.DataAfterSection(sec)
data := f.dataAfterSection(sec)

if !foundpcln {
matches := findAllOccurrences(data, pclntab_sigs)
Expand Down Expand Up @@ -288,7 +298,7 @@ func (f *peFile) pcln_scan() (candidates []PclntabCandidate, err error) {
if len(stompedmagic_candidates) != 0 {
for _, sec := range f.pe.Sections {
// malware can split the pclntab across multiple sections, re-merge
data := f.pe.DataAfterSection(sec)
data := f.dataAfterSection(sec)
for _, stompedMagicCandidate := range stompedmagic_candidates {
pclntab_va_candidate := stompedMagicCandidate.PclntabVa

Expand Down Expand Up @@ -391,7 +401,7 @@ func (f *peFile) moduledata_scan(pclntabVA uint64, is64bit bool, littleendian bo
scan:
for _, sec := range f.pe.Sections {
// malware can split the pclntab across multiple sections, re-merge
data := f.pe.DataAfterSection(sec)
data := f.dataAfterSection(sec)

if !foundmodule {
// fall back to scanning for structure using address of pclntab, which is first value in struc
Expand Down

0 comments on commit c3d72ed

Please sign in to comment.