All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 1/1] drm/mediatek: Fix potential KP on 0 bytes nvmem cell read
@ 2024-09-27  9:03 Liankun Yang
  2024-10-09 15:41 ` Guillaume Ranquet
  2024-10-23  5:15   ` CK Hu (胡俊光)
  0 siblings, 2 replies; 6+ messages in thread
From: Liankun Yang @ 2024-09-27  9:03 UTC (permalink / raw)
  To: chunkuang.hu, p.zabel, airlied, simona, matthias.bgg,
	angelogioacchino.delregno, rex-bc.chen, msp, granquet, ck.hu,
	jitao.shi, mac.shen, peng.liu, liankun.yang
  Cc: Project_Global_Chrome_Upstream_Group, dri-devel, linux-mediatek,
	linux-kernel, linux-arm-kernel

If the len is 0, kernel crash will occur when performing operations.
Add the len check conditions to prevent kernel crash.

Fixes: f70ac097a2cf ("drm/mediatek: Add MT8195 Embedded DisplayPort driver")
Signed-off-by: Liankun Yang <liankun.yang@mediatek.com>
---
Changes in V2:
- Fix the commit title.
- Remove blank line between the Fixes and Signe-off-by.
- Modify the judgment writing method.
Per suggestion from the previous thread:
https://patchwork.kernel.org/project/linux-mediatek/patch/20240925084116.28848-1-liankun.yang@mediatek.com/
---
 drivers/gpu/drm/mediatek/mtk_dp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/mediatek/mtk_dp.c b/drivers/gpu/drm/mediatek/mtk_dp.c
index d8796a904eca..9ecdf62398ee 100644
--- a/drivers/gpu/drm/mediatek/mtk_dp.c
+++ b/drivers/gpu/drm/mediatek/mtk_dp.c
@@ -1082,7 +1082,7 @@ static void mtk_dp_get_calibration_data(struct mtk_dp *mtk_dp)
 	buf = (u32 *)nvmem_cell_read(cell, &len);
 	nvmem_cell_put(cell);
 
-	if (IS_ERR(buf) || ((len / sizeof(u32)) != 4)) {
+	if (IS_ERR(buf) || !len || ((len / sizeof(u32)) != 4)) {
 		dev_warn(dev, "Failed to read nvmem_cell_read\n");
 
 		if (!IS_ERR(buf))
-- 
2.45.2



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

end of thread, other threads:[~2024-10-28 13:20 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-27  9:03 [PATCH v2 1/1] drm/mediatek: Fix potential KP on 0 bytes nvmem cell read Liankun Yang
2024-10-09 15:41 ` Guillaume Ranquet
2024-10-28 13:18   ` LIANKUN YANG (杨连坤)
2024-10-28 13:18     ` LIANKUN YANG (杨连坤)
2024-10-23  5:15 ` CK Hu (胡俊光)
2024-10-23  5:15   ` CK Hu (胡俊光)

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.