kubernetes/vendor/github.com/cilium/ebpf
2021-07-05 14:03:04 +02:00
..
asm Revert "Update runc to 1.0.0" 2021-07-05 14:03:04 +02:00
internal Revert "Update runc to 1.0.0" 2021-07-05 14:03:04 +02:00
link Revert "Update runc to 1.0.0" 2021-07-05 14:03:04 +02:00
.clang-format vendor: cadvisor v0.39.0 2021-03-08 22:10:29 -08:00
.gitignore vendor: cadvisor v0.39.0 2021-03-08 22:10:29 -08:00
.golangci.yaml vendor: bump runc to rc95 2021-05-19 23:51:59 -07:00
ARCHITECTURE.md vendor: bump runc to rc95 2021-05-19 23:51:59 -07:00
CODE_OF_CONDUCT.md
collection.go Revert "Update runc to 1.0.0" 2021-07-05 14:03:04 +02:00
CONTRIBUTING.md Revert "Update runc to 1.0.0" 2021-07-05 14:03:04 +02:00
doc.go vendor: cadvisor v0.39.0 2021-03-08 22:10:29 -08:00
elf_reader_fuzz.go vendor: bump runc to rc95 2021-05-19 23:51:59 -07:00
elf_reader.go Revert "Update runc to 1.0.0" 2021-07-05 14:03:04 +02:00
go.mod vendor: bump runc to rc95 2021-05-19 23:51:59 -07:00
go.sum vendor: bump runc to rc95 2021-05-19 23:51:59 -07:00
info.go vendor: bump runc to rc95 2021-05-19 23:51:59 -07:00
LICENSE
linker.go Revert "Update runc to 1.0.0" 2021-07-05 14:03:04 +02:00
Makefile Revert "Update runc to 1.0.0" 2021-07-05 14:03:04 +02:00
map.go Revert "Update runc to 1.0.0" 2021-07-05 14:03:04 +02:00
marshalers.go vendor: bump runc to rc95 2021-05-19 23:51:59 -07:00
prog.go Revert "Update runc to 1.0.0" 2021-07-05 14:03:04 +02:00
README.md vendor: bump runc to rc95 2021-05-19 23:51:59 -07:00
run-tests.sh Revert "Update runc to 1.0.0" 2021-07-05 14:03:04 +02:00
syscalls.go vendor: bump runc to rc95 2021-05-19 23:51:59 -07:00
types_string.go vendor: cadvisor v0.39.0 2021-03-08 22:10:29 -08:00
types.go vendor: bump runc to rc95 2021-05-19 23:51:59 -07:00

eBPF

PkgGoDev

eBPF is a pure Go library that provides utilities for loading, compiling, and debugging eBPF programs. It has minimal external dependencies and is intended to be used in long running processes.

  • asm contains a basic assembler
  • link allows attaching eBPF to various hooks
  • perf allows reading from a PERF_EVENT_ARRAY
  • cmd/bpf2go allows compiling and embedding eBPF programs in Go code

The library is maintained by Cloudflare and Cilium. Feel free to join the #libbpf-go channel on Slack.

Current status

The package is production ready, but the API is explicitly unstable right now. Expect to update your code if you want to follow along.

Getting Started

A small collection of Go and eBPF programs that serve as examples for building your own tools can be found under examples/.

Contributions are highly encouraged, as they highlight certain use cases of eBPF and the library, and help shape the future of the project.

Requirements

  • A version of Go that is supported by upstream
  • Linux 4.9, 4.19 or 5.4 (versions in-between should work, but are not tested)

Useful resources

Regenerating Testdata

Run make in the root of this repository to rebuild testdata in all subpackages. This requires Docker, as it relies on a standardized build environment to keep the build output stable.

The toolchain image build files are kept in testdata/docker/.

License

MIT