* [PATCH] iio: addac: ad74115: Fix use of uninitialized variable rate
@ 2025-04-09 20:29 Purva Yeshi
2025-04-10 14:51 ` David Lechner
0 siblings, 1 reply; 7+ messages in thread
From: Purva Yeshi @ 2025-04-09 20:29 UTC (permalink / raw)
To: cosmin.tanislav, lars, Michael.Hennerich, jic23
Cc: linux-iio, linux-kernel, Purva Yeshi
Fix Smatch-detected error:
drivers/iio/addac/ad74115.c:823 _ad74115_get_adc_code() error:
uninitialized symbol 'rate'.
The variable rate was declared but not given any value before being used
in a division. If the code reached that point without setting rate, it
would cause unpredictable behavior.
Declare and initialize 'rate' to zero inside the 'else' block where it is
used. This ensures 'rate' is always initialized before being passed to
DIV_ROUND_CLOSEST.
Signed-off-by: Purva Yeshi <purvayeshi550@gmail.com>
---
drivers/iio/addac/ad74115.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/iio/addac/ad74115.c b/drivers/iio/addac/ad74115.c
index a7e480f2472d..26770c68e5fa 100644
--- a/drivers/iio/addac/ad74115.c
+++ b/drivers/iio/addac/ad74115.c
@@ -814,7 +814,7 @@ static int _ad74115_get_adc_code(struct ad74115_state *st,
return -ETIMEDOUT;
} else {
unsigned int regval, wait_time;
- int rate;
+ int rate = 0;
ret = ad74115_get_adc_rate(st, channel, &rate);
if (ret < 0)
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH] iio: addac: ad74115: Fix use of uninitialized variable rate
2025-04-09 20:29 [PATCH] iio: addac: ad74115: Fix use of uninitialized variable rate Purva Yeshi
@ 2025-04-10 14:51 ` David Lechner
2025-04-10 17:37 ` Purva Yeshi
2025-04-11 5:49 ` Nuno Sá
0 siblings, 2 replies; 7+ messages in thread
From: David Lechner @ 2025-04-10 14:51 UTC (permalink / raw)
To: Purva Yeshi, cosmin.tanislav, lars, Michael.Hennerich, jic23
Cc: linux-iio, linux-kernel
On 4/9/25 3:29 PM, Purva Yeshi wrote:
> Fix Smatch-detected error:
> drivers/iio/addac/ad74115.c:823 _ad74115_get_adc_code() error:
> uninitialized symbol 'rate'.
>
> The variable rate was declared but not given any value before being used
> in a division. If the code reached that point without setting rate, it
> would cause unpredictable behavior.
>
> Declare and initialize 'rate' to zero inside the 'else' block where it is
> used. This ensures 'rate' is always initialized before being passed to
> DIV_ROUND_CLOSEST.
>
> Signed-off-by: Purva Yeshi <purvayeshi550@gmail.com>
> ---
> drivers/iio/addac/ad74115.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/iio/addac/ad74115.c b/drivers/iio/addac/ad74115.c
> index a7e480f2472d..26770c68e5fa 100644
> --- a/drivers/iio/addac/ad74115.c
> +++ b/drivers/iio/addac/ad74115.c
> @@ -814,7 +814,7 @@ static int _ad74115_get_adc_code(struct ad74115_state *st,
> return -ETIMEDOUT;
> } else {
> unsigned int regval, wait_time;
> - int rate;
> + int rate = 0;
>
> ret = ad74115_get_adc_rate(st, channel, &rate);
> if (ret < 0)
I don't see how rate could be used uninitialized since we are
returning the error if ad74115_get_adc_rate() fails.
Also, initializing to 0 would then cause a divide by 0 error
if that value was actually used later in the code.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] iio: addac: ad74115: Fix use of uninitialized variable rate
2025-04-10 14:51 ` David Lechner
@ 2025-04-10 17:37 ` Purva Yeshi
2025-04-11 5:49 ` Nuno Sá
1 sibling, 0 replies; 7+ messages in thread
From: Purva Yeshi @ 2025-04-10 17:37 UTC (permalink / raw)
To: David Lechner, cosmin.tanislav, lars, Michael.Hennerich, jic23
Cc: linux-iio, linux-kernel
On 10/04/25 20:21, David Lechner wrote:
> On 4/9/25 3:29 PM, Purva Yeshi wrote:
>> Fix Smatch-detected error:
>> drivers/iio/addac/ad74115.c:823 _ad74115_get_adc_code() error:
>> uninitialized symbol 'rate'.
>>
>> The variable rate was declared but not given any value before being used
>> in a division. If the code reached that point without setting rate, it
>> would cause unpredictable behavior.
>>
>> Declare and initialize 'rate' to zero inside the 'else' block where it is
>> used. This ensures 'rate' is always initialized before being passed to
>> DIV_ROUND_CLOSEST.
>>
>> Signed-off-by: Purva Yeshi <purvayeshi550@gmail.com>
>> ---
>> drivers/iio/addac/ad74115.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/iio/addac/ad74115.c b/drivers/iio/addac/ad74115.c
>> index a7e480f2472d..26770c68e5fa 100644
>> --- a/drivers/iio/addac/ad74115.c
>> +++ b/drivers/iio/addac/ad74115.c
>> @@ -814,7 +814,7 @@ static int _ad74115_get_adc_code(struct ad74115_state *st,
>> return -ETIMEDOUT;
>> } else {
>> unsigned int regval, wait_time;
>> - int rate;
>> + int rate = 0;
>>
>> ret = ad74115_get_adc_rate(st, channel, &rate);
>> if (ret < 0)
>
> I don't see how rate could be used uninitialized since we are
> returning the error if ad74115_get_adc_rate() fails.
>
> Also, initializing to 0 would then cause a divide by 0 error
> if that value was actually used later in the code.
Hi,
Thank you for the review and explanation.
Understood — since there's a risk of misuse later (like divide-by-zero),
it's best to leave it as is.
Best regards,
Purva
>
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] iio: addac: ad74115: Fix use of uninitialized variable rate
2025-04-10 14:51 ` David Lechner
2025-04-10 17:37 ` Purva Yeshi
@ 2025-04-11 5:49 ` Nuno Sá
2025-04-11 9:09 ` Purva Yeshi
1 sibling, 1 reply; 7+ messages in thread
From: Nuno Sá @ 2025-04-11 5:49 UTC (permalink / raw)
To: David Lechner, Purva Yeshi, cosmin.tanislav, lars,
Michael.Hennerich, jic23
Cc: linux-iio, linux-kernel
On Thu, 2025-04-10 at 09:51 -0500, David Lechner wrote:
> On 4/9/25 3:29 PM, Purva Yeshi wrote:
> > Fix Smatch-detected error:
> > drivers/iio/addac/ad74115.c:823 _ad74115_get_adc_code() error:
> > uninitialized symbol 'rate'.
> >
> > The variable rate was declared but not given any value before being used
> > in a division. If the code reached that point without setting rate, it
> > would cause unpredictable behavior.
> >
> > Declare and initialize 'rate' to zero inside the 'else' block where it is
> > used. This ensures 'rate' is always initialized before being passed to
> > DIV_ROUND_CLOSEST.
> >
> > Signed-off-by: Purva Yeshi <purvayeshi550@gmail.com>
> > ---
> > drivers/iio/addac/ad74115.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/iio/addac/ad74115.c b/drivers/iio/addac/ad74115.c
> > index a7e480f2472d..26770c68e5fa 100644
> > --- a/drivers/iio/addac/ad74115.c
> > +++ b/drivers/iio/addac/ad74115.c
> > @@ -814,7 +814,7 @@ static int _ad74115_get_adc_code(struct ad74115_state *st,
> > return -ETIMEDOUT;
> > } else {
> > unsigned int regval, wait_time;
> > - int rate;
> > + int rate = 0;
> >
> > ret = ad74115_get_adc_rate(st, channel, &rate);
> > if (ret < 0)
>
> I don't see how rate could be used uninitialized since we are
> returning the error if ad74115_get_adc_rate() fails.
>
> Also, initializing to 0 would then cause a divide by 0 error
> if that value was actually used later in the code.
>
Agreed... A better check could actually be (in ad74115_get_adc_rate()):
if (i >= ARRAY_SIZE(ad74115_get_adc_rate))
return -EIO;
Kind of a paranoid check but just making sure a faulty chip does not lead to an out
of bounds access.
- Nuno Sá
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] iio: addac: ad74115: Fix use of uninitialized variable rate
2025-04-11 5:49 ` Nuno Sá
@ 2025-04-11 9:09 ` Purva Yeshi
2025-04-11 12:17 ` Nuno Sá
0 siblings, 1 reply; 7+ messages in thread
From: Purva Yeshi @ 2025-04-11 9:09 UTC (permalink / raw)
To: Nuno Sá, David Lechner, cosmin.tanislav, lars,
Michael.Hennerich, jic23
Cc: linux-iio, linux-kernel
On 11/04/25 11:19, Nuno Sá wrote:
> On Thu, 2025-04-10 at 09:51 -0500, David Lechner wrote:
>> On 4/9/25 3:29 PM, Purva Yeshi wrote:
>>> Fix Smatch-detected error:
>>> drivers/iio/addac/ad74115.c:823 _ad74115_get_adc_code() error:
>>> uninitialized symbol 'rate'.
>>>
>>> The variable rate was declared but not given any value before being used
>>> in a division. If the code reached that point without setting rate, it
>>> would cause unpredictable behavior.
>>>
>>> Declare and initialize 'rate' to zero inside the 'else' block where it is
>>> used. This ensures 'rate' is always initialized before being passed to
>>> DIV_ROUND_CLOSEST.
>>>
>>> Signed-off-by: Purva Yeshi <purvayeshi550@gmail.com>
>>> ---
>>> drivers/iio/addac/ad74115.c | 2 +-
>>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/drivers/iio/addac/ad74115.c b/drivers/iio/addac/ad74115.c
>>> index a7e480f2472d..26770c68e5fa 100644
>>> --- a/drivers/iio/addac/ad74115.c
>>> +++ b/drivers/iio/addac/ad74115.c
>>> @@ -814,7 +814,7 @@ static int _ad74115_get_adc_code(struct ad74115_state *st,
>>> return -ETIMEDOUT;
>>> } else {
>>> unsigned int regval, wait_time;
>>> - int rate;
>>> + int rate = 0;
>>>
>>> ret = ad74115_get_adc_rate(st, channel, &rate);
>>> if (ret < 0)
>>
>> I don't see how rate could be used uninitialized since we are
>> returning the error if ad74115_get_adc_rate() fails.
>>
>> Also, initializing to 0 would then cause a divide by 0 error
>> if that value was actually used later in the code.
>>
>
> Agreed... A better check could actually be (in ad74115_get_adc_rate()):
>
>
> if (i >= ARRAY_SIZE(ad74115_get_adc_rate))
> return -EIO;
>
> Kind of a paranoid check but just making sure a faulty chip does not lead to an out
> of bounds access.
>
> - Nuno Sá
Hi Nuno,
Thank you for your suggestion regarding the paranoid check.
However, ad74115_get_adc_rate is a function, not an array, pointer, or
vector. Therefore, using ARRAY_SIZE on it results in a compilation error.
I believe the intended check was:
if (i >= ARRAY_SIZE(ad74115_adc_conv_rate_tbl))
return -EIO;
This ensures that the index i does not exceed the bounds of the
ad74115_adc_conv_rate_tbl array, preventing potential out-of-bounds access.
This check prevents potential out-of-bounds access, it does not address
the Smatch warning about the uninitialized variable 'rate'. Smatch may
still flag 'rate' as potentially uninitialized if it cannot determine
that ad74115_get_adc_rate() always initializes it before use.
Best regards,
Purva
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] iio: addac: ad74115: Fix use of uninitialized variable rate
2025-04-11 9:09 ` Purva Yeshi
@ 2025-04-11 12:17 ` Nuno Sá
2025-04-17 5:43 ` Purva Yeshi
0 siblings, 1 reply; 7+ messages in thread
From: Nuno Sá @ 2025-04-11 12:17 UTC (permalink / raw)
To: Purva Yeshi, David Lechner, cosmin.tanislav, lars,
Michael.Hennerich, jic23
Cc: linux-iio, linux-kernel
On Fri, 2025-04-11 at 14:39 +0530, Purva Yeshi wrote:
> On 11/04/25 11:19, Nuno Sá wrote:
> > On Thu, 2025-04-10 at 09:51 -0500, David Lechner wrote:
> > > On 4/9/25 3:29 PM, Purva Yeshi wrote:
> > > > Fix Smatch-detected error:
> > > > drivers/iio/addac/ad74115.c:823 _ad74115_get_adc_code() error:
> > > > uninitialized symbol 'rate'.
> > > >
> > > > The variable rate was declared but not given any value before being used
> > > > in a division. If the code reached that point without setting rate, it
> > > > would cause unpredictable behavior.
> > > >
> > > > Declare and initialize 'rate' to zero inside the 'else' block where it
> > > > is
> > > > used. This ensures 'rate' is always initialized before being passed to
> > > > DIV_ROUND_CLOSEST.
> > > >
> > > > Signed-off-by: Purva Yeshi <purvayeshi550@gmail.com>
> > > > ---
> > > > drivers/iio/addac/ad74115.c | 2 +-
> > > > 1 file changed, 1 insertion(+), 1 deletion(-)
> > > >
> > > > diff --git a/drivers/iio/addac/ad74115.c b/drivers/iio/addac/ad74115.c
> > > > index a7e480f2472d..26770c68e5fa 100644
> > > > --- a/drivers/iio/addac/ad74115.c
> > > > +++ b/drivers/iio/addac/ad74115.c
> > > > @@ -814,7 +814,7 @@ static int _ad74115_get_adc_code(struct
> > > > ad74115_state *st,
> > > > return -ETIMEDOUT;
> > > > } else {
> > > > unsigned int regval, wait_time;
> > > > - int rate;
> > > > + int rate = 0;
> > > >
> > > > ret = ad74115_get_adc_rate(st, channel, &rate);
> > > > if (ret < 0)
> > >
> > > I don't see how rate could be used uninitialized since we are
> > > returning the error if ad74115_get_adc_rate() fails.
> > >
> > > Also, initializing to 0 would then cause a divide by 0 error
> > > if that value was actually used later in the code.
> > >
> >
> > Agreed... A better check could actually be (in ad74115_get_adc_rate()):
> >
> >
> > if (i >= ARRAY_SIZE(ad74115_get_adc_rate))
> > return -EIO;
> >
> > Kind of a paranoid check but just making sure a faulty chip does not lead to
> > an out
> > of bounds access.
> >
> > - Nuno Sá
>
> Hi Nuno,
>
> Thank you for your suggestion regarding the paranoid check.
>
> However, ad74115_get_adc_rate is a function, not an array, pointer, or
> vector. Therefore, using ARRAY_SIZE on it results in a compilation error.
>
> I believe the intended check was:
>
> if (i >= ARRAY_SIZE(ad74115_adc_conv_rate_tbl))
> return -EIO;
>
Oh yes, bad copy-paste...
>
> This ensures that the index i does not exceed the bounds of the
> ad74115_adc_conv_rate_tbl array, preventing potential out-of-bounds access.
>
> This check prevents potential out-of-bounds access, it does not address
> the Smatch warning about the uninitialized variable 'rate'. Smatch may
> still flag 'rate' as potentially uninitialized if it cannot determine
> that ad74115_get_adc_rate() always initializes it before use.
>
Well, as said, this is a false positive...
- Nuno Sá
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] iio: addac: ad74115: Fix use of uninitialized variable rate
2025-04-11 12:17 ` Nuno Sá
@ 2025-04-17 5:43 ` Purva Yeshi
0 siblings, 0 replies; 7+ messages in thread
From: Purva Yeshi @ 2025-04-17 5:43 UTC (permalink / raw)
To: Nuno Sá, David Lechner, cosmin.tanislav, lars,
Michael.Hennerich, jic23
Cc: linux-iio, linux-kernel
On 11/04/25 17:47, Nuno Sá wrote:
> On Fri, 2025-04-11 at 14:39 +0530, Purva Yeshi wrote:
>> On 11/04/25 11:19, Nuno Sá wrote:
>>> On Thu, 2025-04-10 at 09:51 -0500, David Lechner wrote:
>>>> On 4/9/25 3:29 PM, Purva Yeshi wrote:
>>>>> Fix Smatch-detected error:
>>>>> drivers/iio/addac/ad74115.c:823 _ad74115_get_adc_code() error:
>>>>> uninitialized symbol 'rate'.
>>>>>
>>>>> The variable rate was declared but not given any value before being used
>>>>> in a division. If the code reached that point without setting rate, it
>>>>> would cause unpredictable behavior.
>>>>>
>>>>> Declare and initialize 'rate' to zero inside the 'else' block where it
>>>>> is
>>>>> used. This ensures 'rate' is always initialized before being passed to
>>>>> DIV_ROUND_CLOSEST.
>>>>>
>>>>> Signed-off-by: Purva Yeshi <purvayeshi550@gmail.com>
>>>>> ---
>>>>> drivers/iio/addac/ad74115.c | 2 +-
>>>>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>>>>
>>>>> diff --git a/drivers/iio/addac/ad74115.c b/drivers/iio/addac/ad74115.c
>>>>> index a7e480f2472d..26770c68e5fa 100644
>>>>> --- a/drivers/iio/addac/ad74115.c
>>>>> +++ b/drivers/iio/addac/ad74115.c
>>>>> @@ -814,7 +814,7 @@ static int _ad74115_get_adc_code(struct
>>>>> ad74115_state *st,
>>>>> return -ETIMEDOUT;
>>>>> } else {
>>>>> unsigned int regval, wait_time;
>>>>> - int rate;
>>>>> + int rate = 0;
>>>>>
>>>>> ret = ad74115_get_adc_rate(st, channel, &rate);
>>>>> if (ret < 0)
>>>>
>>>> I don't see how rate could be used uninitialized since we are
>>>> returning the error if ad74115_get_adc_rate() fails.
>>>>
>>>> Also, initializing to 0 would then cause a divide by 0 error
>>>> if that value was actually used later in the code.
>>>>
>>>
>>> Agreed... A better check could actually be (in ad74115_get_adc_rate()):
>>>
>>>
>>> if (i >= ARRAY_SIZE(ad74115_get_adc_rate))
>>> return -EIO;
>>>
>>> Kind of a paranoid check but just making sure a faulty chip does not lead to
>>> an out
>>> of bounds access.
>>>
>>> - Nuno Sá
>>
>> Hi Nuno,
>>
>> Thank you for your suggestion regarding the paranoid check.
>>
>> However, ad74115_get_adc_rate is a function, not an array, pointer, or
>> vector. Therefore, using ARRAY_SIZE on it results in a compilation error.
>>
>> I believe the intended check was:
>>
>> if (i >= ARRAY_SIZE(ad74115_adc_conv_rate_tbl))
>> return -EIO;
>>
>
> Oh yes, bad copy-paste...
>
>>
>> This ensures that the index i does not exceed the bounds of the
>> ad74115_adc_conv_rate_tbl array, preventing potential out-of-bounds access.
>>
>> This check prevents potential out-of-bounds access, it does not address
>> the Smatch warning about the uninitialized variable 'rate'. Smatch may
>> still flag 'rate' as potentially uninitialized if it cannot determine
>> that ad74115_get_adc_rate() always initializes it before use.
>>
>
> Well, as said, this is a false positive...
>
> - Nuno Sá
>
Hi Nuno,
Thank you for the review. I'll drop the patch.
Best regards,
Purva
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2025-04-17 5:43 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-09 20:29 [PATCH] iio: addac: ad74115: Fix use of uninitialized variable rate Purva Yeshi
2025-04-10 14:51 ` David Lechner
2025-04-10 17:37 ` Purva Yeshi
2025-04-11 5:49 ` Nuno Sá
2025-04-11 9:09 ` Purva Yeshi
2025-04-11 12:17 ` Nuno Sá
2025-04-17 5:43 ` Purva Yeshi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox