[go: up one dir, main page]

caps 0.5.6

A pure-Rust library to work with Linux capabilities
Documentation
use crate::errors::CapsError;
use crate::nr;
use crate::Capability;
use std::io::Error;

pub fn clear() -> Result<(), CapsError> {
    for c in super::all() {
        if has_cap(c).unwrap_or(false) {
            drop(c)?;
        }
    }
    Ok(())
}

pub fn drop(cap: Capability) -> Result<(), CapsError> {
    let ret = unsafe { libc::prctl(nr::PR_CAPBSET_DROP, libc::c_uint::from(cap.index()), 0, 0) };
    match ret {
        0 => Ok(()),
        _ => Err(CapsError::from(format!(
            "PR_CAPBSET_DROP failure: {}",
            Error::last_os_error()
        ))),
    }
}

pub fn has_cap(cap: Capability) -> Result<bool, CapsError> {
    let ret = unsafe { libc::prctl(nr::PR_CAPBSET_READ, libc::c_uint::from(cap.index()), 0, 0) };
    match ret {
        0 => Ok(false),
        1 => Ok(true),
        _ => Err(CapsError::from(format!(
            "PR_CAPBSET_READ failure: {}",
            Error::last_os_error()
        ))),
    }
}

pub fn read() -> Result<super::CapsHashSet, CapsError> {
    let mut res = super::CapsHashSet::new();
    for c in super::all() {
        if has_cap(c).unwrap_or(false) {
            res.insert(c);
        }
    }
    Ok(res)
}