-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
symbol_test.go
157 lines (145 loc) · 3.8 KB
/
symbol_test.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
// Copyright 2018 Saferwall. All rights reserved.
// Use of this source code is governed by Apache v2 license
// license that can be found in the LICENSE file.
package pe
import "testing"
type TestCOFFSymbol struct {
errTooManySymbols error
symbolsCount int
symbolIdx int
symbol COFFSymbol
stringTableOffset uint32
symbolName string
sectionNumberName string
symbolTypeString string
}
var symbolTests = []struct {
in string
out TestCOFFSymbol
}{
{
getAbsoluteFilePath("test/liblzo2-2.dll"),
TestCOFFSymbol{
errTooManySymbols: nil,
symbolsCount: 50,
symbolIdx: 0,
symbol: COFFSymbol{
Name: [8]byte{0, 0, 0, 0, 4, 0, 0, 0},
Value: 0x2ac,
SectionNumber: 8,
Type: 0x0,
StorageClass: 0x2,
NumberOfAuxSymbols: 0x0,
},
stringTableOffset: 0x35184,
symbolName: "__imp_abort",
sectionNumberName: ".idata",
symbolTypeString: "Null",
},
},
{
getAbsoluteFilePath(
"test/0103daa751660333b7ae5f098795df58f07e3031563e042d2eb415bffa71fe7a",
),
TestCOFFSymbol{
errTooManySymbols: nil,
symbolsCount: 346,
symbolIdx: 3,
symbol: COFFSymbol{
Name: [8]byte{0, 0, 0, 0, 4, 0, 0, 0},
Value: 0x2ac,
SectionNumber: 8,
Type: 0x0,
StorageClass: 0x2,
NumberOfAuxSymbols: 0x0,
},
stringTableOffset: 0x1b054,
symbolName: "___mingw_CRTStartup",
sectionNumberName: ".text",
symbolTypeString: "",
},
},
{
getAbsoluteFilePath(
"test/0000e876c5b712b6b7b3ce97f757ddd918fb3dbdc5a3938e850716fbd841309f",
),
TestCOFFSymbol{
errTooManySymbols: errCOFFSymbolsTooHigh,
},
},
}
func TestParseCOFFSymbolTable(t *testing.T) {
for _, tt := range symbolTests {
t.Run(tt.in, func(t *testing.T) {
ops := Options{Fast: true}
file, err := New(tt.in, &ops)
if err != nil {
t.Fatalf("New(%s) failed, reason: %v", tt.in, err)
}
err = file.Parse()
if err != nil {
t.Fatalf("Parse(%s) failed, reason: %v", tt.in, err)
}
err = file.ParseCOFFSymbolTable()
if err != tt.out.errTooManySymbols {
t.Errorf(
"errTooManySymbols assertion failed, reason: %v",
tt.out.errTooManySymbols,
)
}
// exit early when err is errCOFFSymbolsTooHigh.
if err == errCOFFSymbolsTooHigh {
return
}
if len(file.COFF.SymbolTable) != tt.out.symbolsCount {
t.Errorf(
"symbolsCount assertion failed, want: %d, got: %d",
tt.out.symbolsCount,
len(file.COFF.SymbolTable),
)
}
if file.COFF.StringTableOffset != tt.out.stringTableOffset {
t.Errorf(
"stringTableOffset assertion failed, want: %d, got: %d",
tt.out.stringTableOffset,
file.COFF.StringTableOffset,
)
}
if !stringInSlice(tt.out.symbolName, file.COFF.StringTable) {
t.Errorf(
"symbolName assertion failed, want: %s, got: %v",
tt.out.symbolName,
file.COFF.StringTable,
)
}
coffSymbol := file.COFF.SymbolTable[tt.out.symbolIdx]
symbolNameStr, err := coffSymbol.String(file)
if err != nil {
t.Errorf("COFFSymbol.String() failed with: %v", err)
}
if symbolNameStr != tt.out.symbolName {
t.Errorf(
"symbol name to string failed, want: %s, got: %s",
tt.out.symbolName,
symbolNameStr,
)
}
secNumName := coffSymbol.SectionNumberName(file)
if secNumName != tt.out.sectionNumberName {
t.Errorf(
"SectionNumberName assertion failed, want: %s, got: %s",
tt.out.sectionNumberName,
secNumName,
)
}
typeString := file.PrettyCOFFTypeRepresentation(coffSymbol.Type)
if typeString != tt.out.symbolTypeString {
t.Errorf(
"PrettyCOFFTypeRepresentation assertion failed, want: %s, got: %s",
tt.out.symbolTypeString,
typeString,
)
}
})
}
}