Skip to content
Commit f0363af9 authored by Toke Høiland-Jørgensen's avatar Toke Høiland-Jørgensen Committed by Sasha Levin
Browse files

cpumap: Zero-initialise xdp_rxq_info struct before running XDP program

[ Upstream commit 2487007a ]

When running an XDP program that is attached to a cpumap entry, we don't
initialise the xdp_rxq_info data structure being used in the xdp_buff
that backs the XDP program invocation. Tobias noticed that this leads to
random values being returned as the xdp_md->rx_queue_index value for XDP
programs running in a cpumap.

This means we're basically returning the contents of the uninitialised
memory, which is bad. Fix this by zero-initialising the rxq data
structure before running the XDP program.

Fixes: 92164774

 ("bpf: cpumap: Add the possibility to attach an eBPF program to cpumap")
Reported-by: default avatarTobias Böhm <tobias@aibor.de>
Signed-off-by: default avatarToke Høiland-Jørgensen <toke@redhat.com>
Link: https://lore.kernel.org/r/20240305213132.11955-1-toke@redhat.com
Signed-off-by: default avatarMartin KaFai Lau <martin.lau@kernel.org>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent cae33032
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment