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
|
package internal
import "C"
import (
"context"
"fmt"
"os"
"os/signal"
"runtime/pprof"
"syscall"
"time"
"ior/internal/event"
"ior/internal/flags"
"ior/internal/flamegraph"
"ior/internal/statsengine"
"ior/internal/tracepoints"
"ior/internal/tui"
bpf "github.com/aquasecurity/libbpfgo"
)
type tracepointProgram interface {
attachTracepoint(category, name string) error
}
var (
runTraceFn = runTrace
runTraceWithContextFn = runTraceWithContext
runTUIFn = tui.RunWithTraceStarter
)
type tracepointModule interface {
getProgram(progName string) (tracepointProgram, error)
}
type libbpfTracepointProgram struct {
prog *bpf.BPFProg
}
func (p libbpfTracepointProgram) attachTracepoint(category, name string) error {
_, err := p.prog.AttachTracepoint(category, name)
return err
}
type libbpfTracepointModule struct {
module *bpf.Module
}
func (m libbpfTracepointModule) getProgram(progName string) (tracepointProgram, error) {
prog, err := m.module.GetProgram(progName)
if err != nil {
return nil, err
}
return libbpfTracepointProgram{prog: prog}, nil
}
func attachTracepoints(bpfModule *bpf.Module) error {
return attachTracepointsWith(libbpfTracepointModule{module: bpfModule}, flags.Get().ShouldIAttachTracepoint, tracepoints.List, true)
}
func attachTracepointsWith(module tracepointModule, shouldAttach func(string) bool, tracepointNames []string, verbose bool) error {
logln := func(...any) {}
logf := func(string, ...any) {}
if verbose {
logln = func(args ...any) { _, _ = fmt.Println(args...) }
logf = func(format string, args ...any) { _, _ = fmt.Printf(format, args...) }
}
for _, name := range tracepointNames {
if !shouldAttach(name) {
continue
}
logln("Attaching tracepoint", name)
prog, err := module.getProgram(fmt.Sprintf("handle_%s", name))
if err != nil {
return fmt.Errorf("Failed to get BPF program handle_%s: %v", name, err)
}
logln("Attached prog handle_", name)
if err = prog.attachTracepoint("syscalls", name); err != nil {
// OK, older Kernel versions may not have this tracepoint!
logf("Failed to attach to %s tracepoint: %v, kernel version may be too old, skipping", name, err)
continue
}
logln("Attached tracepoint ", name)
}
return nil
}
func Run() error {
flags.PrintVersion()
cfg := flags.Get()
iorFile := cfg.IorDataFile
var noTraceRun bool
if iorFile != "" {
noTraceRun = true
native := flamegraph.NewNativeSVG(cfg.CollapsedFields, cfg.CountField)
svgFile, err := native.WriteSVGFromFile(iorFile)
if err != nil {
return err
}
if err := flamegraph.ServeSVG(svgFile); err != nil {
return err
}
}
if noTraceRun {
return nil
}
return dispatchRun(cfg)
}
func dispatchRun(cfg flags.Flags) error {
if shouldRunTraceMode(cfg) {
return runTraceFn()
}
return runTUIFn(tuiTraceStarterFromRunTrace(runTraceWithContextFn))
}
func shouldRunTraceMode(cfg flags.Flags) bool {
return cfg.PlainMode || cfg.FlamegraphEnable || cfg.PprofEnable
}
func tuiTraceStarterFromRunTrace(
startTrace func(context.Context, chan<- struct{}, func(*eventLoop)) error,
) tui.TraceStarter {
return func(ctx context.Context) error {
bpf.SetLoggerCbs(bpf.Callbacks{
Log: func(int, string) {},
})
engine := statsengine.NewEngine(64)
tui.SetDashboardSnapshotSource(engine)
startedCh := make(chan struct{})
errCh := make(chan error, 1)
go func() {
errCh <- startTrace(ctx, startedCh, func(el *eventLoop) {
el.printCb = func(ep *event.Pair) {
engine.Ingest(ep)
ep.Recycle()
}
})
close(errCh)
}()
select {
case <-ctx.Done():
return ctx.Err()
case <-startedCh:
return nil
case err := <-errCh:
return err
}
}
}
func runTrace() error {
return runTraceWithContext(context.Background(), nil, nil)
}
func runTraceWithContext(parentCtx context.Context, started chan<- struct{}, configure func(*eventLoop)) error {
verbose := started == nil
logln := func(...any) {}
if verbose {
logln = func(args ...any) { _, _ = fmt.Println(args...) }
}
bpfModule, err := bpf.NewModuleFromFile("ior.bpf.o")
if err != nil {
return err
}
defer bpfModule.Close()
if err := flags.Get().ResizeBPFMaps(bpfModule); err != nil {
return err
}
if err := flags.Get().SetBPF(bpfModule); err != nil {
return err
}
if err := bpfModule.BPFLoadObject(); err != nil {
return err
}
if err := attachTracepointsWith(libbpfTracepointModule{module: bpfModule}, flags.Get().ShouldIAttachTracepoint, tracepoints.List, verbose); err != nil {
return err
}
// 4096 channel size, minimises event drops
ch := make(chan []byte, 4096)
rb, err := bpfModule.InitRingBuf("event_map", ch)
if err != nil {
return err
}
rb.Poll(300)
pprofDone := make(chan struct{})
var cpuProfile, memProfile *os.File
if flags.Get().PprofEnable {
if cpuProfile, err = os.Create("ior.cpuprofile"); err != nil {
return err
}
if memProfile, err = os.Create("ior.memprofile"); err != nil {
return err
}
pprof.StartCPUProfile(cpuProfile)
} else {
close(pprofDone)
}
signalTraceStarted(started)
el := newEventLoop()
if configure != nil {
configure(el)
}
duration := time.Duration(flags.Get().Duration) * time.Second
logln("Probing for", duration)
ctx, cancel := context.WithTimeout(parentCtx, duration)
defer cancel()
signalCh := make(chan os.Signal, 1)
signal.Notify(signalCh, os.Interrupt, syscall.SIGTERM)
defer signal.Stop(signalCh)
go func() {
select {
case <-signalCh:
logln("Received signal, shutting down...")
cancel()
case <-ctx.Done():
return
}
}()
go func() {
<-ctx.Done()
if verbose {
fmt.Println(el.stats())
}
if flags.Get().PprofEnable {
logln("Stoppig profiling, writing ior.cpuprofile and ior.memprofile")
pprof.StopCPUProfile()
pprof.WriteHeapProfile(memProfile)
close(pprofDone)
}
}()
startTime := time.Now()
el.run(ctx, ch)
totalDuration := time.Since(startTime)
<-pprofDone
logln("Good bye... (unloading BPF tracepoints will take a few seconds...) after", totalDuration)
return nil
}
func signalTraceStarted(started chan<- struct{}) {
if started == nil {
return
}
close(started)
}
|