From: "Jiawen Wu" <jiawenwu@trustnetic.com>
To: "'Jakub Kicinski'" <kuba@kernel.org>
Cc: <netdev@vger.kernel.org>, <mengyuanlou@net-swift.com>,
<andrew+netdev@lunn.ch>, <davem@davemloft.net>,
<edumazet@google.com>, <pabeni@redhat.com>,
<richardcochran@gmail.com>, <linux@armlinux.org.uk>,
<horms@kernel.org>, <kees@kernel.org>, <larysa.zaremba@intel.com>,
<leitao@debian.org>, <joe@dama.to>, <jacob.e.keller@intel.com>,
<fabio.baltieri@gmail.com>, <netdev@vger.kernel.org>,
<mengyuanlou@net-swift.com>, <andrew+netdev@lunn.ch>,
<davem@davemloft.net>, <edumazet@google.com>, <pabeni@redhat.com>,
<richardcochran@gmail.com>, <linux@armlinux.org.uk>,
<horms@kernel.org>, <kees@kernel.org>, <larysa.zaremba@intel.com>,
<leitao@debian.org>, <joe@dama.to>, <jacob.e.keller@intel.com>,
<fabio.baltieri@gmail.com>
Subject: RE: [PATCH net-next v2 5/6] net: wangxun: clear stored DMA addresses after dma_free_coherent()
Date: Fri, 8 May 2026 16:43:59 +0800 [thread overview]
Message-ID: <05d601dcdec6$d0c58a10$72509e30$@trustnetic.com> (raw)
In-Reply-To: <20260503021536.4127361-1-kuba@kernel.org>
On Sun, May 3, 2026 10:16 AM, Jakub Kicinski wrote:
> This is an AI-generated review of your patch. The human sending this
> email has considered the AI review valid, or at least plausible.
> ---
> net: wangxun: clear stored DMA addresses after dma_free_coherent()
>
> This commit clears the ring DMA addresses after freeing their resources via
> dma_free_coherent() in the wangxun driver. It aims to prevent use-after-free
> of the DMA rings at shutdown when WOL is enabled.
>
> > diff --git a/drivers/net/ethernet/wangxun/libwx/wx_lib.c b/drivers/net/ethernet/wangxun/libwx/wx_lib.c
> > index 3216dee778be7..51599f6b878e7 100644
> > --- a/drivers/net/ethernet/wangxun/libwx/wx_lib.c
> > +++ b/drivers/net/ethernet/wangxun/libwx/wx_lib.c
> > @@ -2462,6 +2462,7 @@ void wx_free_isb_resources(struct wx *wx)
> > dma_free_coherent(&pdev->dev, sizeof(u32) * 4,
> > wx->isb_mem, wx->isb_dma);
> > wx->isb_mem = NULL;
> > + wx->isb_dma = 0;
> > }
>
> This isn't a regression introduced by this patch, but can dma_free_coherent()
> be called with a NULL wx->isb_mem virtual address here?
>
> Since wx->isb_mem is only allocated when the interface is brought up, if the
> module is removed while the interface is down, wx->isb_mem will be NULL. Does
> passing a NULL virtual address to dma_free_coherent() cause a panic here, and
> should it be guarded by a NULL check?
>
> [ ... ]
>
> > @@ -2678,6 +2679,7 @@ static void wx_free_rx_resources(struct wx_ring *rx_ring)
> > rx_ring->desc, rx_ring->dma);
> >
> > rx_ring->desc = NULL;
> > + rx_ring->dma = 0;
>
> If rx_ring->dma is set to 0 here, and Wake-on-LAN is enabled, does this result
> in the hardware being programmed to DMA directly to physical address 0?
>
> Looking at ngbe_dev_shutdown(), it frees these resources and then calls
> wx_configure_rx(). Inside wx_configure_rx_ring(), the driver programs the
> base address registers WX_PX_RR_BAL with ring->dma, which is now 0. When a
> WOL packet arrives, could this cause silent memory corruption or fatal
> IOMMU faults?
For the hardware design on this device, WOL packets are handled before DMA ring.
So programming a zeroed ring->dma does not result in DMA transactions to
physical address 0. At this point, the original code is fine.
>
> Additionally, this wasn't introduced by this patch, but does the shutdown
> sequence trigger a NULL pointer dereference when WOL is active?
>
> Earlier in wx_free_rx_resources(), rx_ring->rx_buffer_info is freed and set
> to NULL, but ring->count retains its original value. During WOL shutdown,
> ngbe_dev_shutdown() frees these resources and then reconfigures the RX rings
> via wx_configure_rx_ring().
>
> If wx_configure_rx_ring() executes:
> memset(ring->rx_buffer_info, 0, sizeof(struct wx_rx_buffer) * ring->count);
>
> with a NULL pointer and a count > 0, won't this cause a kernel panic?
>
> [ ... ]
>
> > @@ -2906,6 +2910,7 @@ static int wx_setup_rx_resources(struct wx_ring *rx_ring)
> >
> > err_desc:
> > dma_free_coherent(dev, rx_ring->size, rx_ring->desc, rx_ring->dma);
> > + rx_ring->dma = 0;
> > err:
> > kvfree(rx_ring->rx_buffer_info);
> > rx_ring->rx_buffer_info = NULL;
>
> Should rx_ring->desc also be set to NULL here?
>
> If wx_alloc_page_pool() fails, the driver jumps to err_desc and frees the DMA
> memory, but leaves rx_ring->desc pointing to the freed memory. Since wx_ring
> structures can be reused across interface up/down cycles, could this dangling
> pointer bypass the if (!rx_ring->desc) safety check in wx_free_rx_resources()
> and cause a double-free later?
>
next prev parent reply other threads:[~2026-05-08 8:44 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-30 8:25 [PATCH net-next v2 0/6] net: wangxun: timeout and error Jiawen Wu
2026-04-30 8:25 ` [PATCH net-next v2 1/6] net: ngbe: implement libwx reset ops Jiawen Wu
2026-05-03 2:15 ` Jakub Kicinski
2026-05-06 9:05 ` Jiawen Wu
2026-04-30 8:25 ` [PATCH net-next v2 2/6] net: wangxun: add Tx timeout process Jiawen Wu
2026-05-03 2:15 ` Jakub Kicinski
2026-04-30 8:25 ` [PATCH net-next v2 3/6] net: wangxun: add reinit parameter to wx->do_reset callback Jiawen Wu
2026-04-30 8:25 ` [PATCH net-next v2 4/6] net: wangxun: extract the close_suspend sequence Jiawen Wu
2026-05-03 2:15 ` Jakub Kicinski
2026-04-30 8:25 ` [PATCH net-next v2 5/6] net: wangxun: clear stored DMA addresses after dma_free_coherent() Jiawen Wu
2026-05-03 2:15 ` Jakub Kicinski
2026-05-08 8:43 ` Jiawen Wu [this message]
2026-04-30 8:25 ` [PATCH net-next v2 6/6] net: wangxun: implement pci_error_handlers ops Jiawen Wu
2026-05-03 2:15 ` Jakub Kicinski
2026-05-09 8:29 ` Jiawen Wu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='05d601dcdec6$d0c58a10$72509e30$@trustnetic.com' \
--to=jiawenwu@trustnetic.com \
--cc=andrew+netdev@lunn.ch \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=fabio.baltieri@gmail.com \
--cc=horms@kernel.org \
--cc=jacob.e.keller@intel.com \
--cc=joe@dama.to \
--cc=kees@kernel.org \
--cc=kuba@kernel.org \
--cc=larysa.zaremba@intel.com \
--cc=leitao@debian.org \
--cc=linux@armlinux.org.uk \
--cc=mengyuanlou@net-swift.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=richardcochran@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox