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
|
package internal
import "C"
import (
"context"
"fmt"
"os"
"os/signal"
"runtime/pprof"
"syscall"
"time"
"ior/internal/flags"
"ior/internal/tracepoints"
bpf "github.com/aquasecurity/libbpfgo"
)
func attachTracepoints(flags flags.Flags, bpfModule *bpf.Module) error {
for _, name := range tracepoints.List {
if !flags.AttachTracepoint(name) {
continue
}
fmt.Println("Attaching tracepoint", name)
prog, err := bpfModule.GetProgram(fmt.Sprintf("handle_%s", name))
if err != nil {
return fmt.Errorf("Failed to get BPF program handle_%s: %v", name, err)
}
fmt.Println("Attached prog handle_", name)
if _, err = prog.AttachTracepoint("syscalls", name); err != nil {
// OK, older Kernel versions may not have this tracepoint!
fmt.Printf("Failed to attach to %s tracepoint: %v, kernel version may be too old, skipping", name, err)
continue
}
fmt.Println("Attached tracepoint ", name)
}
return nil
}
func Run(flags flags.Flags) {
bpfModule, err := bpf.NewModuleFromFile("ior.bpf.o")
if err != nil {
panic(err)
}
defer bpfModule.Close()
if err := flags.ResizeBPFMaps(bpfModule); err != nil {
panic(err)
}
if err := flags.SetBPF(bpfModule); err != nil {
panic(err)
}
if err := bpfModule.BPFLoadObject(); err != nil {
panic(err)
}
if err := attachTracepoints(flags, bpfModule); err != nil {
panic(err)
}
// 4096 channel size, minimises event drops
ch := make(chan []byte, 4096)
rb, err := bpfModule.InitRingBuf("event_map", ch)
if err != nil {
panic(err)
}
rb.Poll(300)
pprofDone := make(chan struct{})
var cpuProfile, memProfile *os.File
if flags.PprofEnable {
if cpuProfile, err = os.Create("ior.cpuprofile"); err != nil {
panic(err)
}
if memProfile, err = os.Create("ior.memprofile"); err != nil {
panic(err)
}
pprof.StartCPUProfile(cpuProfile)
} else {
close(pprofDone)
}
loop := newEventLoop(flags)
duration := time.Duration(flags.Duration) * time.Second
fmt.Println("Probing for", duration)
ctx, cancel := context.WithTimeout(context.Background(), duration)
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt, syscall.SIGTERM)
go func() {
<-c
cancel()
}()
go func() {
<-ctx.Done()
fmt.Println(loop.stats())
if flags.PprofEnable {
fmt.Println("Stoppig profiling, writing ior.cpuprofile and ior.memprofile")
pprof.StopCPUProfile()
pprof.WriteHeapProfile(memProfile)
close(pprofDone)
}
}()
startTime := time.Now()
loop.run(ctx, ch)
totalDuration := time.Since(startTime)
<-pprofDone
fmt.Println("Good bye... (unloading BPF tracepoints will take a few seconds...) after", totalDuration)
}
|