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 2E2DE282F29; Mon, 17 Aug 2026 14:40:56 +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=1786977657; cv=none; b=m58x/EG00B4OA541buLfuwyYbgkphUH6CHWyZMzG4CB1hYNttPgKBzXeFaGQ9uC7zy6DxKncjMx6ycJohTk8ex9OTQenlKXY1BnHlEaJRyYEem0ZrRg4syCNaNsiRJFLOeFWYI1YVpyAsEfRfTDuLbgKCihFDnHxex0ovOHrAPI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786977657; c=relaxed/simple; bh=SMVLRbCQpjDxCOe2YfjAj7ueLargJIXrqmDKBhqpUcc=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=MwKJeW4zle4AX+svXgQx5RR8DV+ZtsHGEqCG8m0biL+vrH2h0zazJzyNMrNcH75t64LgZhjZPbm++B9n1YN6tALGBAlJJ5uDbnHWgd8Kg/vueTVaun63nSKBiw+rUP/JOoXfzCmqobblurekSh+aSnzjVQQFIaUWCPfDJUcplHs= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=M44GcXjo; 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="M44GcXjo" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 876B61F000E9; Mon, 17 Aug 2026 14:40:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1786977656; bh=lkcJtAeqX2fITWcz9KVqHS/qf7eq5JamnAOK0I+YCAQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=M44GcXjo9kmsL9dKeO2ZtGqGeiGX5Vjl99S9yEDqtLSbfjZ4+c6CDavQVaKe17FMk kX5iTwyxb8Boxf3hWv9DJi1bOemU/LhJ7U+9WclChkH/4rm6FLZBMU0EqFFJrPCGoI EqtysB2NSYOfRn42bM/BLZGrfy1b2033SMB3Jjy0= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, stable , Sonali Pradhan Subject: [PATCH 5.15 405/456] usb: gadget: f_ncm: Use unsigned int for ndp_index Date: Mon, 17 Aug 2026 15:33:15 +0200 Message-ID: <20260817132555.141800294@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260817132539.792407575@linuxfoundation.org> References: <20260817132539.792407575@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 5.15-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 @@ -1180,7 +1180,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;