-
Notifications
You must be signed in to change notification settings - Fork 735
/
Copy pathmain.go
544 lines (453 loc) · 13.4 KB
/
main.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
//go:build !windows
package main
import (
"errors"
"flag"
"fmt"
"io"
"os"
"os/exec"
"path/filepath"
"regexp"
"slices"
"sort"
"strconv"
"strings"
"github.com/cilium/ebpf"
"github.com/cilium/ebpf/btf"
"github.com/cilium/ebpf/cmd/bpf2go/gen"
)
const helpText = `Usage: %[1]s [options] <ident> <source file> [-- <C flags>]
ident is used as the stem of all generated Go types and functions, and
must be a valid Go identifier.
source is a single C file that is compiled using the specified compiler
(usually some version of clang).
You can pass options to the compiler by appending them after a '--' argument
or by supplying -cflags. Flags passed as arguments take precedence
over flags passed via -cflags. Additionally, the program expands quotation
marks in -cflags. This means that -cflags 'foo "bar baz"' is passed to the
compiler as two arguments "foo" and "bar baz".
The program expects GOPACKAGE to be set in the environment, and should be invoked
via go generate. The generated files are written to the current directory.
Some options take defaults from the environment. Variable name is mentioned
next to the respective option.
Options:
`
func run(stdout io.Writer, args []string) (err error) {
b2g, err := newB2G(stdout, args)
switch {
case err == nil:
return b2g.convertAll()
case errors.Is(err, flag.ErrHelp):
return nil
default:
return err
}
}
type bpf2go struct {
stdout io.Writer
verbose bool
// Absolute path to a .c file.
sourceFile string
// Absolute path to a directory where .go are written
outputDir string
// Alternative output stem. If empty, identStem is used.
outputStem string
// Suffix in generated file names such as _test.
outputSuffix string
// Valid go package name.
pkg string
// Valid go identifier.
identStem string
// Targets to build for.
targetArches map[gen.Target]gen.GoArches
// C compiler.
cc string
// Command used to strip DWARF.
strip string
disableStripping bool
// C flags passed to the compiler.
cFlags []string
skipGlobalTypes bool
// C types to include in the generated output.
cTypes cTypes
// Build tags to be included in the output.
tags buildTags
// Base directory of the Makefile. Enables outputting make-style dependencies
// in .d files.
makeBase string
}
func (b2g *bpf2go) Debugln(a ...any) {
if b2g.verbose {
fmt.Fprintln(b2g.stdout, a...)
}
}
func newB2G(stdout io.Writer, args []string) (*bpf2go, error) {
b2g := &bpf2go{
stdout: stdout,
}
fs := flag.NewFlagSet("bpf2go", flag.ContinueOnError)
fs.BoolVar(&b2g.verbose, "verbose", getBool("V", false), "Enable verbose logging ($V)")
fs.StringVar(&b2g.cc, "cc", getEnv("BPF2GO_CC", "clang"),
"`binary` used to compile C to BPF ($BPF2GO_CC)")
fs.StringVar(&b2g.strip, "strip", getEnv("BPF2GO_STRIP", ""),
"`binary` used to strip DWARF from compiled BPF ($BPF2GO_STRIP)")
fs.BoolVar(&b2g.disableStripping, "no-strip", false, "disable stripping of DWARF")
flagCFlags := fs.String("cflags", getEnv("BPF2GO_CFLAGS", ""),
"flags passed to the compiler, may contain quoted arguments ($BPF2GO_CFLAGS)")
fs.Var(&b2g.tags, "tags", "Comma-separated list of Go build tags to include in generated files")
flagTarget := fs.String("target", "bpfel,bpfeb", "clang target(s) to compile for (comma separated)")
fs.StringVar(&b2g.makeBase, "makebase", getEnv("BPF2GO_MAKEBASE", ""),
"write make compatible depinfo files relative to `directory` ($BPF2GO_MAKEBASE)")
fs.Var(&b2g.cTypes, "type", "`Name` of a type to generate a Go declaration for, may be repeated")
fs.BoolVar(&b2g.skipGlobalTypes, "no-global-types", false, "Skip generating types for map keys and values, etc.")
fs.StringVar(&b2g.outputStem, "output-stem", "", "alternative stem for names of generated files (defaults to ident)")
outputSuffix := ""
if strings.HasSuffix(getEnv("GOFILE", ""), "_test.go") {
outputSuffix = "_test"
}
fs.StringVar(&b2g.outputSuffix, "output-suffix", outputSuffix,
"suffix in generated file names such as _test (default based on $GOFILE)")
outDir := fs.String("output-dir", "", "target directory of generated files (defaults to current directory)")
outPkg := fs.String("go-package", "", "package for output go file (default as ENV GOPACKAGE)")
fs.SetOutput(b2g.stdout)
fs.Usage = func() {
fmt.Fprintf(fs.Output(), helpText, fs.Name())
fs.PrintDefaults()
fmt.Fprintln(fs.Output())
printTargets(fs.Output())
}
if err := fs.Parse(args); err != nil {
return nil, err
}
if *outDir == "" {
var err error
if *outDir, err = os.Getwd(); err != nil {
return nil, err
}
}
b2g.outputDir = *outDir
if *outPkg == "" {
*outPkg = os.Getenv(gopackageEnv)
}
b2g.pkg = *outPkg
if b2g.pkg == "" {
return nil, errors.New("missing package, you should either set the go-package flag or the GOPACKAGE env")
}
if b2g.cc == "" {
return nil, errors.New("no compiler specified")
}
args, cFlags := splitCFlagsFromArgs(fs.Args())
if *flagCFlags != "" {
splitCFlags, err := splitArguments(*flagCFlags)
if err != nil {
return nil, err
}
// Command line arguments take precedence over C flags
// from the flag.
cFlags = append(splitCFlags, cFlags...)
}
for _, cFlag := range cFlags {
if strings.HasPrefix(cFlag, "-M") {
return nil, fmt.Errorf("use -makebase instead of %q", cFlag)
}
}
b2g.cFlags = cFlags[:len(cFlags):len(cFlags)]
if len(args) < 2 {
return nil, errors.New("expected at least two arguments")
}
b2g.identStem = args[0]
sourceFile, err := filepath.Abs(args[1])
if err != nil {
return nil, err
}
b2g.sourceFile = sourceFile
if b2g.makeBase != "" {
b2g.makeBase, err = filepath.Abs(b2g.makeBase)
if err != nil {
return nil, err
}
}
if b2g.outputStem != "" && strings.ContainsRune(b2g.outputStem, filepath.Separator) {
return nil, fmt.Errorf("-output-stem %q must not contain path separation characters", b2g.outputStem)
}
if strings.ContainsRune(b2g.outputSuffix, filepath.Separator) {
return nil, fmt.Errorf("-output-suffix %q must not contain path separation characters", b2g.outputSuffix)
}
targetArches := make(map[gen.Target]gen.GoArches)
for _, tgt := range strings.Split(*flagTarget, ",") {
target, goarches, err := gen.FindTarget(tgt)
if err != nil {
if errors.Is(err, gen.ErrInvalidTarget) {
printTargets(b2g.stdout)
fmt.Fprintln(b2g.stdout)
}
return nil, err
}
targetArches[target] = goarches
}
if len(targetArches) == 0 {
return nil, fmt.Errorf("no targets specified")
}
b2g.targetArches = targetArches
// Try to find a suitable llvm-strip, possibly with a version suffix derived
// from the clang binary.
if b2g.strip == "" {
b2g.strip = "llvm-strip"
if strings.HasPrefix(b2g.cc, "clang") {
b2g.strip += strings.TrimPrefix(b2g.cc, "clang")
}
}
return b2g, nil
}
// cTypes collects the C type names a user wants to generate Go types for.
//
// Names are guaranteed to be unique, and only a subset of names is accepted so
// that we may extend the flag syntax in the future.
type cTypes []string
var _ flag.Value = (*cTypes)(nil)
func (ct *cTypes) String() string {
if ct == nil {
return "[]"
}
return fmt.Sprint(*ct)
}
const validCTypeChars = `[a-z0-9_]`
var reValidCType = regexp.MustCompile(`(?i)^` + validCTypeChars + `+$`)
func (ct *cTypes) Set(value string) error {
if !reValidCType.MatchString(value) {
return fmt.Errorf("%q contains characters outside of %s", value, validCTypeChars)
}
i := sort.SearchStrings(*ct, value)
if i >= len(*ct) {
*ct = append(*ct, value)
return nil
}
if (*ct)[i] == value {
return fmt.Errorf("duplicate type %q", value)
}
*ct = append((*ct)[:i], append([]string{value}, (*ct)[i:]...)...)
return nil
}
func getEnv(key, defaultVal string) string {
if val, ok := os.LookupEnv(key); ok {
return val
}
return defaultVal
}
func getBool(key string, defaultVal bool) bool {
val, ok := os.LookupEnv(key)
if !ok {
return defaultVal
}
b, err := strconv.ParseBool(val)
if err != nil {
return defaultVal
}
return b
}
func (b2g *bpf2go) convertAll() (err error) {
if _, err := os.Stat(b2g.sourceFile); os.IsNotExist(err) {
return fmt.Errorf("file %s doesn't exist", b2g.sourceFile)
} else if err != nil {
return err
}
if !b2g.disableStripping {
b2g.strip, err = exec.LookPath(b2g.strip)
if err != nil {
return err
}
}
for target, arches := range b2g.targetArches {
if err := b2g.convert(target, arches); err != nil {
return err
}
}
return nil
}
func (b2g *bpf2go) convert(tgt gen.Target, goarches gen.GoArches) (err error) {
removeOnError := func(f *os.File) {
if err != nil {
os.Remove(f.Name())
}
f.Close()
}
outputStem := b2g.outputStem
if outputStem == "" {
outputStem = strings.ToLower(b2g.identStem)
}
stem := fmt.Sprintf("%s_%s%s", outputStem, tgt.Suffix(), b2g.outputSuffix)
absOutPath, err := filepath.Abs(b2g.outputDir)
if err != nil {
return err
}
objFileName := filepath.Join(absOutPath, stem+".o")
cwd, err := os.Getwd()
if err != nil {
return err
}
archConstraint := goarches.Constraint()
constraints := andConstraints(archConstraint, b2g.tags.Expr)
if err := b2g.removeOldOutputFiles(outputStem, tgt); err != nil {
return fmt.Errorf("remove obsolete output: %w", err)
}
var depInput *os.File
cFlags := slices.Clone(b2g.cFlags)
if b2g.makeBase != "" {
depInput, err = os.CreateTemp("", "bpf2go")
if err != nil {
return err
}
defer depInput.Close()
defer os.Remove(depInput.Name())
cFlags = append(cFlags,
// Output dependency information.
"-MD",
// Create phony targets so that deleting a dependency doesn't
// break the build.
"-MP",
// Write it to temporary file
"-MF"+depInput.Name(),
)
}
err = gen.Compile(gen.CompileArgs{
CC: b2g.cc,
Strip: b2g.strip,
DisableStripping: b2g.disableStripping,
Flags: cFlags,
Target: tgt,
Workdir: cwd,
Source: b2g.sourceFile,
Dest: objFileName,
})
if err != nil {
return fmt.Errorf("compile: %w", err)
}
if b2g.disableStripping {
b2g.Debugln("Compiled object", "file", objFileName)
} else {
b2g.Debugln("Compiled and stripped object", "file", objFileName)
}
spec, err := ebpf.LoadCollectionSpec(objFileName)
if err != nil {
return fmt.Errorf("can't load BPF from ELF: %s", err)
}
var maps []string
for name := range spec.Maps {
// Skip .rodata, .data, .bss, etc. sections
if !strings.HasPrefix(name, ".") {
maps = append(maps, name)
}
}
var variables []string
for name := range spec.Variables {
variables = append(variables, name)
}
var programs []string
for name := range spec.Programs {
programs = append(programs, name)
}
types, err := collectCTypes(spec.Types, b2g.cTypes)
if err != nil {
return fmt.Errorf("collect C types: %w", err)
}
if !b2g.skipGlobalTypes {
types = append(types, gen.CollectGlobalTypes(spec)...)
}
// Write out generated go
goFileName := filepath.Join(absOutPath, stem+".go")
goFile, err := os.Create(goFileName)
if err != nil {
return err
}
defer removeOnError(goFile)
err = gen.Generate(gen.GenerateArgs{
Package: b2g.pkg,
Stem: b2g.identStem,
Constraints: constraints,
Maps: maps,
Variables: variables,
Programs: programs,
Types: types,
ObjectFile: filepath.Base(objFileName),
Output: goFile,
})
if err != nil {
return fmt.Errorf("can't write %s: %s", goFileName, err)
}
b2g.Debugln("Generated bpf2go binding", "file", goFileName)
if b2g.makeBase == "" {
return
}
deps, err := parseDependencies(cwd, depInput)
if err != nil {
return fmt.Errorf("can't read dependency information: %s", err)
}
depFileName := goFileName + ".d"
depOutput, err := os.Create(depFileName)
if err != nil {
return fmt.Errorf("write make dependencies: %w", err)
}
defer depOutput.Close()
// There is always at least a dependency for the main file.
deps[0].file = goFileName
if err := adjustDependencies(depOutput, b2g.makeBase, deps); err != nil {
return fmt.Errorf("can't adjust dependency information: %s", err)
}
b2g.Debugln("Wrote dependency", "file", depFileName)
return nil
}
// removeOldOutputFiles removes output files generated by an old naming scheme.
//
// In the old scheme some linux targets were interpreted as build constraints
// by the go toolchain.
func (b2g *bpf2go) removeOldOutputFiles(outputStem string, tgt gen.Target) error {
suffix := tgt.ObsoleteSuffix()
if suffix == "" {
return nil
}
stem := fmt.Sprintf("%s_%s", outputStem, suffix)
for _, ext := range []string{".o", ".go"} {
filename := filepath.Join(b2g.outputDir, stem+ext)
if err := os.Remove(filename); errors.Is(err, os.ErrNotExist) {
continue
} else if err != nil {
return err
}
b2g.Debugln("Removed obsolete output file", "file", filename)
}
return nil
}
func printTargets(w io.Writer) {
var arches []string
for goarch, archTarget := range gen.TargetsByGoArch() {
if archTarget.IsGeneric() {
continue
}
arches = append(arches, string(goarch))
}
sort.Strings(arches)
fmt.Fprint(w, "Supported targets:\n")
fmt.Fprint(w, "\tbpf\n\tbpfel\n\tbpfeb\n")
for _, arch := range arches {
fmt.Fprintf(w, "\t%s\n", arch)
}
}
func collectCTypes(types *btf.Spec, names []string) ([]btf.Type, error) {
var result []btf.Type
for _, cType := range names {
typ, err := types.AnyTypeByName(cType)
if err != nil {
return nil, err
}
result = append(result, typ)
}
return result, nil
}
const gopackageEnv = "GOPACKAGE"
func main() {
if err := run(os.Stdout, os.Args[1:]); err != nil {
fmt.Fprintln(os.Stderr, "Error:", err)
os.Exit(1)
}
}