northstar-runtime 0.9.2

Northstar is an container runtime for Linux targetting embedded systems
Documentation
use log::debug;
use nix::{
    errno::Errno,
    libc::{self, c_ulong},
    sys::signal::Signal,
};

/// Set the parent death signal of the calling process
pub fn set_parent_death_signal(signal: Signal) {
    #[cfg(target_os = "android")]
    const PR_SET_PDEATHSIG: libc::c_int = 1;
    #[cfg(not(target_os = "android"))]
    use libc::PR_SET_PDEATHSIG;

    debug!("Setting parent death signal to {}", signal);

    let result = unsafe { nix::libc::prctl(PR_SET_PDEATHSIG, signal, 0, 0, 0) };
    Errno::result(result)
        .map(drop)
        .expect("failed to set PR_SET_PDEATHSIG");
}

/// Set the name of the current process
pub fn set_process_name(name: &str) {
    #[cfg(target_os = "android")]
    const PR_SET_NAME: libc::c_int = 15;
    #[cfg(not(target_os = "android"))]
    use libc::PR_SET_NAME;

    debug!("Setting process name to {}", name);

    // PR_SET_NAME (since Linux 2.6.9)
    // Set the name of the calling thread, using the value in the
    // location pointed to by (char *) arg2.  The name can be up
    // to 16 bytes long, including the terminating null byte.
    // (If the length of the string, including the terminating
    // null byte, exceeds 16 bytes, the string is silently
    // truncated.)  This is the same attribute that can be set
    // via pthread_setname_np(3) and retrieved using
    // pthread_getname_np(3).  The attribute is likewise
    // accessible via /proc/self/task/[tid]/comm (see proc(5)),
    // where [tid] is the thread ID of the calling thread, as
    // returned by gettid(2).
    let mut name = name.as_bytes().to_vec();
    name.truncate(15);
    name.push(b'\0');

    let result = unsafe { libc::prctl(PR_SET_NAME, name.as_ptr() as c_ulong, 0, 0, 0) };
    Errno::result(result)
        .map(drop)
        .expect("failed to set PR_SET_NAME");
}

// Set the child subreaper flag of the calling thread
pub fn set_child_subreaper(value: bool) {
    #[cfg(target_os = "android")]
    const PR_SET_CHILD_SUBREAPER: nix::libc::c_int = 36;
    #[cfg(not(target_os = "android"))]
    use nix::libc::PR_SET_CHILD_SUBREAPER;

    debug!("Setting child subreaper flag to {}", value);

    let value = u64::from(value);
    let result = unsafe { nix::libc::prctl(PR_SET_CHILD_SUBREAPER, value, 0, 0, 0) };
    Errno::result(result)
        .map(drop)
        .expect("failed to set child subreaper flag")
}