* [PATCH] netdevsim: psp: reset spi on key rotation and check for exhaustion on alloc
@ 2026-05-15 17:08 Daniel Zahka
0 siblings, 0 replies; only message in thread
From: Daniel Zahka @ 2026-05-15 17:08 UTC (permalink / raw)
To: Jakub Kicinski, Andrew Lunn, David S. Miller, Eric Dumazet,
Paolo Abeni, Willem de Bruijn
Cc: netdev, linux-kernel
The PSP spec states that the lower 31b of the SPI need to be
non-zero. Though not in the spec, I think it is reasonable to reset
the lower 31b of the spi space after a key rotation, and to also
decline to generate session keys when the lower 31b saturate.
Assisted-by: Claude:claude-opus-4.7
Signed-off-by: Daniel Zahka <daniel.zahka@gmail.com>
---
This commit was originally part of the series:
https://lore.kernel.org/netdev/20260508-nsim-psp-crypto-v1-0-4b50ed09b794@gmail.com/
But it stands alone, so I am submitting individually first.
---
drivers/net/netdevsim/psp.c | 21 ++++++++++++++++-----
1 file changed, 16 insertions(+), 5 deletions(-)
diff --git a/drivers/net/netdevsim/psp.c b/drivers/net/netdevsim/psp.c
index 6936ecb8173e..c6000ebc6bc8 100644
--- a/drivers/net/netdevsim/psp.c
+++ b/drivers/net/netdevsim/psp.c
@@ -132,14 +132,15 @@ nsim_rx_spi_alloc(struct psp_dev *psd, u32 version,
struct netlink_ext_ack *extack)
{
struct netdevsim *ns = psd->drv_priv;
- unsigned int new;
int i;
- new = ++ns->psp.spi & PSP_SPI_KEY_ID;
- if (psd->generation & 1)
- new |= PSP_SPI_KEY_PHASE;
+ /* Check if incrementing the spi would change the phase bit */
+ if ((ns->psp.spi & PSP_SPI_KEY_ID) == PSP_SPI_KEY_ID) {
+ NL_SET_ERR_MSG(extack, "SPI space exhausted");
+ return -ENOSPC;
+ }
- assoc->spi = cpu_to_be32(new);
+ assoc->spi = cpu_to_be32(++ns->psp.spi);
assoc->key[0] = psd->generation;
for (i = 1; i < PSP_MAX_KEY; i++)
assoc->key[i] = ns->psp.spi + i;
@@ -162,6 +163,16 @@ static int nsim_assoc_add(struct psp_dev *psd, struct psp_assoc *pas,
static int nsim_key_rotate(struct psp_dev *psd, struct netlink_ext_ack *extack)
{
+ struct netdevsim *ns = psd->drv_priv;
+
+ /* Flip key phase and reset SPI to 0 within that space
+ * (will be pre-incremented, as 0 is an invalid SPI).
+ */
+ if (ns->psp.spi & PSP_SPI_KEY_PHASE)
+ ns->psp.spi = 0;
+ else
+ ns->psp.spi = PSP_SPI_KEY_PHASE;
+
return 0;
}
---
base-commit: 822d4a8e390a08ccfaf2abb347ae670b230b196f
change-id: 20260515-spi-handle-8be9eb842667
Best regards,
--
Daniel Zahka <daniel.zahka@gmail.com>
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-05-15 17:08 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-15 17:08 [PATCH] netdevsim: psp: reset spi on key rotation and check for exhaustion on alloc Daniel Zahka
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox