]> git.proxmox.com Git - pve-qemu.git/blame - debian/patches/extra/0001-seccomp-use-SIGSYS-signal-instead-of-killing-the-thr.patch
build qemu multithreaded
[pve-qemu.git] / debian / patches / extra / 0001-seccomp-use-SIGSYS-signal-instead-of-killing-the-thr.patch
CommitLineData
53e83913
WB
1From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= <marcandre.lureau@redhat.com>
3Date: Wed, 22 Aug 2018 19:02:47 +0200
4Subject: [PATCH] seccomp: use SIGSYS signal instead of killing the thread
5MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8
9The seccomp action SCMP_ACT_KILL results in immediate termination of
10the thread that made the bad system call. However, qemu being
11multi-threaded, it keeps running. There is no easy way for parent
12process / management layer (libvirt) to know about that situation.
13
14Instead, the default SIGSYS handler when invoked with SCMP_ACT_TRAP
15will terminate the program and core dump.
16
17This may not be the most secure solution, but probably better than
18just killing the offending thread. SCMP_ACT_KILL_PROCESS has been
19added in Linux 4.14 to improve the situation, which I propose to use
20by default if available in the next patch.
21
22Related to:
23https://bugzilla.redhat.com/show_bug.cgi?id=1594456
24
25Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
26Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
27Acked-by: Eduardo Otubo <otubo@redhat.com>
28---
29 qemu-seccomp.c | 2 +-
30 1 file changed, 1 insertion(+), 1 deletion(-)
31
32diff --git a/qemu-seccomp.c b/qemu-seccomp.c
33index 9cd8eb9499..b117a92559 100644
34--- a/qemu-seccomp.c
35+++ b/qemu-seccomp.c
36@@ -125,7 +125,7 @@ static int seccomp_start(uint32_t seccomp_opts)
37 continue;
38 }
39
40- rc = seccomp_rule_add_array(ctx, SCMP_ACT_KILL, blacklist[i].num,
41+ rc = seccomp_rule_add_array(ctx, SCMP_ACT_TRAP, blacklist[i].num,
42 blacklist[i].narg, blacklist[i].arg_cmp);
43 if (rc < 0) {
44 goto seccomp_return;
45--
462.11.0
47