-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lookup.go
428 lines (332 loc) · 7.82 KB
/
lookup.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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
package gogsym
import (
"github.com/chimehq/binarycursor"
)
type SourceLocation struct {
Name string
File string
Line uint32
Offset uint32
}
type LookupResult struct {
Address uint64
StartAddr uint64
Size uint64
Name string
Locations []SourceLocation
}
func (g Gsym) LookupAddress(addr uint64) (LookupResult, error) {
return g.LookupTextRelativeAddress(addr - g.Header.BaseAddress)
}
func (g Gsym) LookupTextRelativeAddress(relAddr uint64) (LookupResult, error) {
lr := LookupResult{
Address: relAddr,
}
addrIdx, err := g.GetTextRelativeAddressIndex(relAddr)
if err != nil {
return lr, err
}
entryAddr, err := g.ReadAddressEntry(addrIdx)
if err != nil {
return lr, err
}
lr.StartAddr = entryAddr
addrInfoOffset, err := g.GetAddressInfoOffset(addrIdx)
if err != nil {
return lr, err
}
c := g.cursorAt(addrInfoOffset)
fnSize, err := c.ReadUint32()
if err != nil {
return lr, err
}
lr.Size = uint64(fnSize)
// check bounds, but only if the function has non-zero size
notContained := relAddr < entryAddr || relAddr > entryAddr+uint64(fnSize)
if notContained && fnSize > 0 {
return lr, ErrAddressNotFound
}
fnNameOffset, err := c.ReadUint32()
if err != nil {
return lr, err
}
name, err := g.GetString(int64(fnNameOffset))
if err != nil {
return lr, err
}
lr.Name = name
lineInfo, err := g.lookupLineInfo(c, entryAddr, relAddr)
if err != nil {
return lr, err
}
path, err := g.GetFile(lineInfo.entry.FileIndex)
if err != nil {
path = ""
}
entryLoc := SourceLocation{
Name: name,
Line: lineInfo.entry.Line,
Offset: uint32(relAddr - entryAddr),
File: path,
}
lr.Locations = []SourceLocation{entryLoc}
inlineLocs, err := g.locationsForInlineInfo(lineInfo.inline, relAddr)
if err != nil {
return lr, err
}
if len(inlineLocs) == 0 {
return lr, err
}
lr.Locations = []SourceLocation{}
// ok, this is really annoying. The inline info
// modifies the previous information. So, we have
// to keep track and change as we go. Also, of course,
// the array is in the reverse order.
for i := len(inlineLocs) - 1; i >= 0; i-- {
loc := inlineLocs[i]
adjustedLoc := loc
adjustedLoc.Line = entryLoc.Line
adjustedLoc.File = entryLoc.File
entryLoc = loc
lr.Locations = append(lr.Locations, adjustedLoc)
}
return lr, err
}
type InfoType uint32
const (
InfoTypeEndOfList InfoType = 0
InfoTypeLineTable InfoType = 1
InfoTypeInline InfoType = 2
)
type lineInfoResult struct {
entry LineEntry
inline inlineInfo
}
func (g Gsym) lookupLineInfo(c binarycursor.BinaryCursor, startAddr uint64, addr uint64) (lineInfoResult, error) {
done := false
result := lineInfoResult{}
for done == false {
infoType, err := c.ReadUint32()
if err != nil {
return result, err
}
_, err = c.ReadUint32()
if err != nil {
return result, err
}
switch InfoType(infoType) {
case InfoTypeEndOfList:
done = true
case InfoTypeLineTable:
result.entry, err = lookupLineTable(&c, startAddr, addr)
if err != nil {
return result, err
}
case InfoTypeInline:
result.inline, err = decodeInlineInfo(&c, startAddr)
if err != nil {
return result, err
}
}
}
return result, nil
}
func (g Gsym) locationsForInlineInfo(info inlineInfo, addr uint64) ([]SourceLocation, error) {
locations := []SourceLocation{}
if info.Contains(addr) == false {
return locations, nil
}
name, err := g.GetString(int64(info.NameOffset))
if err != nil {
return locations, err
}
file, err := g.GetFile(info.FileIndex)
if err != nil {
return locations, err
}
loc := SourceLocation{
Name: name,
File: file,
Line: info.Line,
Offset: uint32(addr - info.Ranges[0].Start),
}
locations = append(locations, loc)
for _, child := range info.Children {
sublocs, err := g.locationsForInlineInfo(child, addr)
if err != nil {
return locations, err
}
locations = append(locations, sublocs...)
}
return locations, nil
}
type LineEntry struct {
Address uint64
FileIndex uint32
Line uint32
}
type LineTableOpCode uint8
const (
LineTableOpEndSequence LineTableOpCode = 0x00
LineTableOpSetFile LineTableOpCode = 0x01
LineTableOpAdvancePC LineTableOpCode = 0x02
LineTableOpAdvanceLine LineTableOpCode = 0x03
LineTableOpFirstSpecial LineTableOpCode = 0x04
)
func lookupLineTable(c *binarycursor.BinaryCursor, startAddr uint64, addr uint64) (LineEntry, error) {
entry := LineEntry{
Address: startAddr,
}
minDelta, err := c.ReadSleb128()
if err != nil {
return LineEntry{}, err
}
maxDelta, err := c.ReadSleb128()
if err != nil {
return LineEntry{}, err
}
lineRange := maxDelta - minDelta + 1
firstLine, err := c.ReadUleb128()
if err != nil {
return LineEntry{}, err
}
entry.FileIndex = 1
entry.Line = uint32(firstLine)
nextEntry := entry
done := false
for done == false {
op, err := c.ReadUint8()
if err != nil {
return entry, err
}
switch LineTableOpCode(op) {
case LineTableOpEndSequence:
done = true
case LineTableOpSetFile:
idx, err := c.ReadUleb128()
if err != nil {
return entry, err
}
nextEntry.FileIndex = uint32(idx)
case LineTableOpAdvancePC:
addrDelta, err := c.ReadUleb128()
if err != nil {
return entry, err
}
nextEntry.Address += addrDelta
case LineTableOpAdvanceLine:
lineDelta, err := c.ReadUleb128()
if err != nil {
return entry, err
}
nextEntry.Line += uint32(lineDelta)
default:
// op contains both address and line increment
adjusted := op - uint8(LineTableOpFirstSpecial)
lineDelta := minDelta + (int64(adjusted) % lineRange)
addrDelta := int64(adjusted) / lineRange
nextEntry.Line += uint32(lineDelta)
nextEntry.Address += uint64(addrDelta)
}
if nextEntry.Address > addr {
return entry, nil
}
entry = nextEntry
}
// if we get to the end, return the last entry
return entry, nil
}
type addressRange struct {
Start uint64
Size uint64
}
func (r addressRange) End() uint64 {
return r.Start + r.Size
}
func decodeAddressRanges(c *binarycursor.BinaryCursor, baseAddr uint64) ([]addressRange, error) {
ranges := []addressRange{}
length, err := c.ReadUleb128()
if err != nil {
return ranges, err
}
for i := 0; i < int(length); i++ {
r := addressRange{}
v, err := c.ReadUleb128()
if err != nil {
return ranges, err
}
r.Start = v + baseAddr
v, err = c.ReadUleb128()
if err != nil {
return ranges, err
}
r.Size = v
ranges = append(ranges, r)
}
return ranges, nil
}
type inlineInfo struct {
NameOffset uint32
FileIndex uint32
Line uint32
Offset uint64
Ranges []addressRange
Children []inlineInfo
}
func (i inlineInfo) Ending() bool {
// the tree terminates with empty ranges
return len(i.Ranges) == 0
}
func (i inlineInfo) Contains(addr uint64) bool {
if len(i.Ranges) == 0 {
return false
}
for _, r := range i.Ranges {
if addr >= r.Start && addr <= r.End() {
return true
}
}
return false
}
func decodeInlineInfo(c *binarycursor.BinaryCursor, startAddr uint64) (inlineInfo, error) {
info := inlineInfo{}
ranges, err := decodeAddressRanges(c, startAddr)
if err != nil {
return info, err
}
info.Ranges = ranges
if info.Ending() {
return info, nil
}
hasChildren, err := c.ReadUint8()
if err != nil {
return info, err
}
nameStrOffset, err := c.ReadUint32()
if err != nil {
return info, err
}
info.NameOffset = nameStrOffset
fileIndex, err := c.ReadUleb128()
if err != nil {
return info, err
}
info.FileIndex = uint32(fileIndex)
line, err := c.ReadUleb128()
if err != nil {
return info, err
}
info.Line = uint32(line)
childBaseAddr := ranges[0].Start // always relative to the parent address
for hasChildren == 1 {
child, err := decodeInlineInfo(c, childBaseAddr)
if err != nil {
return info, err
}
if child.Ending() {
break
}
info.Children = append(info.Children, child)
}
return info, nil
}