Golang based SDK for kernel eBPF operations i.e, load/attach/detach eBPF programs and create/delete/update maps. SDK relies on Unix bpf() system calls.
SDK currently supports -
eBPF program types -
a. Traffic Classifiers
b. XDP
c. Kprobes/Kretprobes
d. Tracepoint probes
Ring buffer (would need kernel 5.10+)
SDK currently do not support -
Map in Map
Perf buffer
Contributions welcome!
Note: This is the first version of SDK and interface is subject to change so kindly review the release notes before upgrading.
Getting started
How to build SDK?
Run make build-linux - this will build the sdk binary.
This is indexed by the pinpath -
type BpfData struct {
Program ebpf_progs.BpfProgram // Return the program
Maps map[string]ebpf_maps.BpfMap // List of associated maps
}
All maps in the elf file
```
This is indexed by the map name -
Application can specify custom pinpath while loading the elf file.
Maps and Programs pinpath location is not customizable with the current version of SDK and will be installed under the below locations by default -
Program PinPath - "/sys/fs/bpf/globals/aws/programs/"
Map PinPath - "/sys/fs/bpf/globals/aws/maps/"
Map defintion should follow the below definition else the SDK will fail to create the map.
## How to debug SDK issues?
SDK logs are located here `/var/log/aws-routed-eni/ebpf-sdk.log`.
## How to run unit-test
Run `sudo make unit-test`
Note: you would need to run this on you linux system
## How to run functional tests
Go to -
cd test/
sudo make run-test
## Security
See [CONTRIBUTING](/mirrors/aws-ebpf-sdk-go/tree/main/CONTRIBUTING.md#security-issue-notifications) for more information.
If you think you’ve found a potential security issue, please do not post it in the Issues. Instead, please follow the
instructions [here](https://aws.amazon.com/security/vulnerability-reporting/) or [email AWS security directly](mailto:aws-security@amazon.com).
## License
This project is licensed under the Apache-2.0 License.
aws-ebpf-sdk-go
Golang based SDK for kernel eBPF operations i.e, load/attach/detach eBPF programs and create/delete/update maps. SDK relies on Unix bpf() system calls.
SDK currently supports -
SDK currently do not support -
Contributions welcome!
Note: This is the first version of SDK and interface is subject to change so kindly review the release notes before upgrading.
Getting started
How to build SDK?
Run
make build-linux- this will build the sdk binary.How to build elf file?
How to use the SDK?
Note: SDK expects the BPF File System (/sys/fs/bpf) to be mounted.
In your application,
On a successful load, SDK returns -
type BpfMap struct { MapFD uint32 MapID uint32 MapMetaData CreateEBPFMapInput }
struct bpf_map_def_pvt { __u32 type; __u32 key_size; __u32 value_size; __u32 max_entries; __u32 map_flags; __u32 pinning; __u32 inner_map_fd; };
cd test/ sudo make run-test