Crates.io | selinux-sys |
lib.rs | selinux-sys |
version | 0.6.12 |
source | src |
created_at | 2021-03-16 22:16:10.601526 |
updated_at | 2024-09-13 03:07:17.631737 |
description | Flexible Mandatory Access Control (MAC) for Linux |
homepage | https://codeberg.org/koutheir/selinux-sys.git |
repository | https://codeberg.org/koutheir/selinux-sys.git |
max_upload_size | |
id | 369949 |
size | 29,456 |
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 Linux-specific. Building it for non-Linux platforms, or for the Linux kernel, results in an empty crate.
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_STATIC
SELINUX_PATH
SELINUX_INCLUDE_DIR
SELINUX_LIB_DIR
SYSROOT
CC
CFLAGS
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.
By default, this crate finds SELinux headers and library based on the default target C compiler.
This behavior can be changed by:
SELINUX_PATH
to the path of
a directory containing the sub-directories include
and lib
where
the headers and library are installed.SELINUX_INCLUDE_DIR
and SELINUX_LIB_DIR
to paths to the directories where headers and library
are present. If SELINUX_PATH
is also defined, then SELINUX_INCLUDE_DIR
and SELINUX_LIB_DIR
take precedence.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.This project adheres to Semantic Versioning.
The CHANGELOG.md
file details notable changes over time.