X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fshared%2Faudit.c;h=4c1496f601c5cf5bffa42e991eb11560712454f5;hb=a3b23257872fe2f8cf99aa2da008f55ada583bb3;hp=f101050825384ff43e5b8e1f711dfc6c93f21e09;hpb=f841a154efbb3162d2a732936f031ac7a6b0d4cf;p=elogind.git diff --git a/src/shared/audit.c b/src/shared/audit.c index f10105082..4c1496f60 100644 --- a/src/shared/audit.c +++ b/src/shared/audit.c @@ -19,20 +19,13 @@ along with systemd; If not, see . ***/ -#include -#include -#include #include -#include #include -#include #include "macro.h" #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) { _cleanup_free_ char *s = NULL; @@ -80,3 +73,21 @@ int audit_loginuid_from_pid(pid_t pid, uid_t *uid) { *uid = (uid_t) u; return 0; } + +bool use_audit(void) { + static int cached_use = -1; + + if (cached_use < 0) { + int fd; + + fd = socket(AF_NETLINK, SOCK_RAW|SOCK_CLOEXEC|SOCK_NONBLOCK, NETLINK_AUDIT); + if (fd < 0) + cached_use = errno != EAFNOSUPPORT && errno != EPROTONOSUPPORT; + else { + cached_use = true; + safe_close(fd); + } + } + + return cached_use; +}