seccomp: log aborted system calls

parent a60c98aa
...@@ -1390,7 +1390,10 @@ int seccomp_notify_handler(int fd, uint32_t events, void *data, ...@@ -1390,7 +1390,10 @@ int seccomp_notify_handler(int fd, uint32_t events, void *data,
memset(req, 0, conf->seccomp.notifier.sizes.seccomp_notif); memset(req, 0, conf->seccomp.notifier.sizes.seccomp_notif);
ret = seccomp_notify_receive(fd, req); ret = seccomp_notify_receive(fd, req);
if (ret) { if (ret) {
SYSERROR("Failed to read seccomp notification"); if (errno == ENOENT)
TRACE("Intercepted system call aborted");
else
SYSERROR("Failed to read seccomp notification");
goto out; goto out;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment