CVE-2026-93040: dmaengine: dw-edma: Serialize channel state checks

Published Sep 17, 2026
·
Updated

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

dmaengine: dw-edma: Serialize channel state checks

pause() and resume() read and update channel state without holding vc.lock, while the interrupt handlers update the same state under it. Take the same lock around those state checks so that request, status, and configured stay consistent.

For example, pause() can observe EDMASTBUSY right before the interrupt handler completes the final descriptor and moves the channel to EDMASTIDLE, and then record EDMAREQPAUSE on an already idle channel. No further interrupt will acknowledge the request, and since issuepending() requires EDMAREQNONE, the channel is wedged for good: terminateall() leaves the stale request behind, so even reconfiguring the channel does not recover it.

issuepending() already runs under vc.lock, but it tests configured before taking it. Move that test under the lock as well, so configured, request, and status are evaluated as one channel-state snapshot.

Affected Software

1 affected component
Linux Linux kernel

Event History

Sep 17, 2026
CVE Published
via MITRE·04:10 PM
Data Sourced
via MITRE·04:10 PM
Description

Frequently Asked Questions

1

What systems are exposed to this issue?

Systems using the Linux kernel's DesignWare eDMA dmaengine driver are exposed when channel pause(), resume(), interrupt handling, or issue_pending() operations can race on the same channel state.

2

What conditions trigger the failure?

A race can occur when pause() observes a busy channel just before an interrupt handler completes the final descriptor and changes the channel to idle. pause() may then leave a pause request on an idle channel, with no later interrupt available to acknowledge it.

3

What is the operational impact once the race occurs?

The affected channel can become permanently wedged because issue_pending() requires the request state to be none. terminate_all() does not clear the stale request, so reconfiguring the channel also does not restore operation.

4

How can the issue be remediated?

Apply the available Linux kernel stable fixes referenced in the advisory. The fix serializes channel-state checks with vc.lock and moves the configured check in issue_pending() under that lock so configured, request, and status are evaluated together.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203