libbpf-sys 1.1.0+v1.1.0

Rust bindings to libbpf from the Linux kernel
Documentation
# libbpf-sys [![Build status]https://github.com/libbpf/libbpf-sys/workflows/CI/badge.svg]https://github.com/libbpf/libbpf-sys/actions?query=workflow%3A%22CI%22 [![crates.io version number badge]https://img.shields.io/crates/v/libbpf-sys.svg]https://crates.io/crates/libbpf-sys

**Rust bindings to _libbpf_ from the Linux kernel**

**Maintainer:** Alex Forster \<alex@alexforster.com\><br/>
**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]https://github.com/aterlo/afxdp-rs | [Crates.io]https://crates.io/crates/afxdp
 * **libbpf-cargo:** Cargo plugin to build bpf programs – [GitHub]https://github.com/libbpf/libbpf-rs | [Crates.io]https://crates.io/crates/libbpf-cargo
 * **libbpf-rs:** a safe, idiomatic, and opinionated wrapper around libbpf-sys – [GitHub]https://github.com/libbpf/libbpf-rs | [Crates.io]https://crates.io/crates/libbpf-rs
 * **rebpf:** write and load eBPF programs in Rust – [GitHub]https://github.com/uccidibuti/rebpf | [Crates.io]https://crates.io/crates/rebpf
 * **xsk-rs:** a Rust interface for Linux AF_XDP sockets – [Github]https://github.com/DouglasGray/xsk-rs | [Crates.io]https://crates.io/crates/xsk-rs

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_.

Building on a fresh Debian/Ubuntu installation:

```sh
$ apt-get install git rustc cargo build-essential pkgconf zlib1g-dev libelf-dev
$ git clone --recurse-submodules https://github.com/libbpf/libbpf-sys.git && cd libbpf-sys
$ cargo build
```

Building on a fresh RHEL/Fedora installation:

```sh
$ yum install git rust cargo gcc make pkgconf zlib-devel elfutils-libelf-devel
$ git clone --recurse-submodules https://github.com/libbpf/libbpf-sys.git && cd libbpf-sys
$ cargo build
```

### 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]https://github.com/libbpf/libbpf/ | `LGPL-2.1-only OR BSD-2-Clause`          | Static  |
| **libelf** | [sourceware.org/elfutils]https://sourceware.org/elfutils/   | `LGPL-2.1-or-later OR LGPL-3.0-or-later` | Dynamic |
| **zlib**   | [zlib.net]https://www.zlib.net/                             | `Zlib`                                   | Dynamic |