birdcage 0.8.1

Cross-platform embeddable sandbox
Documentation
use std::path::PathBuf;
use std::ffi::CString;

use birdcage::{Birdcage, Sandbox};

use crate::TestSetup;

pub fn setup(_tempdir: PathBuf) -> TestSetup {
    TestSetup { sandbox: Birdcage::new(), data: String::new() }
}

pub fn validate(_data: String) {
    // Ensure `chdir` is allowed.
    let root_path = CString::new("/").unwrap();
    let result = unsafe { libc::chdir(root_path.as_ptr()) };
    assert_eq!(result, 0);

    // Ensure `unshare` is always blocked.
    let result = unsafe { libc::unshare(libc::CLONE_NEWUSER) };
    assert_eq!(result, -1);

    // Ensure `clone` is blocked with `CLONE_NEWUSER`.
    let stack = unsafe { libc::malloc(4096) };
    let flags = libc::CLONE_NEWUSER as libc::c_ulong;
    let result = unsafe { libc::syscall(libc::SYS_clone, flags, stack) };
    assert_eq!(result, -1);
}