-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathmod.rs
60 lines (51 loc) · 1.43 KB
/
mod.rs
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
use std::process::Command;
use std::str;
use log::{error, trace};
use crate::{bitness, uname::uname, Info, Type, Version};
pub fn current_platform() -> Info {
trace!("freebsd::current_platform is called");
let version = uname("-r")
.map(Version::from_string)
.unwrap_or_else(|| Version::Unknown);
let info = Info {
os_type: get_os(),
version,
bitness: bitness::get(),
..Default::default()
};
trace!("Returning {:?}", info);
info
}
fn get_os() -> Type {
match uname("-s").as_deref() {
Some("MidnightBSD") => Type::MidnightBSD,
Some("FreeBSD") => {
let check_hardening = match Command::new("/sbin/sysctl")
.arg("hardening.version")
.output()
{
Ok(o) => o,
Err(e) => {
error!("Failed to invoke '/sbin/sysctl': {:?}", e);
return Type::FreeBSD;
}
};
match str::from_utf8(&check_hardening.stderr) {
Ok("0\n") => Type::HardenedBSD,
Ok(_) => Type::FreeBSD,
Err(_) => Type::FreeBSD,
}
}
_ => Type::Unknown,
}
}
#[cfg(test)]
mod tests {
use super::*;
use pretty_assertions::assert_eq;
#[test]
fn os_type() {
let version = current_platform();
assert_eq!(Type::FreeBSD, version.os_type());
}
}