The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH V2] drm/tegra: fix a possible null pointer dereference
@ 2024-06-02  8:46 Huai-Yuan Liu
  2024-06-27  7:51 ` Thierry Reding
  0 siblings, 1 reply; 2+ messages in thread
From: Huai-Yuan Liu @ 2024-06-02  8:46 UTC (permalink / raw)
  To: thierry.reding, mperttunen, airlied, daniel, jonathanh
  Cc: dri-devel, linux-tegra, linux-kernel, baijiaju1990, Huai-Yuan Liu

In malidp_tegra_crtc_reset, new memory is allocated with kzalloc, but
no check is performed. Before calling __drm_atomic_helper_crtc_reset,
mw_state should be checked to prevent possible null pointer dereference.

Fixes: b7e0b04ae450 ("drm/tegra: Convert to using __drm_atomic_helper_crtc_reset() for reset.")
Signed-off-by: Huai-Yuan Liu <qq810974084@gmail.com>
---
V2:
* In patch V2, we call __drm_atomic_helper_crtc_reset(crtc, NULL) when
state is null.
  Thanks to Thierry Reding for helpful suggestion.
---
 drivers/gpu/drm/tegra/dc.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/tegra/dc.c b/drivers/gpu/drm/tegra/dc.c
index be61c9d1a4f0..afa7c269c29a 100644
--- a/drivers/gpu/drm/tegra/dc.c
+++ b/drivers/gpu/drm/tegra/dc.c
@@ -1388,7 +1388,10 @@ static void tegra_crtc_reset(struct drm_crtc *crtc)
 	if (crtc->state)
 		tegra_crtc_atomic_destroy_state(crtc, crtc->state);
 
-	__drm_atomic_helper_crtc_reset(crtc, &state->base);
+	if (state)
+		__drm_atomic_helper_crtc_reset(crtc, &state->base);
+	else
+		__drm_atomic_helper_crtc_reset(crtc, NULL);
 }
 
 static struct drm_crtc_state *
-- 
2.34.1


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

* Re: [PATCH V2] drm/tegra: fix a possible null pointer dereference
  2024-06-02  8:46 [PATCH V2] drm/tegra: fix a possible null pointer dereference Huai-Yuan Liu
@ 2024-06-27  7:51 ` Thierry Reding
  0 siblings, 0 replies; 2+ messages in thread
From: Thierry Reding @ 2024-06-27  7:51 UTC (permalink / raw)
  To: Huai-Yuan Liu, mperttunen, airlied, daniel, jonathanh
  Cc: dri-devel, linux-tegra, linux-kernel, baijiaju1990

[-- Attachment #1: Type: text/plain, Size: 434 bytes --]

On Sun Jun 2, 2024 at 10:46 AM CEST, Huai-Yuan Liu wrote:
> In malidp_tegra_crtc_reset, new memory is allocated with kzalloc, but
> no check is performed. Before calling __drm_atomic_helper_crtc_reset,
> mw_state should be checked to prevent possible null pointer dereference.

The commit message here still references variables that don't exist in
this driver. Looks like copy/paste leftovers from a similar patch?

Thierry

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

end of thread, other threads:[~2024-06-27  7:51 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-02  8:46 [PATCH V2] drm/tegra: fix a possible null pointer dereference Huai-Yuan Liu
2024-06-27  7:51 ` Thierry Reding

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