Linux kernel -stable discussions
 help / color / mirror / Atom feed
* [PATCH] iio: accel: fxls8962af: Fix use after free in fxls8962af_fifo_flush
@ 2025-05-24 10:34 Sean Nyekjaer
  2025-05-29 16:02 ` David Lechner
  2025-05-31 16:53 ` Jonathan Cameron
  0 siblings, 2 replies; 10+ messages in thread
From: Sean Nyekjaer @ 2025-05-24 10:34 UTC (permalink / raw)
  To: Jonathan Cameron, David Lechner, Nuno Sá, Andy Shevchenko
  Cc: Jonathan Cameron, linux-iio, linux-kernel, stable, Sean Nyekjaer

fxls8962af_fifo_flush() uses indio_dev->active_scan_mask (with
iio_for_each_active_channel()) without making sure the indio_dev
stays in buffer mode.
There is a race if indio_dev exits buffer mode in the middle of the
interrupt that flushes the fifo. Fix this by calling
iio_device_claim_buffer_mode() to ensure indio_dev can't exit buffer
mode during the flush.

Unable to handle kernel NULL pointer dereference at virtual address 00000000 when read
[...]
_find_first_bit_le from fxls8962af_fifo_flush+0x17c/0x290
fxls8962af_fifo_flush from fxls8962af_interrupt+0x80/0x178
fxls8962af_interrupt from irq_thread_fn+0x1c/0x7c
irq_thread_fn from irq_thread+0x110/0x1f4
irq_thread from kthread+0xe0/0xfc
kthread from ret_from_fork+0x14/0x2c

Fixes: 79e3a5bdd9ef ("iio: accel: fxls8962af: add hw buffered sampling")
Cc: stable@vger.kernel.org
Signed-off-by: Sean Nyekjaer <sean@geanix.com>
---
 drivers/iio/accel/fxls8962af-core.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/drivers/iio/accel/fxls8962af-core.c b/drivers/iio/accel/fxls8962af-core.c
index 6d23da3e7aa22c61f2d9348bb91d70cc5719a732..7db83ebeea823173d79bf8ff484add16f575edfc 100644
--- a/drivers/iio/accel/fxls8962af-core.c
+++ b/drivers/iio/accel/fxls8962af-core.c
@@ -973,6 +973,9 @@ static int fxls8962af_fifo_flush(struct iio_dev *indio_dev)
 	if (ret)
 		return ret;
 
+	if (iio_device_claim_buffer_mode(indio_dev) < 0)
+		return 0;
+
 	/* Demux hw FIFO into kfifo. */
 	for (i = 0; i < count; i++) {
 		int j, bit;
@@ -989,6 +992,8 @@ static int fxls8962af_fifo_flush(struct iio_dev *indio_dev)
 		tstamp += sample_period;
 	}
 
+	iio_device_release_buffer_mode(indio_dev);
+
 	return count;
 }
 

---
base-commit: 5c3fcb36c92443a9a037683626a2e43d8825f783
change-id: 20250524-fxlsrace-f4d20e29fb29

Best regards,
-- 
Sean Nyekjaer <sean@geanix.com>


^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2025-06-02 15:01 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-24 10:34 [PATCH] iio: accel: fxls8962af: Fix use after free in fxls8962af_fifo_flush Sean Nyekjaer
2025-05-29 16:02 ` David Lechner
2025-05-29 18:16   ` Andy Shevchenko
2025-05-29 18:49     ` David Lechner
2025-05-30 17:51       ` Andy Shevchenko
2025-05-30 17:57         ` David Lechner
2025-05-30 19:51           ` Andy Shevchenko
2025-05-31 16:53 ` Jonathan Cameron
2025-06-02 10:50   ` Sean Nyekjaer
2025-06-02 15:00     ` David Lechner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox