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
|
//go:build mage
// Magefile for ior targets: build, test, install, generate, clean, and BPF builds.
package main
import (
"bufio"
"errors"
"fmt"
"go/format"
"io"
"os"
"os/exec"
"path/filepath"
"slices"
"strings"
"github.com/magefile/mage/mg"
"github.com/magefile/mage/sh"
"ior/internal/generate"
)
const (
binaryName = "ior"
workloadBinaryName = "ioworkload"
defaultLibbpfgoPath = "../libbpfgo"
bpfSourcePath = "internal/c/ior.bpf.c"
bpfObjectPath = "internal/c/ior.bpf.o"
bpfOutputPath = "ior.bpf.o"
workloadSourcePath = "./integrationtests/cmd/ioworkload"
tracepointsCPath = "internal/c/generated_tracepoints.c"
tracepointsResult = "internal/c/generated_tracepoints_result.txt"
tracepointsResultNew = "internal/c/generated_tracepoints_result.txt.new"
tracepointsGoPath = "internal/tracepoints/generated_tracepoints.go"
typesGoPath = "internal/types/generated_types.go"
typesHeaderPath = "internal/c/types.h"
VMLINUXPath = "internal/c/vmlinux.h"
)
// Default builds the project.
func Default() {
mg.Deps(Build)
}
// Build compiles the binary.
func Build() error {
return sh.RunWithV(goEnv(), "go", "build", "-tags", "netgo", "-ldflags", "-w -extldflags \"-static\"",
"-o", binaryName, "./cmd/ior/main.go")
}
// GoBuildRace compiles the binary with the race detector enabled.
func GoBuildRace() error {
return sh.RunWithV(goEnv(), "go", "build", "-tags", "netgo", "-ldflags", "-w -extldflags \"-static\"",
"-race", "-o", binaryName, "./cmd/ior/main.go")
}
// All builds the BPF object and the Go binary.
func All() error {
mg.SerialDeps(BpfBuild, Build)
return nil
}
// BpfBuild builds the BPF object and copies it to the repo root.
func BpfBuild() error {
if err := ensureVMLINUX(); err != nil {
return err
}
if err := buildBPFObject(); err != nil {
return err
}
return sh.RunV("cp", "-v", bpfObjectPath, bpfOutputPath)
}
// Test runs the full test suite.
func Test() error {
if err := sh.RunWithV(goEnv(), "go", "clean", "-testcache"); err != nil {
return err
}
return sh.RunWithV(goEnv(), "go", "test", "./...", "-v", "-failfast")
}
// TestWithName runs a specific test by name.
func TestWithName() error {
if err := sh.RunWithV(goEnv(), "go", "clean", "-testcache"); err != nil {
return err
}
testName := os.Getenv("TEST_NAME")
if testName == "" {
testName = "TestEventloop"
}
return sh.RunWithV(goEnv(), "go", "test", "./...", "-run", "^"+testName+"$", "-v", "-failfast")
}
// Bench runs benchmarks.
func Bench() error {
return sh.RunWithV(goEnv(), "go", "test", "./...", "-v", "-bench=.", "-run", "xxx")
}
// Generate regenerates all generated files.
func Generate() error {
fmt.Println("Generating tracepoint and type artifacts...")
mg.SerialDeps(GenerateTracepointsC, GenerateTracepointsGo, GenerateTypesGo)
fmt.Println("Generation complete.")
return nil
}
// GenerateTracepointsC regenerates the tracepoint handlers in C.
func GenerateTracepointsC() error {
fmt.Println("Generating C tracepoints...")
return generateTracepointsC(true, false)
}
// GenerateTracepointsCForce regenerates the tracepoint handlers in C, ignoring diffs.
func GenerateTracepointsCForce() error {
fmt.Println("Generating C tracepoints (force)...")
return generateTracepointsC(false, false)
}
// GenerateTracepointsCStdout prints the tracepoint handlers in C to stdout.
func GenerateTracepointsCStdout() error {
fmt.Println("Generating C tracepoints (stdout)...")
return generateTracepointsC(true, true)
}
// GenerateTracepointsGo regenerates the tracepoint list in Go.
func GenerateTracepointsGo() error {
fmt.Println("Generating Go tracepoints list...")
input, err := os.ReadFile(tracepointsCPath)
if err != nil {
return fmt.Errorf("read %s: %w", tracepointsCPath, err)
}
output, err := generate.ExtractTracepoints(strings.NewReader(string(input)))
if err != nil {
return err
}
formatted, err := format.Source([]byte(output))
if err != nil {
return fmt.Errorf("format tracepoints go: %w", err)
}
if err := os.WriteFile(tracepointsGoPath, formatted, 0o644); err != nil {
return fmt.Errorf("write %s: %w", tracepointsGoPath, err)
}
return nil
}
// GenerateTypesGo regenerates the Go types and constants.
func GenerateTypesGo() error {
fmt.Println("Generating Go types...")
input, err := readTypesInput()
if err != nil {
return err
}
structs, constants, err := generate.ParseCTypesInput(strings.NewReader(input))
if err != nil {
return err
}
output := generate.GenerateTypesGo(structs, constants)
output = generate.AddTypesImports(output)
formatted, err := format.Source([]byte(output))
if err != nil {
return fmt.Errorf("format types go: %w", err)
}
if err := os.WriteFile(typesGoPath, formatted, 0o644); err != nil {
return fmt.Errorf("write %s: %w", typesGoPath, err)
}
return nil
}
// Install copies the binary into GOPATH/bin.
func Install() error {
mg.Deps(Build)
goPath := os.Getenv("GOPATH")
if goPath == "" {
home, err := os.UserHomeDir()
if err != nil {
return fmt.Errorf("resolve home directory: %w", err)
}
goPath = filepath.Join(home, "go")
}
binDir := filepath.Join(goPath, "bin")
if err := os.MkdirAll(binDir, 0o755); err != nil {
return fmt.Errorf("ensure %s: %w", binDir, err)
}
dest := filepath.Join(binDir, binaryName)
return sh.RunV("cp", "-v", binaryName, dest)
}
// Clean removes build artifacts.
func Clean() error {
if err := removeFilesByName(binaryName); err != nil {
return err
}
if err := removeFilesByPath(workloadBinaryName); err != nil {
return err
}
if err := removeFilesByPath(bpfOutputPath); err != nil {
return err
}
if err := cleanBPFArtifacts(); err != nil {
return err
}
return nil
}
// Mrproper removes build artifacts and generated output files.
func Mrproper() error {
mg.SerialDeps(Clean)
patterns := []string{"*.zst", "*.collapsed", "*.svg", "*profile", "*.pdf", "*.tmp", "palette.map"}
for _, pattern := range patterns {
if err := removeFilesByGlob(pattern); err != nil {
return err
}
}
return nil
}
// World runs clean, generate, test, and build targets.
func World() error {
fmt.Println("World: cleaning...")
if err := Clean(); err != nil {
return err
}
fmt.Println("World: generating...")
if err := Generate(); err != nil {
return err
}
fmt.Println("World: running tests...")
if err := Test(); err != nil {
return err
}
fmt.Println("World: building... (BPF + Go)")
if err := All(); err != nil {
return err
}
fmt.Println("World: done.")
return nil
}
// IntegrationTest builds everything and runs integration tests with sudo.
func IntegrationTest() error {
mg.SerialDeps(All)
fmt.Println("Building ioworkload binary...")
if err := sh.RunV("go", "build", "-o", workloadBinaryName, workloadSourcePath); err != nil {
return fmt.Errorf("build ioworkload: %w", err)
}
fmt.Println("Running integration tests (requires root)...")
env := goEnv()
forwardEnv(env, "HOME", "GOPATH", "GOMODCACHE")
return sudoRunWithEnv(env, "go", "test", "./integrationtests/...", "-v", "-failfast", "-count=1")
}
// Prof generates CPU and memory profiling PDFs.
func Prof() error {
if err := runShellCommand("go tool pprof -pdf ./ior ior.cpuprofile > cpuprofile.pdf"); err != nil {
return err
}
if err := runShellCommand("go tool pprof -pdf ./ior ior.memprofile > memprofile.pdf"); err != nil {
return err
}
return nil
}
func buildBPFObject() error {
libbpfgo := libbpfgoPath()
includeDir := filepath.Join(libbpfgo, "output")
return sh.RunWithV(bpfEnv(), "clang", "-g", "-O2", "-Wall", "-fpie", "-target", "bpf",
"-D__TARGET_ARCH_amd64", "-I"+includeDir, "-c", bpfSourcePath, "-o", bpfObjectPath)
}
func bpfEnv() map[string]string {
return map[string]string{"CC": "clang"}
}
func cleanBPFArtifacts() error {
for _, pattern := range []string{"internal/c/*.o", VMLINUXPath} {
if err := removeFilesByGlob(pattern); err != nil {
return err
}
}
return nil
}
func ensureVMLINUX() error {
if _, err := os.Stat(VMLINUXPath); err == nil {
return nil
} else if !errors.Is(err, os.ErrNotExist) {
return fmt.Errorf("stat %s: %w", VMLINUXPath, err)
}
output, err := sudoOutput("bpftool", "btf", "dump", "file", "/sys/kernel/btf/vmlinux", "format", "c")
if err != nil {
return err
}
if err := os.WriteFile(VMLINUXPath, []byte(output), 0o644); err != nil {
return fmt.Errorf("write %s: %w", VMLINUXPath, err)
}
return nil
}
func generateTracepointsC(strict bool, toStdout bool) error {
fmt.Println("Reading syscall format files...")
formats, err := readSyscallFormats()
if err != nil {
return err
}
fmt.Println("Parsing syscall formats...")
parsed, err := generate.ParseFormats(strings.NewReader(formats))
if err != nil {
return err
}
output := generate.GenerateTracepointsC(parsed)
fmt.Println("Writing generated C tracepoints...")
if toStdout {
fmt.Print(output)
return nil
}
if err := os.WriteFile(tracepointsCPath, []byte(output), 0o644); err != nil {
return fmt.Errorf("write %s: %w", tracepointsCPath, err)
}
return writeTracepointsResult(output, strict)
}
func goEnv() map[string]string {
libbpfgo := libbpfgoPath()
cgoCflags := fmt.Sprintf("-I%s -I%s", filepath.Join(libbpfgo, "output"), filepath.Join(libbpfgo, "selftest", "common"))
cgoLdflags := fmt.Sprintf("-lelf -lzstd %s", filepath.Join(libbpfgo, "output", "libbpf", "libbpf.a"))
return map[string]string{
"CGO_CFLAGS": cgoCflags,
"CGO_LDFLAGS": cgoLdflags,
"GOARCH": "amd64",
"GOOS": "linux",
"LIBBPFGO": libbpfgo,
}
}
func libbpfgoPath() string {
if libbpfgo := os.Getenv("LIBBPFGO"); libbpfgo != "" {
return libbpfgo
}
return filepath.Clean(filepath.Join(repoRoot(), defaultLibbpfgoPath))
}
func readSyscallFormats() (string, error) {
fmt.Println("Reading syscall format files with one sudo call...")
output, err := sudoOutput("sh", "-c", "LC_ALL=C find /sys/kernel/tracing/events/syscalls -maxdepth 2 -mindepth 2 -name format | sort | xargs cat")
if err != nil {
return "", err
}
if output == "" {
return "", fmt.Errorf("no syscall format files found")
}
return output, nil
}
func readTypesInput() (string, error) {
parts := []string{typesHeaderPath, tracepointsCPath}
var b strings.Builder
for _, p := range parts {
data, err := os.ReadFile(p)
if err != nil {
return "", fmt.Errorf("read %s: %w", p, err)
}
b.Write(data)
if len(data) > 0 && data[len(data)-1] != '\n' {
b.WriteString("\n")
}
}
return b.String(), nil
}
func removeFilesByGlob(pattern string) error {
matches, err := filepath.Glob(pattern)
if err != nil {
return fmt.Errorf("glob %s: %w", pattern, err)
}
for _, match := range matches {
if err := removeFilesByPath(match); err != nil {
return err
}
}
return nil
}
func removeFilesByName(name string) error {
return filepath.WalkDir(".", func(path string, d os.DirEntry, err error) error {
if err != nil {
return err
}
if d.IsDir() {
return nil
}
if d.Name() == name {
return removeFilesByPath(path)
}
return nil
})
}
func removeFilesByPath(path string) error {
if err := os.Remove(path); err != nil && !errors.Is(err, os.ErrNotExist) {
return fmt.Errorf("remove %s: %w", path, err)
}
return nil
}
func repoRoot() string {
root, err := os.Getwd()
if err != nil {
return "."
}
return root
}
func runShellCommand(command string) error {
return sh.RunV("bash", "-c", command)
}
func sudoOutput(cmd string, args ...string) (string, error) {
if os.Geteuid() == 0 {
return sh.Output(cmd, args...)
}
return sh.Output("sudo", append([]string{cmd}, args...)...)
}
func sudoRunWithEnv(env map[string]string, cmd string, args ...string) error {
if os.Geteuid() == 0 {
return sh.RunWithV(env, cmd, args...)
}
keys := make([]string, 0, len(env))
for k := range env {
keys = append(keys, k)
}
slices.Sort(keys)
sudoArgs := make([]string, 0, 1+len(keys)+1+len(args))
sudoArgs = append(sudoArgs, "env")
for _, k := range keys {
sudoArgs = append(sudoArgs, k+"="+env[k])
}
sudoArgs = append(sudoArgs, cmd)
sudoArgs = append(sudoArgs, args...)
return sh.RunV("sudo", sudoArgs...)
}
func forwardEnv(env map[string]string, keys ...string) {
for _, k := range keys {
if v := os.Getenv(k); v != "" {
env[k] = v
}
}
}
func writeTracepointsResult(output string, strict bool) error {
result := extractTracepointReasons(output)
if err := os.WriteFile(tracepointsResultNew, []byte(result), 0o644); err != nil {
return fmt.Errorf("write %s: %w", tracepointsResultNew, err)
}
if _, err := os.Stat(tracepointsResult); errors.Is(err, os.ErrNotExist) {
return sh.RunV("cp", tracepointsResultNew, tracepointsResult)
} else if err != nil {
return fmt.Errorf("stat %s: %w", tracepointsResult, err)
}
if err := sh.RunV("diff", "-u", tracepointsResult, tracepointsResultNew); err != nil {
if strict {
return err
}
}
return sh.RunV("cp", tracepointsResultNew, tracepointsResult)
}
func extractTracepointReasons(output string) string {
var reasons []string
reader := bufio.NewReader(strings.NewReader(output))
for {
line, err := reader.ReadString('\n')
if line != "" {
line = strings.TrimRight(line, "\n")
if strings.HasPrefix(line, "/// ") {
reasons = append(reasons, strings.TrimPrefix(line, "/// "))
}
}
if err != nil {
if errors.Is(err, io.EOF) {
break
}
return ""
}
}
if len(reasons) == 0 {
return ""
}
sorted, err := sortLinesWithLocale(reasons)
if err != nil {
return strings.Join(reasons, "\n") + "\n"
}
return sorted
}
func sortLinesWithLocale(lines []string) (string, error) {
cmd := exec.Command("sort")
cmd.Env = append(os.Environ(), "LC_ALL=C")
cmd.Stdin = strings.NewReader(strings.Join(lines, "\n") + "\n")
output, err := cmd.Output()
if err != nil {
return "", err
}
return string(output), nil
}
|