Skip to main content

Linux Kernel CVE-2026-64177

| EUVDEUVD-2026-45862 MEDIUM
2026-07-19 Linux GHSA-g3fg-4885-2jhq
5.5
CVSS 3.1 · NVD
Share

Severity by source

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

Race condition requiring concurrent softirq and backlog-drain paths on the same CPU justifies AC:H over the vendor's AC:L; PR:L and local-only vector confirmed by description; no confidentiality or integrity impact.

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
4.7 MEDIUM
AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H
Red Hat
5.5 MEDIUM
qualitative

Primary rating from NVD.

CVSS VectorNVD

Attack Vector
Local
Attack Complexity
Low
Privileges Required
Low
User Interaction
None
Scope
Unchanged
Confidentiality
None
Integrity
None
Availability
High

Lifecycle Timeline

5
Analysis Generated
Aug 13, 2026 - 16:16 vuln.today
CVSS changed
Aug 13, 2026 - 15:37 NVD
5.5 (MEDIUM)
Patch available
Jul 19, 2026 - 17:03 EUVD
CVE Published
Jul 19, 2026 - 15:41 cve.org
UNKNOWN (no severity yet)
CVE Published
Jul 19, 2026 - 15:41 nvd
MEDIUM 5.5

DescriptionNVD

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

phonet/pep: disable BH around forwarded sk_receive_skb()

The networking receive path is usually run from softirq context, but protocols that take the socket lock may have packets stored in the backlog and processed later from process context. In that case release_sock() -> __release_sock() drops the slock with spin_unlock_bh() and then calls sk->sk_backlog_rcv() with bottom halves enabled.

Typical sk_backlog_rcv handlers process the socket whose backlog is being drained, so the BH state at entry is irrelevant for the slocks they touch. pep_do_rcv() is different: when the inbound skb targets an existing PEP pipe, it forwards the skb to a different *child* socket via sk_receive_skb(). That helper takes the child slock with bh_lock_sock_nested(), which is just spin_lock_nested() and assumes BH is already off. The same child slock therefore ends up acquired with BH on (process path) and with BH off (softirq path):

process context softirq context --------------- --------------- release_sock(listener) __netif_receive_skb() __release_sock() phonet_rcv() spin_unlock_bh() __sk_receive_skb(listener) [BH now ENABLED] [BH already disabled] sk_backlog_rcv: sk_backlog_rcv: pep_do_rcv() pep_do_rcv() sk_receive_skb(child) sk_receive_skb(child) bh_lock_sock_nested(child) bh_lock_sock_nested(child) => SOFTIRQ-ON-W => IN-SOFTIRQ-W

Lockdep flags this as inconsistent lock state, and it can become a real self-deadlock if a softirq on the same CPU tries to receive to the same child socket while its slock is held in the BH-enabled path:

WARNING: inconsistent lock state inconsistent {SOFTIRQ-ON-W} -> {IN-SOFTIRQ-W} usage. (slock-AF_PHONET/1){+.?.}-{3:3}, at: __sk_receive_skb+0x1cf/0x900 __sk_receive_skb net/core/sock.c:563 sk_receive_skb include/net/sock.h:2022 [inline] pep_do_rcv net/phonet/pep.c:675 sk_backlog_rcv include/net/sock.h:1190 __release_sock net/core/sock.c:3216 release_sock net/core/sock.c:3815 pep_sock_accept net/phonet/pep.c:879

Wrap the forwarded sk_receive_skb() in local_bh_disable() / local_bh_enable() so the child slock is always acquired with BH off. local_bh_disable() nests safely on the softirq path.

Discovered via in-house syzkaller fuzzing; the same root cause also on the linux-6.1.y syzbot dashboard as extid 44f0626dd6284f02663c. Reproduced under KASAN + LOCKDEP + PROVE_LOCKING, reproducer: https://pastebin.com/A3t8xzCR

AnalysisAI

Kernel self-deadlock in the Linux phonet/pep subsystem allows a local low-privilege attacker to crash affected systems by triggering an inconsistent bottom-half (BH) lock state on a child PEP socket. The flaw exists from kernel 2.6.28 through unpatched stable branches up to 7.x, and is reachable only when the Phonet protocol module is active. No public exploit or active exploitation is confirmed; EPSS is 0.16% (6th percentile), consistent with the niche deployment context.

Technical ContextAI

The Linux kernel's Phonet Protocol Engine Pipe (PEP) subsystem, introduced at commit 9641458d3ec4 and residing in net/phonet/pep.c, implements Nokia's Phonet inter-processor communication protocol. The vulnerability is a locking discipline error: pep_do_rcv() handles inbound socket buffers (skbs) and, when the skb targets an established PEP pipe, forwards it to a child socket via sk_receive_skb(). That helper acquires the child socket lock using bh_lock_sock_nested() - a bare spin_lock_nested() that assumes bottom halves (softirq) are already disabled. The inconsistency arises because the listener socket's backlog drain path (release_sock() → __release_sock()) calls spin_unlock_bh() before invoking sk_backlog_rcv(), re-enabling BH. As a result, the child socket lock is acquired with BH enabled in the process-context backlog path but with BH disabled in the direct softirq path. Lockdep flags this as {SOFTIRQ-ON-W} → {IN-SOFTIRQ-W}, and it can materialize as a real deadlock if a softirq on the same CPU attempts to receive on the same child socket while the process-context path holds the lock. No CWE is assigned by NVD; the root cause class is an interrupt-context locking discipline violation (analogous to CWE-362/race condition or improper synchronization).

RemediationAI

Upgrade the Linux kernel to a patched stable release: 5.10.258, 5.15.209, 6.1.175, 6.6.142, 6.12.92, 6.18.34, 7.0.11, or 7.1. Upstream fix commits are available at the kernel stable tree, including https://git.kernel.org/stable/c/f08c45076e4fd8b0adbc5eb186d6e6a3e7350d7b and seven additional per-branch commits referenced in the CVE. Ubuntu users should apply the packages from USN-8575-1 (https://ubuntu.com/security/notices/USN-8575-1). For systems where an immediate kernel update is not feasible and Phonet is not operationally required, blacklisting the phonet kernel module (adding 'blacklist phonet' to /etc/modprobe.d/ and rebooting, or running 'modprobe -r phonet' at runtime) eliminates the vulnerable code path entirely - the trade-off is loss of all Phonet-dependent functionality, which is acceptable on general-purpose servers and workstations. This workaround is not viable on Nokia or embedded platforms where Phonet is essential to the communication stack.

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 Availability Extension 16.0 Affected

Share

CVE-2026-64177 vulnerability details – vuln.today

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