public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Sakari Ailus <sakari.ailus@iki.fi>
Cc: Alexander Shiyan <eagle.alexander923@gmail.com>,
	linux-media@vger.kernel.org, Rui Miguel Silva <rmfrfs@gmail.com>,
	Martin Kepplinger <martink@posteo.de>
Subject: Re: [PATCH] media: imx: imx-mipi-csis: Fix null pointer dereference when link is not set
Date: Wed, 11 Oct 2023 22:48:33 +0300	[thread overview]
Message-ID: <20231011194833.GC5322@pendragon.ideasonboard.com> (raw)
In-Reply-To: <ZSb7O+2pbIHKgroc@valkosipuli.retiisi.eu>

On Wed, Oct 11, 2023 at 07:44:59PM +0000, Sakari Ailus wrote:
> On Fri, Oct 06, 2023 at 10:46:54AM +0300, Alexander Shiyan wrote:
> > Let's add a check for src_sd before using it.
> > The link may not be set, in which case the call to this function will fail.
> 
> That would seem like an understatement.
> 
> Any idea when this was introduced (and which patch did), Fixes: and Cc:
> stable should be added if this is already in a release.

It's actually an issue in the pipeline validation code in the V4L2 core.
The link is marked as MUST_CONNECT, but that isn't handled properly :-(
It's been on my todo list for a while but I haven't had time to get to
it. Feel free to give it a go.

> > Signed-off-by: Alexander Shiyan <eagle.alexander923@gmail.com>
> > ---
> >  drivers/media/platform/nxp/imx-mipi-csis.c | 3 +++
> >  1 file changed, 3 insertions(+)
> > 
> > diff --git a/drivers/media/platform/nxp/imx-mipi-csis.c b/drivers/media/platform/nxp/imx-mipi-csis.c
> > index 5f93712bf485..df5a159b2d39 100644
> > --- a/drivers/media/platform/nxp/imx-mipi-csis.c
> > +++ b/drivers/media/platform/nxp/imx-mipi-csis.c
> > @@ -595,6 +595,9 @@ static int mipi_csis_calculate_params(struct mipi_csis_device *csis,
> >  	s64 link_freq;
> >  	u32 lane_rate;
> >  
> > +	if (!csis->src_sd)
> > +		return -EINVAL;
> > +
> >  	/* Calculate the line rate from the pixel rate. */
> >  	link_freq = v4l2_get_link_freq(csis->src_sd->ctrl_handler,
> >  				       csis_fmt->width,

-- 
Regards,

Laurent Pinchart

  reply	other threads:[~2023-10-11 19:48 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-10-06  7:46 [PATCH] media: imx: imx-mipi-csis: Fix null pointer dereference when link is not set Alexander Shiyan
2023-10-11 19:44 ` Sakari Ailus
2023-10-11 19:48   ` Laurent Pinchart [this message]
2023-10-11 20:01     ` Sakari Ailus
2023-10-11 20:06       ` Laurent Pinchart
2023-10-11 20:19         ` Sakari Ailus
2023-10-11 20:21           ` Laurent Pinchart

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20231011194833.GC5322@pendragon.ideasonboard.com \
    --to=laurent.pinchart@ideasonboard.com \
    --cc=eagle.alexander923@gmail.com \
    --cc=linux-media@vger.kernel.org \
    --cc=martink@posteo.de \
    --cc=rmfrfs@gmail.com \
    --cc=sakari.ailus@iki.fi \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox