All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] media: Fix invalid link creation when source entity has 0 pads
@ 2025-03-25  7:55 gshahrouzi
  2025-03-25  8:56 ` Ricardo Ribalda
  0 siblings, 1 reply; 9+ messages in thread
From: gshahrouzi @ 2025-03-25  7:55 UTC (permalink / raw)
  To: laurent.pinchart
  Cc: hdegoede, mchehab, linux-media, linux-kernel,
	syzbot+701fc9cc0cb44e2b0fe9, skhan, kernelmentees

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

>From 307209d175be0145e36b9cf95944e2e62afeab11 Mon Sep 17 00:00:00 2001
From: Gabriel Shahrouzi <gshahrouzi@gmail.com>
Date: Mon, 24 Mar 2025 19:45:55 -0400
Subject: [PATCH] media: Fix invalid link creation when source entity has 0
 pads

This patch addresses the warning triggered in the media_create_pad_link()
function, specifically related to the check WARN_ON(source_pad >=
source->num_pads). The fix proposed adds an additional check to ensure that
source->num_pads is non-zero before proceeding with the
media_create_pad_link() function.

Reported-by: syzbot+701fc9cc0cb44e2b0fe9@syzkaller.appspotmail.com
Closes: https://syzkaller.appspot.com/bug?extid=701fc9cc0cb44e2b0fe9
Tested-by: syzbot+701fc9cc0cb44e2b0fe9@syzkaller.appspotmail.com
Fixes: a3fbc2e6bb05 ("media: mc-entity.c: use WARN_ON, validate link pads")
Signed-off-by: Gabriel Shahrouzi <gshahrouzi@gmail.com>
---
 drivers/media/usb/uvc/uvc_entity.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/media/usb/uvc/uvc_entity.c b/drivers/media/usb/uvc/uvc_entity.c
index cc68dd24eb42..5397ce76c218 100644
--- a/drivers/media/usb/uvc/uvc_entity.c
+++ b/drivers/media/usb/uvc/uvc_entity.c
@@ -43,7 +43,7 @@ static int uvc_mc_create_links(struct uvc_video_chain *chain,
 		source = (UVC_ENTITY_TYPE(remote) == UVC_TT_STREAMING)
 		       ? (remote->vdev ? &remote->vdev->entity : NULL)
 		       : &remote->subdev.entity;
-		if (source == NULL)
+		if (source == NULL || source->num_pads == 0)
 			continue;
 
 		remote_pad = remote->num_pads - 1;
-- 
2.43.0


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

end of thread, other threads:[~2025-04-11  5:06 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-25  7:55 [PATCH] media: Fix invalid link creation when source entity has 0 pads gshahrouzi
2025-03-25  8:56 ` Ricardo Ribalda
2025-03-25 22:05   ` Gabriel
2025-03-26  0:13     ` Laurent Pinchart
2025-03-29 17:50       ` Gabriel
2025-04-02  0:29         ` Laurent Pinchart
2025-04-08  5:35           ` Gabriel Shahrouzi
2025-04-09 20:54             ` Laurent Pinchart
2025-04-11  5:05               ` Gabriel Shahrouzi

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.