Skip to content

Commit

Permalink
Fix selinux_enabled function
Browse files Browse the repository at this point in the history
Prior to this fix the selinux_enabled function would always return true,
even if selinux was set to disabled or permissive.
  • Loading branch information
ckyrouac committed Feb 13, 2024
1 parent 406b905 commit 0f223be
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions lib/src/lsm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,13 @@ const SELF_CURRENT: &str = "/proc/self/attr/current";

#[context("Querying selinux availability")]
pub(crate) fn selinux_enabled() -> Result<bool> {
let filesystems = std::fs::read_to_string("/proc/filesystems")?;
Ok(filesystems.contains("selinuxfs\n"))
let path = "/proc/1/root/sys/fs/selinux/enforce";
if Path::new(path).exists() {
let enabled = std::fs::read_to_string(path)?;
return Ok(enabled.eq("1"));
} else {
return Ok(false);
}
}

/// Get the current process SELinux security context
Expand Down

0 comments on commit 0f223be

Please sign in to comment.