CVE-2026-43356 PUBLISHED

iio: imu: adis: Fix NULL pointer dereference in adis_init

Assigner: Linux
Reserved: 01.05.2026 Published: 08.05.2026 Updated: 08.05.2026

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

iio: imu: adis: Fix NULL pointer dereference in adis_init

The adis_init() function dereferences adis->ops to check if the individual function pointers (write, read, reset) are NULL, but does not first check if adis->ops itself is NULL.

Drivers like adis16480, adis16490, adis16545 and others do not set custom ops and rely on adis_init() assigning the defaults. Since struct adis is zero-initialized by devm_iio_device_alloc(), adis->ops is NULL when adis_init() is called, causing a NULL pointer dereference:

<pre>Unable to handle kernel NULL pointer dereference at virtual address 0000000000000000 pc : adis_init+0xc0/0x118 Call trace: adis_init+0xc0/0x118 adis16480_probe+0xe0/0x670 </pre>

Fix this by checking if adis->ops is NULL before dereferencing it, falling through to assign the default ops in that case.

Product Status

Vendor Linux
Product Linux
Versions Default: unaffected
  • affected from 3b29bcee8f6f703a5952b85fc2ffcbcfb0862db4 to ba19dd366528b961430f5195c2e382420703074f (excl.)
  • affected from 3b29bcee8f6f703a5952b85fc2ffcbcfb0862db4 to 1a48f94c63a078e7b6a2e59a637fc0858dc6510c (excl.)
  • affected from 3b29bcee8f6f703a5952b85fc2ffcbcfb0862db4 to 9990cd4f8827bd1ae3fb6eb7407630d8d463c430 (excl.)
Vendor Linux
Product Linux
Versions Default: affected
  • Version 6.15 is affected
  • unaffected from 0 to 6.15 (excl.)
  • unaffected from 6.18.19 to 6.18.* (incl.)
  • unaffected from 6.19.9 to 6.19.* (incl.)
  • unaffected from 7.0 to * (incl.)

References