CVE-2026-80556 PUBLISHED

mmc: atmel-mci: Fix use-after-free in atmci_remove due to race condition

Assigner: Linux
Reserved: 26.08.2026 Published: 26.08.2026 Updated: 26.08.2026

In the Linux kernel, the following vulnerability has been resolved:

mmc: atmel-mci: Fix use-after-free in atmci_remove due to race condition

In atmci_probe, &host->bh_work is bound with atmci_work_func, and atmci_interrupt, atmci_timeout_timer and atmci_dma_complete can all queue this work on system_bh_wq.

If we remove the module, atmci_remove makes cleanup and the memory allocated for host with devm_kzalloc() is released after the remove callback returns, while the work mentioned above may still be pending or running. The sequence of operations that may lead to a UAF bug is as follows:

CPU0 CPU1

<pre> | atmci_interrupt | queue_work(system_bh_wq, | &host->bh_work) </pre>

atmci_remove | atmci_cleanup_slot(...) | atmci_writel(host, ATMCI_IDR, ~0UL) | timer_delete_sync(&host->timer) | dma_release_channel(host->dma.chan) | free_irq(platform_get_irq(pdev, 0), host) | | atmci_work_func | // use host // devm resources released after | // remove returns, host is freed | | // use host (use-after-free)

Fix it by canceling the work after all the sources that can schedule it (IRQ handler, timeout timer and DMA completion callback) have been stopped, and before proceeding with the remaining cleanup in atmci_remove.

Product Status

Vendor Linux
Product Linux
Versions Default: unaffected
  • affected from 7d2be0749a59096a334c94dc48f43294193cb8ed to 22aecf6c4721727a2f724ca0438bc7d4b609bf3f (excl.)
  • affected from 7d2be0749a59096a334c94dc48f43294193cb8ed to b5060ff2f5460795a3e9f7cdf5052aa42f96ff81 (excl.)
  • affected from 7d2be0749a59096a334c94dc48f43294193cb8ed to 7599a73ff66d195a908f5d88b427933a9fb1c02a (excl.)
  • affected from 7d2be0749a59096a334c94dc48f43294193cb8ed to c125ee35a49a0518521b52b27631eef061b8719a (excl.)
Vendor Linux
Product Linux
Versions Default: affected
  • Version 2.6.27 is affected
  • unaffected from 0 to 2.6.27 (excl.)
  • unaffected from 6.12.105 to 6.12.* (incl.)
  • unaffected from 6.18.46 to 6.18.* (incl.)
  • unaffected from 7.1.10 to 7.1.* (incl.)
  • unaffected from 7.2 to * (incl.)

References