Skip to main content

Linux Kernel EUVDEUVD-2026-32371

| CVE-2026-45905 MEDIUM
Race Condition (CWE-362)
2026-05-27 416baaa9-dc9f-4396-8d5f-8c081fb06d67 GHSA-qfvj-mcf4-fgpg
4.7
CVSS 3.1 · NVD
Share

Severity by source

NVD PRIMARY
4.7 MEDIUM
AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H
vuln.today AI
4.7 MEDIUM

Local-only access, narrow race window justifies AC:H, low privilege sufficient to trigger ICMP errors; no confidentiality or integrity impact, only kernel WARN_ON/crash.

3.1 AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H
4.0 AV:L/AC:H/AT:P/PR:L/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N
SUSE
5.5 MEDIUM
AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
Red Hat
5.5 LOW
qualitative

Primary rating from NVD.

CVSS VectorNVD

CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H
Attack Vector
Local
Attack Complexity
High
Privileges Required
Low
User Interaction
None
Scope
Unchanged
Confidentiality
None
Integrity
None
Availability
High

Lifecycle Timeline

4
Analysis Generated
Jun 24, 2026 - 16:40 vuln.today
CVSS changed
Jun 24, 2026 - 16:37 NVD
4.7 (MEDIUM)
Patch available
May 27, 2026 - 19:46 EUVD
CVE Published
May 27, 2026 - 14:17 nvd
UNKNOWN (no severity yet)

DescriptionNVD

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

xfrm: fix ip_rt_bug race in icmp_route_lookup reverse path

icmp_route_lookup() performs multiple route lookups to find a suitable route for sending ICMP error messages, with special handling for XFRM (IPsec) policies.

The lookup sequence is:

  1. First, lookup output route for ICMP reply (dst = original src)
  2. Pass through xfrm_lookup() for policy check
  3. If blocked (-EPERM) or dst is not local, enter "reverse path"
  4. In reverse path, call xfrm_decode_session_reverse() to get fl4_dec

which reverses the original packet's flow (saddr<->daddr swapped)

  1. If fl4_dec.saddr is local (we are the original destination), use

__ip_route_output_key() for output route lookup

  1. If fl4_dec.saddr is NOT local (we are a forwarding node), use

ip_route_input() to simulate the reverse packet's input path

  1. Finally, pass rt2 through xfrm_lookup() with XFRM_LOOKUP_ICMP flag

The bug occurs in step 6: ip_route_input() is called with fl4_dec.daddr (original packet's source) as destination. If this address becomes local between the initial check and ip_route_input() call (e.g., due to concurrent "ip addr add"), ip_route_input() returns a LOCAL route with dst.output set to ip_rt_bug.

This route is then used for ICMP output, causing dst_output() to call ip_rt_bug(), triggering a WARN_ON:

------------[ cut here ]------------ WARNING: net/ipv4/route.c:1275 at ip_rt_bug+0x21/0x30, CPU#1 Call Trace: <TASK> ip_push_pending_frames+0x202/0x240 icmp_push_reply+0x30d/0x430 __icmp_send+0x1149/0x24f0 ip_options_compile+0xa2/0xd0 ip_rcv_finish_core+0x829/0x1950 ip_rcv+0x2d7/0x420 __netif_receive_skb_one_core+0x185/0x1f0 netif_receive_skb+0x90/0x450 tun_get_user+0x3413/0x3fb0 tun_chr_write_iter+0xe4/0x220 ...

Fix this by checking rt2->rt_type after ip_route_input(). If it's RTN_LOCAL, the route cannot be used for output, so treat it as an error.

The reproducer requires kernel modification to widen the race window, making it unsuitable as a selftest. It is available at:

https://gist.github.com/mrpre/eae853b72ac6a750f5d45d64ddac1e81

AnalysisAI

Race condition in the Linux kernel's XFRM ICMP route lookup path causes a kernel WARN_ON that can crash affected systems. Within icmp_route_lookup(), a TOCTOU window between a locality check and a subsequent ip_route_input() call allows a concurrently executing ip addr add to return a LOCAL route whose dst.output is set to ip_rt_bug() - a debugging stub that fires WARN_ON when invoked during ICMP error transmission. Exploitation requires local access, active XFRM/IPsec policy, and precise race-window timing; no active exploitation is confirmed and EPSS sits at 0.02%, though a public reproducer exists that requires kernel modification to reliably trigger.

Technical ContextAI

The vulnerability resides in net/ipv4/icmp.c's icmp_route_lookup() function within the XFRM (IPsec transform framework) reverse-path branch. CWE-362 (Concurrent Execution Using Shared Resource with Improper Synchronization) identifies the root cause: a TOCTOU race where the code checks whether fl4_dec.saddr is local and, finding it is not, proceeds to call ip_route_input() - but a concurrent ip addr add can promote that address to local between the two operations. The ip_route_input() function then correctly returns a RTN_LOCAL route whose dst.output hook is set to the ip_rt_bug() stub, because the kernel never expects LOCAL routes to be used for output. When dst_output() subsequently fires during ICMP error transmission, ip_rt_bug() triggers WARN_ON at net/ipv4/route.c:1275. The fix adds a post-lookup type check (rt2->rt_type == RTN_LOCAL) to reject such routes rather than using them for output. Affected CPE: cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* across all stable branches introduced at commit 8b7817f3a959ed99d7443afc12f78a7e1fcc2063 (approximately Linux 2.6.25).

RemediationAI

Update the Linux kernel to a patched stable release: 6.1.165, 6.6.128, 6.12.75, 6.18.14, 6.19.4, or 7.0, as confirmed by EUVD data. The corresponding upstream commits are available at git.kernel.org/stable (see references for direct commit links). For systems that cannot be patched immediately, the primary compensating control is removing or disabling XFRM/IPsec policies that trigger the reverse-path branch in icmp_route_lookup() - specifically, any policies that return -EPERM for outgoing ICMP or redirect ICMP to a non-local destination; removing such policies prevents the vulnerable code path from being reached entirely. Restricting local user access (the required PR:L) to prevent triggering ICMP error generation provides secondary reduction. On systems where panic_on_warn=1 is set via sysctl, setting kernel.panic_on_warn=0 prevents the WARN_ON from escalating to a kernel panic, though this masks rather than fixes the underlying condition and may suppress other legitimate kernel warnings. NVD advisory: https://nvd.nist.gov/vuln/detail/CVE-2026-45905.

Vendor StatusVendor

SUSE

Severity: Moderate
Product Status
SUSE Linux Enterprise Desktop 15 SP7 Affected
SUSE Linux Enterprise Desktop 15 SP7 Affected
SUSE Linux Enterprise High Availability Extension 15 SP7 Affected
SUSE Linux Enterprise High Availability Extension 15 SP7 Affected
SUSE Linux Enterprise High Performance Computing 15 SP7 Affected

Share

EUVD-2026-32371 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy