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 7FCBE5D49A for ; Fri, 17 May 2024 14:27:12 +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=1715956032; cv=none; b=bBZh2kzqrr+dpEOJYrMZfFKjsdGFBIfRIJR9JrXQ9uvQeQ1F2QQaMNJ+DfB5HY8rxfpTKltzjAI1BFrizB1hD4MZ08CLh2Wbx9w6RVzlywdABjdWbujayS3YfUuDs73M1gNM03WVGWU7QAVBWOmCmlxL+UuRHc0IGMSj9iRh2is= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715956032; c=relaxed/simple; bh=WvnJWPYz/xHwiZNGCU/sgEStuArvwDugB+NAufjJfes=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=kp6eH1EyqWQw0st+l1wiLyVMbXuhpn8ABV4XReWbKa/Kvm+I60Ow9skhtsPKaJqlxGVaBMPTY+otKDDITJzBZrcjl1SdJacgsUTLgVazS01IJvXIUtjlm+3WPaAApwrOq4iFWe2z7Wj5SsWspc5nIQVCFuTCOfxrG5u7osUAaz8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=ai59PvgM; 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="ai59PvgM" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 063F8C2BD10; Fri, 17 May 2024 14:27:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1715956032; bh=WvnJWPYz/xHwiZNGCU/sgEStuArvwDugB+NAufjJfes=; h=From:To:Cc:Subject:Date:Reply-to:From; b=ai59PvgMHReduBOtXMn7L/+1VLZm3qXmGm7rhpQg9a4TYmqC//h68vFMqJJz9cE4p 2QFwAWIa4nSUBJlDct/ZePG6cJtH7Dd453R45GCw4iaYaa8AZ005ltsrtXIwHrQevd aaxE7kT0l/CdWZ2Z3HQL4j2T+rgiyGRXGdUIAPJM= From: Greg Kroah-Hartman To: linux-cve-announce@vger.kernel.org Cc: Greg Kroah-Hartman Subject: CVE-2023-52685: pstore: ram_core: fix possible overflow in persistent_ram_init_ecc() Date: Fri, 17 May 2024 16:26:58 +0200 Message-ID: <2024051752-CVE-2023-52685-64c5@gregkh> X-Mailer: git-send-email 2.45.1 Precedence: bulk X-Mailing-List: linux-cve-announce@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Reply-to: , X-Developer-Signature: v=1; a=openpgp-sha256; l=3346; i=gregkh@linuxfoundation.org; h=from:subject:message-id; bh=WvnJWPYz/xHwiZNGCU/sgEStuArvwDugB+NAufjJfes=; b=owGbwMvMwCRo6H6F97bub03G02pJDGnumTpPt2xZkjHjeo7G94yoFQqKHTvkL3WX/t0f9vXEf /YTm7tOdsSyMAgyMciKKbJ82cZzdH/FIUUvQ9vTMHNYmUCGMHBxCsBENpxhmCu6Ujy/Q3p+errf /4Zlj5RdXZ4vTGJYsECJ32iCDEtSjnSp637VX8uEF8csBAA= X-Developer-Key: i=gregkh@linuxfoundation.org; a=openpgp; fpr=F4B60CC5BF78C2214A313DCB3147D40DDB2DFB29 Content-Transfer-Encoding: 8bit Description =========== In the Linux kernel, the following vulnerability has been resolved: pstore: ram_core: fix possible overflow in persistent_ram_init_ecc() In persistent_ram_init_ecc(), on 64-bit arches DIV_ROUND_UP() will return 64-bit value since persistent_ram_zone::buffer_size has type size_t which is derived from the 64-bit *unsigned long*, while the ecc_blocks variable this value gets assigned to has (always 32-bit) *int* type. Even if that value fits into *int* type, an overflow is still possible when calculating the size_t typed ecc_total variable further below since there's no cast to any 64-bit type before multiplication. Declaring the ecc_blocks variable as *size_t* should fix this mess... Found by Linux Verification Center (linuxtesting.org) with the SVACE static analysis tool. The Linux kernel CVE team has assigned CVE-2023-52685 to this issue. Affected and fixed versions =========================== Issue introduced in 3.4 with commit 9cc05ad97c57 and fixed in 4.19.306 with commit 3b333cded94f Issue introduced in 3.4 with commit 9cc05ad97c57 and fixed in 5.4.268 with commit d1fe1aede684 Issue introduced in 3.4 with commit 9cc05ad97c57 and fixed in 5.10.209 with commit acd413da3e1f Issue introduced in 3.4 with commit 9cc05ad97c57 and fixed in 5.15.148 with commit 8fb12524c86b Issue introduced in 3.4 with commit 9cc05ad97c57 and fixed in 6.1.75 with commit 48dcfc42ce70 Issue introduced in 3.4 with commit 9cc05ad97c57 and fixed in 6.6.14 with commit a34946ec3de8 Issue introduced in 3.4 with commit 9cc05ad97c57 and fixed in 6.7.2 with commit f9b891a7e8fc Issue introduced in 3.4 with commit 9cc05ad97c57 and fixed in 6.8 with commit 86222a8fc16e Please see https://www.kernel.org for a full list of currently supported kernel versions by the kernel community. Unaffected versions might change over time as fixes are backported to older supported kernel versions. The official CVE entry at https://cve.org/CVERecord/?id=CVE-2023-52685 will be updated if fixes are backported, please check that for the most up to date information about this issue. Affected files ============== The file(s) affected by this issue are: fs/pstore/ram_core.c Mitigation ========== The Linux kernel CVE team recommends that you update to the latest stable kernel version for this, and many other bugfixes. Individual changes are never tested alone, but rather are part of a larger kernel release. Cherry-picking individual commits is not recommended or supported by the Linux kernel community at all. If however, updating to the latest release is impossible, the individual changes to resolve this issue can be found at these commits: https://git.kernel.org/stable/c/3b333cded94fbe5ce30d699b316c4715151268ae https://git.kernel.org/stable/c/d1fe1aede684bd014714dacfdc75586a9ad38657 https://git.kernel.org/stable/c/acd413da3e1f37582207cd6078a41d57c9011918 https://git.kernel.org/stable/c/8fb12524c86bdd542a54857d5d076b1b6778c78c https://git.kernel.org/stable/c/48dcfc42ce705b652c0619cb99846afc43029de9 https://git.kernel.org/stable/c/a34946ec3de88a16cc3a87fdab50aad06255a22b https://git.kernel.org/stable/c/f9b891a7e8fcf83901f8507241e23e7420103b61 https://git.kernel.org/stable/c/86222a8fc16ec517de8da2604d904c9df3a08e5d