Files
Etienne PerotandgVisor bot 7cf14b7c8b Add equality function for BPF instructions.
Use it when checking that instructions are equivalent in
`rewriteAllJumpsToReturn`.

Reported-by: syzbot+637101fb08769773300e@syzkaller.appspotmail.com
PiperOrigin-RevId: 585802467
2023-11-27 17:18:02 -08:00

41 lines
828 B
Python

load("//tools:defs.bzl", "go_library", "go_test")
package(
default_applicable_licenses = ["//:license"],
licenses = ["notice"],
)
go_library(
name = "bpf",
srcs = [
"bpf.go",
"bpf_unsafe.go",
"decoder.go",
"input_bytes.go",
"interpreter.go",
"optimizer.go",
"program_builder.go",
],
imports = ["gvisor.dev/gvisor/pkg/abi/linux"],
visibility = ["//visibility:public"],
deps = ["//pkg/abi/linux"],
)
go_test(
name = "bpf_test",
size = "small",
srcs = [
"bpf_test.go",
"decoder_test.go",
"interpreter_test.go",
"optimizer_test.go",
"program_builder_test.go",
],
library = ":bpf",
deps = [
"//pkg/abi/linux",
"//pkg/hostarch",
"//pkg/marshal",
],
)