CVE-2026-23207

Medium

In the Linux kernel, the following vulnerability has been resolved: spi: tegra210-quad: Protect curr_xfer check in IRQ handler Now that all other accesses to curr_xfer are done under the lock, protect the curr_xfer NULL check in tegra_qspi_isr_thread() with the spinlock. Without this protection, the following race can occur: CPU0 (ISR thread) CPU1 (timeout path) ---------------- ------------------- if (!tqspi->curr_xfer) // sees non-NULL spin_lock() tqspi->curr_xfer = NULL spin_unlock() handle_*_xfer() spin_lock() t = tqspi->curr_xfer // NULL! ... t->len ... // NULL dereference! With this patch, all curr_xfer accesses are now properly synchronized. Although all accesses to curr_xfer are done under the lock, in tegra_qspi_isr_thread() it checks for NULL, releases the lock and reacquires it later in handle_cpu_based_xfer()/handle_dma_based_xfer(). There is a potential for an update in between, which could cause a NULL pointer dereference. To handle this, add a NULL check inside the handlers after acquiring the lock. This ensures that if the timeout path has already cleared curr_xfer, the handler will safely return without dereferencing the NULL pointer.

Package Linux Kernel
Published 2026-02-14
Last modified 2026-04-02
CVSS version 3.1
Patch available
Yes

CVSS 3.1 score

4.7

out of 10
Medium
Attack Vector
Local
Attack Complexity
High
Privileges Required
Low
User Interaction
None
Scope
Unchanged
Confidentiality
High
Integrity
None
Availability
High
Vector string
CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H

Weakness type

CWE-362

CVE-2026-23207 is a Race Condition vulnerability

What is Race Condition?

The product contains a code sequence that can run concurrently with other code, creating unexpected states. Learn more on MITRE CWE

Affected versions

Linux kernel versions 5.15.198, 6.1.160, 6.6.120, 6.17.13, 6.12.63, 6.18.2 and later are affected. Fixed in 5.16, 6.2, 6.7, 6.18, 6.12.80, 6.18.10 and their respective stable series.

Affected from
≥ 5.15.198 ≥ 6.1.160 ≥ 6.6.120 ≥ 6.17.13 ≥ 6.12.63 ≥ 6.18.2
Fixed in
✓ 5.16 5.16.x ✓ 6.2 6.2.x ✓ 6.7 6.7.x ✓ 6.18 6.18.x ✓ 6.12.80 6.12.x ✓ 6.18.10 6.18.x

Frequently asked questions

  • What is CVE-2026-23207?

    CVE-2026-23207 is a Medium severity Linux kernel vulnerability with a CVSS score of 4.7 out of 10 , classified as a Race Condition flaw (CWE-362) . It affects Linux kernel versions from 5.15.198 onward and has been patched in 5.16, 6.2, 6.7 and others. CVE-2026-23207 has not been confirmed as actively exploited and is not listed in the CISA KEV catalog.

  • What is the CVSS score for CVE-2026-23207?

    CVE-2026-23207 has a CVSS score of 4.7 out of 10, rated Medium severity (CVSS 3.1). The vector string is CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H .

  • Is there a patch available for CVE-2026-23207?

    Yes. CVE-2026-23207 has been patched. Fixed versions include 5.16, 6.2, 6.7 and others. If you are running Linux kernel 5.15.198 or later up to the fix versions, apply the relevant patch for your kernel branch.

  • Is CVE-2026-23207 actively exploited?

    No. CVE-2026-23207 has not been confirmed as actively exploited. It is not listed in the CISA Known Exploited Vulnerabilities (KEV) catalog.