CVE-2026-89942 PUBLISHED

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

Assigner: Linux
Reserved: 11.09.2026 Published: 16.09.2026 Updated: 16.09.2026

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 iio_device_put(). 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].

Metrics

CVSS Vector: CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
CVSS Score: 7.8

AV:L - The attacker reaches the bug by opening /dev/iio:deviceX, issuing IIO_BUFFER_GET_FD_IOCTL to get an anonymous IIO buffer fd, then closing that fd after the IIO device is gone. That is a local char-device ioctl/close path, not a network or USB descriptor parser. AC:L - This is a deterministic lifetime UAF, not a race: close() on the buffer fd unlocks buffer->dmabufs_mutex after iio_device_put() has already freed it. The attacker controls open/ioctl/close and can drop the last device reference by hot-unplugging a USB IIO or HID-sensor device they opened. PR:L - iio_chrdev_open() and IIO_BUFFER_GET_FD_IOCTL perform no capability checks; access is only by /dev/iio:deviceX file mode. An unprivileged local user who can open that node (iio group, industrial DAQ, sensor HAL) can obtain the anonymous buffer fd. UI:N - The attacker opens the IIO device, obtains the buffer fd, removes the device, and closes the fd themselves. No separate victim action is required. S:U - The use-after-free is in kernel IIO buffer teardown and can escalate privileges only within the same kernel/OS authority. It does not cross a VM, IOMMU, or other security boundary. C:H - Closing the anonymous buffer fd use-after-frees the IIO buffer object that embeds dmabufs_mutex. A kernel heap UAF can be reclaimed to build an arbitrary read primitive. I:H - The cleanup guard unlocks dmabufs_mutex after iio_dev_release() has already destroyed that mutex and freed the buffer, writing into freed kernel memory. That UAF is exploitable for heap corruption and control-flow hijack. A:H - Use-after-free of the buffer mutex during anonymous-buffer release can oops or panic the kernel even without a fully controlled exploit, causing complete availability loss.

Product Status

Vendor Linux
Product Linux
Versions Default: unaffected
  • affected from 3e26d9f08fbe0b73e951a5e810fdb7a332b7e37f to ab53077511cde811bf3ee219426c522329c41226 (excl.)
  • affected from 3e26d9f08fbe0b73e951a5e810fdb7a332b7e37f to f1f8f0e8e0af9cae8150658dc7bb51332f984893 (excl.)
  • affected from 3e26d9f08fbe0b73e951a5e810fdb7a332b7e37f to 6d4bdbf7bad63e759bf20259c527f69a1209e3dd (excl.)
  • affected from 3e26d9f08fbe0b73e951a5e810fdb7a332b7e37f to 6288b593e76eb10329326f2cd51e32557203b9e5 (excl.)
Vendor Linux
Product Linux
Versions Default: affected
  • Version 6.11 is affected
  • unaffected from 0 to 6.11 (excl.)
  • unaffected from 6.12.110 to 6.12.* (incl.)
  • unaffected from 6.18.51 to 6.18.* (incl.)
  • unaffected from 7.2.5 to 7.2.* (incl.)
  • unaffected from 7.3-rc1 to * (incl.)

References