All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm: mxsfb: Fix NULL pointer dereference crash on unload
@ 2021-10-16 21:04 Marek Vasut
  2021-10-17 16:38 ` Sam Ravnborg
  0 siblings, 1 reply; 8+ messages in thread
From: Marek Vasut @ 2021-10-16 21:04 UTC (permalink / raw)
  To: dri-devel
  Cc: Marek Vasut, Daniel Abrecht, Emil Velikov, Laurent Pinchart,
	Sam Ravnborg, Stefan Agner

The mxsfb->crtc.funcs may already be NULL when unloading the driver,
in which case calling mxsfb_irq_disable() via drm_irq_uninstall() from
mxsfb_unload() leads to NULL pointer dereference.

Since all we care about is masking the IRQ and mxsfb->base is still
valid, just use that to clear and mask the IRQ.

Fixes: ae1ed00932819 ("drm: mxsfb: Stop using DRM simple display pipeline helper")
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Daniel Abrecht <public@danielabrecht.ch>
Cc: Emil Velikov <emil.l.velikov@gmail.com>
Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: Sam Ravnborg <sam@ravnborg.org>
Cc: Stefan Agner <stefan@agner.ch>
---
 drivers/gpu/drm/mxsfb/mxsfb_drv.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/mxsfb/mxsfb_drv.c b/drivers/gpu/drm/mxsfb/mxsfb_drv.c
index ec0432fe1bdf..86d78634a979 100644
--- a/drivers/gpu/drm/mxsfb/mxsfb_drv.c
+++ b/drivers/gpu/drm/mxsfb/mxsfb_drv.c
@@ -173,7 +173,11 @@ static void mxsfb_irq_disable(struct drm_device *drm)
 	struct mxsfb_drm_private *mxsfb = drm->dev_private;
 
 	mxsfb_enable_axi_clk(mxsfb);
-	mxsfb->crtc.funcs->disable_vblank(&mxsfb->crtc);
+
+	/* Disable and clear VBLANK IRQ */
+	writel(CTRL1_CUR_FRAME_DONE_IRQ_EN, mxsfb->base + LCDC_CTRL1 + REG_CLR);
+	writel(CTRL1_CUR_FRAME_DONE_IRQ, mxsfb->base + LCDC_CTRL1 + REG_CLR);
+
 	mxsfb_disable_axi_clk(mxsfb);
 }
 
-- 
2.33.0


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

* Re: [PATCH] drm: mxsfb: Fix NULL pointer dereference crash on unload
  2021-10-16 21:04 [PATCH] drm: mxsfb: Fix NULL pointer dereference crash on unload Marek Vasut
@ 2021-10-17 16:38 ` Sam Ravnborg
  0 siblings, 0 replies; 8+ messages in thread
From: Sam Ravnborg @ 2021-10-17 16:38 UTC (permalink / raw)
  To: Marek Vasut
  Cc: dri-devel, Daniel Abrecht, Emil Velikov, Laurent Pinchart, Stefan Agner

Hi Marek,

On Sat, Oct 16, 2021 at 11:04:46PM +0200, Marek Vasut wrote:
> The mxsfb->crtc.funcs may already be NULL when unloading the driver,
> in which case calling mxsfb_irq_disable() via drm_irq_uninstall() from
> mxsfb_unload() leads to NULL pointer dereference.
> 
> Since all we care about is masking the IRQ and mxsfb->base is still
> valid, just use that to clear and mask the IRQ.
> 
> Fixes: ae1ed00932819 ("drm: mxsfb: Stop using DRM simple display pipeline helper")
> Signed-off-by: Marek Vasut <marex@denx.de>
> Cc: Daniel Abrecht <public@danielabrecht.ch>
> Cc: Emil Velikov <emil.l.velikov@gmail.com>
> Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> Cc: Sam Ravnborg <sam@ravnborg.org>
> Cc: Stefan Agner <stefan@agner.ch>

Applied to drm-misc-fixes.

	Sam

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

* Re: [PATCH] drm: mxsfb: Fix NULL pointer dereference crash on unload
  2021-10-17 20:05     ` Marek Vasut
@ 2021-10-19 12:07       ` Daniel Vetter
  0 siblings, 0 replies; 8+ messages in thread
From: Daniel Vetter @ 2021-10-19 12:07 UTC (permalink / raw)
  To: Marek Vasut
  Cc: Sam Ravnborg, dri-devel, Daniel Abrecht, Emil Velikov,
	Laurent Pinchart, Stefan Agner

On Sun, Oct 17, 2021 at 10:05 PM Marek Vasut <marex@denx.de> wrote:
>
> On 10/17/21 7:52 PM, Sam Ravnborg wrote:
> > Hi Marek,
> >
> > On Wed, Sep 08, 2021 at 08:24:20PM +0200, Daniel Vetter wrote:
> >> On Tue, Sep 07, 2021 at 04:49:00AM +0200, Marek Vasut wrote:
> >>> The mxsfb->crtc.funcs may already be NULL when unloading the driver,
> >>> in which case calling mxsfb_irq_disable() via drm_irq_uninstall() from
> >>> mxsfb_unload() leads to NULL pointer dereference.
> >>>
> >>> Since all we care about is masking the IRQ and mxsfb->base is still
> >>> valid, just use that to clear and mask the IRQ.
> >>>
> >>> Fixes: ae1ed00932819 ("drm: mxsfb: Stop using DRM simple display pipeline helper")
> >>> Signed-off-by: Marek Vasut <marex@denx.de>
> >>> Cc: Daniel Abrecht <public@danielabrecht.ch>
> >>> Cc: Emil Velikov <emil.l.velikov@gmail.com>
> >>> Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> >>> Cc: Sam Ravnborg <sam@ravnborg.org>
> >>> Cc: Stefan Agner <stefan@agner.ch>
> >>
> >> You probably want a drm_atomic_helper_shutdown instead of trying to do all
> >> that manually. We've also added a bunch more devm and drmm_ functions to
> >> automate the cleanup a lot more here, e.g. your drm_mode_config_cleanup is
> >> in the wrong place.
> >
> > I have applied v2 of this patch today - but failed to see any response
> > in v2 to this comment from Daniel. Was it lost somehow?
>
> Hmmm, I'll investigate that ^ in the next round of mxsfb clean ups.

Yeah this was just a quick comment about how to do this cleanly, not
meant to hold up a bugfix or anything like that.
-Daniel
-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch

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

* Re: [PATCH] drm: mxsfb: Fix NULL pointer dereference crash on unload
  2021-10-17 17:52   ` Sam Ravnborg
@ 2021-10-17 20:05     ` Marek Vasut
  2021-10-19 12:07       ` Daniel Vetter
  0 siblings, 1 reply; 8+ messages in thread
From: Marek Vasut @ 2021-10-17 20:05 UTC (permalink / raw)
  To: Sam Ravnborg, Daniel Vetter
  Cc: dri-devel, Daniel Abrecht, Emil Velikov, Laurent Pinchart, Stefan Agner

On 10/17/21 7:52 PM, Sam Ravnborg wrote:
> Hi Marek,
> 
> On Wed, Sep 08, 2021 at 08:24:20PM +0200, Daniel Vetter wrote:
>> On Tue, Sep 07, 2021 at 04:49:00AM +0200, Marek Vasut wrote:
>>> The mxsfb->crtc.funcs may already be NULL when unloading the driver,
>>> in which case calling mxsfb_irq_disable() via drm_irq_uninstall() from
>>> mxsfb_unload() leads to NULL pointer dereference.
>>>
>>> Since all we care about is masking the IRQ and mxsfb->base is still
>>> valid, just use that to clear and mask the IRQ.
>>>
>>> Fixes: ae1ed00932819 ("drm: mxsfb: Stop using DRM simple display pipeline helper")
>>> Signed-off-by: Marek Vasut <marex@denx.de>
>>> Cc: Daniel Abrecht <public@danielabrecht.ch>
>>> Cc: Emil Velikov <emil.l.velikov@gmail.com>
>>> Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
>>> Cc: Sam Ravnborg <sam@ravnborg.org>
>>> Cc: Stefan Agner <stefan@agner.ch>
>>
>> You probably want a drm_atomic_helper_shutdown instead of trying to do all
>> that manually. We've also added a bunch more devm and drmm_ functions to
>> automate the cleanup a lot more here, e.g. your drm_mode_config_cleanup is
>> in the wrong place.
> 
> I have applied v2 of this patch today - but failed to see any response
> in v2 to this comment from Daniel. Was it lost somehow?

Hmmm, I'll investigate that ^ in the next round of mxsfb clean ups.

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

* Re: [PATCH] drm: mxsfb: Fix NULL pointer dereference crash on unload
  2021-09-08 18:24 ` Daniel Vetter
  2021-09-08 21:19   ` Marek Vasut
@ 2021-10-17 17:52   ` Sam Ravnborg
  2021-10-17 20:05     ` Marek Vasut
  1 sibling, 1 reply; 8+ messages in thread
From: Sam Ravnborg @ 2021-10-17 17:52 UTC (permalink / raw)
  To: Daniel Vetter
  Cc: Marek Vasut, dri-devel, Daniel Abrecht, Emil Velikov,
	Laurent Pinchart, Stefan Agner

Hi Marek,

On Wed, Sep 08, 2021 at 08:24:20PM +0200, Daniel Vetter wrote:
> On Tue, Sep 07, 2021 at 04:49:00AM +0200, Marek Vasut wrote:
> > The mxsfb->crtc.funcs may already be NULL when unloading the driver,
> > in which case calling mxsfb_irq_disable() via drm_irq_uninstall() from
> > mxsfb_unload() leads to NULL pointer dereference.
> > 
> > Since all we care about is masking the IRQ and mxsfb->base is still
> > valid, just use that to clear and mask the IRQ.
> > 
> > Fixes: ae1ed00932819 ("drm: mxsfb: Stop using DRM simple display pipeline helper")
> > Signed-off-by: Marek Vasut <marex@denx.de>
> > Cc: Daniel Abrecht <public@danielabrecht.ch>
> > Cc: Emil Velikov <emil.l.velikov@gmail.com>
> > Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> > Cc: Sam Ravnborg <sam@ravnborg.org>
> > Cc: Stefan Agner <stefan@agner.ch>
> 
> You probably want a drm_atomic_helper_shutdown instead of trying to do all
> that manually. We've also added a bunch more devm and drmm_ functions to
> automate the cleanup a lot more here, e.g. your drm_mode_config_cleanup is
> in the wrong place.

I have applied v2 of this patch today - but failed to see any response
in v2 to this comment from Daniel. Was it lost somehow?

	Sam

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

* Re: [PATCH] drm: mxsfb: Fix NULL pointer dereference crash on unload
  2021-09-08 18:24 ` Daniel Vetter
