-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtracev1.go
567 lines (535 loc) · 17.2 KB
/
tracev1.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
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
// Copyright 2024 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// This file implements conversion from v1 (Go 1.11–Go 1.21) traces to the v2
// format (Go 1.22+).
//
// Most events have direct equivalents in v2, at worst requiring arguments to
// be reordered. Some events, such as GoWaiting need to look ahead for follow-up
// events to determine the correct translation. GoSyscall, which is an
// instantaneous event, gets turned into a 1 ns long pair of
// GoSyscallStart+GoSyscallEnd, unless we observe a GoSysBlock, in which case we
// emit a GoSyscallStart+GoSyscallEndBlocked pair with the correct duration
// (i.e. starting at the original GoSyscall).
//
// The resulting trace treats the trace v1 as a single, large generation,
// sharing a single evTable for all events.
//
// We use a new (compared to what was used for 'go tool trace' in earlier
// versions of Go) parser for v1 traces that is optimized for speed, low memory
// usage, and minimal GC pressure. It allocates events in batches so that even
// though we have to load the entire trace into memory, the conversion process
// shouldn't result in a doubling of memory usage, even if all converted events
// are kept alive, as we free batches once we're done with them.
//
// The conversion process is lossless.
package trace
import (
"errors"
"fmt"
"internal/trace/internal/tracev1"
"internal/trace/tracev2"
"io"
)
type traceV1Converter struct {
trace tracev1.Trace
evt *evTable
preInit bool
createdPreInit map[GoID]struct{}
events tracev1.Events
extra []Event
extraArr [3]Event
tasks map[TaskID]taskState
seenProcs map[ProcID]struct{}
lastTs Time
procMs map[ProcID]ThreadID
lastStwReason uint64
inlineToStringID []uint64
builtinToStringID []uint64
}
const (
// Block reasons
sForever = iota
sPreempted
sGosched
sSleep
sChanSend
sChanRecv
sNetwork
sSync
sSyncCond
sSelect
sEmpty
sMarkAssistWait
// STW kinds
sSTWUnknown
sSTWGCMarkTermination
sSTWGCSweepTermination
sSTWWriteHeapDump
sSTWGoroutineProfile
sSTWGoroutineProfileCleanup
sSTWAllGoroutinesStackTrace
sSTWReadMemStats
sSTWAllThreadsSyscall
sSTWGOMAXPROCS
sSTWStartTrace
sSTWStopTrace
sSTWCountPagesInUse
sSTWReadMetricsSlow
sSTWReadMemStatsSlow
sSTWPageCachePagesLeaked
sSTWResetDebugLog
sLast
)
func (it *traceV1Converter) init(pr tracev1.Trace) error {
it.trace = pr
it.preInit = true
it.createdPreInit = make(map[GoID]struct{})
it.evt = &evTable{pcs: make(map[uint64]frame)}
it.events = pr.Events
it.extra = it.extraArr[:0]
it.tasks = make(map[TaskID]taskState)
it.seenProcs = make(map[ProcID]struct{})
it.procMs = make(map[ProcID]ThreadID)
it.lastTs = -1
evt := it.evt
// Convert from trace v1's Strings map to our dataTable.
var max uint64
for id, s := range pr.Strings {
evt.strings.insert(stringID(id), s)
if id > max {
max = id
}
}
pr.Strings = nil
// Add all strings used for UserLog. In the trace v1 format, these were
// stored inline and didn't have IDs. We generate IDs for them.
if max+uint64(len(pr.InlineStrings)) < max {
return errors.New("trace contains too many strings")
}
var addErr error
add := func(id stringID, s string) {
if err := evt.strings.insert(id, s); err != nil && addErr == nil {
addErr = err
}
}
for id, s := range pr.InlineStrings {
nid := max + 1 + uint64(id)
it.inlineToStringID = append(it.inlineToStringID, nid)
add(stringID(nid), s)
}
max += uint64(len(pr.InlineStrings))
pr.InlineStrings = nil
// Add strings that the converter emits explicitly.
if max+uint64(sLast) < max {
return errors.New("trace contains too many strings")
}
it.builtinToStringID = make([]uint64, sLast)
addBuiltin := func(c int, s string) {
nid := max + 1 + uint64(c)
it.builtinToStringID[c] = nid
add(stringID(nid), s)
}
addBuiltin(sForever, "forever")
addBuiltin(sPreempted, "preempted")
addBuiltin(sGosched, "runtime.Gosched")
addBuiltin(sSleep, "sleep")
addBuiltin(sChanSend, "chan send")
addBuiltin(sChanRecv, "chan receive")
addBuiltin(sNetwork, "network")
addBuiltin(sSync, "sync")
addBuiltin(sSyncCond, "sync.(*Cond).Wait")
addBuiltin(sSelect, "select")
addBuiltin(sEmpty, "")
addBuiltin(sMarkAssistWait, "GC mark assist wait for work")
addBuiltin(sSTWUnknown, "")
addBuiltin(sSTWGCMarkTermination, "GC mark termination")
addBuiltin(sSTWGCSweepTermination, "GC sweep termination")
addBuiltin(sSTWWriteHeapDump, "write heap dump")
addBuiltin(sSTWGoroutineProfile, "goroutine profile")
addBuiltin(sSTWGoroutineProfileCleanup, "goroutine profile cleanup")
addBuiltin(sSTWAllGoroutinesStackTrace, "all goroutine stack trace")
addBuiltin(sSTWReadMemStats, "read mem stats")
addBuiltin(sSTWAllThreadsSyscall, "AllThreadsSyscall")
addBuiltin(sSTWGOMAXPROCS, "GOMAXPROCS")
addBuiltin(sSTWStartTrace, "start trace")
addBuiltin(sSTWStopTrace, "stop trace")
addBuiltin(sSTWCountPagesInUse, "CountPagesInUse (test)")
addBuiltin(sSTWReadMetricsSlow, "ReadMetricsSlow (test)")
addBuiltin(sSTWReadMemStatsSlow, "ReadMemStatsSlow (test)")
addBuiltin(sSTWPageCachePagesLeaked, "PageCachePagesLeaked (test)")
addBuiltin(sSTWResetDebugLog, "ResetDebugLog (test)")
if addErr != nil {
// This should be impossible but let's be safe.
return fmt.Errorf("couldn't add strings: %w", addErr)
}
it.evt.strings.compactify()
// Convert stacks.
for id, stk := range pr.Stacks {
evt.stacks.insert(stackID(id), stack{pcs: stk})
}
// OPT(dh): if we could share the frame type between this package and
// tracev1 we wouldn't have to copy the map.
for pc, f := range pr.PCs {
evt.pcs[pc] = frame{
pc: pc,
funcID: stringID(f.Fn),
fileID: stringID(f.File),
line: uint64(f.Line),
}
}
pr.Stacks = nil
pr.PCs = nil
evt.stacks.compactify()
return nil
}
// next returns the next event, io.EOF if there are no more events, or a
// descriptive error for invalid events.
func (it *traceV1Converter) next() (Event, error) {
if len(it.extra) > 0 {
ev := it.extra[0]
it.extra = it.extra[1:]
if len(it.extra) == 0 {
it.extra = it.extraArr[:0]
}
// Two events aren't allowed to fall on the same timestamp in the new API,
// but this may happen when we produce EvGoStatus events
if ev.base.time <= it.lastTs {
ev.base.time = it.lastTs + 1
}
it.lastTs = ev.base.time
return ev, nil
}
oev, ok := it.events.Pop()
if !ok {
return Event{}, io.EOF
}
ev, err := it.convertEvent(oev)
if err == errSkip {
return it.next()
} else if err != nil {
return Event{}, err
}
// Two events aren't allowed to fall on the same timestamp in the new API,
// but this may happen when we produce EvGoStatus events
if ev.base.time <= it.lastTs {
ev.base.time = it.lastTs + 1
}
it.lastTs = ev.base.time
return ev, nil
}
var errSkip = errors.New("skip event")
// convertEvent converts an event from the trace v1 format to zero or more
// events in the new format. Most events translate 1 to 1. Some events don't
// result in an event right away, in which case convertEvent returns errSkip.
// Some events result in more than one new event; in this case, convertEvent
// returns the first event and stores additional events in it.extra. When
// encountering events that tracev1 shouldn't be able to emit, ocnvertEvent
// returns a descriptive error.
func (it *traceV1Converter) convertEvent(ev *tracev1.Event) (OUT Event, ERR error) {
var mappedType tracev2.EventType
var mappedArgs timedEventArgs
copy(mappedArgs[:], ev.Args[:])
switch ev.Type {
case tracev1.EvGomaxprocs:
mappedType = tracev2.EvProcsChange
if it.preInit {
// The first EvGomaxprocs signals the end of trace initialization. At this point we've seen
// all goroutines that already existed at trace begin.
it.preInit = false
for gid := range it.createdPreInit {
// These are goroutines that already existed when tracing started but for which we
// received neither GoWaiting, GoInSyscall, or GoStart. These are goroutines that are in
// the states _Gidle or _Grunnable.
it.extra = append(it.extra, Event{
ctx: schedCtx{
// G: GoID(gid),
G: NoGoroutine,
P: NoProc,
M: NoThread,
},
table: it.evt,
base: baseEvent{
typ: tracev2.EvGoStatus,
time: Time(ev.Ts),
args: timedEventArgs{uint64(gid), ^uint64(0), uint64(tracev2.GoRunnable)},
},
})
}
it.createdPreInit = nil
return Event{}, errSkip
}
case tracev1.EvProcStart:
it.procMs[ProcID(ev.P)] = ThreadID(ev.Args[0])
if _, ok := it.seenProcs[ProcID(ev.P)]; ok {
mappedType = tracev2.EvProcStart
mappedArgs = timedEventArgs{uint64(ev.P)}
} else {
it.seenProcs[ProcID(ev.P)] = struct{}{}
mappedType = tracev2.EvProcStatus
mappedArgs = timedEventArgs{uint64(ev.P), uint64(tracev2.ProcRunning)}
}
case tracev1.EvProcStop:
if _, ok := it.seenProcs[ProcID(ev.P)]; ok {
mappedType = tracev2.EvProcStop
mappedArgs = timedEventArgs{uint64(ev.P)}
} else {
it.seenProcs[ProcID(ev.P)] = struct{}{}
mappedType = tracev2.EvProcStatus
mappedArgs = timedEventArgs{uint64(ev.P), uint64(tracev2.ProcIdle)}
}
case tracev1.EvGCStart:
mappedType = tracev2.EvGCBegin
case tracev1.EvGCDone:
mappedType = tracev2.EvGCEnd
case tracev1.EvSTWStart:
sid := it.builtinToStringID[sSTWUnknown+it.trace.STWReason(ev.Args[0])]
it.lastStwReason = sid
mappedType = tracev2.EvSTWBegin
mappedArgs = timedEventArgs{uint64(sid)}
case tracev1.EvSTWDone:
mappedType = tracev2.EvSTWEnd
mappedArgs = timedEventArgs{it.lastStwReason}
case tracev1.EvGCSweepStart:
mappedType = tracev2.EvGCSweepBegin
case tracev1.EvGCSweepDone:
mappedType = tracev2.EvGCSweepEnd
case tracev1.EvGoCreate:
if it.preInit {
it.createdPreInit[GoID(ev.Args[0])] = struct{}{}
return Event{}, errSkip
}
mappedType = tracev2.EvGoCreate
case tracev1.EvGoStart:
if it.preInit {
mappedType = tracev2.EvGoStatus
mappedArgs = timedEventArgs{ev.Args[0], ^uint64(0), uint64(tracev2.GoRunning)}
delete(it.createdPreInit, GoID(ev.Args[0]))
} else {
mappedType = tracev2.EvGoStart
}
case tracev1.EvGoStartLabel:
it.extra = []Event{{
ctx: schedCtx{
G: GoID(ev.G),
P: ProcID(ev.P),
M: it.procMs[ProcID(ev.P)],
},
table: it.evt,
base: baseEvent{
typ: tracev2.EvGoLabel,
time: Time(ev.Ts),
args: timedEventArgs{ev.Args[2]},
},
}}
return Event{
ctx: schedCtx{
G: GoID(ev.G),
P: ProcID(ev.P),
M: it.procMs[ProcID(ev.P)],
},
table: it.evt,
base: baseEvent{
typ: tracev2.EvGoStart,
time: Time(ev.Ts),
args: mappedArgs,
},
}, nil
case tracev1.EvGoEnd:
mappedType = tracev2.EvGoDestroy
case tracev1.EvGoStop:
mappedType = tracev2.EvGoBlock
mappedArgs = timedEventArgs{uint64(it.builtinToStringID[sForever]), uint64(ev.StkID)}
case tracev1.EvGoSched:
mappedType = tracev2.EvGoStop
mappedArgs = timedEventArgs{uint64(it.builtinToStringID[sGosched]), uint64(ev.StkID)}
case tracev1.EvGoPreempt:
mappedType = tracev2.EvGoStop
mappedArgs = timedEventArgs{uint64(it.builtinToStringID[sPreempted]), uint64(ev.StkID)}
case tracev1.EvGoSleep:
mappedType = tracev2.EvGoBlock
mappedArgs = timedEventArgs{uint64(it.builtinToStringID[sSleep]), uint64(ev.StkID)}
case tracev1.EvGoBlock:
mappedType = tracev2.EvGoBlock
mappedArgs = timedEventArgs{uint64(it.builtinToStringID[sEmpty]), uint64(ev.StkID)}
case tracev1.EvGoUnblock:
mappedType = tracev2.EvGoUnblock
case tracev1.EvGoBlockSend:
mappedType = tracev2.EvGoBlock
mappedArgs = timedEventArgs{uint64(it.builtinToStringID[sChanSend]), uint64(ev.StkID)}
case tracev1.EvGoBlockRecv:
mappedType = tracev2.EvGoBlock
mappedArgs = timedEventArgs{uint64(it.builtinToStringID[sChanRecv]), uint64(ev.StkID)}
case tracev1.EvGoBlockSelect:
mappedType = tracev2.EvGoBlock
mappedArgs = timedEventArgs{uint64(it.builtinToStringID[sSelect]), uint64(ev.StkID)}
case tracev1.EvGoBlockSync:
mappedType = tracev2.EvGoBlock
mappedArgs = timedEventArgs{uint64(it.builtinToStringID[sSync]), uint64(ev.StkID)}
case tracev1.EvGoBlockCond:
mappedType = tracev2.EvGoBlock
mappedArgs = timedEventArgs{uint64(it.builtinToStringID[sSyncCond]), uint64(ev.StkID)}
case tracev1.EvGoBlockNet:
mappedType = tracev2.EvGoBlock
mappedArgs = timedEventArgs{uint64(it.builtinToStringID[sNetwork]), uint64(ev.StkID)}
case tracev1.EvGoBlockGC:
mappedType = tracev2.EvGoBlock
mappedArgs = timedEventArgs{uint64(it.builtinToStringID[sMarkAssistWait]), uint64(ev.StkID)}
case tracev1.EvGoSysCall:
// Look for the next event for the same G to determine if the syscall
// blocked.
blocked := false
it.events.All()(func(nev *tracev1.Event) bool {
if nev.G != ev.G {
return true
}
// After an EvGoSysCall, the next event on the same G will either be
// EvGoSysBlock to denote a blocking syscall, or some other event
// (or the end of the trace) if the syscall didn't block.
if nev.Type == tracev1.EvGoSysBlock {
blocked = true
}
return false
})
if blocked {
mappedType = tracev2.EvGoSyscallBegin
mappedArgs = timedEventArgs{1: uint64(ev.StkID)}
} else {
// Convert the old instantaneous syscall event to a pair of syscall
// begin and syscall end and give it the shortest possible duration,
// 1ns.
out1 := Event{
ctx: schedCtx{
G: GoID(ev.G),
P: ProcID(ev.P),
M: it.procMs[ProcID(ev.P)],
},
table: it.evt,
base: baseEvent{
typ: tracev2.EvGoSyscallBegin,
time: Time(ev.Ts),
args: timedEventArgs{1: uint64(ev.StkID)},
},
}
out2 := Event{
ctx: out1.ctx,
table: it.evt,
base: baseEvent{
typ: tracev2.EvGoSyscallEnd,
time: Time(ev.Ts + 1),
args: timedEventArgs{},
},
}
it.extra = append(it.extra, out2)
return out1, nil
}
case tracev1.EvGoSysExit:
mappedType = tracev2.EvGoSyscallEndBlocked
case tracev1.EvGoSysBlock:
return Event{}, errSkip
case tracev1.EvGoWaiting:
mappedType = tracev2.EvGoStatus
mappedArgs = timedEventArgs{ev.Args[0], ^uint64(0), uint64(tracev2.GoWaiting)}
delete(it.createdPreInit, GoID(ev.Args[0]))
case tracev1.EvGoInSyscall:
mappedType = tracev2.EvGoStatus
// In the new tracer, GoStatus with GoSyscall knows what thread the
// syscall is on. In trace v1, EvGoInSyscall doesn't contain that
// information and all we can do here is specify NoThread.
mappedArgs = timedEventArgs{ev.Args[0], ^uint64(0), uint64(tracev2.GoSyscall)}
delete(it.createdPreInit, GoID(ev.Args[0]))
case tracev1.EvHeapAlloc:
mappedType = tracev2.EvHeapAlloc
case tracev1.EvHeapGoal:
mappedType = tracev2.EvHeapGoal
case tracev1.EvGCMarkAssistStart:
mappedType = tracev2.EvGCMarkAssistBegin
case tracev1.EvGCMarkAssistDone:
mappedType = tracev2.EvGCMarkAssistEnd
case tracev1.EvUserTaskCreate:
mappedType = tracev2.EvUserTaskBegin
parent := ev.Args[1]
if parent == 0 {
parent = uint64(NoTask)
}
mappedArgs = timedEventArgs{ev.Args[0], parent, ev.Args[2], uint64(ev.StkID)}
name, _ := it.evt.strings.get(stringID(ev.Args[2]))
it.tasks[TaskID(ev.Args[0])] = taskState{name: name, parentID: TaskID(ev.Args[1])}
case tracev1.EvUserTaskEnd:
mappedType = tracev2.EvUserTaskEnd
// Event.Task expects the parent and name to be smuggled in extra args
// and as extra strings.
ts, ok := it.tasks[TaskID(ev.Args[0])]
if ok {
delete(it.tasks, TaskID(ev.Args[0]))
mappedArgs = timedEventArgs{
ev.Args[0],
ev.Args[1],
uint64(ts.parentID),
uint64(it.evt.addExtraString(ts.name)),
}
} else {
mappedArgs = timedEventArgs{ev.Args[0], ev.Args[1], uint64(NoTask), uint64(it.evt.addExtraString(""))}
}
case tracev1.EvUserRegion:
switch ev.Args[1] {
case 0: // start
mappedType = tracev2.EvUserRegionBegin
case 1: // end
mappedType = tracev2.EvUserRegionEnd
}
mappedArgs = timedEventArgs{ev.Args[0], ev.Args[2], uint64(ev.StkID)}
case tracev1.EvUserLog:
mappedType = tracev2.EvUserLog
mappedArgs = timedEventArgs{ev.Args[0], ev.Args[1], it.inlineToStringID[ev.Args[3]], uint64(ev.StkID)}
case tracev1.EvCPUSample:
mappedType = tracev2.EvCPUSample
// When emitted by the Go 1.22 tracer, CPU samples have 5 arguments:
// timestamp, M, P, G, stack. However, after they get turned into Event,
// they have the arguments stack, M, P, G.
//
// In Go 1.21, CPU samples did not have Ms.
mappedArgs = timedEventArgs{uint64(ev.StkID), ^uint64(0), uint64(ev.P), ev.G}
default:
return Event{}, fmt.Errorf("unexpected event type %v", ev.Type)
}
if tracev1.EventDescriptions[ev.Type].Stack {
if stackIDs := tracev2.Specs()[mappedType].StackIDs; len(stackIDs) > 0 {
mappedArgs[stackIDs[0]-1] = uint64(ev.StkID)
}
}
m := NoThread
if ev.P != -1 && ev.Type != tracev1.EvCPUSample {
if t, ok := it.procMs[ProcID(ev.P)]; ok {
m = ThreadID(t)
}
}
if ev.Type == tracev1.EvProcStop {
delete(it.procMs, ProcID(ev.P))
}
g := GoID(ev.G)
if g == 0 {
g = NoGoroutine
}
out := Event{
ctx: schedCtx{
G: GoID(g),
P: ProcID(ev.P),
M: m,
},
table: it.evt,
base: baseEvent{
typ: mappedType,
time: Time(ev.Ts),
args: mappedArgs,
},
}
return out, nil
}
// convertV1Trace takes a fully loaded trace in the v1 trace format and
// returns an iterator over events in the new format.
func convertV1Trace(pr tracev1.Trace) *traceV1Converter {
it := &traceV1Converter{}
it.init(pr)
return it
}