From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 B24FE358372 for ; Wed, 8 Apr 2026 07:03:43 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775631823; cv=none; b=hwiuAWTU0vN7t1fZLaz1NamP4oCH8Ik5k4SE5FkSj7unmt31VBYyr3GWaw9me0fg1zU28+7d1+O1vYacxpW3jSph3geRSbmiX4EYMLGLVSMuzT728juJ82sP5OE+u1H+Cj6o40N2mZy/+s9kZs4E++XD/yFpIenxrCDFllufoSg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775631823; c=relaxed/simple; bh=24wkLZYgInXsMXc0b6HHAJWnuXkq2nfsLmQ89Fstuv0=; h=Subject:To:Cc:From:Date:Message-ID:MIME-Version:Content-Type; b=IgyCZWk7bv4M5IDyJWsKoRqnTITVppqEUyiYIcaEBwKg+eNiUQNBxBGBRMuvBKSlA+CXgx9X1JjzukwWE/IYodGYiexpaQYBNdAWNRsF0GZcUfhpD/j18Ojdil6Jdo60ynergc5wpwRoL4QIjHv9r8jMw+q1Lb3k3oTXJo3k4Ag= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=AvqaT1Pw; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="AvqaT1Pw" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3F498C19424; Wed, 8 Apr 2026 07:03:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1775631823; bh=24wkLZYgInXsMXc0b6HHAJWnuXkq2nfsLmQ89Fstuv0=; h=Subject:To:Cc:From:Date:From; b=AvqaT1PwQjcd729o+TIhqB2A0BJUAgNWlRJnOs7KPkDeZZ4QQZS0yTaQ7QI45MQJ8 HnkFG2yt8LZwbA9Wotywl5wvSeR6CyunWArU4KnNXZcbhl85wVNhcFAMctKEX4hgW9 O1E26n1r3nIrXkRLJQzoH0uctyZBlGDbeV8IRD/0= Subject: FAILED: patch "[PATCH] usb: typec: ucsi: validate connector number in" failed to apply to 6.6-stable tree To: nathan.c.rebello@gmail.com,gregkh@linuxfoundation.org,heikki.krogerus@linux.intel.com,stable@kernel.org Cc: From: Date: Wed, 08 Apr 2026 09:03:41 +0200 Message-ID: <2026040841-wheat-refund-0488@gregkh> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit The patch below does not apply to the 6.6-stable tree. If someone wants it applied there, or to any other stable or longterm tree, then please email the backport, including the original git commit id to . To reproduce the conflict and resubmit, you may use the following commands: git fetch https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/ linux-6.6.y git checkout FETCH_HEAD git cherry-pick -x d2d8c17ac01a1b1f638ea5d340a884ccc5015186 # git commit -s git send-email --to '' --in-reply-to '2026040841-wheat-refund-0488@gregkh' --subject-prefix 'PATCH 6.6.y' HEAD^.. Possible dependencies: thanks, greg k-h ------------------ original commit in Linus's tree ------------------ >From d2d8c17ac01a1b1f638ea5d340a884ccc5015186 Mon Sep 17 00:00:00 2001 From: Nathan Rebello Date: Fri, 13 Mar 2026 18:24:53 -0400 Subject: [PATCH] usb: typec: ucsi: validate connector number in ucsi_notify_common() The connector number extracted from CCI via UCSI_CCI_CONNECTOR() is a 7-bit field (0-127) that is used to index into the connector array in ucsi_connector_change(). However, the array is only allocated for the number of connectors reported by the device (typically 2-4 entries). A malicious or malfunctioning device could report an out-of-range connector number in the CCI, causing an out-of-bounds array access in ucsi_connector_change(). Add a bounds check in ucsi_notify_common(), the central point where CCI is parsed after arriving from hardware, so that bogus connector numbers are rejected before they propagate further. Fixes: bdc62f2bae8f ("usb: typec: ucsi: Simplified registration and I/O API") Cc: stable Reviewed-by: Heikki Krogerus Signed-off-by: Nathan Rebello Link: https://patch.msgid.link/20260313222453.123-1-nathan.c.rebello@gmail.com Signed-off-by: Greg Kroah-Hartman diff --git a/drivers/usb/typec/ucsi/ucsi.c b/drivers/usb/typec/ucsi/ucsi.c index f38a4d7ebc42..8333bdaf5566 100644 --- a/drivers/usb/typec/ucsi/ucsi.c +++ b/drivers/usb/typec/ucsi/ucsi.c @@ -43,8 +43,13 @@ void ucsi_notify_common(struct ucsi *ucsi, u32 cci) if (cci & UCSI_CCI_BUSY) return; - if (UCSI_CCI_CONNECTOR(cci)) - ucsi_connector_change(ucsi, UCSI_CCI_CONNECTOR(cci)); + if (UCSI_CCI_CONNECTOR(cci)) { + if (UCSI_CCI_CONNECTOR(cci) <= ucsi->cap.num_connectors) + ucsi_connector_change(ucsi, UCSI_CCI_CONNECTOR(cci)); + else + dev_err(ucsi->dev, "bogus connector number in CCI: %lu\n", + UCSI_CCI_CONNECTOR(cci)); + } if (cci & UCSI_CCI_ACK_COMPLETE && test_and_clear_bit(ACK_PENDING, &ucsi->flags))