Skip to main content

Boteraser | Website and Server Security Solutions

🛡️ CVE-2024-58098 — kernel

🟠 CVSS 7.8 — High ✅ No Known Exploit NVD
7.8
CVSS Score
0 Low4 Medium7 High9 Critical10

Description

bpf: track changes_pkt_data property for global functions

In the Linux kernel, the following vulnerability has been resolved:

bpf: track changes_pkt_data property for global functions

When processing calls to certain helpers, verifier invalidates all

packet pointers in a current state. For example, consider the

following program:

__attribute__((__noinline__))

long skb_pull_data(struct __sk_buff *sk, __u32 len)

{

return bpf_skb_pull_data(sk, len);

}

SEC("tc")

int test_invalidate_checks(struct __sk_buff *sk)

{

int *p = (void *)(long)sk->data;

if ((void *)(p + 1) > (void *)(long)sk->data_end) return TCX_DROP;

skb_pull_data(sk, 0);

*p = 42;

return TCX_PASS;

}

After a call to bpf_skb_pull_data() the pointer 'p' can't be used

safely. See function filter.c:bpf_helper_changes_pkt_data() for a list

of such helpers.

At the moment verifier invalidates packet pointers when processing

helper function calls, and does not traverse global sub-programs when

processing calls to global sub-programs. This means that calls to

helpers done from global sub-programs do not invalidate pointers in

the caller state. E.g. the program above is unsafe, but is not

rejected by verifier.

This commit fixes the omission by computing field

bpf_subprog_info->changes_pkt_data for each sub-program before main

verification pass.

changes_pkt_data should be set if:

  • subprogram calls helper for which bpf_helper_changes_pkt_data

returns true;

  • subprogram calls a global function,

for which bpf_subprog_info->changes_pkt_data should be set.

The verifier.c:check_cfg() pass is modified to compute this

information. The commit relies on depth first instruction traversal

done by check_cfg() and absence of recursive function calls:

  • check_cfg() would eventually visit every call to subprogram S in a

state when S is fully explored;

  • when S is fully explored:
  • every direct helper call within S is explored

(and thus changes_pkt_data is set if needed);

  • every call to subprogram S1 called by S was visited with S1 fully

explored (and thus S inherits changes_pkt_data from S1).

The downside of such approach is that dead code elimination is not

taken into account: if a helper call inside global function is dead

because of current configuration, verifier would conservatively assume

that the call occurs for the purpose of the changes_pkt_data

computation.

How this vulnerability can be exploited

This issue can be reached with local access to the system, attack complexity is low, an attacker needs low-level privileges on the target. No user interaction is required. The scope is unchanged, so the impact stays within the vulnerable component. Rated impact: confidentiality high, integrity high, availability high.

Affected software

CVE-2024-58098 is recorded against 2 packages.

  • kernel (from 6.7.0 up to 6.12.25)
  • linux-kernel

Timeline and source

Published on 5 May 2025 and last revised on 12 August 2026. No public exploit is currently recorded for this entry. A vendor advisory or fix has been published. Record sourced from NVD.

References

git.kernel.org (Web)
git.kernel.org (Web)
git.kernel.org (Web)
github.com (Advisory)
nvd.nist.gov (Advisory)
git.kernel.org (Package)

CVE-2024-58098 on other distributions

Each distribution ships its own build and its own fixed version. Pick the one you run:

Details

Severity High
CVSS Score 7.8
CVSS Vector CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
CWE N/A
Public Exploit ✅ No
Source NVD
Published 2025-05-05
Updated 2026-08-20
Modified 2026-08-12

Affected Packages

Software From version Fixed in
kernel 6.7.0 6.12.25
linux-kernel

Similar Threats

Site Security Check

Is kernel part of your stack?

CVE-2024-58098 is rated CVSS 7.8 High. BotEraser scans your installation against known CVE records and tells you whether this vulnerability applies to the versions you actually run.

Scan My Site Free →

No credit card required  ·  Results in minutes

ⓘ Data Notice: The information presented above has been compiled from publicly available internet sources. Boteraser aggregates this data solely for informational purposes and does not independently classify, evaluate, or endorse any findings about the vulnerabilities listed. The accuracy and completeness of this information is the sole responsibility of the original publishers. Boteraser and its operators accept no liability for any decisions made based on this data.