mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 04:02:20 +00:00
Revert "xsk: Support redirect to any socket bound to the same umem"
This reverts commit 2863d665ea
.
This patch introduced a potential kernel crash when multiple napi instances
redirect to the same AF_XDP socket. By removing the queue_index check, it is
possible for multiple napi instances to access the Rx ring at the same time,
which will result in a corrupted ring state which can lead to a crash when
flushing the rings in __xsk_flush(). This can happen when the linked list of
sockets to flush gets corrupted by concurrent accesses. A quick and small fix
is not possible, so let us revert this for now.
Reported-by: Yuval El-Hanany <YuvalE@radware.com>
Signed-off-by: Magnus Karlsson <magnus.karlsson@intel.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Link: https://lore.kernel.org/xdp-newbies/8100DBDC-0B7C-49DB-9995-6027F6E63147@radware.com
Link: https://lore.kernel.org/bpf/20240604122927.29080-2-magnus.karlsson@gmail.com
This commit is contained in:
parent
d0d1df8ba1
commit
7fcf26b315
@ -313,13 +313,10 @@ static bool xsk_is_bound(struct xdp_sock *xs)
|
||||
|
||||
static int xsk_rcv_check(struct xdp_sock *xs, struct xdp_buff *xdp, u32 len)
|
||||
{
|
||||
struct net_device *dev = xdp->rxq->dev;
|
||||
u32 qid = xdp->rxq->queue_index;
|
||||
|
||||
if (!xsk_is_bound(xs))
|
||||
return -ENXIO;
|
||||
|
||||
if (!dev->_rx[qid].pool || xs->umem != dev->_rx[qid].pool->umem)
|
||||
if (xs->dev != xdp->rxq->dev || xs->queue_id != xdp->rxq->queue_index)
|
||||
return -EINVAL;
|
||||
|
||||
if (len > xsk_pool_get_rx_frame_size(xs->pool) && !xs->sg) {
|
||||
|
Loading…
Reference in New Issue
Block a user