CVE-2026-43264
Analyzed Analyzed - Analysis Complete

Refcount Leak in Linux Kernel fbdev of Display Timings

Vulnerability report for CVE-2026-43264, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-05-06

Last updated on: 2026-05-08

Assigner: kernel.org

Description

In the Linux kernel, the following vulnerability has been resolved: fbdev: of: display_timing: fix refcount leak in of_get_display_timings() of_parse_phandle() returns a device_node with refcount incremented, which is stored in 'entry' and then copied to 'native_mode'. When the error paths at lines 184 or 192 jump to 'entryfail', native_mode's refcount is not decremented, causing a refcount leak. Fix this by changing the goto target from 'entryfail' to 'timingfail', which properly calls of_node_put(native_mode) before cleanup.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-05-06
Last Modified
2026-05-08
Generated
2026-07-06
AI Q&A
2026-05-06
EPSS Evaluated
2026-07-05
NVD
EUVD

Affected Vendors & Products

Showing 7 associated CPEs
Vendor Product Version / Range
linux linux_kernel From 6.2 (inc) to 6.6.128 (exc)
linux linux_kernel From 6.7 (inc) to 6.12.75 (exc)
linux linux_kernel From 6.13 (inc) to 6.18.16 (exc)
linux linux_kernel From 6.19 (inc) to 6.19.6 (exc)
linux linux_kernel From 5.11 (inc) to 5.15.202 (exc)
linux linux_kernel From 5.16 (inc) to 6.1.165 (exc)
linux linux_kernel From 3.9 (inc) to 5.10.252 (exc)

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-UNKNOWN

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Impact Analysis

A reference count leak in the kernel can lead to resource leaks, which may cause increased memory usage or resource exhaustion over time.

This could potentially degrade system performance or stability, especially if the leak occurs frequently or in critical components.

However, the specific impact depends on how often the affected code path is executed and the environment in which the kernel is running.

Executive Summary

This vulnerability is a reference count leak in the Linux kernel's fbdev display timing code, specifically in the function of_get_display_timings().

The function of_parse_phandle() returns a device_node with its reference count incremented. This device_node is stored in a variable called 'entry' and then copied to 'native_mode'.

If an error occurs at certain points in the code (lines 184 or 192), the code jumps to a label 'entryfail' without decrementing the reference count of 'native_mode'. This causes a reference count leak.

The fix changes the error handling to jump to 'timingfail' instead of 'entryfail', ensuring that the reference count of 'native_mode' is properly decremented by calling of_node_put(native_mode) before cleanup.

Mitigation Strategies

The vulnerability is fixed by updating the Linux kernel to a version where the refcount leak in of_get_display_timings() has been resolved.

  • Apply the patch or update your Linux kernel to the fixed version published on or after 2026-05-06.
  • Avoid using vulnerable kernel versions that contain the refcount leak in the display_timing code.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-43264. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart