Vulnerability in Linux

CVE-2026-89899

In the Linux kernel, the following vulnerability has been resolved: media: cec: disable delayed work before freeing an interrupted transmit cec_transmit_msg_fh() drops adap->lock to wait for a blocking transmit in wait_for_completion_killable(). If that wait is interrupted by a signal, cancel_delayed_work_sync() can run before the CEC kthread arms the reply timeout via schedule_delayed_work(&data->work) in cec_transmit_done_ts(). The work is then armed after the cancel, and the data is freed with its delayed_work still pending: ODEBUG: free active (active state 0) object: ... hint: cec_wait_timeout Use disable_delayed_work_sync(): it cancels the work and disables it, so the later schedule_delayed_work() becomes a no-op and the work cannot be re-armed. The data is freed right after, so it need not be re-enabled.

CVSS v3 metric

CVSS v3 base score 7.8 (High). Vector: CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H.

Affected products

  • Linux — versions 2781b86d7e45de09befa5ace296b66787146561f, 4.20, e448dfd6d3ec944411f6575bc24e4f8baa1e297f

References

Frequently asked questions

What is CVE-2026-89899?
CVE-2026-89899 is a high-severity vulnerability in Linux. CVSS score: 7.8/10. Published 2026-09-16.
How severe is CVE-2026-89899?
High severity. CVSS v3 base score is 7.8 out of 10.