@ 2021-09-08 21:19   ` Marek Vasut
  2021-10-17 17:52   ` Sam Ravnborg
  1 sibling, 0 replies; 8+ messages in thread
From: Marek Vasut @ 2021-09-08 21:19 UTC (permalink / raw)
  To: Daniel Vetter
  Cc: dri-devel, Daniel Abrecht, Emil Velikov, Laurent Pinchart,
	Sam Ravnborg, Stefan Agner

On 9/8/21 8:24 PM, Daniel Vetter wrote:
> On Tue, Sep 07, 2021 at 04:49:00AM +0200, Marek Vasut wrote:
>> The mxsfb->crtc.funcs may already be NULL when unloading the driver,
>> in which case calling mxsfb_irq_disable() via drm_irq_uninstall() from
>> mxsfb_unload() leads to NULL pointer dereference.
>>
>> Since all we care about is masking the IRQ and mxsfb->base is still
>> valid, just use that to clear and mask the IRQ.
>>
>> Fixes: ae1ed00932819 ("drm: mxsfb: Stop using DRM simple display pipeline helper")
>> Signed-off-by: Marek Vasut <marex@denx.de>
>> Cc: Daniel Abrecht <public@danielabrecht.ch>
>> Cc: Emil Velikov <emil.l.velikov@gmail.com>
>> Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
>> Cc: Sam Ravnborg <sam@ravnborg.org>
>> Cc: Stefan Agner <stefan@agner.ch>
> 
> You probably want a drm_atomic_helper_shutdown instead of trying to do all
> that manually. We've also added a bunch more devm and drmm_ functions to
> automate the cleanup a lot more here, e.g. your drm_mode_config_cleanup is
> in the wrong place.
> 
> Also I'm confused because I'm not even seeing this function anywhere in
> upstream.

It is still here:
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/tree/drivers/gpu/drm/mxsfb/mxsfb_drv.c#n171
as of:
999569d59a0aa ("Add linux-next specific files for 20210908")

Is there some other tree I should be looking at ?

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

* Re: [PATCH] drm: mxsfb: Fix NULL pointer dereference crash on unload
  2021-09-07  2:49 Marek Vasut
