SEPTEMBER 18, 2026
Live Feed
Back to database
Case File

CVE-2026-80622

HIGH · CVSS 7.8 EPSS 0.13%

Source: NVD + CISA KEV + EPSS · Published 2026-08-28 · Last synced 2026-09-18

CyberRota Analysis

AI-Generated

The vulnerability affects the tlclk driver in the Linux kernel, where improper management of the file_operations structure can lead to use-after-free and race conditions during module cleanup. This flaw could allow the module to be unloaded while user-space processes are still interacting with it, potentially leading to system instability or crashes. Organizations using affected Linux systems, particularly those relying on the tlclk driver for hardware interaction, should prioritize applying the patch to mitigate these risks.

CVE
CVE-2026-80622
Severity
HIGH
CVSS
7.8
EPSS
0.13%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: char: tlclk: fix use-after-free in tlclk_cleanup() This patch improves the module cleanup process in the tlclk driver to prevent potential use-after-free and race conditions. Currently, the file_operations structure does not specify the .owner field, which could allow the module to be unloaded while user-space processes are still interacting with the device. Additionally, the tlclk_cleanup() function frees the alarm_events memory before ensuring that blocked processes in the waitqueue are fully awakened and that the switchover_timer has completed. To address these cases, this patch: - Sets '.owner = THIS_MODULE' in tlclk_fops to safely defer module unloading while the device is in use. - Updates tlclk_cleanup() to explicitly wake up all blocked readers (wake_up_all), properly release hardware I/O regions, and safely delete the timer (timer_delete_sync) prior to freeing memory.