illumos-priv

Crates.ioillumos-priv
lib.rsillumos-priv
version0.2.0
sourcesrc
created_at2019-06-20 21:14:55.410005
updated_at2021-03-16 16:18:42.890369
descriptionCrate providing an interface to illumos's PRIVILEGES(5)
homepage
repositoryhttps://github.com/joyent/rust-illumos-priv
max_upload_size
id142429
size60,336
Michael Zeller (papertigers)

documentation

README

rust-illumos-priv

Adjust illumos privilege sets.

illumos implements a set of privileges that provide fine-grained control over the actions of processes. The possession of a certain privilege allows a process to perform a specific set of restricted operations.

See PRIVILEGES(5) for a list of privileges and their descriptions, or take a look at this crates documentation.

Example

Dropping fork and exec privileges from a process running as root results in failure to fork-exec ls. Source for the below example can be found in examples/fork-exec.rs.

root - rustdev ~/src/rust-illumos-priv (git:master) # cargo run --example fork-exec
    Finished dev [unoptimized + debuginfo] target(s) in 0.02s
     Running `target/debug/examples/fork-exec`
failed to fork/exec ls: PermissionDenied
Commit count: 9

cargo fmt