* [PATCH v2] iio: chemical: scd30: Prevent potential divide-by-zero errors
@ 2026-05-10 20:21 Maxwell Doose
2026-05-11 10:42 ` Andy Shevchenko
2026-05-11 12:05 ` Jonathan Cameron
0 siblings, 2 replies; 4+ messages in thread
From: Maxwell Doose @ 2026-05-10 20:21 UTC (permalink / raw)
To: jic23; +Cc: dlechner, nuno.sa, andy, linux-iio, linux-kernel
In scd30_read_raw, the current value of tmp in the
IIO_CHAN_INFO_SAMP_FREQ case is unchecked. Add checking to see if the
value we got was 0 to prevent a divide-by-zero error.
A similar case has also been found in scd30_write_raw(), also in the
IIO_CHAN_INFO_SAMP_FREQ case, where the value of val2 was unchecked.
Add checking for that variable as well and return -EINVAL if it's 0.
Fixes: 64b3d8b1b0f5 ("iio: chemical: scd30: add core driver")
Signed-off-by: Maxwell Doose <m32285159@gmail.com>
---
v2:
- Switch to dev_err_ratelimited() per sashiko.
- Fix another potential divide-by-zero error per sashiko (see commit
message).
drivers/iio/chemical/scd30_core.c | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/drivers/iio/chemical/scd30_core.c b/drivers/iio/chemical/scd30_core.c
index be8c055be184..3851c9334c8b 100644
--- a/drivers/iio/chemical/scd30_core.c
+++ b/drivers/iio/chemical/scd30_core.c
@@ -237,6 +237,16 @@ static int scd30_read_raw(struct iio_dev *indio_dev, struct iio_chan_spec const
if (ret)
return ret;
+ /*
+ * Value of 0 is unexpected but possible if hardware is failing
+ * or noise on data bus
+ */
+ if (!tmp) {
+ dev_err_ratelimited(&indio_dev->dev,
+ "Invalid measurement interval 0 received\n");
+ return -EIO;
+ }
+
*val = 0;
*val2 = 1000000000 / tmp;
return IIO_VAL_INT_PLUS_NANO;
@@ -261,7 +271,7 @@ static int scd30_write_raw(struct iio_dev *indio_dev, struct iio_chan_spec const
guard(mutex)(&state->lock);
switch (mask) {
case IIO_CHAN_INFO_SAMP_FREQ:
- if (val)
+ if (val || !val2)
return -EINVAL;
val = 1000000000 / val2;
--
2.54.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v2] iio: chemical: scd30: Prevent potential divide-by-zero errors
2026-05-10 20:21 [PATCH v2] iio: chemical: scd30: Prevent potential divide-by-zero errors Maxwell Doose
@ 2026-05-11 10:42 ` Andy Shevchenko
2026-05-11 12:05 ` Jonathan Cameron
1 sibling, 0 replies; 4+ messages in thread
From: Andy Shevchenko @ 2026-05-11 10:42 UTC (permalink / raw)
To: Maxwell Doose; +Cc: jic23, dlechner, nuno.sa, andy, linux-iio, linux-kernel
On Sun, May 10, 2026 at 03:21:56PM -0500, Maxwell Doose wrote:
> In scd30_read_raw, the current value of tmp in the
We refer to the functions as func().
> IIO_CHAN_INFO_SAMP_FREQ case is unchecked. Add checking to see if the
> value we got was 0 to prevent a divide-by-zero error.
>
> A similar case has also been found in scd30_write_raw(), also in the
> IIO_CHAN_INFO_SAMP_FREQ case, where the value of val2 was unchecked.
> Add checking for that variable as well and return -EINVAL if it's 0.
...
> + /*
> + * Value of 0 is unexpected but possible if hardware is failing
> + * or noise on data bus
Respect English punctuation. Here the period at the end is missing.
> + */
> + dev_err_ratelimited(&indio_dev->dev,
> + "Invalid measurement interval 0 received\n");
I believe here is missing colon.
"Invalid measurement: interval 0 received\n");
> + return -EIO;
> + }
--
With Best Regards,
Andy Shevchenko
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2] iio: chemical: scd30: Prevent potential divide-by-zero errors
2026-05-10 20:21 [PATCH v2] iio: chemical: scd30: Prevent potential divide-by-zero errors Maxwell Doose
2026-05-11 10:42 ` Andy Shevchenko
@ 2026-05-11 12:05 ` Jonathan Cameron
2026-05-11 12:06 ` Jonathan Cameron
1 sibling, 1 reply; 4+ messages in thread
From: Jonathan Cameron @ 2026-05-11 12:05 UTC (permalink / raw)
To: Maxwell Doose; +Cc: dlechner, nuno.sa, andy, linux-iio, linux-kernel
On Sun, 10 May 2026 15:21:56 -0500
Maxwell Doose <m32285159@gmail.com> wrote:
> In scd30_read_raw, the current value of tmp in the
> IIO_CHAN_INFO_SAMP_FREQ case is unchecked. Add checking to see if the
> value we got was 0 to prevent a divide-by-zero error.
>
> A similar case has also been found in scd30_write_raw(), also in the
> IIO_CHAN_INFO_SAMP_FREQ case, where the value of val2 was unchecked.
> Add checking for that variable as well and return -EINVAL if it's 0.
>
> Fixes: 64b3d8b1b0f5 ("iio: chemical: scd30: add core driver")
To me this one is a hardening change not a bug fix (unless we have
reports of this hardware failure on a real product - not a devboard
with dodgy wiring ;)
So no fixes tag needed.
Also there is already a fix for the write_raw one in my fixes-togreg
branch. Antoniu got there a few weeks back.
Jonathan
> Signed-off-by: Maxwell Doose <m32285159@gmail.com>
> ---
> v2:
> - Switch to dev_err_ratelimited() per sashiko.
> - Fix another potential divide-by-zero error per sashiko (see commit
> message).
>
> drivers/iio/chemical/scd30_core.c | 12 +++++++++++-
> 1 file changed, 11 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/iio/chemical/scd30_core.c b/drivers/iio/chemical/scd30_core.c
> index be8c055be184..3851c9334c8b 100644
> --- a/drivers/iio/chemical/scd30_core.c
> +++ b/drivers/iio/chemical/scd30_core.c
> @@ -237,6 +237,16 @@ static int scd30_read_raw(struct iio_dev *indio_dev, struct iio_chan_spec const
> if (ret)
> return ret;
>
> + /*
> + * Value of 0 is unexpected but possible if hardware is failing
> + * or noise on data bus
> + */
> + if (!tmp) {
> + dev_err_ratelimited(&indio_dev->dev,
> + "Invalid measurement interval 0 received\n");
> + return -EIO;
> + }
> +
> *val = 0;
> *val2 = 1000000000 / tmp;
> return IIO_VAL_INT_PLUS_NANO;
> @@ -261,7 +271,7 @@ static int scd30_write_raw(struct iio_dev *indio_dev, struct iio_chan_spec const
> guard(mutex)(&state->lock);
> switch (mask) {
> case IIO_CHAN_INFO_SAMP_FREQ:
> - if (val)
> + if (val || !val2)
> return -EINVAL;
>
> val = 1000000000 / val2;
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2] iio: chemical: scd30: Prevent potential divide-by-zero errors
2026-05-11 12:05 ` Jonathan Cameron
@ 2026-05-11 12:06 ` Jonathan Cameron
0 siblings, 0 replies; 4+ messages in thread
From: Jonathan Cameron @ 2026-05-11 12:06 UTC (permalink / raw)
To: Maxwell Doose; +Cc: dlechner, nuno.sa, andy, linux-iio, linux-kernel
On Mon, 11 May 2026 13:05:55 +0100
Jonathan Cameron <jic23@kernel.org> wrote:
> On Sun, 10 May 2026 15:21:56 -0500
> Maxwell Doose <m32285159@gmail.com> wrote:
>
> > In scd30_read_raw, the current value of tmp in the
> > IIO_CHAN_INFO_SAMP_FREQ case is unchecked. Add checking to see if the
> > value we got was 0 to prevent a divide-by-zero error.
> >
> > A similar case has also been found in scd30_write_raw(), also in the
> > IIO_CHAN_INFO_SAMP_FREQ case, where the value of val2 was unchecked.
> > Add checking for that variable as well and return -EINVAL if it's 0.
> >
> > Fixes: 64b3d8b1b0f5 ("iio: chemical: scd30: add core driver")
> To me this one is a hardening change not a bug fix (unless we have
> reports of this hardware failure on a real product - not a devboard
> with dodgy wiring ;)
>
> So no fixes tag needed.
>
> Also there is already a fix for the write_raw one in my fixes-togreg
> branch. Antoniu got there a few weeks back.
By which I meant no fixes tag needed when it's just the read_raw case
where it isn't a userspace controlled value
J
>
> Jonathan
>
>
>
> > Signed-off-by: Maxwell Doose <m32285159@gmail.com>
> > ---
> > v2:
> > - Switch to dev_err_ratelimited() per sashiko.
> > - Fix another potential divide-by-zero error per sashiko (see commit
> > message).
> >
> > drivers/iio/chemical/scd30_core.c | 12 +++++++++++-
> > 1 file changed, 11 insertions(+), 1 deletion(-)
> >
> > diff --git a/drivers/iio/chemical/scd30_core.c b/drivers/iio/chemical/scd30_core.c
> > index be8c055be184..3851c9334c8b 100644
> > --- a/drivers/iio/chemical/scd30_core.c
> > +++ b/drivers/iio/chemical/scd30_core.c
> > @@ -237,6 +237,16 @@ static int scd30_read_raw(struct iio_dev *indio_dev, struct iio_chan_spec const
> > if (ret)
> > return ret;
> >
> > + /*
> > + * Value of 0 is unexpected but possible if hardware is failing
> > + * or noise on data bus
> > + */
> > + if (!tmp) {
> > + dev_err_ratelimited(&indio_dev->dev,
> > + "Invalid measurement interval 0 received\n");
> > + return -EIO;
> > + }
> > +
> > *val = 0;
> > *val2 = 1000000000 / tmp;
> > return IIO_VAL_INT_PLUS_NANO;
> > @@ -261,7 +271,7 @@ static int scd30_write_raw(struct iio_dev *indio_dev, struct iio_chan_spec const
> > guard(mutex)(&state->lock);
> > switch (mask) {
> > case IIO_CHAN_INFO_SAMP_FREQ:
> > - if (val)
> > + if (val || !val2)
> > return -EINVAL;
> >
> > val = 1000000000 / val2;
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-05-11 12:06 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-10 20:21 [PATCH v2] iio: chemical: scd30: Prevent potential divide-by-zero errors Maxwell Doose
2026-05-11 10:42 ` Andy Shevchenko
2026-05-11 12:05 ` Jonathan Cameron
2026-05-11 12:06 ` Jonathan Cameron
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox