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 2B7FE43F089; Mon, 17 Aug 2026 14:55:34 +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=1786978535; cv=none; b=JiXt7BWt32nD2sEcMHPzerJcD0y4nqFgcmcIYd2aP7H59jcZBFGG3AyjhZTDjiROopZPtVGYqH0wB8Ag/vL+5U4q+cnwsd4sFry2RHZyIElY2NkpXLOjyT5HUGTE5ohn+MnO4SkEnXVZDW2FE6ysw7Qep4+wkX1ModpL6yIjuiI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786978535; c=relaxed/simple; bh=5ZUA8TQn5cfakSmgWbAN7I5+Gg30niwVRXTUqAus7ns=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=q2GiZduo532k2LvYD20viOsKgYOL3TffCGMnvzk/2RZCtXPv55UGSbqByKIIgKS/yRE/nBnYasPp3ZLRrT7S2Up65zBXg068wQRaZgztaFOUMElf4EZYd4W037hBZxTxcpDNc8RXRmvYhxuVhCmDlMEpcYMVeyi/nO1MTZi+HVM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=edTVWjEG; 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="edTVWjEG" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7DCEB1F00A3A; Mon, 17 Aug 2026 14:55:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1786978534; bh=xr+n0kVc8VIrbznWPat3qygqUuNyLxNknK8BPvSEiRs=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=edTVWjEGoRVFb7bnHOm6IZ+pCnHQOv3RWOWq/qPBTJ5Kvg3iT40aP91uQt1r1j9he QHJ47CawWXjNTbO0LCGASQ8XVTUzfMGKO5tlhMxWJAPZADyTDfCC8kHtdLKUDljUXN QkjAHAce5Acz2JfR44VXRuzUWRONIOWc5OXv+/OY= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, stable , Sonali Pradhan Subject: [PATCH 6.6 069/156] usb: gadget: f_ncm: Use unsigned int for ndp_index Date: Mon, 17 Aug 2026 15:33:23 +0200 Message-ID: <20260817132537.289255723@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260817132534.666299318@linuxfoundation.org> References: <20260817132534.666299318@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.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Sonali Pradhan commit 6b1c8a9403a26cb0fed7a648916c74dc236da591 upstream. The variable ndp_index is declared as a signed integer, but it stores the return value of get_ncm(), which is unsigned. A malicious host can supply a large offset that overflows the signed ndp_index, making it negative. Because ndp_index is compared against unsigned bounds, this negative value bypasses sanity checks and leads to an out-of-bounds read when calculating the address of the NDP block (ntb_ptr + ndp_index). Fix this by changing ndp_index to unsigned int to ensure consistent unsigned comparisons throughout the function. Fixes: 370af734dfaf ("usb: gadget: NCM: RX function support multiple NDPs") Cc: stable Signed-off-by: Sonali Pradhan Link: https://patch.msgid.link/20260720165654.2224591-1-sonalipradhan@google.com Signed-off-by: Greg Kroah-Hartman Signed-off-by: Greg Kroah-Hartman --- drivers/usb/gadget/function/f_ncm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/usb/gadget/function/f_ncm.c +++ b/drivers/usb/gadget/function/f_ncm.c @@ -1161,7 +1161,7 @@ static int ncm_unwrap_ntb(struct gether unsigned char *ntb_ptr = skb->data; __le16 *tmp; unsigned index, index2; - int ndp_index; + unsigned int ndp_index; unsigned dg_len, dg_len2; unsigned ndp_len; unsigned block_len;