Back to overview

CVE-2026-53385

Description
In the Linux kernel, the following vulnerability has been resolved: vc_screen: fix null-ptr-deref in vcs_notifier() during concurrent vcs_write A KASAN null-ptr-deref was observed in vcs_notifier(): BUG: KASAN: null-ptr-deref in vcs_notifier+0x98/0x130 Read of size 2 at addr qmp_cmd_name: qmp_capabilities, arguments: {} The issue is a race condition in vcs_write(). When the console_lock is temporarily dropped (to copy data from userspace), the vc_data pointer obtained from vcs_vc() may become stale. After re-acquiring the lock, vcs_vc() is called again to re-validate the pointer. If the vc has been deallocated in the meantime, vcs_vc() returns NULL, and the while loop breaks (with written > 0). However, after the loop, vcs_scr_updated(vc) is still called with the now-NULL vc pointer, leading to a null pointer dereference in the notifier chain (vcs_notifier dereferences param->vc). Fix this by adding a NULL check for vc before calling vcs_scr_updated().

Metadata

CVE ID
CVE-2026-53385
State
PUBLISHED
Assigner
Linux
Reserved
2026-06-09 07:44 UTC
Published
2026-07-19 11:59 UTC
Last updated
2026-07-19 11:59 UTC
Vendor / Product
Linux / Linux
Sources
cve.org  ·  NVD

Severity & Metrics

No CVSS data available.

Affected products (2)
VendorProductPlatformVersions
Linux Linux 11dddfbb7a4e62489b01074d6c04d9d1b42e4047 < 43a6281790273c1b0a9ab76609ff0245b968f1e6, e3d1adcad5b73c7ed0c7edb35ab68abcaa45cf67 < b6bbb85cf45bf0b070e741997fe0af3a772c5ad5, 3338d0b9acde770ee588eead5cac32c25e7048fc < ff4806202749a51938236214adc0281481a57366, 8fb9ea65c9d1338b0d2bb0a9122dc942cdd32357 < 8232fca738011ca2ec865b46ec721d1796dc0580 …
Linux Linux 6.4, 0 < 6.4, 5.10.260 ≤ 5.10.*, 5.15.211 ≤ 5.15.* …
Back to overview