mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] nvmem: brcm_nvram: reject empty NVRAM partition
@ 2026-07-03 22:28 Rosen Penev
  2026-07-16 21:23 ` Srinivas Kandagatla
  0 siblings, 1 reply; 2+ messages in thread
From: Rosen Penev @ 2026-07-03 22:28 UTC (permalink / raw)
  To: linux-kernel; +Cc: Srinivas Kandagatla, rafal

If the partition is completely erased (all padding bytes), the trimming
loop reduces data_len to 0. devm_kzalloc(dev, 0, GFP_KERNEL) returns
ZERO_SIZE_PTR ((void *)16), which is non-NULL and bypasses the NULL
check. The subsequent cast of priv->data to struct brcm_nvram_header *
and dereference of header->magic causes a page fault on address 0x10.

Reject data_len smaller than the header before allocating.

Assisted-by: opencode:big-pickle
Signed-off-by: Rosen Penev <rosenp@gmail.com>
---
 drivers/nvmem/brcm_nvram.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/drivers/nvmem/brcm_nvram.c b/drivers/nvmem/brcm_nvram.c
index a29183ecd3e0..9f77aee37121 100644
--- a/drivers/nvmem/brcm_nvram.c
+++ b/drivers/nvmem/brcm_nvram.c
@@ -84,6 +84,11 @@ static int brcm_nvram_copy_data(struct brcm_nvram *priv, struct platform_device
 	}
 	WARN(priv->data_len > SZ_128K, "Unexpected (big) NVRAM size: %zu B\n", priv->data_len);
 
+	if (priv->data_len < sizeof(struct brcm_nvram_header)) {
+		dev_err(priv->dev, "NVRAM data too small (%zu)\n", priv->data_len);
+		return -EINVAL;
+	}
+
 	priv->data = devm_kzalloc(priv->dev, priv->data_len, GFP_KERNEL);
 	if (!priv->data)
 		return -ENOMEM;
-- 
2.55.0


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

* Re: [PATCH] nvmem: brcm_nvram: reject empty NVRAM partition
  2026-07-03 22:28 [PATCH] nvmem: brcm_nvram: reject empty NVRAM partition Rosen Penev
@ 2026-07-16 21:23 ` Srinivas Kandagatla
  0 siblings, 0 replies; 2+ messages in thread
From: Srinivas Kandagatla @ 2026-07-16 21:23 UTC (permalink / raw)
  To: linux-kernel, Rosen Penev; +Cc: rafal


On Fri, 03 Jul 2026 15:28:30 -0700, Rosen Penev wrote:
> If the partition is completely erased (all padding bytes), the trimming
> loop reduces data_len to 0. devm_kzalloc(dev, 0, GFP_KERNEL) returns
> ZERO_SIZE_PTR ((void *)16), which is non-NULL and bypasses the NULL
> check. The subsequent cast of priv->data to struct brcm_nvram_header *
> and dereference of header->magic causes a page fault on address 0x10.
> 
> Reject data_len smaller than the header before allocating.
> 
> [...]

Applied, thanks!

[1/1] nvmem: brcm_nvram: reject empty NVRAM partition
      commit: 5f75913830bc584dc6f43af8dca8de0dd910517e

Best regards,
-- 
Srinivas Kandagatla <srini@kernel.org>


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

end of thread, other threads:[~2026-07-16 21:23 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-07-03 22:28 [PATCH] nvmem: brcm_nvram: reject empty NVRAM partition Rosen Penev
2026-07-16 21:23 ` Srinivas Kandagatla

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