From: Sakari Ailus <sakari.ailus@linux.intel.com>
To: cy_huang@richtek.com
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>,
Daniel Scally <djrscally@gmail.com>,
Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
Jean-Michel Hautbois <jeanmichel.hautbois@ideasonboard.com>,
linux-media@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] media: v4l: async: Fix NULL pointer when v4l2 flash subdev binding
Date: Thu, 16 May 2024 10:42:05 +0000 [thread overview]
Message-ID: <ZkXi_U5Js34dUQsA@kekkonen.localdomain> (raw)
In-Reply-To: <e2f9f2b7b7de956d70b8567a2ab285409fff988b.1715136478.git.cy_huang@richtek.com>
Hi Chi Yuan,
On Wed, May 08, 2024 at 10:51:49AM +0800, cy_huang@richtek.com wrote:
> From: ChiYuan Huang <cy_huang@richtek.com>
>
> In v4l2_async_create_ancillary_links(), if v4l2 async notifier is
> created from v4l2 device, the v4l2 flash subdev async binding will enter
> the logic to create media link. Due to the subdev of notifier is NULL,
> this will cause NULL pointer to access the subdev entity. Therefore, add
> the check to bypass it.
>
> Fixes: aa4faf6eb271 ("media: v4l2-async: Create links during v4l2_async_match_notify()")
> Signed-off-by: ChiYuan Huang <cy_huang@richtek.com>
> ---
> Hi,
>
> I'm trying to bind the v4l2 subdev for flashlight testing. It seems
> some logic in v4l2 asynd binding is incorrect.
>
> From the change, I modified vim2m as the test driver to bind mt6370 flashlight.
>
> Here's the backtrace log.
>
> vim2m soc:vim2m: bound [white:flash-2]
> Unable to handle kernel NULL pointer dereference at virtual address 0000000000000058
> ......skipping
> Call trace:
> media_create_ancillary_link+0x48/0xd8 [mc]
> v4l2_async_match_notify+0x17c/0x208 [v4l2_async]
> v4l2_async_register_subdev+0xb8/0x1d0 [v4l2_async]
There's something wrong obviously somewhere but where?
A sub-notifier does have a sub-device after the notifier initialisation.
Maybe the initialisation does not happen in the right order?
> __v4l2_flash_init.part.0+0x3b4/0x4b0 [v4l2_flash_led_class]
> v4l2_flash_init+0x28/0x48 [v4l2_flash_led_class]
> mt6370_led_probe+0x348/0x690 [leds_mt6370_flash]
>
> After tracing the code, it will let the subdev labeled as F_LENS or
> F_FLASH function to create media link. To prevent the NULL pointer
> issue, the simplest way is add a check when 'n->sd' is NULL and bypass
> the later media link creataion.
> ---
> drivers/media/v4l2-core/v4l2-async.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/drivers/media/v4l2-core/v4l2-async.c b/drivers/media/v4l2-core/v4l2-async.c
> index 3ec323bd528b..9d3161c51954 100644
> --- a/drivers/media/v4l2-core/v4l2-async.c
> +++ b/drivers/media/v4l2-core/v4l2-async.c
> @@ -324,6 +324,9 @@ static int v4l2_async_create_ancillary_links(struct v4l2_async_notifier *n,
> sd->entity.function != MEDIA_ENT_F_FLASH)
> return 0;
>
> + if (!n->sd)
> + return 0;
This isn't the right fix: the ancillary link won't be created as a result.
> +
> link = media_create_ancillary_link(&n->sd->entity, &sd->entity);
>
> #endif
--
Regards,
Sakari Ailus
next prev parent reply other threads:[~2024-05-16 10:42 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-05-08 2:51 cy_huang
2024-05-16 10:42 ` Sakari Ailus [this message]
2024-05-17 6:31 ` ChiYuan Huang
2024-05-17 8:00 ` Sakari Ailus
2024-05-17 8:03 ` Sakari Ailus
2024-05-17 11:19 ` Laurent Pinchart
2024-05-17 11:27 ` Sakari Ailus
2024-05-17 11:37 ` Laurent Pinchart
2024-05-20 7:26 ` Sakari Ailus
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=ZkXi_U5Js34dUQsA@kekkonen.localdomain \
--to=sakari.ailus@linux.intel.com \
--cc=cy_huang@richtek.com \
--cc=djrscally@gmail.com \
--cc=jeanmichel.hautbois@ideasonboard.com \
--cc=laurent.pinchart@ideasonboard.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@kernel.org \
/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
all inboxes | Powered by JetHome®