From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id D54D843B6EE; Thu, 30 Jul 2026 15:14:20 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1785424461; cv=none; b=hLEOHDnC9IHUzh+4OI4BxFZzp3zaKCU+BWJOnWKhR16z6lHAzmz5TWNnN0yXeB65uL3lV/l3DldzRmQFfTbm4wrkqHuBUJBkVbkIItuxDI4FiF8UkEeLQqAGB6/4YSbPd00xbx/PVaojScTdbGX6GhdVjlEiyf0AZ9aDlUGwd30= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1785424461; c=relaxed/simple; bh=JGZ6HUTDJeBpaIEgFcWC6mOhlGJITBhK8REFgVg6Y9M=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=KqWqB4InRqddz0pIS6AK+sltSVIZURrzh6rMzb0NH/Ihcg9u6Np22ZPDn+cr+phAQwbTl+ujM12F7pKpmFKOC9NiBaoWvk/OSvQN4abmYTNYeKa6sr+vuENjbmsvLmsehVLHUGOEfseqNipEVCQm/aYewLzp3lWqV4n/IktejqM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=dpFqK/e+; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="dpFqK/e+" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3D08C1F000E9; Thu, 30 Jul 2026 15:14:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1785424460; bh=i+41Kmi6/AjuVsJLkyBrZNirmZGl/XMkhsuujbeRV/s=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=dpFqK/e+9I835lT0eysPJcbE1P/ayWFSruBjRlkyZcr1DnmkVD5dzGWhSCvU16xOG x997xR1l4n4XBNbI8SH+/w9diMcQKxbHxpxNYeVMtyzJcQXK+hQJON6qEQ+mA0FA90 yqP+QfxaSPJC6rV+qC8dJ5gbRnntaCS7ndLtJ1HM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Pengpeng Hou , Nicolas Dufresne , Jernej Skrabec , Chen-Yu Tsai , Hans Verkuil Subject: [PATCH 6.18 400/675] media: cedrus: skip invalid H.264 reference list entries Date: Thu, 30 Jul 2026 16:12:10 +0200 Message-ID: <20260730141453.638112228@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260730141445.110192266@linuxfoundation.org> References: <20260730141445.110192266@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.18-stable review patch. If anyone has any objections, please let me know. ------------------ From: Pengpeng Hou commit 10358ea986c3c85516d1c8206486464f79d36e76 upstream. Cedrus consumes H.264 ref_pic_list0/ref_pic_list1 entries from the stateless slice control and later uses their indices to look up decode->dpb[] in _cedrus_write_ref_list(). Rejecting such controls in cedrus_try_ctrl() would break existing userspace, since stateless H.264 reference lists may legitimately carry out-of-range indices for missing references. Instead, guard the actual DPB lookup in Cedrus and skip entries whose indices do not fit the fixed V4L2_H264_NUM_DPB_ENTRIES array. This keeps the fix local to the driver use site and avoids out-of-bounds reads from malformed or unsupported reference list entries. Fixes: e000e1fa4bdbd ("media: uapi: h264: Update reference lists") Cc: stable@vger.kernel.org Signed-off-by: Pengpeng Hou Reviewed-by: Nicolas Dufresne Acked-by: Jernej Skrabec Tested-by: Chen-Yu Tsai Signed-off-by: Nicolas Dufresne Signed-off-by: Hans Verkuil Signed-off-by: Greg Kroah-Hartman --- drivers/staging/media/sunxi/cedrus/cedrus_h264.c | 3 +++ 1 file changed, 3 insertions(+) --- a/drivers/staging/media/sunxi/cedrus/cedrus_h264.c +++ b/drivers/staging/media/sunxi/cedrus/cedrus_h264.c @@ -210,6 +210,9 @@ static void _cedrus_write_ref_list(struc u8 dpb_idx; dpb_idx = ref_list[i].index; + if (dpb_idx >= V4L2_H264_NUM_DPB_ENTRIES) + continue; + dpb = &decode->dpb[dpb_idx]; if (!(dpb->flags & V4L2_H264_DPB_ENTRY_FLAG_ACTIVE))