[AUTO-CHERRYPICK] ceph: Fix high CVE-2024-38517 and CVE-2024-39684 - branch main (#9858)
Co-authored-by: Vince Perri <5596945+vinceaperri@users.noreply.github.com>
This commit is contained in:
Родитель
d86b17bc05
Коммит
2dd276939a
|
@ -0,0 +1,64 @@
|
|||
From 9138794bd0e51fe444f14803f891924798a651ac Mon Sep 17 00:00:00 2001
|
||||
From: Vince Perri <5596945+vinceaperri@users.noreply.github.com>
|
||||
Date: Mon, 15 Jul 2024 18:33:06 +0000
|
||||
Subject: [PATCH] Prevent int underflow when parsing exponents
|
||||
|
||||
From 8269bc2bc289e9d343bae51cdf6d23ef0950e001 Mon Sep 17 00:00:00 2001
|
||||
From: Florin Malita <fmalita@gmail.com>
|
||||
Date: Tue, 15 May 2018 22:48:07 -0400
|
||||
Subject: [PATCH] Prevent int underflow when parsing exponents
|
||||
|
||||
When parsing negative exponents, the current implementation takes
|
||||
precautions for |exp| to not underflow int.
|
||||
|
||||
But that is not sufficient: later on [1], |exp + expFrac| is also
|
||||
stored to an int - so we must ensure that the sum stays within int
|
||||
representable values.
|
||||
|
||||
Update the exp clamping logic to take expFrac into account.
|
||||
|
||||
[1] https://github.com/Tencent/rapidjson/blob/master/include/rapidjson/reader.h#L1690
|
||||
---
|
||||
src/rapidjson/include/rapidjson/reader.h | 11 ++++++++++-
|
||||
src/rapidjson/test/unittest/readertest.cpp | 1 +
|
||||
2 files changed, 11 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/rapidjson/include/rapidjson/reader.h b/src/rapidjson/include/rapidjson/reader.h
|
||||
index 19f8849b1..a9f502307 100644
|
||||
--- a/src/rapidjson/include/rapidjson/reader.h
|
||||
+++ b/src/rapidjson/include/rapidjson/reader.h
|
||||
@@ -1302,9 +1302,18 @@ private:
|
||||
if (RAPIDJSON_LIKELY(s.Peek() >= '0' && s.Peek() <= '9')) {
|
||||
exp = static_cast<int>(s.Take() - '0');
|
||||
if (expMinus) {
|
||||
+ // (exp + expFrac) must not underflow int => we're detecting when -exp gets
|
||||
+ // dangerously close to INT_MIN (a pessimistic next digit 9 would push it into
|
||||
+ // underflow territory):
|
||||
+ //
|
||||
+ // -(exp * 10 + 9) + expFrac >= INT_MIN
|
||||
+ // <=> exp <= (expFrac - INT_MIN - 9) / 10
|
||||
+ RAPIDJSON_ASSERT(expFrac <= 0);
|
||||
+ int maxExp = (expFrac + 2147483639) / 10;
|
||||
+
|
||||
while (RAPIDJSON_LIKELY(s.Peek() >= '0' && s.Peek() <= '9')) {
|
||||
exp = exp * 10 + static_cast<int>(s.Take() - '0');
|
||||
- if (exp >= 214748364) { // Issue #313: prevent overflow exponent
|
||||
+ if (RAPIDJSON_UNLIKELY(exp > maxExp)) {
|
||||
while (RAPIDJSON_UNLIKELY(s.Peek() >= '0' && s.Peek() <= '9')) // Consume the rest of exponent
|
||||
s.Take();
|
||||
}
|
||||
diff --git a/src/rapidjson/test/unittest/readertest.cpp b/src/rapidjson/test/unittest/readertest.cpp
|
||||
index 64a1f9c3c..65163de60 100644
|
||||
--- a/src/rapidjson/test/unittest/readertest.cpp
|
||||
+++ b/src/rapidjson/test/unittest/readertest.cpp
|
||||
@@ -242,6 +242,7 @@ static void TestParseDouble() {
|
||||
TEST_DOUBLE(fullPrecision, "1e-214748363", 0.0); // Maximum supported negative exponent
|
||||
TEST_DOUBLE(fullPrecision, "1e-214748364", 0.0);
|
||||
TEST_DOUBLE(fullPrecision, "1e-21474836311", 0.0);
|
||||
+ TEST_DOUBLE(fullPrecision, "1.00000000001e-2147483638", 0.0);
|
||||
TEST_DOUBLE(fullPrecision, "0.017976931348623157e+310", 1.7976931348623157e+308); // Max double in another form
|
||||
|
||||
// Since
|
||||
--
|
||||
2.34.1
|
||||
|
|
@ -0,0 +1 @@
|
|||
CVE-2024-39684 is a duplicate of CVE-2024-38517
|
|
@ -5,7 +5,7 @@
|
|||
Summary: User space components of the Ceph file system
|
||||
Name: ceph
|
||||
Version: 16.2.10
|
||||
Release: 4%{?dist}
|
||||
Release: 5%{?dist}
|
||||
License: LGPLv2 and LGPLv3 and CC-BY-SA and GPLv2 and Boost and BSD and MIT and Public Domain and GPLv3 and ASL-2.0
|
||||
URL: https://ceph.io/
|
||||
Vendor: Microsoft Corporation
|
||||
|
@ -16,8 +16,9 @@ Patch1: CVE-2021-28361.patch
|
|||
Patch2: CVE-2022-3650.patch
|
||||
Patch3: CVE-2022-3854.patch
|
||||
Patch4: CVE-2023-43040.patch
|
||||
Patch5: CVE-2024-38517.patch
|
||||
|
||||
#
|
||||
#
|
||||
# Copyright (C) 2004-2019 The Ceph Project Developers. See COPYING file
|
||||
# at the top-level directory of this distribution and at
|
||||
# https://github.com/ceph/ceph/blob/master/COPYING
|
||||
|
@ -1810,6 +1811,9 @@ exit 0
|
|||
%config %{_sysconfdir}/prometheus/ceph/ceph_default_alerts.yml
|
||||
|
||||
%changelog
|
||||
* Mon Jul 15 2024 Vince Perri <viperri@microsoft.com> - 16.2.10-5
|
||||
- Patch CVE-2024-38517
|
||||
|
||||
* Fri May 17 2024 Henry Beberman <henry.beberman@microsoft.com> - 16.2.10-4
|
||||
- Patch CVE-2023-43040
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче