]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
6.6-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 21 Jul 2026 14:16:31 +0000 (16:16 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 21 Jul 2026 14:16:31 +0000 (16:16 +0200)
added patches:
kvm-move-kvm_io_bus_get_dev-locking-responsibilities-to-callers.patch

queue-6.6/kvm-move-kvm_io_bus_get_dev-locking-responsibilities-to-callers.patch [new file with mode: 0644]
queue-6.6/series

diff --git a/queue-6.6/kvm-move-kvm_io_bus_get_dev-locking-responsibilities-to-callers.patch b/queue-6.6/kvm-move-kvm_io_bus_get_dev-locking-responsibilities-to-callers.patch
new file mode 100644 (file)
index 0000000..eef0986
--- /dev/null
@@ -0,0 +1,79 @@
+From 3a07249981629ace483ebbef81ef6b34c2d2afec Mon Sep 17 00:00:00 2001
+From: Marc Zyngier <maz@kernel.org>
+Date: Sat, 27 Jun 2026 11:51:05 +0100
+Subject: KVM: Move kvm_io_bus_get_dev() locking responsibilities to callers
+
+From: Marc Zyngier <maz@kernel.org>
+
+commit 3a07249981629ace483ebbef81ef6b34c2d2afec upstream.
+
+kvm_io_bus_get_dev() returns a device that is only matched by the
+address, and nothing else. This can cause a lifetime issue if
+the matched device is not the expected type, as by the time
+the caller can introspect the object, it might be gone (the srcu
+lock having been dropped).
+
+Given that there is only a single user of this helper, the simplest
+option is to move the locking responsibility to the caller, which
+can keep the srcu lock held for as long as it wants.
+
+Note that this aligns with other kvm_io_bus*() helpers, which
+already require the srcu lock to be held by the callers.
+
+Reported-by: Will Deacon <will@kernel.org>
+Fixes: 8a39d00670f07 ("KVM: kvm_io_bus: Add kvm_io_bus_get_dev() call")
+Link: https://lore.kernel.org/all/20260626111344.802555-1-maz@kernel.org
+Cc: stable@vger.kernel.org
+Reviewed-by: Oliver Upton <oupton@kernel.org>
+Link: https://patch.msgid.link/20260627105105.1005990-1-maz@kernel.org
+Signed-off-by: Marc Zyngier <maz@kernel.org>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+---
+ arch/arm64/kvm/vgic/vgic-its.c |    2 ++
+ virt/kvm/kvm_main.c            |   16 +++++-----------
+ 2 files changed, 7 insertions(+), 11 deletions(-)
+
+--- a/arch/arm64/kvm/vgic/vgic-its.c
++++ b/arch/arm64/kvm/vgic/vgic-its.c
+@@ -713,6 +713,8 @@ struct vgic_its *vgic_msi_to_its(struct
+       address = (u64)msi->address_hi << 32 | msi->address_lo;
++      guard(srcu)(&kvm->srcu);
++
+       kvm_io_dev = kvm_io_bus_get_dev(kvm, KVM_MMIO_BUS, address);
+       if (!kvm_io_dev)
+               return ERR_PTR(-EINVAL);
+--- a/virt/kvm/kvm_main.c
++++ b/virt/kvm/kvm_main.c
+@@ -5643,25 +5643,19 @@ struct kvm_io_device *kvm_io_bus_get_dev
+                                        gpa_t addr)
+ {
+       struct kvm_io_bus *bus;
+-      int dev_idx, srcu_idx;
+-      struct kvm_io_device *iodev = NULL;
++      int dev_idx;
+-      srcu_idx = srcu_read_lock(&kvm->srcu);
++      lockdep_assert_held(&kvm->srcu);
+       bus = srcu_dereference(kvm->buses[bus_idx], &kvm->srcu);
+       if (!bus)
+-              goto out_unlock;
++              return NULL;
+       dev_idx = kvm_io_bus_get_first_dev(bus, addr, 1);
+       if (dev_idx < 0)
+-              goto out_unlock;
++              return NULL;
+-      iodev = bus->range[dev_idx].dev;
+-
+-out_unlock:
+-      srcu_read_unlock(&kvm->srcu, srcu_idx);
+-
+-      return iodev;
++      return bus->range[dev_idx].dev;
+ }
+ EXPORT_SYMBOL_GPL(kvm_io_bus_get_dev);
index a01571310052791c45b653843cee861e0b2cd7fc..27c94f670743baa85ac8f0bd005f13c376dfb217 100644 (file)
@@ -1248,3 +1248,4 @@ bluetooth-hci_core-enable-buffer-flow-control-for-sco-esco.patch
 bluetooth-separate-cis_link-and-bis_link-link-types.patch
 bluetooth-hci_sync-annotate-data-races-around-hdev-req_status.patch
 bluetooth-hci_conn-fix-null-ptr-deref-in-hci_abort_conn.patch
+kvm-move-kvm_io_bus_get_dev-locking-responsibilities-to-callers.patch