Skip to content

Commit 1cf180c

Browse files
KAGA-KOKOH. Peter Anvin
authored andcommitted
x86, irq: Plug memory leak in sparse irq
free_irq_cfg() is not freeing the cpumask_vars in irq_cfg. Fixing this triggers a use after free caused by the fact that copying struct irq_cfg is done with memcpy, which copies the pointer not the cpumask. Fix both places. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Yinghai Lu <yhlu.kernel@gmail.com> LKML-Reference: <alpine.LFD.2.00.1009282052570.2416@localhost6.localdomain6> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: stable@kernel.org Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
1 parent d900329 commit 1cf180c

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

arch/x86/kernel/apic/io_apic.c

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -306,14 +306,19 @@ void arch_init_copy_chip_data(struct irq_desc *old_desc,
306306

307307
old_cfg = old_desc->chip_data;
308308

309-
memcpy(cfg, old_cfg, sizeof(struct irq_cfg));
309+
cfg->vector = old_cfg->vector;
310+
cfg->move_in_progress = old_cfg->move_in_progress;
311+
cpumask_copy(cfg->domain, old_cfg->domain);
312+
cpumask_copy(cfg->old_domain, old_cfg->old_domain);
310313

311314
init_copy_irq_2_pin(old_cfg, cfg, node);
312315
}
313316

314-
static void free_irq_cfg(struct irq_cfg *old_cfg)
317+
static void free_irq_cfg(struct irq_cfg *cfg)
315318
{
316-
kfree(old_cfg);
319+
free_cpumask_var(cfg->domain);
320+
free_cpumask_var(cfg->old_domain);
321+
kfree(cfg);
317322
}
318323

319324
void arch_free_chip_data(struct irq_desc *old_desc, struct irq_desc *desc)

0 commit comments

Comments
 (0)