kaniko/vendor/github.com/cilium/ebpf
Joe Kimmel 906cc96b59
Upgrade docker (#2440)
* somehow now the only thing that doesnt work is devices.Device

Signed-off-by: Joe Kimmel <jkimmel@vmware.com>

* this gets rid of all the compiler errors in the vendored code

Signed-off-by: Joe Kimmel <jkimmel@vmware.com>

* fixed some things but a bunch of tests and maybe some compiler steps are still failing

Signed-off-by: Joe Kimmel <jkimmel@vmware.com>

* all the things i figured out how to fix so far

Signed-off-by: Joe Kimmel <jkimmel@vmware.com>

* guess i had to redo go mods after rebasing again

Signed-off-by: Joe Kimmel <jkimmel@vmware.com>

* update docker constants to be SHOUTY CASE now

Signed-off-by: Joe Kimmel <jkimmel@vmware.com>

* include DestPath in resolveEnv

Signed-off-by: Joe Kimmel <jkimmel@vmware.com>

* fix one mistake in Docker lib upgrade and some typos/deprecations in the file

Signed-off-by: Joe Kimmel <jkimmel@vmware.com>

* last changes (hopefully) to update to new docker libs

Signed-off-by: Joe Kimmel <jkimmel@vmware.com>

---------

Signed-off-by: Joe Kimmel <jkimmel@vmware.com>
2023-03-23 20:34:25 -04:00
..
asm Upgrade docker (#2440) 2023-03-23 20:34:25 -04:00
btf Upgrade docker (#2440) 2023-03-23 20:34:25 -04:00
internal Upgrade docker (#2440) 2023-03-23 20:34:25 -04:00
link Upgrade docker (#2440) 2023-03-23 20:34:25 -04:00
.clang-format Bump github.com/docker/docker to latest release (#1866) 2022-01-14 15:58:32 -05:00
.gitignore Bump deps (#1885) 2022-01-21 13:59:16 -05:00
.golangci.yaml Bump deps (#1885) 2022-01-21 13:59:16 -05:00
ARCHITECTURE.md Bump deps (#1885) 2022-01-21 13:59:16 -05:00
CODE_OF_CONDUCT.md Bump github.com/docker/docker to latest release (#1866) 2022-01-14 15:58:32 -05:00
CONTRIBUTING.md Bump deps (#1885) 2022-01-21 13:59:16 -05:00
LICENSE Bump github.com/docker/docker to latest release (#1866) 2022-01-14 15:58:32 -05:00
MAINTAINERS.md Upgrade docker (#2440) 2023-03-23 20:34:25 -04:00
Makefile Upgrade docker (#2440) 2023-03-23 20:34:25 -04:00
README.md Upgrade docker (#2440) 2023-03-23 20:34:25 -04:00
attachtype_string.go Bump deps (#1885) 2022-01-21 13:59:16 -05:00
collection.go Upgrade docker (#2440) 2023-03-23 20:34:25 -04:00
doc.go Upgrade docker (#2440) 2023-03-23 20:34:25 -04:00
elf_reader.go Upgrade docker (#2440) 2023-03-23 20:34:25 -04:00
info.go Upgrade docker (#2440) 2023-03-23 20:34:25 -04:00
linker.go Upgrade docker (#2440) 2023-03-23 20:34:25 -04:00
map.go Upgrade docker (#2440) 2023-03-23 20:34:25 -04:00
marshalers.go Upgrade docker (#2440) 2023-03-23 20:34:25 -04:00
prog.go Upgrade docker (#2440) 2023-03-23 20:34:25 -04:00
run-tests.sh Upgrade docker (#2440) 2023-03-23 20:34:25 -04:00
syscalls.go Upgrade docker (#2440) 2023-03-23 20:34:25 -04:00
types.go Upgrade docker (#2440) 2023-03-23 20:34:25 -04:00
types_string.go Bump deps (#1885) 2022-01-21 13:59:16 -05:00

README.md

eBPF

PkgGoDev

HoneyGopher

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.

The library is maintained by Cloudflare and Cilium.

See ebpf.io for other projects from the eBPF ecosystem.

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.

Getting Help

Please join the #ebpf-go channel on Slack if you have questions regarding the library.

Packages

This library includes the following packages:

  • asm contains a basic assembler, allowing you to write eBPF assembly instructions directly within your Go code. (You don't need to use this if you prefer to write your eBPF program in C.)
  • cmd/bpf2go allows compiling and embedding eBPF programs written in C within Go code. As well as compiling the C code, it auto-generates Go code for loading and manipulating the eBPF program and map objects.
  • link allows attaching eBPF to various hooks
  • perf allows reading from a PERF_EVENT_ARRAY
  • ringbuf allows reading from a BPF_MAP_TYPE_RINGBUF map
  • features implements the equivalent of bpftool feature probe for discovering BPF-related kernel features using native Go.
  • rlimit provides a convenient API to lift the RLIMIT_MEMLOCK constraint on kernels before 5.11.

Requirements

  • A version of Go that is supported by upstream
  • Linux >= 4.9. CI is run against kernel.org LTS releases. 4.4 should work but is not tested against.

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.

It is possible to regenerate data using Podman by overriding the CONTAINER_* variables: CONTAINER_ENGINE=podman CONTAINER_RUN_ARGS= make.

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

License

MIT

eBPF Gopher

The eBPF honeygopher is based on the Go gopher designed by Renee French.