Linux IIO development
 help / color / mirror / Atom feed
From: Jonathan Cameron <jic23@kernel.org>
To: "Javier Carrasco" <javier.carrasco.cruz@gmail.com>
Cc: <sashiko-reviews@lists.linux.dev>, <linux-iio@vger.kernel.org>
Subject: Re: [PATCH v8 4/4] iio: light: veml6031x00: add support for events and trigger
Date: Mon, 7 Sep 2026 02:58:26 +0100	[thread overview]
Message-ID: <20260907025826.414c570a@jic23-huawei> (raw)
In-Reply-To: <DL4X3IXEI8WK.OOFNRSU7FGRW@gmail.com>

On Wed, 02 Sep 2026 16:58:09 +0200
"Javier Carrasco" <javier.carrasco.cruz@gmail.com> wrote:

> On Tue Sep 1, 2026 at 10:19 PM CEST, Javier Carrasco wrote:
> > On Tue Sep 1, 2026 at 3:22 PM CEST, sashiko-bot wrote:  
> >> Thank you for your contribution! Sashiko AI review found 3 potential issue(s) to consider:
> >> - [High] Use-After-Free of iio->pollfunc in IRQ handler during device unbind or probe failure.
> >> - [Medium] Unintended I2C read of configuration register when pushing timestamp to buffer
> >> - [Medium] The interrupt_users counter can permanently underflow during error recovery, breaking hardware interrupt control.
> >> --
> >>
> >> commit c87f3d48e1ee614fc184995b816c8f8679a6b774
> >> Author: Javier Carrasco <javier.carrasco.cruz@gmail.com>
> >>
> >> iio: light: veml6031x00: add support for events and trigger
> >>
> >> The device provides a shared interrupt line to notify events and data ready.
> >> Add support for configurations with and without an interrupt line, providing
> >> events and trigger support when an interrupt line is available.
> >>  
> >>> diff --git a/drivers/iio/light/veml6031x00.c b/drivers/iio/light/veml6031x00.c
> >>> index 3d5a27a0baaed..7bd7975eb1a76 100644
> >>> --- a/drivers/iio/light/veml6031x00.c
> >>> +++ b/drivers/iio/light/veml6031x00.c  
> >> [ ... ]  
> >>> +static int __veml6031x00_set_trigger_state(struct veml6031x00_data *data, bool state)
> >>> +	__must_hold(&data->irq_lock)
> >>> +{  
> >> [ ... ]  
> >>> +	data->trig_en = state;
> >>> +
> >>> +	return 0;
> >>> +
> >>> +clear_interrupt:
> >>> +	veml6031x00_set_interrupt(data, !state);
> >>> +
> >>> +	return ret;
> >>> +}  
> >>
> >> [Severity: Medium]
> >> Can data->interrupt_users permanently underflow here during error recovery?
> >>
> >> If an I2C error occurs in __veml6031x00_set_trigger_state() while disabling
> >> the trigger, this error recovery path calls veml6031x00_set_interrupt() to
> >> revert the counter, but fails to update the software state (data->trig_en).
> >>
> >> If a subsequent successful disable happens later, the counter will be
> >> decremented again, potentially underflowing to UINT_MAX and silently skipping
> >> all future hardware writes.
> >>
> >> [ ... ]  
> >
> > That is not true because the error path will *increment* the counter to
> > re-enable the IRQ and keept it consistent with data->trig_en. If an I2C
> > operation fails, the trigger will stay enabled in the device registers,
> > and therefore data-trig_en should stay enabled.
> >
> > I tested it by adding some hacks to force that situation, and what may
> > actually happen is that if *on top* of that failure, the I2C operation
> > in veml6031x00_set_interrupt() also fails, interrupt_users will be
> > decremented (as it should, because the interrupt could not be
> > re-enabled), and *then* a second call to disable the trigger will set
> > interrupt_users to UINT_MAX.
> >
> > Although this is very unlikely, the fix seems to be trivial:
> >
> >  if (state) {
> >  	data->interrupt_users++;
> >  	if (data->interrupt_users > 1)
> >  		return 0;
> >  } else {
> >  	+	if (!data->interrupt_users)
> >  	+		return 0;
> >
> >  	data->interrupt_users--;
> >  	if (data->interrupt_users > 0)
> >  		return 0;
> >  }
> >
> > Note that this fix is not a hack to just get rid of reaching UINT_MAX, it
> > reflects the fact that the previous failed operations lead to a disabled
> > interrupt and an enabled trigger in the hardware, and there is no need
> > to act on the interrupt again when trying to disable the trigger a
> > second time.
> >
> > I will add it for V9 after testing it with some hacks to force that
> > scenario.
> >  
> 
> I am trying to reproduce that scenario with forced errors, and even if
> those two errors happen during the first attempt to disable the trigger,
> it's not really possible to reach interrupt_users = UINT_MAX.
> The 'buffer/enable' attribute is set to 0 by the core even if
> set_trigger_state() returns an error code, and the next time
> 'buffer/enable' is set to 0, nothing really happens because
> set_trigger_state() is not even called.

I can't remember why we do that. Oh well. Seems it is useful here.

> 
> I could still add the check I suggested in V9 and avoid future issues,
> but I don't see how to reproduce this in the current state of the core
> and driver, even forcing those failed I2C operations.

I agree this is worth doing even if we can't trigger it today.

Jonathan

> 
> Best regards,
> Javier


  reply	other threads:[~2026-09-07  1:58 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-01 13:05 [PATCH v8 0/4] iio: light: add support for veml6031x00 ALS series Javier Carrasco
2026-09-01 13:05 ` [PATCH v8 1/4] dt-bindings: iio: light: veml6030: add " Javier Carrasco
2026-09-01 13:05 ` [PATCH v8 2/4] iio: light: add support for " Javier Carrasco
2026-09-01 13:05 ` [PATCH v8 3/4] iio: light: veml6031x00: add support for triggered buffers Javier Carrasco
2026-09-01 13:05 ` [PATCH v8 4/4] iio: light: veml6031x00: add support for events and trigger Javier Carrasco
     [not found]   ` <20260901132208.EE64C1F000E9@smtp.kernel.org>
2026-09-01 20:19     ` Javier Carrasco
2026-09-02 14:58       ` Javier Carrasco
2026-09-07  1:58         ` Jonathan Cameron [this message]
2026-09-07 17:11           ` Javier Carrasco
2026-09-10  2:56             ` Jonathan Cameron
2026-09-13 12:17               ` Javier Carrasco
2026-09-07  2:03 ` [PATCH v8 0/4] iio: light: add support for veml6031x00 ALS series Jonathan Cameron

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260907025826.414c570a@jic23-huawei \
    --to=jic23@kernel.org \
    --cc=javier.carrasco.cruz@gmail.com \
    --cc=linux-iio@vger.kernel.org \
    --cc=sashiko-reviews@lists.linux.dev \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox