]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
genirq/ipi: Fix NULL pointer deref in irq_data_get_affinity_mask()
authorSergey Shtylyov <s.shtylyov@omp.ru>
Wed, 17 Aug 2022 20:00:45 +0000 (23:00 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 11 Mar 2023 12:50:35 +0000 (13:50 +0100)
commit7448c73d64075051f50caed2c62f46553b69ab8a
tree3bae6a073ed3b750d4f8ea5621fd32699d635c94
parenta76ffcd7996f696b9ed0962567c96e99c01dfd7f
genirq/ipi: Fix NULL pointer deref in irq_data_get_affinity_mask()

[ Upstream commit feabecaff5902f896531dde90646ca5dfa9d4f7d ]

If ipi_send_{mask|single}() is called with an invalid interrupt number, all
the local variables there will be NULL. ipi_send_verify() which is invoked
from these functions does verify its 'data' parameter, resulting in a
kernel oops in irq_data_get_affinity_mask() as the passed NULL pointer gets
dereferenced.

Add a missing NULL pointer check in ipi_send_verify()...

Found by Linux Verification Center (linuxtesting.org) with the SVACE static
analysis tool.

Fixes: 3b8e29a82dd1 ("genirq: Implement ipi_send_mask/single()")
Signed-off-by: Sergey Shtylyov <s.shtylyov@omp.ru>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/r/b541232d-c2b6-1fe9-79b4-a7129459e4d0@omp.ru
Signed-off-by: Sasha Levin <sashal@kernel.org>
kernel/irq/ipi.c