* [PATCH] KVM: arm/arm64: Hold slots_lock when unregisering kvm io bus devices
@ 2017-05-17 19:18 Christoffer Dall
2017-05-17 19:46 ` Auger Eric
0 siblings, 1 reply; 2+ messages in thread
From: Christoffer Dall @ 2017-05-17 19:18 UTC (permalink / raw)
To: linux-arm-kernel
We were not holding the kvm->slots_lock as required when calling
kvm_io_bus_unregister_dev() as required.
This only affects the error path, but still, let's do our due
dilligence.
Reported by: Eric Auger <eric.auger@redhat.com>
Signed-off-by: Christoffer Dall <cdall@linaro.org>
---
virt/kvm/arm/vgic/vgic-mmio-v3.c | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/virt/kvm/arm/vgic/vgic-mmio-v3.c b/virt/kvm/arm/vgic/vgic-mmio-v3.c
index 9b0f681..201d5e2 100644
--- a/virt/kvm/arm/vgic/vgic-mmio-v3.c
+++ b/virt/kvm/arm/vgic/vgic-mmio-v3.c
@@ -614,15 +614,16 @@ int vgic_register_redist_iodev(struct kvm_vcpu *vcpu)
mutex_lock(&kvm->slots_lock);
ret = kvm_io_bus_register_dev(kvm, KVM_MMIO_BUS, sgi_base,
SZ_64K, &sgi_dev->dev);
- mutex_unlock(&kvm->slots_lock);
if (ret) {
kvm_io_bus_unregister_dev(kvm, KVM_MMIO_BUS,
&rd_dev->dev);
- return ret;
+ goto out;
}
vgic->vgic_redist_free_offset += 2 * SZ_64K;
- return 0;
+out:
+ mutex_unlock(&kvm->slots_lock);
+ return ret;
}
static void vgic_unregister_redist_iodev(struct kvm_vcpu *vcpu)
@@ -647,10 +648,12 @@ static int vgic_register_all_redist_iodevs(struct kvm *kvm)
if (ret) {
/* The current c failed, so we start with the previous one. */
+ mutex_lock(&kvm->slots_lock);
for (c--; c >= 0; c--) {
vcpu = kvm_get_vcpu(kvm, c);
vgic_unregister_redist_iodev(vcpu);
}
+ mutex_unlock(&kvm->slots_lock);
}
return ret;
--
2.9.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [PATCH] KVM: arm/arm64: Hold slots_lock when unregisering kvm io bus devices
2017-05-17 19:18 [PATCH] KVM: arm/arm64: Hold slots_lock when unregisering kvm io bus devices Christoffer Dall
@ 2017-05-17 19:46 ` Auger Eric
0 siblings, 0 replies; 2+ messages in thread
From: Auger Eric @ 2017-05-17 19:46 UTC (permalink / raw)
To: linux-arm-kernel
Hi Christoffer,
On 17/05/2017 21:18, Christoffer Dall wrote:
> We were not holding the kvm->slots_lock as required when calling
> kvm_io_bus_unregister_dev() as required.
>
> This only affects the error path, but still, let's do our due
> dilligence.
>
> Reported by: Eric Auger <eric.auger@redhat.com>
> Signed-off-by: Christoffer Dall <cdall@linaro.org>
Besides the typo in the commit title
Reviewed-by: Eric Auger <eric.auger@redhat.com>
Thanks
Eric
> ---
> virt/kvm/arm/vgic/vgic-mmio-v3.c | 9 ++++++---
> 1 file changed, 6 insertions(+), 3 deletions(-)
>
> diff --git a/virt/kvm/arm/vgic/vgic-mmio-v3.c b/virt/kvm/arm/vgic/vgic-mmio-v3.c
> index 9b0f681..201d5e2 100644
> --- a/virt/kvm/arm/vgic/vgic-mmio-v3.c
> +++ b/virt/kvm/arm/vgic/vgic-mmio-v3.c
> @@ -614,15 +614,16 @@ int vgic_register_redist_iodev(struct kvm_vcpu *vcpu)
> mutex_lock(&kvm->slots_lock);
> ret = kvm_io_bus_register_dev(kvm, KVM_MMIO_BUS, sgi_base,
> SZ_64K, &sgi_dev->dev);
> - mutex_unlock(&kvm->slots_lock);
> if (ret) {
> kvm_io_bus_unregister_dev(kvm, KVM_MMIO_BUS,
> &rd_dev->dev);
> - return ret;
> + goto out;
> }
>
> vgic->vgic_redist_free_offset += 2 * SZ_64K;
> - return 0;
> +out:
> + mutex_unlock(&kvm->slots_lock);
> + return ret;
> }
>
> static void vgic_unregister_redist_iodev(struct kvm_vcpu *vcpu)
> @@ -647,10 +648,12 @@ static int vgic_register_all_redist_iodevs(struct kvm *kvm)
>
> if (ret) {
> /* The current c failed, so we start with the previous one. */
> + mutex_lock(&kvm->slots_lock);
> for (c--; c >= 0; c--) {
> vcpu = kvm_get_vcpu(kvm, c);
> vgic_unregister_redist_iodev(vcpu);
> }
> + mutex_unlock(&kvm->slots_lock);
> }
>
> return ret;
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-05-17 19:46 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-17 19:18 [PATCH] KVM: arm/arm64: Hold slots_lock when unregisering kvm io bus devices Christoffer Dall
2017-05-17 19:46 ` Auger Eric
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).