* [PATCH v2] iio: magnetometer: rm3100: add boundary check for the value read from RM3100_REG_TMRC
@ 2023-12-31 14:56 zhouzhouyi
2024-01-01 18:05 ` Jonathan Cameron
0 siblings, 1 reply; 2+ messages in thread
From: zhouzhouyi @ 2023-12-31 14:56 UTC (permalink / raw)
To: songqiang1304521, jic23, lars, linux-iio, linux-kernel; +Cc: zhili.liu
From: "zhili.liu" <zhili.liu@ucas.com.cn>
Recently, we encounter kernel crash in function rm3100_common_probe
caused by out of bound access of array rm3100_samp_rates (because of
underlying hardware failures). Add boundary check to prevent out of
bound access.
Suggested-by: Zhouyi Zhou <zhouzhouyi@gmail.com>
Signed-off-by: zhili.liu <zhili.liu@ucas.com.cn>
---
The format of the previous patch was a bit problematic,
we are sending it again.
Sorry for the trouble.
Thank you very much.
--
drivers/iio/magnetometer/rm3100-core.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/drivers/iio/magnetometer/rm3100-core.c b/drivers/iio/magnetometer/rm3100-core.c
index 69938204456f..fc50b6d4a334 100644
--- a/drivers/iio/magnetometer/rm3100-core.c
+++ b/drivers/iio/magnetometer/rm3100-core.c
@@ -586,6 +586,12 @@ int rm3100_common_probe(struct device *dev, struct regmap *regmap, int irq)
ret = regmap_read(regmap, RM3100_REG_TMRC, &tmp);
if (ret < 0)
return ret;
+
+ if (tmp < RM3100_SAMP_NUM || tmp - RM3100_TMRC_OFFSET >= RM3100_SAMP_NUM) {
+ dev_err(dev, "The value read from RM3100_REG_TMRC is invalid!\n");
+ return -EINVAL;
+ }
+
/* Initializing max wait time, which is double conversion time. */
data->conversion_time = rm3100_samp_rates[tmp - RM3100_TMRC_OFFSET][2]
* 2;
--
2.25.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH v2] iio: magnetometer: rm3100: add boundary check for the value read from RM3100_REG_TMRC
2023-12-31 14:56 [PATCH v2] iio: magnetometer: rm3100: add boundary check for the value read from RM3100_REG_TMRC zhouzhouyi
@ 2024-01-01 18:05 ` Jonathan Cameron
0 siblings, 0 replies; 2+ messages in thread
From: Jonathan Cameron @ 2024-01-01 18:05 UTC (permalink / raw)
To: zhouzhouyi; +Cc: songqiang1304521, lars, linux-iio, linux-kernel, zhili.liu
On Sun, 31 Dec 2023 22:56:44 +0800
zhouzhouyi@gmail.com wrote:
> From: "zhili.liu" <zhili.liu@ucas.com.cn>
>
> Recently, we encounter kernel crash in function rm3100_common_probe
> caused by out of bound access of array rm3100_samp_rates (because of
> underlying hardware failures). Add boundary check to prevent out of
> bound access.
>
> Suggested-by: Zhouyi Zhou <zhouzhouyi@gmail.com>
> Signed-off-by: zhili.liu <zhili.liu@ucas.com.cn>
Please provide a Fixes tag so we know how far back to backport this.
Seems like a reasonable bit of hardening against potential hardware issues.
However it would be cleaner with a local variable used for the index.
See inline.
Jonathan
> ---
> The format of the previous patch was a bit problematic,
> we are sending it again.
>
> Sorry for the trouble.
>
> Thank you very much.
> --
> drivers/iio/magnetometer/rm3100-core.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/drivers/iio/magnetometer/rm3100-core.c b/drivers/iio/magnetometer/rm3100-core.c
> index 69938204456f..fc50b6d4a334 100644
> --- a/drivers/iio/magnetometer/rm3100-core.c
> +++ b/drivers/iio/magnetometer/rm3100-core.c
> @@ -586,6 +586,12 @@ int rm3100_common_probe(struct device *dev, struct regmap *regmap, int irq)
> ret = regmap_read(regmap, RM3100_REG_TMRC, &tmp);
> if (ret < 0)
> return ret;
> +
> + if (tmp < RM3100_SAMP_NUM || tmp - RM3100_TMRC_OFFSET >= RM3100_SAMP_NUM) {
Just a local variable of
int samp_rate_index = tmp - RM3100_TMRC_OFFSET;
Check that for negative or >= RM3100_SAMP_NUM
> + dev_err(dev, "The value read from RM3100_REG_TMRC is invalid!\n");
> + return -EINVAL;
> + }
> +
> /* Initializing max wait time, which is double conversion time. */
> data->conversion_time = rm3100_samp_rates[tmp - RM3100_TMRC_OFFSET][2]
> * 2;
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-01-01 18:05 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-31 14:56 [PATCH v2] iio: magnetometer: rm3100: add boundary check for the value read from RM3100_REG_TMRC zhouzhouyi
2024-01-01 18:05 ` Jonathan Cameron
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox