summaryrefslogtreecommitdiff
path: root/src/core/selinux-access.c
diff options
context:
space:
mode:
authorChristian Göttsche <cgzones@googlemail.com>2020-03-02 21:12:18 +0100
committerChristian Göttsche <cgzones@googlemail.com>2020-03-03 20:30:59 +0100
commit257188f80ce1a083e3a88b679b898a73fecab53b (patch)
treeb224ce6fc8ad9c7165a0cd2df2681e90c5155f7b /src/core/selinux-access.c
parent61f3e897f13101f29fb8027e8839498a469ad58e (diff)
downloadsystemd-257188f80ce1a083e3a88b679b898a73fecab53b.tar.gz
selinux: cache enforced status and treat retrieve failure as enforced mode
Diffstat (limited to 'src/core/selinux-access.c')
-rw-r--r--src/core/selinux-access.c13
1 files changed, 5 insertions, 8 deletions
diff --git a/src/core/selinux-access.c b/src/core/selinux-access.c
index 00f5241cd1..008a8ba9b6 100644
--- a/src/core/selinux-access.c
+++ b/src/core/selinux-access.c
@@ -143,16 +143,16 @@ static int access_init(sd_bus_error *error) {
return 1;
if (avc_open(NULL, 0) != 0) {
- int enforce, saved_errno = errno;
+ int saved_errno = errno;
+ const bool enforce = mac_selinux_enforcing();
- enforce = security_getenforce();
- log_full_errno(enforce != 0 ? LOG_ERR : LOG_WARNING, saved_errno, "Failed to open the SELinux AVC: %m");
+ log_full_errno(enforce ? LOG_ERR : LOG_WARNING, saved_errno, "Failed to open the SELinux AVC: %m");
/* If enforcement isn't on, then let's suppress this
* error, and just don't do any AVC checks. The
* warning we printed is hence all the admin will
* see. */
- if (enforce == 0)
+ if (!enforce)
return 0;
/* Return an access denied error, if we couldn't load
@@ -185,7 +185,7 @@ int mac_selinux_generic_access_check(
_cleanup_free_ char *cl = NULL;
_cleanup_freecon_ char *fcon = NULL;
char **cmdline = NULL;
- bool enforce = false; /* Will be set to the real value later if needed */
+ const bool enforce = mac_selinux_enforcing();
int r = 0;
assert(message);
@@ -223,7 +223,6 @@ int mac_selinux_generic_access_check(
if (getfilecon_raw(path, &fcon) < 0) {
r = -errno;
- enforce = security_getenforce() > 0;
log_warning_errno(r, "SELinux getfilecon_raw on '%s' failed%s (perm=%s): %m",
path,
@@ -240,7 +239,6 @@ int mac_selinux_generic_access_check(
} else {
if (getcon_raw(&fcon) < 0) {
r = -errno;
- enforce = security_getenforce() > 0;
log_warning_errno(r, "SELinux getcon_raw failed%s (perm=%s): %m",
enforce ? "" : ", ignoring",
@@ -266,7 +264,6 @@ int mac_selinux_generic_access_check(
r = selinux_check_access(scon, fcon, tclass, permission, &audit_info);
if (r < 0) {
r = errno_or_else(EPERM);
- enforce = security_getenforce() > 0;
if (enforce)
sd_bus_error_setf(error, SD_BUS_ERROR_ACCESS_DENIED, "SELinux policy denies access.");