335584f502
CVE-2017-8309: audio: host memory lekage via capture buffer (bz #1446520) CVE-2017-8379: input: host memory lekage via keyboard events (bz #1446560) CVE-2017-8380: scsi: megasas: out-of-bounds read in megasas_mmio_write (bz #1446578) CVE-2017-7493: 9pfs: guest privilege escalation in virtfs mapped-file mode (bz #1451711) CVE-2017-9503: megasas: null pointer dereference while processing megasas command (bz #1459478) CVE-2017-10806: usb-redirect: stack buffer overflow in debug logging (bz #1468497) CVE-2017-9524: nbd: segfault due to client non-negotiation (bz #1460172) CVE-2017-10664: qemu-nbd: server breaks with SIGPIPE upon client abort (bz #1466192)
45 lines
1.6 KiB
Diff
45 lines
1.6 KiB
Diff
From: Max Reitz <mreitz@redhat.com>
|
|
Date: Sun, 11 Jun 2017 14:37:14 +0200
|
|
Subject: [PATCH] qemu-nbd: Ignore SIGPIPE
|
|
|
|
qemu proper has done so for 13 years
|
|
(8a7ddc38a60648257dc0645ab4a05b33d6040063), qemu-img and qemu-io have
|
|
done so for four years (526eda14a68d5b3596be715505289b541288ef2a).
|
|
Ignoring this signal is especially important in qemu-nbd because
|
|
otherwise a client can easily take down the qemu-nbd server by dropping
|
|
the connection when the server wants to send something, for example:
|
|
|
|
$ qemu-nbd -x foo -f raw -t null-co:// &
|
|
[1] 12726
|
|
$ qemu-io -c quit nbd://localhost/bar
|
|
can't open device nbd://localhost/bar: No export with name 'bar' available
|
|
[1] + 12726 broken pipe qemu-nbd -x foo -f raw -t null-co://
|
|
|
|
In this case, the client sends an NBD_OPT_ABORT and closes the
|
|
connection (because it is not required to wait for a reply), but the
|
|
server replies with an NBD_REP_ACK (because it is required to reply).
|
|
|
|
Signed-off-by: Max Reitz <mreitz@redhat.com>
|
|
Message-Id: <20170611123714.31292-1-mreitz@redhat.com>
|
|
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
|
|
(cherry picked from commit 041e32b8d9d076980b4e35317c0339e57ab888f1)
|
|
---
|
|
qemu-nbd.c | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/qemu-nbd.c b/qemu-nbd.c
|
|
index 483dd77a77..5deb37e03e 100644
|
|
--- a/qemu-nbd.c
|
|
+++ b/qemu-nbd.c
|
|
@@ -581,6 +581,10 @@ int main(int argc, char **argv)
|
|
sa_sigterm.sa_handler = termsig_handler;
|
|
sigaction(SIGTERM, &sa_sigterm, NULL);
|
|
|
|
+#ifdef CONFIG_POSIX
|
|
+ signal(SIGPIPE, SIG_IGN);
|
|
+#endif
|
|
+
|
|
module_call_init(MODULE_INIT_TRACE);
|
|
qcrypto_init(&error_fatal);
|
|
|