summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-grpcio/CVE-2024-11407.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-grpcio/CVE-2024-11407.patch')
-rw-r--r--meta-python/recipes-devtools/python/python3-grpcio/CVE-2024-11407.patch32
1 files changed, 32 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-grpcio/CVE-2024-11407.patch b/meta-python/recipes-devtools/python/python3-grpcio/CVE-2024-11407.patch
new file mode 100644
index 0000000000..eef5e7239e
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-grpcio/CVE-2024-11407.patch
@@ -0,0 +1,32 @@
1From e9046b2bbebc0cb7f5dc42008f807f6c7e98e791 Mon Sep 17 00:00:00 2001
2From: Vignesh Babu <vigneshbabu@google.com>
3Date: Thu, 12 Sep 2024 11:13:45 -0700
4Subject: [PATCH] [EventEngine] Fix bug in Tx0cp code path in posix endpoint.
5
6This fix ensures that the iov_base pointers point to the right address.
7
8PiperOrigin-RevId: 673923651
9
10CVE: CVE-2024-11407
11Upstream-Status: Backport [https://github.com/grpc/grpc/commit/e9046b2bbebc0cb7f5dc42008f807f6c7e98e791]
12Signed-off-by: Peter Marko <peter.marko@siemens.com>
13---
14 src/core/lib/event_engine/posix_engine/posix_endpoint.cc | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17diff --git a/src/core/lib/event_engine/posix_engine/posix_endpoint.cc b/src/core/lib/event_engine/posix_engine/posix_endpoint.cc
18index 7634bb1334b..c5708db02c5 100644
19--- a/src/core/lib/event_engine/posix_engine/posix_endpoint.cc
20+++ b/src/core/lib/event_engine/posix_engine/posix_endpoint.cc
21@@ -240,7 +240,7 @@ msg_iovlen_type TcpZerocopySendRecord::PopulateIovs(size_t* unwind_slice_idx,
22 iov_size++) {
23 MutableSlice& slice = internal::SliceCast<MutableSlice>(
24 buf_.MutableSliceAt(out_offset_.slice_idx));
25- iov[iov_size].iov_base = slice.begin();
26+ iov[iov_size].iov_base = slice.begin() + out_offset_.byte_idx;
27 iov[iov_size].iov_len = slice.length() - out_offset_.byte_idx;
28 *sending_length += iov[iov_size].iov_len;
29 ++(out_offset_.slice_idx);
30--
312.30.2
32