6 releases (2 stable)
1.0.1+v1.0.0 | Aug 25, 2022 |
---|---|
0.8.0+v0.8.0 | May 21, 2022 |
0.7.2+v0.7.0 | May 21, 2022 |
0.7.1+v0.7.0 | Apr 21, 2022 |
0.7.0+v0.7.0 | Apr 21, 2022 |
#976 in Unix APIs
24 downloads per month
Used in bpf-rs
1MB
30K
SLoC
Contains (Zip file, 2KB) bpf-object-fuzzer_seed_corpus.zip
bpfdeploy-libbpf-sys
Warning: This is a fork of libbpf-sys. Ideally, we intend to upstream most of the changes here, but until then this fork will be maintained for the bpfdeploy.io crate.
Rust bindings to libbpf from the Linux kernel
Maintainer: Alex Forster <alex@alexforster.com>
License: BSD-2-Clause
libbpf-sys is the packaged result of using bindgen to automatically generate Rust FFI bindings to libbpf from the Linux kernel.
Warning: this crate does not provide a high-level or "safe" API wrapper around libbpf. If you are looking for an easier way to use libbpf, check out these other crates that implement higher-level APIs using libbpf-sys...
- afxdp: a Rust interface for AF_XDP – GitHub | Crates.io
- libbpf-cargo: Cargo plugin to build bpf programs – GitHub | Crates.io
- libbpf-rs: a safe, idiomatic, and opinionated wrapper around libbpf-sys – GitHub | Crates.io
- rebpf: write and load eBPF programs in Rust – GitHub | Crates.io
- xsk-rs: a Rust interface for Linux AF_XDP sockets – Github | Crates.io
The community is encouraged to build higher-level crates using libbpf-sys. Please let me know if you do!
Building
As part of the cargo build
process, an included copy of libbpf is compiled and statically linked into the resulting binary. This means that, in order to build a project that depends on this crate, your system must provide a working C compiler toolchain (GCC and Clang should both work). Additionally, your system must provide development headers for zlib and libelf, and they must be discoverable via pkgconfig.
Distribution
When you add this crate as a dependency to your project, your resulting binaries will dynamically link with libz
and libelf
. This means that the systems where you run your binaries must have these libraries installed.
Versioning
Because the API of this crate is automatically generated from libbpf sources, it uses a versioning scheme based on the version of libbpf that it provides.
The "Major.Minor" semver numbers correspond exactly to the libbpf version that each release provides. For example, the 0.6.x
releases of this crate provides the API for the libbpf v0.6.x releases.
In order to allow for human error, the "Patch" semver number is used by this crate and does not necessarily match the provided libbpf version. For example, both the 0.6.1
and 0.6.2
releases of this crate contain bindings to libbpf v0.6.1, but the later release contains bugfixes and/or enhancements to the crate itself.
The exact version of libbpf that is provided by any given release can be found in the "Build Metadata" semver section, which comes after the +
in the version string. For example, 0.6.2+v0.6.1
indicates that the crate version is 0.6.2
and the upstream libbpf version is v0.6.1
.
Licensing and Dependencies
This crate is released under the BSD 2-Clause license, and is careful to avoid infecting users with viral licenses.
It currently depends on the following third-party libraries:
Website | License | Linkage | |
---|---|---|---|
libbpf | github.com/libbpf/libbpf | LGPL-2.1-only OR BSD-2-Clause |
Static |
libelf | sourceware.org/elfutils | LGPL-2.1-or-later OR LGPL-3.0-or-later |
Dynamic |
zlib | zlib.net | Zlib |
Dynamic |