forked from goretk/gore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pe.go
227 lines (198 loc) · 5.5 KB
/
pe.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
// This file is part of GoRE.
//
// Copyright (C) 2019-2024 GoRE Authors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package gore
import (
"cmp"
"debug/dwarf"
"debug/pe"
"encoding/binary"
"errors"
"fmt"
"io"
"slices"
"sync"
)
func openPE(r io.ReaderAt) (peF *peFile, err error) {
// Parsing by the file by debug/pe can panic if the PE file is malformed.
// To prevent a crash, we recover the panic and return it as an error
// instead.
defer func() {
if r := recover(); r != nil {
err = fmt.Errorf("error when processing PE file, probably corrupt: %s", r)
}
}()
f, err := pe.NewFile(r)
if err != nil {
err = fmt.Errorf("error when parsing the PE file: %w", err)
return
}
imageBase := uint64(0)
switch hdr := f.OptionalHeader.(type) {
case *pe.OptionalHeader32:
imageBase = uint64(hdr.ImageBase)
case *pe.OptionalHeader64:
imageBase = hdr.ImageBase
default:
err = errors.New("unknown optional header type")
return
}
peF = &peFile{file: f, reader: r, imageBase: imageBase}
peF.getsymtab = sync.OnceValues(peF.initSymTab)
return
}
var _ fileHandler = (*peFile)(nil)
type peFile struct {
file *pe.File
reader io.ReaderAt
imageBase uint64
getsymtab func() (map[string]Symbol, error)
}
func (p *peFile) initSymTab() (map[string]Symbol, error) {
var syms []Symbol
for _, s := range p.file.Symbols {
const (
NUndef = 0 // An undefined (extern) symbol
NAbs = -1 // An absolute symbol (e_value is a constant, not an address)
NDebug = -2 // A debugging symbol
)
sym := Symbol{Name: s.Name, Value: uint64(s.Value), Size: 0}
switch s.SectionNumber {
case NUndef, NAbs, NDebug: // do nothing
default:
if s.SectionNumber < 0 || len(p.file.Sections) < int(s.SectionNumber) {
return nil, fmt.Errorf("invalid section number in symbol table")
}
sect := p.file.Sections[s.SectionNumber-1]
sym.Value += p.imageBase + uint64(sect.VirtualAddress)
}
syms = append(syms, sym)
}
slices.SortStableFunc(syms, func(a, b Symbol) int {
return cmp.Compare(a.Value, b.Value)
})
for i := 0; i < len(syms)-1; i++ {
syms[i].Size = syms[i+1].Value - syms[i].Value
}
symm := make(map[string]Symbol)
for _, sym := range syms {
symm[sym.Name] = sym
}
return symm, nil
}
func (p *peFile) getSymbol(name string) (Symbol, error) {
symm, err := p.getsymtab()
if err != nil {
return Symbol{}, err
}
sym, ok := symm[name]
if !ok {
return Symbol{}, ErrSymbolNotFound
}
return sym, nil
}
func (p *peFile) getParsedFile() any {
return p.file
}
func (p *peFile) getReader() io.ReaderAt {
return p.reader
}
func (p *peFile) Close() error {
err := p.file.Close()
if err != nil {
return err
}
return tryClose(p.reader)
}
func (p *peFile) getRData() ([]byte, error) {
section := p.file.Section(".rdata")
if section == nil {
return nil, ErrSectionDoesNotExist
}
return section.Data()
}
func (p *peFile) getCodeSection() (uint64, []byte, error) {
section := p.file.Section(".text")
if section == nil {
return 0, nil, ErrSectionDoesNotExist
}
data, err := section.Data()
return p.imageBase + uint64(section.VirtualAddress), data, err
}
func (p *peFile) moduledataSection() string {
return ".data"
}
func (p *peFile) getPCLNTABData() (uint64, []byte, error) {
for _, v := range []string{".rdata", ".text"} {
sec := p.file.Section(v)
if sec == nil {
continue
}
secData, err := sec.Data()
if err != nil {
continue
}
tab, err := searchSectionForTab(secData, p.getFileInfo().ByteOrder)
if errors.Is(ErrNoPCLNTab, err) {
continue
}
addr := uint64(sec.VirtualAddress) + uint64(len(secData)-len(tab))
return p.imageBase + addr, tab, err
}
return 0, []byte{}, ErrNoPCLNTab
}
func (p *peFile) getSectionDataFromAddress(address uint64) (uint64, []byte, error) {
for _, section := range p.file.Sections {
if section.Offset == 0 {
// Only exist in memory
continue
}
if p.imageBase+uint64(section.VirtualAddress) <= address && address < p.imageBase+uint64(section.VirtualAddress+section.Size) {
data, err := section.Data()
return p.imageBase + uint64(section.VirtualAddress), data, err
}
}
return 0, nil, ErrSectionDoesNotExist
}
func (p *peFile) getSectionData(name string) (uint64, []byte, error) {
section := p.file.Section(name)
if section == nil {
return 0, nil, ErrSectionDoesNotExist
}
data, err := section.Data()
return p.imageBase + uint64(section.VirtualAddress), data, err
}
func (p *peFile) getFileInfo() *FileInfo {
fi := &FileInfo{ByteOrder: binary.LittleEndian, OS: "windows"}
if p.file.Machine == pe.IMAGE_FILE_MACHINE_I386 {
fi.WordSize = intSize32
fi.Arch = Arch386
} else {
fi.WordSize = intSize64
fi.Arch = ArchAMD64
}
return fi
}
func (p *peFile) getBuildID() (string, error) {
_, data, err := p.getCodeSection()
if err != nil {
return "", fmt.Errorf("failed to get code section: %w", err)
}
return parseBuildIDFromRaw(data)
}
func (p *peFile) getDwarf() (*dwarf.Data, error) {
return p.file.DWARF()
}