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 C8C5C44AB91; Tue, 21 Jul 2026 21:44:21 +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=1784670262; cv=none; b=g2ph8/4nuacPOrYJe1/TisYPP1bDBIAo80JJYUh8DOgneLPnP8evssM+/v9vYErM3yzu7RZ3ZA4lD+UxIqVXwXi6binHY0fMGtPZoBGx1UvQBIQPJ7lhKUb/S2YXX2yXxc6fvH3TkJGfa9fXy29YKQUNSOK3ycBPQmGFRV8tdH8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784670262; c=relaxed/simple; bh=z2yz+XcZz8cufAB6XJHawo+qOxlxi5U6gmB1+LliAgo=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=rdbBloqWgsbiT7eglK7VV7Wf5dlAZB20+WQyByZS5m26P/KnTiFCSEMzPLK7dB1Tgsg3H/byDavnSzAyTB4rl0PqBxsa3LV+gOFyOcIYHVb12/ZKDCLHu52S5B9XPOr6dOxD3x/Ze0PtWu842Sae9/Rqy/uP1j+aOWrl5BHlu2I= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=1iMehGXk; 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="1iMehGXk" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3BC0C1F000E9; Tue, 21 Jul 2026 21:44:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1784670261; bh=lqvQMl/8Oz579FKbc6Lqr0uRw9N+fOmJyR8dobIbaAk=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=1iMehGXkAYhRTpn315r8HNDZuV4+QBQKTWAGWnnCJzxkEUAglhIb9oIRRSEsNxNkO hwbn/EOAkCR4AVkYVNIB/8Ak4dDLrqPtNBvwc6z2mnkQ7mEteah78NBFbhZn7N7n2m V1zfGLX1PvmMsNWkGb94pSp4Vj9Gs5rRXzlVUM6I= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Sashiko bot , Dmitry Torokhov Subject: [PATCH 6.1 0866/1067] Input: ims-pcu - fix out-of-bounds read in ims_pcu_irq() debug logging Date: Tue, 21 Jul 2026 17:24:27 +0200 Message-ID: <20260721152443.912841342@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260721152424.521567757@linuxfoundation.org> References: <20260721152424.521567757@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.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Dmitry Torokhov commit 403b0a6970b1084bb27907c0f8225801fdd0fe1d upstream. The debug logging in ims_pcu_irq() unconditionally prints data from pcu->urb_in_buf. However, if the interrupt fired for pcu->urb_ctrl, the actual data resides in pcu->urb_ctrl_buf. If urb->actual_length for the control URB exceeds pcu->max_in_size, this leads to an out-of-bounds read. Fix this by printing from the correct buffer associated with the URB. Fixes: 628329d52474 ("Input: add IMS Passenger Control Unit driver") Cc: stable@vger.kernel.org Reported-by: Sashiko bot Assisted-by: Gemini:gemini-3.1-pro Signed-off-by: Dmitry Torokhov Signed-off-by: Greg Kroah-Hartman --- drivers/input/misc/ims-pcu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/input/misc/ims-pcu.c +++ b/drivers/input/misc/ims-pcu.c @@ -1547,7 +1547,7 @@ static void ims_pcu_irq(struct urb *urb) } dev_dbg(pcu->dev, "%s: received %d: %*ph\n", __func__, - urb->actual_length, urb->actual_length, pcu->urb_in_buf); + urb->actual_length, urb->actual_length, urb->transfer_buffer); if (urb == pcu->urb_in) ims_pcu_process_data(pcu, urb);