CVE-2026-97502
Last modified
CVE-2026-97502 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: mmc: davinci: avoid NULL deref of host->data in IRQ handler mmc_davinci_irq() returns early only when both host->cmd and host->data are NULL: if (host->cmd == NULL && host->data == NULL) { ... return IRQ_NONE; } So we may legitimately reach the rest of the handler with host->data == NULL (and therefore data == NULL). The DATDNE branch already guards against this with an explicit "if (data != NULL)" check, but the subsequent TOUTRD ("read data timeout") and CRCWR/CRCRD ("data CRC error") branches dereference data unconditionally: if (qstatus & MMCST0_TOUTRD) { data->error = -ETIMEDOUT; <-- NULL deref ... davinci_abort_data(host, data); } if (qstatus & (MMCST0_CRCWR | MMCST0_CRCRD)) { data->error = -EILSEQ; <-- NULL deref ... } If either bit is set in qstatus while host->data is NULL, the kernel will crash inside the IRQ handler.
Description
In the Linux kernel, the following vulnerability has been resolved: mmc: davinci: avoid NULL deref of host->data in IRQ handler mmc_davinci_irq() returns early only when both host->cmd and host->data are NULL: if (host->cmd == NULL && host->data == NULL) { ... return IRQ_NONE; } So we may legitimately reach the rest of the handler with host->data == NULL (and therefore data == NULL). The DATDNE branch already guards against this with an explicit "if (data != NULL)" check, but the subsequent TOUTRD ("read data timeout") and CRCWR/CRCRD ("data CRC error") branches dereference data unconditionally: if (qstatus & MMCST0_TOUTRD) { data->error = -ETIMEDOUT; <-- NULL deref ... davinci_abort_data(host, data); } if (qstatus & (MMCST0_CRCWR | MMCST0_CRCRD)) { data->error = -EILSEQ; <-- NULL deref ... } If either bit is set in qstatus while host->data is NULL, the kernel will crash inside the IRQ handler. smatch flags this: drivers/mmc/host/davinci_mmc.c:933 mmc_davinci_irq() error: we previously assumed 'data' could be null (see line 914) Gate both branches on a non-NULL data, matching the existing pattern used by the DATDNE branch. No functional change for callers where data is non-NULL, which is the only case in which these branches did meaningful work before this change.
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2, < a01cedf230dc0fcd55b994f5e548d3982ba4c732; >= 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2, < 5b7e151fe9ea9311ba601849aaecdc4fc97fd577; >= 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2, < 4f28846aaf8db9668e338b8987973f8935edff34; < 6.12.111; < 6.18.53 |
| Linux | Linux | All versions |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-97502?
How severe is CVE-2026-97502?
How do I fix CVE-2026-97502?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-97497In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-97498In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97499In the Linux kernel, the following vulnerability has been re…
- CVE-2026-9750An authenticated user can cause a MongoDB server to crash or…7.1
- CVE-2026-97500In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97501In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97503In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97504In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97505In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97506In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97507In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97508In the Linux kernel, the following vulnerability has been re…7.5
Are you affected by CVE-2026-97502?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
