virtiofsd: Add restart_syscall to the seccomp whitelist
authorGreg Kurz <groug@kaod.org>
Mon, 1 Feb 2021 19:33:05 +0000 (20:33 +0100)
committerDr. David Alan Gilbert <dgilbert@redhat.com>
Thu, 4 Feb 2021 17:50:08 +0000 (17:50 +0000)
This is how linux restarts some system calls after SIGSTOP/SIGCONT.
This is needed to avoid virtiofsd termination when resuming execution
under GDB for example.

Signed-off-by: Greg Kurz <groug@kaod.org>
Message-Id: <20210201193305.136390-1-groug@kaod.org>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
tools/virtiofsd/passthrough_seccomp.c

index 1ecf5bf318b32208a5678535d07c43031cb80494..ea852e2e33b5fc34f39fdc886833224405723f00 100644 (file)
@@ -89,6 +89,7 @@ static const int syscall_whitelist[] = {
     SCMP_SYS(renameat),
     SCMP_SYS(renameat2),
     SCMP_SYS(removexattr),
+    SCMP_SYS(restart_syscall),
     SCMP_SYS(rt_sigaction),
     SCMP_SYS(rt_sigprocmask),
     SCMP_SYS(rt_sigreturn),