summaryrefslogtreecommitdiff
path: root/src/shared/audit.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/audit.c')
-rw-r--r--src/shared/audit.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/shared/audit.c b/src/shared/audit.c
index e5c483ab08..97560cc9a3 100644
--- a/src/shared/audit.c
+++ b/src/shared/audit.c
@@ -33,6 +33,8 @@
#include "audit.h"
#include "util.h"
#include "log.h"
+#include "fileio.h"
+#include "virt.h"
int audit_session_from_pid(pid_t pid, uint32_t *id) {
char *s;
@@ -44,6 +46,10 @@ int audit_session_from_pid(pid_t pid, uint32_t *id) {
if (have_effective_cap(CAP_AUDIT_CONTROL) <= 0)
return -ENOENT;
+ /* Audit doesn't support containers right now */
+ if (detect_container(NULL) > 0)
+ return -ENOTSUP;
+
if (pid == 0)
r = read_one_line_file("/proc/self/sessionid", &s);
else {
@@ -89,6 +95,10 @@ int audit_loginuid_from_pid(pid_t pid, uid_t *uid) {
if (have_effective_cap(CAP_AUDIT_CONTROL) <= 0)
return -ENOENT;
+ /* Audit doesn't support containers right now */
+ if (detect_container(NULL) > 0)
+ return -ENOTSUP;
+
if (pid == 0)
r = read_one_line_file("/proc/self/loginuid", &s);
else {