@ 2021-09-08 18:24 ` Daniel Vetter
  2021-09-08 21:19   ` Marek Vasut
  2021-10-17 17:52   ` Sam Ravnborg
  0 siblings, 2 replies; 8+ messages in thread
From: Daniel Vetter @ 2021-09-08 18:24 UTC (permalink / raw)
  To: Marek Vasut
  Cc: dri-devel, Daniel Abrecht, Emil Velikov, Laurent Pinchart,
	Sam Ravnborg, Stefan Agner

On Tue, Sep 07, 2021 at 04:49:00AM +0200, Marek Vasut wrote:
> The mxsfb->crtc.funcs may already be NULL when unloading the driver,
> in which case calling mxsfb_irq_disable() via drm_irq_uninstall() from
> mxsfb_unload() leads to NULL pointer dereference.
> 
> Since all we care about is masking the IRQ and mxsfb->base is still
> valid, just use that to clear and mask the IRQ.
> 
> Fixes: ae1ed00932819 ("drm: mxsfb: Stop using DRM simple display pipeline helper")
> Signed-off-by: Marek Vasut <marex@denx.de>
> Cc: Daniel Abrecht <public@danielabrecht.ch>
> Cc: Emil Velikov <emil.l.velikov@gmail.com>
> Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> Cc: Sam Ravnborg <sam@ravnborg.org>
> Cc: Stefan Agner <stefan@agner.ch>

You probably want a drm_atomic_helper_shutdown instead of trying to do all
that manually. We've also added a bunch more devm and drmm_ functions to
automate the cleanup a lot more here, e.g. your drm_mode_config_cleanup is
in the wrong place.

Also I'm confused because I'm not even seeing this function anywhere in
upstream.
-Daniel

> ---
>  drivers/gpu/drm/mxsfb/mxsfb_drv.c | 6 +++++-
>  1 file changed, 5 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/mxsfb/mxsfb_drv.c b/drivers/gpu/drm/mxsfb/mxsfb_drv.c
> index ec0432fe1bdf8..86d78634a9799 100644
> --- a/drivers/gpu/drm/mxsfb/mxsfb_drv.c
> +++ b/drivers/gpu/drm/mxsfb/mxsfb_drv.c
> @@ -173,7 +173,11 @@ static void mxsfb_irq_disable(struct drm_device *drm)
>  	struct mxsfb_drm_private *mxsfb = drm->dev_private;
>  
>  	mxsfb_enable_axi_clk(mxsfb);
> -	mxsfb->crtc.funcs->disable_vblank(&mxsfb->crtc);
> +
> +	/* Disable and clear VBLANK IRQ */
> +	writel(CTRL1_CUR_FRAME_DONE_IRQ_EN, mxsfb->base + LCDC_CTRL1 + REG_CLR);
> +	writel(CTRL1_CUR_FRAME_DONE_IRQ, mxsfb->base + LCDC_CTRL1 + REG_CLR);
> +
>  	mxsfb_disable_axi_clk(mxsfb);
>  }
>  
> -- 
> 2.33.0
> 

-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch

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

* [PATCH] drm: mxsfb: Fix NULL pointer dereference crash on unload
@ 2021-09-07  2:49 Marek Vasut
  2021-09-08 18:24 ` Daniel Vetter
  0 siblings, 1 reply; 8+ messages in thread
From: Marek Vasut @ 2021-09-07  2:49 UTC (permalink / raw)
  To: dri-devel
  Cc: Marek Vasut, Daniel Abrecht, Emil Velikov, Laurent Pinchart,
	Sam Ravnborg, Stefan Agner

The mxsfb->crtc.funcs may already be NULL when unloading the driver,
in which case calling mxsfb_irq_disable() via drm_irq_uninstall() from
mxsfb_unload() leads to NULL pointer dereference.

Since all we care about is masking the IRQ and mxsfb->base is still
valid, just use that to clear and mask the IRQ.

Fixes: ae1ed00932819 ("drm: mxsfb: Stop using DRM simple display pipeline helper")
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Daniel Abrecht <public@danielabrecht.ch>
Cc: Emil Velikov <emil.l.velikov@gmail.com>
Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: Sam Ravnborg <sam@ravnborg.org>
Cc: Stefan Agner <stefan@agner.ch>
---
 drivers/gpu/drm/mxsfb/mxsfb_drv.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/mxsfb/mxsfb_drv.c b/drivers/gpu/drm/mxsfb/mxsfb_drv.c
index ec0432fe1bdf8..86d78634a9799 100644
--- a/drivers/gpu/drm/mxsfb/mxsfb_drv.c
+++ b/drivers/gpu/drm/mxsfb/mxsfb_drv.c
@@ -173,7 +173,11 @@ static void mxsfb_irq_disable(struct drm_device *drm)
 	struct mxsfb_drm_private *mxsfb = drm->dev_private;
 
 	mxsfb_enable_axi_clk(mxsfb);
-	mxsfb->crtc.funcs->disable_vblank(&mxsfb->crtc);
+
+	/* Disable and clear VBLANK IRQ */
+	writel(CTRL1_CUR_FRAME_DONE_IRQ_EN, mxsfb->base + LCDC_CTRL1 + REG_CLR);
+	writel(CTRL1_CUR_FRAME_DONE_IRQ, mxsfb->base + LCDC_CTRL1 + REG_CLR);
+
 	mxsfb_disable_axi_clk(mxsfb);
 }
 
-- 
2.33.0


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

end of thread, other threads:[~2021-10-19 12:07 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-16 21:04 [PATCH] drm: mxsfb: Fix NULL pointer dereference crash on unload Marek Vasut
2021-10-17 16:38 ` Sam Ravnborg
  -- strict thread matches above, loose matches on Subject: below --
2021-09-07  2:49 Marek Vasut
2021-09-08 18:24 ` Daniel Vetter
2021-09-08 21:19   ` Marek Vasut
2021-10-17 17:52   ` Sam Ravnborg
2021-10-17 20:05     ` Marek Vasut
2021-10-19 12:07       ` Daniel Vetter

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.