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 C690644AB91; Tue, 21 Jul 2026 21:44:13 +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=1784670254; cv=none; b=Nn4WwlYaaEx+MFRMiTFLroJZna4RuKCTwOoYgzGtGh8E4wbfRkuAyEXYgQahSMrXNC35QTWYqrnrIKenbIDlqpdOqzFyc49z+cRTO/w3jPObnzCe1HpN49RSbSmjVW1TWgmal87GmnEwKrhEcrq+ROOiPlD7qFNgp+EH8i5kJ0c= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784670254; c=relaxed/simple; bh=20AZms0JSsDGU9kQKpOxvVVxOLTu5mrK/TdGBYOMRLo=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=PILXAntjUzTxeFs9sh5TttBloKpd2gYPskY1XTnTYCnEyGr/lsoLcIHdr79FICddB1gAsDskpYAK2pORppY64y3ekZphX3jUyBwEc9NnxoJtVDEIij4IeEm1OSF4lcco+G2FDd/M1woUzHSeRTzM+l4mI2LK/2CVce0x4n5gDWI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=PBLpxRcZ; 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="PBLpxRcZ" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 37DB91F000E9; Tue, 21 Jul 2026 21:44:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1784670253; bh=jo9qYkui/MpzwXdiayg2BtAu65CNo8WFpGKAKrAd76A=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=PBLpxRcZyd12V3b+CVAvqIrC/5EkVve8agm43sHKe/PfYIDEPSYBc8Qj8mW6d57w1 jo6NynFdyYxcgMFbmy46a2NM3S437GBi7LlZKxGk+6bSCvD/2Rvs+L+gEGWyg/FmZH AjNDw/ZBfg+yMVtbctAe175jOe9qjXHpSbvem1bI= 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 0863/1067] Input: ims-pcu - validate control endpoint type Date: Tue, 21 Jul 2026 17:24:24 +0200 Message-ID: <20260721152443.847592991@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 baf56975806534268e24acf9a8abb1c447ce11e9 upstream. The driver currently assumes that the first endpoint of the control interface is an interrupt IN endpoint without verifying it. A malicious device could provide a different endpoint type, which would then be passed to usb_fill_int_urb(), potentially leading to kernel warnings or undefined behavior. Verify that the control endpoint is an interrupt IN endpoint. 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 | 6 ++++++ 1 file changed, 6 insertions(+) --- a/drivers/input/misc/ims-pcu.c +++ b/drivers/input/misc/ims-pcu.c @@ -1676,6 +1676,12 @@ static int ims_pcu_parse_cdc_data(struct return -ENODEV; pcu->ep_ctrl = &alt->endpoint[0].desc; + if (!usb_endpoint_is_int_in(pcu->ep_ctrl)) { + dev_err(pcu->dev, + "Control endpoint is not INTERRUPT IN\n"); + return -EINVAL; + } + pcu->max_ctrl_size = usb_endpoint_maxp(pcu->ep_ctrl); pcu->data_intf = usb_ifnum_to_if(pcu->udev,