SEPTEMBER 19, 2026
Live Feed
Back to database
Case File

CVE-2026-80851

UNKNOWN · CVSS N/A EPSS 0.17%

Source: NVD + CISA KEV + EPSS · Published 2026-09-04 · Last synced 2026-09-19

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's GTP (GPRS Tunneling Protocol) implementation, specifically during the concurrent deletion of PDP (Packet Data Protocol) contexts, which can lead to a general protection fault due to memory access violations. This issue arises when GTP_CMD_DELPDP and RTM_DELLINK operations are executed simultaneously, potentially causing system instability or crashes. Administrators and developers managing Linux-based systems, particularly those utilizing GTP for mobile networking, should prioritize addressing this vulnerability to prevent potential exploitation and ensure system reliability.

CVE
CVE-2026-80851
Severity
UNKNOWN
CVSS
N/A
EPSS
0.17%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: gtp: serialize PDP context updates PDP contexts can be deleted through GTP_CMD_DELPDP or while the GTP network device is being unregistered. The latter is serialized by RTNL, but the generic-netlink delete path only holds RCU. Running both paths concurrently can therefore make both paths delete the same PDP context. The issue was found through static analysis and reproduced on a KASAN-enabled kernel by a simple two-thread program racing GTP_CMD_DELPDP against RTM_DELLINK: Oops: general protection fault, probably for non-canonical address KASAN: maybe wild-memory-access in range [0xdead000000000120-0xdead000000000127] RIP: gtp_genl_del_pdp+0x1c1/0x420 [gtp] RBP: dead000000000122 The second deletion dereferenced the poisoned hlist pprev pointer. Serialize gtp_pdp_add(), gtp_genl_del_pdp(), and gtp_dellink() with a shared mutex. Keep the mutex held until the final use of a PDP context in the NEWPDP path, and keep the RCU read-side section around the complete PDP context use in the DELPDP path.