kernel_samsung_a53x/drivers/net/ethernet/broadcom/bnx2x
Thinh Tran 3b03484bcd net/bnx2x: Prevent access to a freed page in page_pool
[ Upstream commit d27e2da94a42655861ca4baea30c8cd65546f25d ]

Fix race condition leading to system crash during EEH error handling

During EEH error recovery, the bnx2x driver's transmit timeout logic
could cause a race condition when handling reset tasks. The
bnx2x_tx_timeout() schedules reset tasks via bnx2x_sp_rtnl_task(),
which ultimately leads to bnx2x_nic_unload(). In bnx2x_nic_unload()
SGEs are freed using bnx2x_free_rx_sge_range(). However, this could
overlap with the EEH driver's attempt to reset the device using
bnx2x_io_slot_reset(), which also tries to free SGEs. This race
condition can result in system crashes due to accessing freed memory
locations in bnx2x_free_rx_sge()

799  static inline void bnx2x_free_rx_sge(struct bnx2x *bp,
800				struct bnx2x_fastpath *fp, u16 index)
801  {
802	struct sw_rx_page *sw_buf = &fp->rx_page_ring[index];
803     struct page *page = sw_buf->page;
....
where sw_buf was set to NULL after the call to dma_unmap_page()
by the preceding thread.

    EEH: Beginning: 'slot_reset'
    PCI 0011:01:00.0#10000: EEH: Invoking bnx2x->slot_reset()
    bnx2x: [bnx2x_io_slot_reset:14228(eth1)]IO slot reset initializing...
    bnx2x 0011:01:00.0: enabling device (0140 -> 0142)
    bnx2x: [bnx2x_io_slot_reset:14244(eth1)]IO slot reset --> driver unload
    Kernel attempted to read user page (0) - exploit attempt? (uid: 0)
    BUG: Kernel NULL pointer dereference on read at 0x00000000
    Faulting instruction address: 0xc0080000025065fc
    Oops: Kernel access of bad area, sig: 11 [#1]
    .....
    Call Trace:
    [c000000003c67a20] [c00800000250658c] bnx2x_io_slot_reset+0x204/0x610 [bnx2x] (unreliable)
    [c000000003c67af0] [c0000000000518a8] eeh_report_reset+0xb8/0xf0
    [c000000003c67b60] [c000000000052130] eeh_pe_report+0x180/0x550
    [c000000003c67c70] [c00000000005318c] eeh_handle_normal_event+0x84c/0xa60
    [c000000003c67d50] [c000000000053a84] eeh_event_handler+0xf4/0x170
    [c000000003c67da0] [c000000000194c58] kthread+0x1c8/0x1d0
    [c000000003c67e10] [c00000000000cf64] ret_from_kernel_thread+0x5c/0x64

To solve this issue, we need to verify page pool allocations before
freeing.

Fixes: 4cace675d687 ("bnx2x: Alloc 4k fragment for each rx ring buffer element")
Signed-off-by: Thinh Tran <thinhtr@linux.ibm.com>
Reviewed-by: Jiri Pirko <jiri@nvidia.com>
Link: https://lore.kernel.org/r/20240315205535.1321-1-thinhtr@linux.ibm.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
2024-11-19 08:44:59 +01:00
..
bnx2x.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bnx2x_cmn.c net: vlan: introduce skb_vlan_eth_hdr() 2024-11-18 12:11:48 +01:00
bnx2x_cmn.h net/bnx2x: Prevent access to a freed page in page_pool 2024-11-19 08:44:59 +01:00
bnx2x_dcb.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bnx2x_dcb.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bnx2x_dump.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bnx2x_ethtool.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bnx2x_fw_defs.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bnx2x_fw_file_hdr.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bnx2x_hsi.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bnx2x_init.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bnx2x_init_ops.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bnx2x_link.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bnx2x_link.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bnx2x_main.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bnx2x_mfw_req.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bnx2x_reg.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bnx2x_self_test.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bnx2x_sp.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bnx2x_sp.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bnx2x_sriov.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bnx2x_sriov.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bnx2x_stats.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bnx2x_stats.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bnx2x_vfpf.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bnx2x_vfpf.h Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
Makefile Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00