landlock

Crates.iolandlock
lib.rslandlock
version0.4.0
sourcesrc
created_at2021-04-14 07:26:02.079539
updated_at2024-06-19 09:13:06.210761
descriptionLandlock LSM helpers
homepagehttps://landlock.io
repositoryhttps://github.com/landlock-lsm/rust-landlock
max_upload_size
id383666
size166,959
Mickaël Salaün (l0kod)

documentation

README

Rust Landlock library

Landlock is a security feature available since Linux 5.13. The goal is to enable to restrict ambient rights (e.g., global filesystem access) for a set of processes by creating safe security sandboxes as new security layers in addition to the existing system-wide access-controls. This kind of sandbox is expected to help mitigate the security impact of bugs, unexpected or malicious behaviors in applications. Landlock empowers any process, including unprivileged ones, to securely restrict themselves. More information about Landlock can be found in the official website.

This Rust crate provides a safe abstraction for the Landlock system calls along with some helpers.

Use cases

This crate is especially useful to protect users' data by sandboxing:

  • trusted applications dealing with potentially malicious data (e.g., complex file format, network request) that could exploit security vulnerabilities;
  • sandbox managers, container runtimes or shells launching untrusted applications.

Examples

A simple example can be found with the path_beneath_rules() helper. More complex examples can be found with the Ruleset documentation and the sandboxer example.

Crate documentation

Changelog

Commit count: 162

cargo fmt