2aacef
From 0a191f8306b4439049fcac8eea206835c144215e Mon Sep 17 00:00:00 2001
2aacef
From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= <cgzones@googlemail.com>
2aacef
Date: Fri, 4 Nov 2022 16:30:57 +0100
2aacef
Subject: [PATCH] core: update audit messages
2aacef
2aacef
Pass getuid() instead of literal `0` as auid, since user session
2aacef
managers also issue audit messages on SELinux denials.
2aacef
2aacef
(cherry picked from commit c826b7ef3272157167a5c9d493e9672f00d84b98)
2aacef
2aacef
Related: #2138081
2aacef
---
2aacef
 src/core/selinux-access.c | 4 ++--
2aacef
 1 file changed, 2 insertions(+), 2 deletions(-)
2aacef
2aacef
diff --git a/src/core/selinux-access.c b/src/core/selinux-access.c
2aacef
index c69baa8a1a..c1744cff92 100644
2aacef
--- a/src/core/selinux-access.c
2aacef
+++ b/src/core/selinux-access.c
2aacef
@@ -113,9 +113,9 @@ _printf_(2, 3) static int log_callback(int type, const char *fmt, ...) {
2aacef
 
2aacef
                 if (r >= 0) {
2aacef
                         if (type == SELINUX_AVC)
2aacef
-                                audit_log_user_avc_message(get_audit_fd(), AUDIT_USER_AVC, buf, NULL, NULL, NULL, 0);
2aacef
+                                audit_log_user_avc_message(get_audit_fd(), AUDIT_USER_AVC, buf, NULL, NULL, NULL, getuid());
2aacef
                         else if (type == SELINUX_ERROR)
2aacef
-                                audit_log_user_avc_message(get_audit_fd(), AUDIT_USER_SELINUX_ERR, buf, NULL, NULL, NULL, 0);
2aacef
+                                audit_log_user_avc_message(get_audit_fd(), AUDIT_USER_SELINUX_ERR, buf, NULL, NULL, NULL, getuid());
2aacef
 
2aacef
                         return 0;
2aacef
                 }