All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] iio: adf4350: fix a possible divided-by-zero bug in adf4350_set_freq()
@ 2021-05-21  6:19 tq17373059
  2021-05-21 17:25 ` Jonathan Cameron
  0 siblings, 1 reply; 2+ messages in thread
From: tq17373059 @ 2021-05-21  6:19 UTC (permalink / raw)
  To: lars, Michael.Hennerich, jic23
  Cc: linux-iio, linux-kernel, baijiaju, Qi Teng, TOTE Robot

From: Qi Teng <tq17373059@buaa.edu.cn>

The variable st->r1_mod is checked in:
  if (st->r0_fract && st->r1_mod)

This indicates that st->r1_mod can be zero. Its value is the same as
that in:
  st->r0_fract = do_div(tmp, st->r1_mod);

However, st->r1_mod performs as a divisor in this statement, which
implies a possible divided-by-zero bug.

To fix this possible bug, st->r1_mod is checked before the division
operation. If it is zero, st->r0_fract is set to zero instead of
do_div(tmp, st->r1_mod).

Reported-by: TOTE Robot <oslab@tsinghua.edu.cn> 
Signed-off-by: Qi Teng <tq17373059@buaa.edu.cn>
---
 drivers/iio/frequency/adf4350.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/drivers/iio/frequency/adf4350.c b/drivers/iio/frequency/adf4350.c
index 99c6f260cc21..1462a6a5bc6d 100644
--- a/drivers/iio/frequency/adf4350.c
+++ b/drivers/iio/frequency/adf4350.c
@@ -182,10 +182,7 @@ static int adf4350_set_freq(struct adf4350_state *st, unsigned long long freq)
 
 		tmp = freq * (u64)st->r1_mod + (st->fpfd >> 1);
 		do_div(tmp, st->fpfd); /* Div round closest (n + d/2)/d */
-		if (st->r1_mod)
-			st->r0_fract = do_div(tmp, st->r1_mod);
-		else
-			st->r0_fract = 0;
+		st->r0_fract = do_div(tmp, st->r1_mod);
 		st->r0_int = tmp;
 	} while (mdiv > st->r0_int);
 
-- 
2.25.1


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

* Re: [PATCH] iio: adf4350: fix a possible divided-by-zero bug in adf4350_set_freq()
  2021-05-21  6:19 [PATCH] iio: adf4350: fix a possible divided-by-zero bug in adf4350_set_freq() tq17373059
@ 2021-05-21 17:25 ` Jonathan Cameron
  0 siblings, 0 replies; 2+ messages in thread
From: Jonathan Cameron @ 2021-05-21 17:25 UTC (permalink / raw)
  To: tq17373059
  Cc: lars, Michael.Hennerich, linux-iio, linux-kernel, baijiaju, TOTE Robot

On Fri, 21 May 2021 14:19:53 +0800
tq17373059@buaa.edu.cn wrote:

> From: Qi Teng <tq17373059@buaa.edu.cn>
> 
> The variable st->r1_mod is checked in:
>   if (st->r0_fract && st->r1_mod)
> 
> This indicates that st->r1_mod can be zero. Its value is the same as
> that in:
>   st->r0_fract = do_div(tmp, st->r1_mod);
> 
> However, st->r1_mod performs as a divisor in this statement, which
> implies a possible divided-by-zero bug.
> 
> To fix this possible bug, st->r1_mod is checked before the division
> operation. If it is zero, st->r0_fract is set to zero instead of
> do_div(tmp, st->r1_mod).
> 
> Reported-by: TOTE Robot <oslab@tsinghua.edu.cn> 
> Signed-off-by: Qi Teng <tq17373059@buaa.edu.cn>

Patch seems to be inverse of the intended.  You are removing a
divide by 0 protection that isn't present in the current driver.

Also, a fix like this needs a Fixes: tag.

The maths is sufficiently messy that I can't immediately tell if this
can actually be zero or whether the check you are highlighting is
paranoia.  Given that, I agree that a fix here makes sense whether
or not we have a verified bug.

Thanks,

Jonathan

> ---
>  drivers/iio/frequency/adf4350.c | 5 +----
>  1 file changed, 1 insertion(+), 4 deletions(-)
> 
> diff --git a/drivers/iio/frequency/adf4350.c b/drivers/iio/frequency/adf4350.c
> index 99c6f260cc21..1462a6a5bc6d 100644
> --- a/drivers/iio/frequency/adf4350.c
> +++ b/drivers/iio/frequency/adf4350.c
> @@ -182,10 +182,7 @@ static int adf4350_set_freq(struct adf4350_state *st, unsigned long long freq)
>  
>  		tmp = freq * (u64)st->r1_mod + (st->fpfd >> 1);
>  		do_div(tmp, st->fpfd); /* Div round closest (n + d/2)/d */
> -		if (st->r1_mod)
> -			st->r0_fract = do_div(tmp, st->r1_mod);
> -		else
> -			st->r0_fract = 0;
> +		st->r0_fract = do_div(tmp, st->r1_mod);
>  		st->r0_int = tmp;
>  	} while (mdiv > st->r0_int);
>  


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

end of thread, other threads:[~2021-05-21 17:24 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-21  6:19 [PATCH] iio: adf4350: fix a possible divided-by-zero bug in adf4350_set_freq() tq17373059
2021-05-21 17:25 ` Jonathan Cameron

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.