Message ID | 20250612-linux-next-25-05-30-daily-reviews-v1-2-88ba033a9a03@linaro.org |
---|---|
State | New |
Headers | show |
Series | media: qcom: camss: Fix two bugs in mainline | expand |
On Thu, Jun 12, 2025 at 09:07:16AM +0100, Bryan O'Donoghue wrote: > msm_vfe_register_entities loops through each Raw Data Interface input line. > For each loop we add video device with its associated pads. > > Once a single /dev/video0 node has been populated it is possible for > camss_find_sensor_pad to run. This routine scans through a list of media > entities taking a pointer pad = media_entity->pad[0] and assuming that > pointer is always valid. > > It is possible for both the enumeration loop in msm_vfe_register_entities() > and a call from user-space to run concurrently. > > Adding some deliberate sleep code into the loop in > msm_vfe_register_entities() and constructing a user-space program to open > every /dev/videoX node in a tight continuous loop, quickly shows the > following error. > > [ 691.074558] Unable to handle kernel NULL pointer dereference at virtual address 0000000000000030 > [ 691.074933] Call trace: > [ 691.074935] camss_find_sensor_pad+0x74/0x114 [qcom_camss] (P) > [ 691.074946] camss_get_pixel_clock+0x18/0x64 [qcom_camss] > [ 691.074956] vfe_get+0xc0/0x54c [qcom_camss] > [ 691.074968] vfe_set_power+0x58/0xf4c [qcom_camss] > [ 691.074978] pipeline_pm_power_one+0x124/0x140 [videodev] > [ 691.074986] pipeline_pm_power+0x70/0x100 [videodev] > [ 691.074992] v4l2_pipeline_pm_use+0x54/0x90 [videodev] > [ 691.074998] v4l2_pipeline_pm_get+0x14/0x20 [videodev] > [ 691.075005] video_open+0x74/0xe0 [qcom_camss] > [ 691.075014] v4l2_open+0xa8/0x124 [videodev] > [ 691.075021] chrdev_open+0xb0/0x21c > [ 691.075031] do_dentry_open+0x138/0x4c4 > [ 691.075040] vfs_open+0x2c/0xe8 > Taking the vfe->power_lock is not possible since > v4l2_device_register_subdev takes the mdev->graph_lock. Later on fops->open > takes the mdev->graph_lock followed by vfe_get() -> taking vfe->power_lock. > > Introduce a simple enumeration_complete bool which is false initially and > only set true once in our init routine after we complete enumeration. > > If user-space tries to interact with the VFE before complete enumeration it > will receive -EAGAIN. As Vladimir also pointed out, this is at best just papering over the issue. You need to make sure the video device is not registered until it's ready to be used. That is the bug that needs fixing. Johan
On 13/06/2025 10:13, Vladimir Zapolskiy wrote: > > Per se this concurrent execution shall not lead to the encountered bug, What does that mean ? Please re-read the commit log, the analysis is all there. > both an initialization of media entity pads by media_entity_pads_init() > and a registration of a v4l2 devnode inside msm_video_register() are > done under in a proper sequence, aren't they? No, I clearly haven't explained this clearly enough in the commit log. vfe0_rdi0 == /dev/video0 is complete. vfe0_rdi1 is not complete there is no /dev/video1 in user-space. vfe_get() is called for an RDI in a VFE, camss_find_sensor_pad() assumes all RDIs are populated. We can't use any VFE mutex to synchronise this because lock(vfe->mutex); lock(media->mutex); and lock(media->mutex); lock(vfe->mutex); happen. So we can educate vfe_get() about the RDI it is operating on or we can flag that a VFE - all of it's subordinate RDIs are available. I didn't much like teaching vfe_get() about which RDI index because the code looked ugly for 8916 you have to assume on one of the code paths that it always operates on RDI0, which is an invalid assumption. The other way to fix this is: +++ b/drivers/media/platform/qcom/camss/camss.c @@ -2988,7 +2988,7 @@ struct media_pad *camss_find_sensor_pad(struct media_entity *entity) while (1) { pad = &entity->pads[0]; - if (!(pad->flags & MEDIA_PAD_FL_SINK)) + if (!pad || !(pad->flags & MEDIA_PAD_FL_SINK)) But then you see that every other driver treats pad = &entity->pads[0] as always non-NULL. --- bod
Hi Bryan. On 6/16/25 17:09, Bryan O'Donoghue wrote: > On 13/06/2025 10:13, Vladimir Zapolskiy wrote: >> >> Per se this concurrent execution shall not lead to the encountered bug, > > What does that mean ? Please re-read the commit log, the analysis is all > there. The concurrent execution does not state a problem, moreover it's a feature of operating systems. >> both an initialization of media entity pads by media_entity_pads_init() >> and a registration of a v4l2 devnode inside msm_video_register() are >> done under in a proper sequence, aren't they? > > No, I clearly haven't explained this clearly enough in the commit log. > > vfe0_rdi0 == /dev/video0 is complete. vfe0_rdi1 is not complete there is > no /dev/video1 in user-space. Please let me ask for a few improvements to the commit message of the next version of the fix. Te information like "vfe0_rdi0 == /dev/video0" etc. above vaguely assumes so much of the context, that the statements become wrong, let's remove ambiguity instead of its amplification. > vfe_get() is called for an RDI in a VFE, camss_find_sensor_pad() assumes > all RDIs are populated. > This is a good and almost sufficient one line problem description. Still there is an issue, you mention vfe_get() and camss_find_sensor_pad() functions, however both of them are good, and the problem lays within vfe_set_clock_rates() function, that's the exact place in the driver code, which iterates over all VFE lines like all of them are initialized. > We can't use any VFE mutex to synchronise this because > > lock(vfe->mutex); > lock(media->mutex); > > and > lock(media->mutex); > lock(vfe->mutex); > > happen. > > So we can educate vfe_get() about the RDI it is operating on or we can > flag that a VFE - all of it's subordinate RDIs are available. > > I didn't much like teaching vfe_get() about which RDI index because the > code looked ugly for 8916 you have to assume on one of the code paths > that it always operates on RDI0, which is an invalid assumption. vfe_get() and mutices are all red herring, there is no problem with vfe_get(), there is no problem with camss_find_sensor_pad(), and there is no expectation to find a proper fix in any of these two functions. Johan and me pointed the way out how to fix the encoundered issue properly, once again, and please don't hesitate to ask questions, if my short explanations are unclear to you. The fix is to issue any of VFE line devnodes for userspace strictly after the completion of all media entity pads initialization. Do you have an idea how to implement it, or should I help with it? It'd be totally okay. > The other way to fix this is: > > +++ b/drivers/media/platform/qcom/camss/camss.c > @@ -2988,7 +2988,7 @@ struct media_pad *camss_find_sensor_pad(struct > media_entity *entity) > > while (1) { > pad = &entity->pads[0]; > - if (!(pad->flags & MEDIA_PAD_FL_SINK)) > + if (!pad || !(pad->flags & MEDIA_PAD_FL_SINK)) > > > But then you see that every other driver treats pad = &entity->pads[0] > as always non-NULL. There is another expected way with zero problems, see the comment above. There is no proven problem with camss_find_sensor_pad() funcition, and it should be left unmodified. -- Best wishes, Vladimir
On 16/06/2025 16:00, Vladimir Zapolskiy wrote: > Hi Bryan. > > On 6/16/25 17:09, Bryan O'Donoghue wrote: >> On 13/06/2025 10:13, Vladimir Zapolskiy wrote: >>> >>> Per se this concurrent execution shall not lead to the encountered bug, >> >> What does that mean ? Please re-read the commit log, the analysis is all >> there. > > The concurrent execution does not state a problem, moreover it's a feature > of operating systems. I don't quite understand what your objection is. I'm informing the reader of the commit log that one function may execute in parallel to another function, this is not so with every function and is root-cause of the error. >>> both an initialization of media entity pads by media_entity_pads_init() >>> and a registration of a v4l2 devnode inside msm_video_register() are >>> done under in a proper sequence, aren't they? >> >> No, I clearly haven't explained this clearly enough in the commit log. >> >> vfe0_rdi0 == /dev/video0 is complete. vfe0_rdi1 is not complete there is >> no /dev/video1 in user-space. > > Please let me ask for a few improvements to the commit message of the next > version of the fix. > > Te information like "vfe0_rdi0 == /dev/video0" etc. above vaguely assumes > so much of the context Sure but this is a _response_ email to you and you know what vfe0_rdi0 is. The statement doesn't appear in the commit log. --- bod
diff --git a/drivers/media/platform/qcom/camss/camss-vfe.c b/drivers/media/platform/qcom/camss/camss-vfe.c index ac3a9579e3e6910eee8c1ec11c4fff6e1bc94443..3fccc83ebbcc84c20e17da72c359de3dfd18fb40 100644 --- a/drivers/media/platform/qcom/camss/camss-vfe.c +++ b/drivers/media/platform/qcom/camss/camss-vfe.c @@ -1062,6 +1062,9 @@ int vfe_get(struct vfe_device *vfe) { int ret; + if (!vfe->enumeration_complete) + return -EAGAIN; + mutex_lock(&vfe->power_lock); if (vfe->power_count == 0) { @@ -1122,6 +1125,9 @@ int vfe_get(struct vfe_device *vfe) */ void vfe_put(struct vfe_device *vfe) { + if (!vfe->enumeration_complete) + return; + mutex_lock(&vfe->power_lock); if (vfe->power_count == 0) { @@ -2091,6 +2097,8 @@ int msm_vfe_register_entities(struct vfe_device *vfe, } } + vfe->enumeration_complete = true; + return 0; error_link: diff --git a/drivers/media/platform/qcom/camss/camss-vfe.h b/drivers/media/platform/qcom/camss/camss-vfe.h index 614e932c33da78e02e0800ce6534af7b14822f83..33b59dcfc8b2b81e896336b079a41eba603ec400 100644 --- a/drivers/media/platform/qcom/camss/camss-vfe.h +++ b/drivers/media/platform/qcom/camss/camss-vfe.h @@ -169,6 +169,7 @@ struct vfe_device { struct camss_video_ops video_ops; struct device *genpd; struct device_link *genpd_link; + bool enumeration_complete; }; struct camss_subdev_resources;
msm_vfe_register_entities loops through each Raw Data Interface input line. For each loop we add video device with its associated pads. Once a single /dev/video0 node has been populated it is possible for camss_find_sensor_pad to run. This routine scans through a list of media entities taking a pointer pad = media_entity->pad[0] and assuming that pointer is always valid. It is possible for both the enumeration loop in msm_vfe_register_entities() and a call from user-space to run concurrently. Adding some deliberate sleep code into the loop in msm_vfe_register_entities() and constructing a user-space program to open every /dev/videoX node in a tight continuous loop, quickly shows the following error. [ 691.074558] Unable to handle kernel NULL pointer dereference at virtual address 0000000000000030 [ 691.074933] Call trace: [ 691.074935] camss_find_sensor_pad+0x74/0x114 [qcom_camss] (P) [ 691.074946] camss_get_pixel_clock+0x18/0x64 [qcom_camss] [ 691.074956] vfe_get+0xc0/0x54c [qcom_camss] [ 691.074968] vfe_set_power+0x58/0xf4c [qcom_camss] [ 691.074978] pipeline_pm_power_one+0x124/0x140 [videodev] [ 691.074986] pipeline_pm_power+0x70/0x100 [videodev] [ 691.074992] v4l2_pipeline_pm_use+0x54/0x90 [videodev] [ 691.074998] v4l2_pipeline_pm_get+0x14/0x20 [videodev] [ 691.075005] video_open+0x74/0xe0 [qcom_camss] [ 691.075014] v4l2_open+0xa8/0x124 [videodev] [ 691.075021] chrdev_open+0xb0/0x21c [ 691.075031] do_dentry_open+0x138/0x4c4 [ 691.075040] vfs_open+0x2c/0xe8 [ 691.075044] path_openat+0x6f0/0x10a0 [ 691.075050] do_filp_open+0xa8/0x164 [ 691.075054] do_sys_openat2+0x94/0x104 [ 691.075058] __arm64_sys_openat+0x64/0xc0 [ 691.075061] invoke_syscall+0x48/0x104 [ 691.075069] el0_svc_common.constprop.0+0x40/0xe0 [ 691.075075] do_el0_svc+0x1c/0x28 [ 691.075080] el0_svc+0x30/0xcc [ 691.075085] el0t_64_sync_handler+0x10c/0x138 [ 691.075088] el0t_64_sync+0x198/0x19c Taking the vfe->power_lock is not possible since v4l2_device_register_subdev takes the mdev->graph_lock. Later on fops->open takes the mdev->graph_lock followed by vfe_get() -> taking vfe->power_lock. Introduce a simple enumeration_complete bool which is false initially and only set true once in our init routine after we complete enumeration. If user-space tries to interact with the VFE before complete enumeration it will receive -EAGAIN. Cc: stable@vger.kernel.org Fixes: 4c98a5f57f90 ("media: camss: Add VFE files") Reported-by: Johan Hovold <johan+linaro@kernel.org> Closes: https://lore.kernel.org/all/Zwjw6XfVWcufMlqM@hovoldconsulting.com Signed-off-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org> --- drivers/media/platform/qcom/camss/camss-vfe.c | 8 ++++++++ drivers/media/platform/qcom/camss/camss-vfe.h | 1 + 2 files changed, 9 insertions(+)