21255d
From 4e48673172b012a06575e4f5b681d3554eded2e2 Mon Sep 17 00:00:00 2001
21255d
From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= <cgzones@googlemail.com>
21255d
Date: Mon, 6 Jan 2020 15:27:23 +0100
21255d
Subject: [PATCH] selinux: add trigger for policy reload to refresh internal
21255d
 selabel cache
21255d
21255d
Reload the internal selabel cache automatically on SELinux policy reloads so non pid-1 daemons are participating.
21255d
21255d
Run the reload function `mac_selinux_reload()` not manually on daemon-reload, but rather pass it as callback to libselinux.
21255d
Trigger the callback prior usage of the systemd internal selabel cache by depleting the selinux netlink socket via `avc_netlink_check_nb()`.
21255d
21255d
Improves: a9dfac21ec85 ("core: reload SELinux label cache on daemon-reload")
21255d
Improves: #13363
21255d
(cherry picked from commit 61f3e897f13101f29fb8027e8839498a469ad58e)
21255d
21255d
Related: #1888912
21255d
---
21255d
 src/basic/selinux-util.c | 23 +++++++++++++++++++----
21255d
 src/basic/selinux-util.h |  1 -
21255d
 src/core/main.c          |  2 --
21255d
 3 files changed, 19 insertions(+), 7 deletions(-)
21255d
21255d
diff --git a/src/basic/selinux-util.c b/src/basic/selinux-util.c
21255d
index a078ce23ef..bfe3d015aa 100644
21255d
--- a/src/basic/selinux-util.c
21255d
+++ b/src/basic/selinux-util.c
21255d
@@ -10,6 +10,7 @@
21255d
 #include <syslog.h>
21255d
 
21255d
 #if HAVE_SELINUX
21255d
+#include <selinux/avc.h>
21255d
 #include <selinux/context.h>
21255d
 #include <selinux/label.h>
21255d
 #include <selinux/selinux.h>
21255d
@@ -32,6 +33,8 @@ DEFINE_TRIVIAL_CLEANUP_FUNC(context_t, context_free);
21255d
 #define _cleanup_freecon_ _cleanup_(freeconp)
21255d
 #define _cleanup_context_free_ _cleanup_(context_freep)
21255d
 
21255d
+static int mac_selinux_reload(int seqno);
21255d
+
21255d
 static int cached_use = -1;
21255d
 static struct selabel_handle *label_hnd = NULL;
21255d
 
21255d
@@ -63,6 +66,8 @@ int mac_selinux_init(void) {
21255d
         usec_t before_timestamp, after_timestamp;
21255d
         struct mallinfo before_mallinfo, after_mallinfo;
21255d
 
21255d
+        selinux_set_callback(SELINUX_CB_POLICYLOAD, (union selinux_callback) mac_selinux_reload);
21255d
+
21255d
         if (label_hnd)
21255d
                 return 0;
21255d
 
21255d
@@ -105,13 +110,12 @@ void mac_selinux_finish(void) {
21255d
 #endif
21255d
 }
21255d
 
21255d
-void mac_selinux_reload(void) {
21255d
-
21255d
 #if HAVE_SELINUX
21255d
+static int mac_selinux_reload(int seqno) {
21255d
         struct selabel_handle *backup_label_hnd;
21255d
 
21255d
         if (!label_hnd)
21255d
-                return;
21255d
+                return 0;
21255d
 
21255d
         backup_label_hnd = TAKE_PTR(label_hnd);
21255d
 
21255d
@@ -122,8 +126,10 @@ void mac_selinux_reload(void) {
21255d
                 selabel_close(backup_label_hnd);
21255d
         else
21255d
                 label_hnd = backup_label_hnd;
21255d
-#endif
21255d
+
21255d
+        return 0;
21255d
 }
21255d
+#endif
21255d
 
21255d
 int mac_selinux_fix(const char *path, LabelFixFlags flags) {
21255d
 
21255d
@@ -152,6 +158,9 @@ int mac_selinux_fix(const char *path, LabelFixFlags flags) {
21255d
         if (fstat(fd, &st) < 0)
21255d
                 return -errno;
21255d
 
21255d
+        /* Check for policy reload so 'label_hnd' is kept up-to-date by callbacks */
21255d
+        (void) avc_netlink_check_nb();
21255d
+
21255d
         if (selabel_lookup_raw(label_hnd, &fcon, path, st.st_mode) < 0) {
21255d
                 r = -errno;
21255d
 
21255d
@@ -345,6 +354,9 @@ static int selinux_create_file_prepare_abspath(const char *abspath, mode_t mode)
21255d
         assert(abspath);
21255d
         assert(path_is_absolute(abspath));
21255d
 
21255d
+        /* Check for policy reload so 'label_hnd' is kept up-to-date by callbacks */
21255d
+        (void) avc_netlink_check_nb();
21255d
+
21255d
         r = selabel_lookup_raw(label_hnd, &filecon, abspath, mode);
21255d
         if (r < 0) {
21255d
                 /* No context specified by the policy? Proceed without setting it. */
21255d
@@ -496,6 +508,9 @@ int mac_selinux_bind(int fd, const struct sockaddr *addr, socklen_t addrlen) {
21255d
 
21255d
         path = strndupa(un->sun_path, addrlen - offsetof(struct sockaddr_un, sun_path));
21255d
 
21255d
+        /* Check for policy reload so 'label_hnd' is kept up-to-date by callbacks */
21255d
+        (void) avc_netlink_check_nb();
21255d
+
21255d
         if (path_is_absolute(path))
21255d
                 r = selabel_lookup_raw(label_hnd, &fcon, path, S_IFSOCK);
21255d
         else {
21255d
diff --git a/src/basic/selinux-util.h b/src/basic/selinux-util.h
21255d
index 639c35b687..bd5207c318 100644
21255d
--- a/src/basic/selinux-util.h
21255d
+++ b/src/basic/selinux-util.h
21255d
@@ -13,7 +13,6 @@ void mac_selinux_retest(void);
21255d
 
21255d
 int mac_selinux_init(void);
21255d
 void mac_selinux_finish(void);
21255d
-void mac_selinux_reload(void);
21255d
 
21255d
 int mac_selinux_fix(const char *path, LabelFixFlags flags);
21255d
 int mac_selinux_apply(const char *path, const char *label);
21255d
diff --git a/src/core/main.c b/src/core/main.c
21255d
index d5c41da0c4..d897155644 100644
21255d
--- a/src/core/main.c
21255d
+++ b/src/core/main.c
21255d
@@ -1682,8 +1682,6 @@ static int invoke_main_loop(
21255d
                         saved_log_level = m->log_level_overridden ? log_get_max_level() : -1;
21255d
                         saved_log_target = m->log_target_overridden ? log_get_target() : _LOG_TARGET_INVALID;
21255d
 
21255d
-                        mac_selinux_reload();
21255d
-
21255d
                         (void) parse_configuration(saved_rlimit_nofile, saved_rlimit_memlock);
21255d
 
21255d
                         set_manager_defaults(m);