Netdev List
 help / color / mirror / Atom feed
* [PATCH net] pds_core: fix cmd_regs access racing BAR unmap on reset
@ 2026-07-29  5:52 Nikhil P. Rao
  2026-08-04 10:26 ` Paolo Abeni
  0 siblings, 1 reply; 3+ messages in thread
From: Nikhil P. Rao @ 2026-07-29  5:52 UTC (permalink / raw)
  To: netdev
  Cc: kuba, brett.creeley, eric.joyner, andrew+netdev, davem, edumazet,
	pabeni, Nikhil P. Rao

pdsc_reset_prepare() and pdsc_reset_done()'s pdsc_map_bars() error path
clear/iounmap cmd_regs without devcmd_lock, and pdsc_firmware_update()'s
download loop derefs cmd_regs after dropping and retaking the lock
without re-checking. An FLR concurrent with a devlink flash can unmap
cmd_regs under an in-flight devcmd, causing a NULL deref or a write to
unmapped MMIO.

Take devcmd_lock across the BAR unmap/remap. Only the PF maps cmd_regs
and runs devcmd, so guard the locking to the PF.

pdsc_unmap_bars() also clears info_regs, which has its own readers under
config_lock (and a lockless debugfs reader); that teardown race is
pre-existing and handled separately.

Fixes: e96094c1d11c ("pds_core: Clear BARs on reset")
Reported-by: sashiko-bot <sashiko-bot@kernel.org>
Closes: https://sashiko.dev/#/patchset/20260708212222.296202-1-nikhil.rao%40amd.com?part=3
Assisted-by: Claude:claude-opus-4.8
Signed-off-by: Nikhil P. Rao <nikhil.rao@amd.com>
---
 drivers/net/ethernet/amd/pds_core/fw.c   |  6 ++++++
 drivers/net/ethernet/amd/pds_core/main.c | 10 +++++++++-
 2 files changed, 15 insertions(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/amd/pds_core/fw.c b/drivers/net/ethernet/amd/pds_core/fw.c
index fa626719e68d..cd7616ed9ef3 100644
--- a/drivers/net/ethernet/amd/pds_core/fw.c
+++ b/drivers/net/ethernet/amd/pds_core/fw.c
@@ -134,6 +134,12 @@ int pdsc_firmware_update(struct pdsc *pdsc, const struct firmware *fw,
 
 		copy_sz = min_t(unsigned int, buf_sz, fw->size - offset);
 		mutex_lock(&pdsc->devcmd_lock);
+		if (!pdsc->cmd_regs) {
+			mutex_unlock(&pdsc->devcmd_lock);
+			err = -ENXIO;
+			NL_SET_ERR_MSG_MOD(extack, "Device reset during flash");
+			goto err_out;
+		}
 		memcpy_toio(&pdsc->cmd_regs->data, fw->data + offset, copy_sz);
 		err = pdsc_devcmd_fw_download_locked(pdsc, data_addr,
 						     offset, copy_sz);
diff --git a/drivers/net/ethernet/amd/pds_core/main.c b/drivers/net/ethernet/amd/pds_core/main.c
index 8d94a4d70395..08af92b47d7d 100644
--- a/drivers/net/ethernet/amd/pds_core/main.c
+++ b/drivers/net/ethernet/amd/pds_core/main.c
@@ -501,7 +501,13 @@ static void pdsc_reset_prepare(struct pci_dev *pdev)
 		pdsc_auxbus_dev_del(pdsc, pdsc, &pdsc->padev);
 	}
 
-	pdsc_unmap_bars(pdsc);
+	if (!pdev->is_virtfn) {
+		mutex_lock(&pdsc->devcmd_lock);
+		pdsc_unmap_bars(pdsc);
+		mutex_unlock(&pdsc->devcmd_lock);
+	} else {
+		pdsc_unmap_bars(pdsc);
+	}
 	pci_release_regions(pdev);
 	if (pci_is_enabled(pdev))
 		pci_disable_device(pdev);
@@ -530,7 +536,9 @@ static void pdsc_reset_done(struct pci_dev *pdev)
 			return;
 		}
 
+		mutex_lock(&pdsc->devcmd_lock);
 		err = pdsc_map_bars(pdsc);
+		mutex_unlock(&pdsc->devcmd_lock);
 		if (err)
 			return;
 	}
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH net] pds_core: fix cmd_regs access racing BAR unmap on reset
  2026-07-29  5:52 [PATCH net] pds_core: fix cmd_regs access racing BAR unmap on reset Nikhil P. Rao
@ 2026-08-04 10:26 ` Paolo Abeni
  2026-08-05  0:28   ` Rao, Nikhil
  0 siblings, 1 reply; 3+ messages in thread
From: Paolo Abeni @ 2026-08-04 10:26 UTC (permalink / raw)
  To: Nikhil P. Rao, netdev
  Cc: kuba, brett.creeley, eric.joyner, andrew+netdev, davem, edumazet

On 7/29/26 7:52 AM, Nikhil P. Rao wrote:
> pdsc_reset_prepare() and pdsc_reset_done()'s pdsc_map_bars() error path
> clear/iounmap cmd_regs without devcmd_lock, and pdsc_firmware_update()'s
> download loop derefs cmd_regs after dropping and retaking the lock
> without re-checking. An FLR concurrent with a devlink flash can unmap
> cmd_regs under an in-flight devcmd, causing a NULL deref or a write to
> unmapped MMIO.
> 
> Take devcmd_lock across the BAR unmap/remap. Only the PF maps cmd_regs
> and runs devcmd, so guard the locking to the PF.
> 
> pdsc_unmap_bars() also clears info_regs, which has its own readers under
> config_lock (and a lockless debugfs reader); that teardown race is
> pre-existing and handled separately.
> 
> Fixes: e96094c1d11c ("pds_core: Clear BARs on reset")
> Reported-by: sashiko-bot <sashiko-bot@kernel.org>
> Closes: https://sashiko.dev/#/patchset/20260708212222.296202-1-nikhil.rao%40amd.com?part=3
> Assisted-by: Claude:claude-opus-4.8
> Signed-off-by: Nikhil P. Rao <nikhil.rao@amd.com>
> ---
>  drivers/net/ethernet/amd/pds_core/fw.c   |  6 ++++++
>  drivers/net/ethernet/amd/pds_core/main.c | 10 +++++++++-
>  2 files changed, 15 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/net/ethernet/amd/pds_core/fw.c b/drivers/net/ethernet/amd/pds_core/fw.c
> index fa626719e68d..cd7616ed9ef3 100644
> --- a/drivers/net/ethernet/amd/pds_core/fw.c
> +++ b/drivers/net/ethernet/amd/pds_core/fw.c
> @@ -134,6 +134,12 @@ int pdsc_firmware_update(struct pdsc *pdsc, const struct firmware *fw,
>  
>  		copy_sz = min_t(unsigned int, buf_sz, fw->size - offset);
>  		mutex_lock(&pdsc->devcmd_lock);
> +		if (!pdsc->cmd_regs) {

Sashiko notes this is still racy:

https://netdev-ai.bots.linux.dev/sashiko/#/patchset/20260729055258.1416225-1-nikhil.rao%40amd.com

The issue is marked as a pre-existing one, but IMHO is so strictly
related that deserve fixing in the same change.

/P


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH net] pds_core: fix cmd_regs access racing BAR unmap on reset
  2026-08-04 10:26 ` Paolo Abeni
