summaryrefslogtreecommitdiffstats
path: root/src/app/process_killer.rs
blob: e367d99c8f88aa0ec2807ab105a6c5c85ced7971 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// Copied from SO: https://stackoverflow.com/a/55231715
#[cfg(target_os = "windows")]
use winapi::{
    shared::{minwindef::DWORD, ntdef::HANDLE},
    um::{
        processthreadsapi::{OpenProcess, TerminateProcess},
        winnt::{PROCESS_QUERY_INFORMATION, PROCESS_TERMINATE},
    },
};

/// This file is meant to house (OS specific) implementations on how to kill processes.
use crate::utils::error::BottomError;
use crate::Pid;

#[cfg(target_os = "windows")]
struct Process(HANDLE);

#[cfg(target_os = "windows")]
impl Process {
    fn open(pid: DWORD) -> Result<Process, String> {
        let pc = unsafe { OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_TERMINATE, 0, pid) };
        if pc.is_null() {
            return Err("OpenProcess".to_string());
        }
        Ok(Process(pc))
    }

    fn kill(self) -> Result<(), String> {
        unsafe { TerminateProcess(self.0, 1) };
        Ok(())
    }
}

/// Kills a process, given a PID.
pub fn kill_process_given_pid(pid: Pid) -> crate::utils::error::Result<()> {
    if cfg!(target_family = "unix") {
        #[cfg(any(target_family = "unix"))]
        {
            let output = unsafe { libc::kill(pid as i32, libc::SIGTERM) };
            if output != 0 {
                // We had an error...
                let err_code = std::io::Error::last_os_error().raw_os_error();
                let err = match err_code {
                Some(libc::ESRCH) => "the target process did not exist.",
                Some(libc::EPERM) => "the calling process does not have the permissions to terminate the target process(es).",
                Some(libc::EINVAL) => "an invalid signal was specified.",
                _ => "Unknown error occurred."
            };

                return if let Some(err_code) = err_code {
                    Err(BottomError::GenericError(format!(
                        "Error code {} - {}",
                        err_code, err,
                    )))
                } else {
                    Err(BottomError::GenericError(format!(
                        "Error code ??? - {}",
                        err,
                    )))
                };
            }
        }
    } else if cfg!(target_family = "windows") {
        #[cfg(target_family = "windows")]
        {
            let process = Process::open(pid as DWORD)?;
            process.kill()?;
        }
    } else {
        return Err(BottomError::GenericError(
            "Sorry, support operating systems outside the main three are not implemented yet!"
                .to_string(),
        ));
    }

    Ok(())
}