Re: [PATCH] irqchip/gic: prevent buffer overflow in gic_ipi_send_mask()
From: Thomas Gleixner
Date: Thu Sep 05 2024 - 03:29:41 EST
On Wed, Sep 04 2024 at 23:23, Sergey Shtylyov wrote:
> ARM GIC arch v2 spec claims support for just 8 CPU interfaces. However,
> looking at the GIC driver's irq_set_affinity() method, it seems that the
> passed CPU mask may contain the logical CPU #s beyond 8, and that method
> filters them out before reading gic_cpu_map[], bailing out with
> -EINVAL.
The reasoning is correct in theory, but in reality it's a non problem.
Simply because processors which use this GIC version cannot have more
than 8 cores.
That means num_possible_cpus() <= 8 so the cpumask handed in cannot have
bits >= 8 set. Ergo for_each_cpu() can't return a bit which is >= 8.
Thanks
tglx