Bug 2390320 (CVE-2024-58239) - CVE-2024-58239 kernel: tls: stop recv() if initial process_rx_list gave us non-DATA
Summary: CVE-2024-58239 kernel: tls: stop recv() if initial process_rx_list gave us no...
Keywords:
Status: NEW
Alias: CVE-2024-58239
Product: Security Response
Classification: Other
Component: vulnerability
Version: unspecified
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Product Security DevOps Team
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2025-08-22 14:01 UTC by OSIDB Bzimport
Modified: 2025-08-26 12:35 UTC (History)
0 users

Fixed In Version:
Clone Of:
Environment:
Last Closed:
Embargoed:


Attachments (Terms of Use)

Description OSIDB Bzimport 2025-08-22 14:01:42 UTC
In the Linux kernel, the following vulnerability has been resolved:

tls: stop recv() if initial process_rx_list gave us non-DATA

If we have a non-DATA record on the rx_list and another record of the
same type still on the queue, we will end up merging them:
 - process_rx_list copies the non-DATA record
 - we start the loop and process the first available record since it's
   of the same type
 - we break out of the loop since the record was not DATA

Just check the record type and jump to the end in case process_rx_list
did some work.


Note You need to log in before you can comment on or make changes to this bug.