@ 2026-08-05  0:28   ` Rao, Nikhil
  0 siblings, 0 replies; 3+ messages in thread
From: Rao, Nikhil @ 2026-08-05  0:28 UTC (permalink / raw)
  To: Paolo Abeni, netdev
  Cc: kuba, brett.creeley, eric.joyner, andrew+netdev, davem, edumazet,
	Nikhil P. Rao

On 8/4/2026 3:26 AM, Paolo Abeni wrote:
> 
> On 7/29/26 7:52 AM, Nikhil P. Rao wrote:
>> pdsc_reset_prepare() and pdsc_reset_done()'s pdsc_map_bars() error path
>> clear/iounmap cmd_regs without devcmd_lock, and pdsc_firmware_update()'s
>> download loop derefs cmd_regs after dropping and retaking the lock
>> without re-checking. An FLR concurrent with a devlink flash can unmap
>> cmd_regs under an in-flight devcmd, causing a NULL deref or a write to
>> unmapped MMIO.
>>
>> Take devcmd_lock across the BAR unmap/remap. Only the PF maps cmd_regs
>> and runs devcmd, so guard the locking to the PF.
>>
>> pdsc_unmap_bars() also clears info_regs, which has its own readers under
>> config_lock (and a lockless debugfs reader); that teardown race is
>> pre-existing and handled separately.
>>
>> Fixes: e96094c1d11c ("pds_core: Clear BARs on reset")
>> Reported-by: sashiko-bot <sashiko-bot@kernel.org>
>> Closes: https://sashiko.dev/#/patchset/20260708212222.296202-1-nikhil.rao%40amd.com?part=3
>> Assisted-by: Claude:claude-opus-4.8
>> Signed-off-by: Nikhil P. Rao <nikhil.rao@amd.com>
>> ---
>>   drivers/net/ethernet/amd/pds_core/fw.c   |  6 ++++++
>>   drivers/net/ethernet/amd/pds_core/main.c | 10 +++++++++-
>>   2 files changed, 15 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/net/ethernet/amd/pds_core/fw.c b/drivers/net/ethernet/amd/pds_core/fw.c
>> index fa626719e68d..cd7616ed9ef3 100644
>> --- a/drivers/net/ethernet/amd/pds_core/fw.c
>> +++ b/drivers/net/ethernet/amd/pds_core/fw.c
>> @@ -134,6 +134,12 @@ int pdsc_firmware_update(struct pdsc *pdsc, const struct firmware *fw,
>>
>>                copy_sz = min_t(unsigned int, buf_sz, fw->size - offset);
>>                mutex_lock(&pdsc->devcmd_lock);
>> +             if (!pdsc->cmd_regs) {
> 
> Sashiko notes this is still racy:
> 
> https://netdev-ai.bots.linux.dev/sashiko/#/patchset/20260729055258.1416225-1-nikhil.rao%40amd.com
> 
> The issue is marked as a pre-existing one, but IMHO is so strictly
> related that deserve fixing in the same change.
Agreed, v2 folds in the cmd_regs part:

https://lore.kernel.org/netdev/20260804235946.177762-1-nikhil.rao@amd.com/T/#u

A note on reachability: the path the review describes 
(pdsc_devcmd_locked() re-arming the health worker during reset, the 
worker then running pdsc_fw_up() -> pdsc_setup() -> pdsc_identify()) is 
no longer reachable since cd09971dcc1c ("pds_core: keep the health 
thread stopped during reset"), which disables the work item across the 
reset instead of cancelling it.

I left the download loop alone. An interrupted download is not committed
to flash: a reset clears the device's update session so a resumed
download is rejected, and the device verifies the staged image before 
writing it to a flash slot, reports PDS_RC_BAD_FW rather than activating it.

On centralizing the check, pdsc_devcmd_with_data() in the
PLDM series under review for net-next does exactly that. It isn't in
net, I'll convert pdsc_identify() and pdsc_core_init() to it once that 
series lands.

On intr_ctrl, intr_status and db_pages: the readers are quiesced before 
the unmap -- pdsc_fw_down() runs pdsc_teardown() -> pdsc_dev_uninit(), 
which frees the interrupts and the queues, so the interrupt and 
start/stop paths cannot run by then. v2 says this in the commit message.

What is left is debugfs, which outlives a reset: identity_show() reads
info_regs with no lock or NULL check, and the intr_ctrl regset reads
through a base captured at file creation. I have not posted a fix for
those; v2 says they are out of scope rather than claiming they are
handled elsewhere, as v1 did.

Thanks,
Nikhil

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-08-05  0:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-29  5:52 [PATCH net] pds_core: fix cmd_regs access racing BAR unmap on reset Nikhil P. Rao
2026-08-04 10:26 ` Paolo Abeni
2026-08-05  0:28   ` Rao, Nikhil

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox