28 releases
Uses new Rust 2024
| 0.6.15 | Jun 18, 2025 |
|---|---|
| 0.6.14 | Feb 22, 2025 |
| 0.6.13 | Nov 23, 2024 |
| 0.6.10 | Jul 28, 2024 |
| 0.2.0 | Mar 17, 2021 |
#1003 in Unix APIs
116,712 downloads per month
Used in 19 crates
(via selinux)
26KB
374 lines
selinux-sys: Unsafe Rust bindings for libselinux
SELinux is a flexible Mandatory Access Control (MAC) for Linux.
This crate exposes neither deprecated nor undocumented SELinux API functions and types.
This crate is specific to Android and some Linux distributions. Building it for other platforms, or for the Linux kernel, results in an empty crate.
Supported environment variables
This crate depends on some environment variables, and variants of those.
For each environment variable (e.g., CC), the following are the accepted
variants of it:
<var>_<target>, e.g.,CC_aarch64-unknown-linux-gnu.<var>_<target-with-underscores>, e.g.,CC_aarch64_unknown_linux_gnu.TARGET_<var>, e.g.,TARGET_CC.<var>, e.g.,CC.
The following environment variables (and their variants) affect how this crate is built:
SELINUX_STATICSELINUX_PATHSELINUX_INCLUDE_DIRSELINUX_LIB_DIRSYSROOTCCCFLAGS
Dynamic or static linking
This crate links to libselinux dynamically if possible, except when targeting
platforms based on the musl C library.
This behavior can be changed either by setting the environment variable
SELINUX_STATIC to 1, or by enabling the crate feature static.
If both are defined, then the value of SELINUX_STATIC takes precedence.
Setting SELINUX_STATIC to 0 mandates dynamic linking.
Finding SELinux library and headers
By default, this crate finds SELinux headers and library based on the default target C compiler.
This behavior can be changed by:
- Either defining the environment variable
SELINUX_PATHto the path of a directory containing the sub-directoriesincludeandlibwhere the headers and library are installed. - Or by defining one or both of the environment variables
SELINUX_INCLUDE_DIRandSELINUX_LIB_DIRto paths to the directories where headers and library are present. IfSELINUX_PATHis also defined, thenSELINUX_INCLUDE_DIRandSELINUX_LIB_DIRtake precedence.
Depending on this crate
This crate provides the following variables to other crates that depend on it:
DEP_SELINUX_INCLUDE: Path of the directory where library C header files reside.DEP_SELINUX_LIB: Path of the directory where the library binary resides.
Versioning
This project adheres to Semantic Versioning.
The CHANGELOG.md file details notable changes over time.
Dependencies
~0–2.3MB
~45K SLoC