CVE-2026-89942: iio: buffer: Fix potential use-after-free in anonymous buffer release

Published Sep 16, 2026
·
Updated

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

iio: buffer: Fix potential use-after-free in anonymous buffer release

An anonymous buffer handle holds a reference to the underlying IIO device. The reference is dropped in the buffer handle's release function. If the device has been removed, either through unbind or hot-unplug, the buffer handle might hold the last reference.

The release function takes the mutex for the buffer using a guard, which means the unlock happens after all the code in the function, including iiodeviceput(). If the anonymous buffer holds the last reference this might free both the IIO device and the buffer, which contains the mutex, leading to use-after-free when the mutex is unlocked.

Fix this by using a scoped guard just around the buffer dmabuf list access, making sure the mutex is unlocked before releasing the IIO device.

Version 10 of the patch that introduced this issue used this exact scheme of first unlocking and then dropping the reference [1]. During review it was suggested to use a guard instead, and version 11 made that change [2].

Affected Software

1 affected component
Linux Kernel

Remediation

Recommended actions to resolve this vulnerability, in priority order.

  1. Upgrade

    Upgrade to a fixed release to a version that resolves this vulnerability.

    Patch [1]
  2. Upgrade

    Upgrade to a fixed release to a version that resolves this vulnerability.

    Patch [2]

Event History

Sep 16, 2026
CVE Published
via MITRE·10:32 AM
Data Sourced
via MITRE·10:32 AM
Description

Frequently Asked Questions

1

When can this use-after-free occur?

It can occur when an anonymous IIO buffer handle is released after its underlying IIO device has been removed through unbind or hot-unplug. The handle must hold the last reference to the IIO device, causing the device and buffer containing the mutex to be freed before the mutex unlock runs.

2

What condition must be present for an attacker or user action to trigger the issue?

The affected path requires an anonymous buffer handle associated with an IIO device, removal of that device, and subsequent release of a handle that retains the final device reference. The provided information does not specify a remote attack vector or required privileges.

3

What does the fix change?

The fix limits the mutex guard to access to the buffer DMA-BUF list. It ensures the mutex is unlocked before iio_device_put() can release the final reference and free the IIO device and buffer.

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