811a9b1b70
- kvm-redhat-link-etc-qemu-ga-fsfreeze-hook-to-etc-qemu-kv.patch [bz#1738820] - kvm-seccomp-fix-killing-of-whole-process-instead-of-thre.patch [bz#1752376] - kvm-Revert-Drop-bogus-IPv6-messages.patch [bz#1867075] - kvm-block-rbd-add-namespace-to-qemu_rbd_strong_runtime_o.patch [bz#1821528] - Resolves: bz#1738820 ('-F' option of qemu-ga command cause the guest-fsfreeze-freeze command doesn't work) - Resolves: bz#1752376 (qemu use SCMP_ACT_TRAP even SCMP_ACT_KILL_PROCESS is available) - Resolves: bz#1821528 (missing namespace attribute when access the rbd image with namespace) - Resolves: bz#1867075 (CVE-2020-10756 virt:8.3/qemu-kvm: QEMU: slirp: networking out-of-bounds read information disclosure vulnerability [rhel-av-8])
52 lines
1.8 KiB
Diff
52 lines
1.8 KiB
Diff
From ba82420d04b2e2ca69d5ff4720e37dd0748936ea Mon Sep 17 00:00:00 2001
|
|
From: Stefano Garzarella <sgarzare@redhat.com>
|
|
Date: Wed, 16 Sep 2020 11:40:25 -0400
|
|
Subject: [PATCH 4/4] block/rbd: add 'namespace' to
|
|
qemu_rbd_strong_runtime_opts[]
|
|
|
|
RH-Author: Stefano Garzarella <sgarzare@redhat.com>
|
|
Message-id: <20200916114025.47973-2-sgarzare@redhat.com>
|
|
Patchwork-id: 98399
|
|
O-Subject: [RHEL-AV-8.3.0 qemu-kvm PATCH 1/1] block/rbd: add 'namespace' to qemu_rbd_strong_runtime_opts[]
|
|
Bugzilla: 1821528
|
|
RH-Acked-by: Danilo de Paula <ddepaula@redhat.com>
|
|
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
|
|
RH-Acked-by: Max Reitz <mreitz@redhat.com>
|
|
|
|
Commit 19ae9ae014 ("block/rbd: Add support for ceph namespaces")
|
|
introduced namespace support for RBD, but we forgot to add the
|
|
new 'namespace' options to qemu_rbd_strong_runtime_opts[].
|
|
|
|
The 'namespace' is used to identify the image, so it is a strong
|
|
option since it can changes the data of a BDS.
|
|
|
|
Buglink: https://bugzilla.redhat.com/show_bug.cgi?id=1821528
|
|
Fixes: 19ae9ae014 ("block/rbd: Add support for ceph namespaces")
|
|
Cc: Florian Florensa <fflorensa@online.net>
|
|
Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
|
|
Message-Id: <20200914190553.74871-1-sgarzare@redhat.com>
|
|
Reviewed-by: Jason Dillaman <dillaman@redhat.com>
|
|
Signed-off-by: Max Reitz <mreitz@redhat.com>
|
|
(cherry picked from commit 7bae7c805d82675eb3a02c744093703d84ada2d6)
|
|
Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
|
|
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
|
|
---
|
|
block/rbd.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/block/rbd.c b/block/rbd.c
|
|
index 688074c64b..5356753fbe 100644
|
|
--- a/block/rbd.c
|
|
+++ b/block/rbd.c
|
|
@@ -1289,6 +1289,7 @@ static QemuOptsList qemu_rbd_create_opts = {
|
|
|
|
static const char *const qemu_rbd_strong_runtime_opts[] = {
|
|
"pool",
|
|
+ "namespace",
|
|
"image",
|
|
"conf",
|
|
"snapshot",
|
|
--
|
|
2.27.0
|
|
|