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 B8C373D5227; Fri, 7 Aug 2026 14:56:45 +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=1786114607; cv=none; b=a/aRCx2kyoWyfaBFAF8JHgPBP+cRjxYjv27IMUwM7WazGn1m2lnLoVHjIwqf1zmWxtkvj7ZfM/vNkBXPRO2oSkXho4lguQO7WRifJKBRyG1ubGUK+AK5pKZJDV5O3P249itHQJTnbXXOkoV42Cshk8UFcJf/oV6BAd/dwAsI/Lw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786114607; c=relaxed/simple; bh=6hYk3FZahXrZXNV/m/l3YP4lX3cvNPBN1ohAyVUKIh4=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=h+2tZ/HdFq3BUDV6SuIEnmwZn64EmkS/9/3b4xJsy6eVHEXCp24jFUUnU9lJBEG11AAYPzQ5mj40Tz0FW+BGNbiUJe3wle5XyGw6IT9lrpRe/Q53HIpFaCnZsB8tIgkaWuMZ2gHyfoiXtaUKsKe+6ZILjJ8keEuc7F+ENDa9+p8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=W97Cpjta; 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="W97Cpjta" Received: by smtp.kernel.org (Postfix) with ESMTPSA id A56831F00A3E; Fri, 7 Aug 2026 14:56:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1786114605; bh=jRM8LHDfAXRMUJtvCYm3QGnme8llPTQdKjjYF7ta8VY=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=W97CpjtaQCrld33/ZZBocwxxdu+l5WZRHUTXIr8WiRYPHLbdvOcNWpcfenSIuvbMo 7EQSuq46JGysIhMeI8L3ZOEKHqfxP2RYF6RIkGnPKQXcposn+C1mcIx8f40BlCcHbk bXgKNfBSDO2LMwjQnCorSyNOzSY8rpaQg4BWNktE= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Martin Hodo , Suraj Kandpal , Jani Nikula , Joonas Lahtinen , Sasha Levin Subject: [PATCH 6.12 323/337] drm/i915/hdcp: require monotonically increasing seq_num_v Date: Fri, 7 Aug 2026 16:38:46 +0200 Message-ID: <20260807143425.537743000@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260807143418.516897842@linuxfoundation.org> References: <20260807143418.516897842@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.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Jani Nikula [ Upstream commit db9e64c983dcb07ff256bd455f258c44aa530ff8 ] The HDCP 2.2 specification requires the seq_num_v to be monotonically increasing, and repeated seq_num_v needs to be treated as an integrity failure. Make it so. For the first message, seq_num_v must be zero, and is already checked. We can only check for less-than-or-equal for the subsequent messages, where hdcp2_encrypted is true. Discovered using AI-assisted static analysis confirmed by Intel Product Security. Reported-by: Martin Hodo Fixes: d849178e2c9e ("drm/i915: Implement HDCP2.2 repeater authentication") Cc: stable@vger.kernel.org # v5.2+ Cc: Suraj Kandpal Reviewed-by: Suraj Kandpal Link: https://patch.msgid.link/20260625104407.1025614-1-jani.nikula@intel.com Signed-off-by: Jani Nikula (cherry picked from commit 58a224375c81179b52558c53d8857b93196d2687) Signed-off-by: Joonas Lahtinen Signed-off-by: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- drivers/gpu/drm/i915/display/intel_hdcp.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) --- a/drivers/gpu/drm/i915/display/intel_hdcp.c +++ b/drivers/gpu/drm/i915/display/intel_hdcp.c @@ -1742,9 +1742,10 @@ int hdcp2_authenticate_repeater_topology return -EINVAL; } - if (seq_num_v < hdcp->seq_num_v) { - /* Roll over of the seq_num_v from repeater. Reauthenticate. */ - drm_dbg_kms(display->drm, "Seq_num_v roll over.\n"); + if (hdcp->hdcp2_encrypted && seq_num_v <= hdcp->seq_num_v) { + /* Reauthenticate on Seq_num_v repeat or rollover */ + drm_dbg_kms(display->drm, "Seq_num_v %s\n", + seq_num_v == hdcp->seq_num_v ? "repeat" : "rollover"); return -EINVAL; }