mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 11:26:02 +09:00
x86/apic/vector: Handle legacy irq data correctly
The backport of upstream commit45d55e7bac("x86/apic/vector: Fix off by one in error path") missed to fixup the legacy interrupt data which is not longer available upstream. Handle legacy irq data correctly by clearing the legacy storage to prevent use after free. Fixes:7fd1335392("x86/apic/vector: Fix off by one in error path") - 4.4.y Fixes:c557481a94("x86/apic/vector: Fix off by one in error path") - 4.9.y Reported-by: Ben Hutchings <ben.hutchings@codethink.co.uk> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Ben Hutchings <ben.hutchings@codethink.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
c86bfc7b7b
commit
6bde094049
@@ -91,8 +91,12 @@ out_data:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static void free_apic_chip_data(struct apic_chip_data *data)
|
||||
static void free_apic_chip_data(unsigned int virq, struct apic_chip_data *data)
|
||||
{
|
||||
#ifdef CONFIG_X86_IO_APIC
|
||||
if (virq < nr_legacy_irqs())
|
||||
legacy_irq_data[virq] = NULL;
|
||||
#endif
|
||||
if (data) {
|
||||
free_cpumask_var(data->domain);
|
||||
free_cpumask_var(data->old_domain);
|
||||
@@ -316,11 +320,7 @@ static void x86_vector_free_irqs(struct irq_domain *domain,
|
||||
apic_data = irq_data->chip_data;
|
||||
irq_domain_reset_irq_data(irq_data);
|
||||
raw_spin_unlock_irqrestore(&vector_lock, flags);
|
||||
free_apic_chip_data(apic_data);
|
||||
#ifdef CONFIG_X86_IO_APIC
|
||||
if (virq + i < nr_legacy_irqs())
|
||||
legacy_irq_data[virq + i] = NULL;
|
||||
#endif
|
||||
free_apic_chip_data(virq + i, apic_data);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -361,7 +361,7 @@ static int x86_vector_alloc_irqs(struct irq_domain *domain, unsigned int virq,
|
||||
err = assign_irq_vector_policy(virq + i, node, data, info);
|
||||
if (err) {
|
||||
irq_data->chip_data = NULL;
|
||||
free_apic_chip_data(data);
|
||||
free_apic_chip_data(virq + i, data);
|
||||
goto error;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user