summaryrefslogtreecommitdiff
path: root/internal/ior.go
blob: 3aa46790119edd6d90d849bcd9b41894fc7d9df7 (plain)
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
package internal

import "C"

import (
	"context"
	"fmt"
	"os"
	"os/signal"
	"runtime/pprof"
	"syscall"

	"ior/internal/flags"
	"ior/internal/generated/tracepoints"

	bpf "github.com/aquasecurity/libbpfgo"
)

func attachTracepoints(bpfModule *bpf.Module) error {
	for _, name := range tracepoints.List {
		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.Println(fmt.Errorf("Failed to attach to %s tracepoint: %v", 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(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)

	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)
	}

	loop := newEventLoop(flags)

	ctx, cancel := context.WithCancel(context.Background())
	c := make(chan os.Signal, 1)
	signal.Notify(c, os.Interrupt, syscall.SIGTERM)

	go func() {
		defer cancel()
		<-c
		fmt.Println(loop.stats())
		if flags.PprofEnable {
			fmt.Println("Stoppig profiling, writing ior.cpuprofile and ior.memprofile")
			pprof.StopCPUProfile()
			pprof.WriteHeapProfile(memProfile)
		}
	}()

	loop.run(ctx, ch)
	fmt.Println("Good bye... (unloading BPF tracepoints will take a few seconds...)")
}