0.0
NA
CVE-2024-40974
IBM Power System Linux Kernel Array Bounds Vulnerability
Description

In the Linux kernel, the following vulnerability has been resolved: powerpc/pseries: Enforce hcall result buffer validity and size plpar_hcall(), plpar_hcall9(), and related functions expect callers to provide valid result buffers of certain minimum size. Currently this is communicated only through comments in the code and the compiler has no idea. For example, if I write a bug like this: long retbuf[PLPAR_HCALL_BUFSIZE]; // should be PLPAR_HCALL9_BUFSIZE plpar_hcall9(H_ALLOCATE_VAS_WINDOW, retbuf, ...); This compiles with no diagnostics emitted, but likely results in stack corruption at runtime when plpar_hcall9() stores results past the end of the array. (To be clear this is a contrived example and I have not found a real instance yet.) To make this class of error less likely, we can use explicitly-sized array parameters instead of pointers in the declarations for the hcall APIs. When compiled with -Warray-bounds[1], the code above now provokes a diagnostic like this: error: array argument is too small; is of size 32, callee requires at least 72 [-Werror,-Warray-bounds] 60 | plpar_hcall9(H_ALLOCATE_VAS_WINDOW, retbuf, | ^ ~~~~~~ [1] Enabled for LLVM builds but not GCC for now. See commit 0da6e5fd6c37 ("gcc: disable '-Warray-bounds' for gcc-13 too") and related changes.

INFO

Published Date :

July 12, 2024, 1:15 p.m.

Last Modified :

Nov. 21, 2024, 9:31 a.m.

Source :

416baaa9-dc9f-4396-8d5f-8c081fb06d67

Remotely Exploitable :

No

Impact Score :

Exploitability Score :

Affected Products

The following products are affected by CVE-2024-40974 vulnerability. Even if cvefeed.io is aware of the exact versions of the products that are affected, the information is not represented in the table below.

ID Vendor Product Action
1 Linux linux_kernel

We scan GitHub repositories to detect new proof-of-concept exploits. Following list is a collection of public exploits and proof-of-concepts, which have been published on GitHub (sorted by the most recently updated).

Results are limited to the first 15 repositories due to potential performance issues.

The following list is the news that have been mention CVE-2024-40974 vulnerability anywhere in the article.

The following table lists the changes that have been made to the CVE-2024-40974 vulnerability over time.

Vulnerability history details can be useful for understanding the evolution of a vulnerability, and for identifying the most recent changes that may impact the vulnerability's severity, exploitability, or other characteristics.

  • CVE Modified by af854a3a-2127-422b-91ae-364da2661108

    Nov. 21, 2024

    Action Type Old Value New Value
    Added Reference https://git.kernel.org/stable/c/19c166ee42cf16d8b156a6cb4544122d9a65d3ca
    Added Reference https://git.kernel.org/stable/c/262e942ff5a839b9e4f3302a8987928b0c8b8a2d
    Added Reference https://git.kernel.org/stable/c/3ad0034910a57aa88ed9976b1431b7b8c84e0048
    Added Reference https://git.kernel.org/stable/c/8aa11aa001576bf3b00dcb8559564ad7a3113588
    Added Reference https://git.kernel.org/stable/c/a8c988d752b3d98d5cc1e3929c519a55ef55426c
    Added Reference https://git.kernel.org/stable/c/aa6107dcc4ce9a3451f2d729204713783b657257
    Added Reference https://git.kernel.org/stable/c/acf2b80c31c37acab040baa3cf5f19fbd5140b18
    Added Reference https://git.kernel.org/stable/c/ff2e185cf73df480ec69675936c4ee75a445c3e4
  • CVE Received by 416baaa9-dc9f-4396-8d5f-8c081fb06d67

    Jul. 12, 2024

    Action Type Old Value New Value
    Added Description In the Linux kernel, the following vulnerability has been resolved: powerpc/pseries: Enforce hcall result buffer validity and size plpar_hcall(), plpar_hcall9(), and related functions expect callers to provide valid result buffers of certain minimum size. Currently this is communicated only through comments in the code and the compiler has no idea. For example, if I write a bug like this: long retbuf[PLPAR_HCALL_BUFSIZE]; // should be PLPAR_HCALL9_BUFSIZE plpar_hcall9(H_ALLOCATE_VAS_WINDOW, retbuf, ...); This compiles with no diagnostics emitted, but likely results in stack corruption at runtime when plpar_hcall9() stores results past the end of the array. (To be clear this is a contrived example and I have not found a real instance yet.) To make this class of error less likely, we can use explicitly-sized array parameters instead of pointers in the declarations for the hcall APIs. When compiled with -Warray-bounds[1], the code above now provokes a diagnostic like this: error: array argument is too small; is of size 32, callee requires at least 72 [-Werror,-Warray-bounds] 60 | plpar_hcall9(H_ALLOCATE_VAS_WINDOW, retbuf, | ^ ~~~~~~ [1] Enabled for LLVM builds but not GCC for now. See commit 0da6e5fd6c37 ("gcc: disable '-Warray-bounds' for gcc-13 too") and related changes.
    Added Reference kernel.org https://git.kernel.org/stable/c/acf2b80c31c37acab040baa3cf5f19fbd5140b18 [No types assigned]
    Added Reference kernel.org https://git.kernel.org/stable/c/19c166ee42cf16d8b156a6cb4544122d9a65d3ca [No types assigned]
    Added Reference kernel.org https://git.kernel.org/stable/c/a8c988d752b3d98d5cc1e3929c519a55ef55426c [No types assigned]
    Added Reference kernel.org https://git.kernel.org/stable/c/262e942ff5a839b9e4f3302a8987928b0c8b8a2d [No types assigned]
    Added Reference kernel.org https://git.kernel.org/stable/c/8aa11aa001576bf3b00dcb8559564ad7a3113588 [No types assigned]
    Added Reference kernel.org https://git.kernel.org/stable/c/3ad0034910a57aa88ed9976b1431b7b8c84e0048 [No types assigned]
    Added Reference kernel.org https://git.kernel.org/stable/c/aa6107dcc4ce9a3451f2d729204713783b657257 [No types assigned]
    Added Reference kernel.org https://git.kernel.org/stable/c/ff2e185cf73df480ec69675936c4ee75a445c3e4 [No types assigned]
EPSS is a daily estimate of the probability of exploitation activity being observed over the next 30 days. Following chart shows the EPSS score history of the vulnerability.
CWE - Common Weakness Enumeration

While CVE identifies specific instances of vulnerabilities, CWE categorizes the common flaws or weaknesses that can lead to vulnerabilities. CVE-2024-40974 is associated with the following CWEs:

Common Attack Pattern Enumeration and Classification (CAPEC)

Common Attack Pattern Enumeration and Classification (CAPEC) stores attack patterns, which are descriptions of the common attributes and approaches employed by adversaries to exploit the CVE-2024-40974 weaknesses.

NONE - Vulnerability Scoring System
© cvefeed.io
Latest DB Update: May. 12, 2025 23:45