KVM: arm64: timers: Fix resource leaks in kvm_timer_hyp_init()
authorDan Carpenter <dan.carpenter@linaro.org>
Tue, 13 Jun 2023 06:43:39 +0000 (09:43 +0300)
committerOliver Upton <oliver.upton@linux.dev>
Tue, 13 Jun 2023 12:06:05 +0000 (12:06 +0000)
Smatch detected this bug:
    arch/arm64/kvm/arch_timer.c:1425 kvm_timer_hyp_init()
    warn: missing unwind goto?

There are two resources to be freed the vtimer and ptimer.  The
line that Smatch complains about should free the vtimer first
before returning and then after that cleanup code should free
the ptimer.

I've added a out_free_ptimer_irq to free the ptimer and renamed
the existing label to out_free_vtimer_irq.

Fixes: 9e01dc76be6a ("KVM: arm/arm64: arch_timer: Assign the phys timer on VHE systems")
Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
Link: https://lore.kernel.org/r/72fffc35-7669-40b1-9d14-113c43269cf3@kili.mountain
Signed-off-by: Oliver Upton <oliver.upton@linux.dev>
arch/arm64/kvm/arch_timer.c

index 05b022be885b6718f23c53e3be50c278befd6611..0696732fa38cdab6488ea49dd4f15d720836ea3a 100644 (file)
@@ -1406,7 +1406,7 @@ int __init kvm_timer_hyp_init(bool has_gic)
                                            kvm_get_running_vcpus());
                if (err) {
                        kvm_err("kvm_arch_timer: error setting vcpu affinity\n");
-                       goto out_free_irq;
+                       goto out_free_vtimer_irq;
                }
 
                static_branch_enable(&has_gic_active_state);
@@ -1422,7 +1422,7 @@ int __init kvm_timer_hyp_init(bool has_gic)
                if (err) {
                        kvm_err("kvm_arch_timer: can't request ptimer interrupt %d (%d)\n",
                                host_ptimer_irq, err);
-                       return err;
+                       goto out_free_vtimer_irq;
                }
 
                if (has_gic) {
@@ -1430,7 +1430,7 @@ int __init kvm_timer_hyp_init(bool has_gic)
                                                    kvm_get_running_vcpus());
                        if (err) {
                                kvm_err("kvm_arch_timer: error setting vcpu affinity\n");
-                               goto out_free_irq;
+                               goto out_free_ptimer_irq;
                        }
                }
 
@@ -1439,11 +1439,15 @@ int __init kvm_timer_hyp_init(bool has_gic)
                kvm_err("kvm_arch_timer: invalid physical timer IRQ: %d\n",
                        info->physical_irq);
                err = -ENODEV;
-               goto out_free_irq;
+               goto out_free_vtimer_irq;
        }
 
        return 0;
-out_free_irq:
+
+out_free_ptimer_irq:
+       if (info->physical_irq > 0)
+               free_percpu_irq(host_ptimer_irq, kvm_get_running_vcpus());
+out_free_vtimer_irq:
        free_percpu_irq(host_vtimer_irq, kvm_get_running_vcpus());
        return err;
 }