OSDN Git Service

ASoC: cx2072x: fix integer overflow on unsigned int multiply
authorColin Ian King <colin.king@canonical.com>
Fri, 24 May 2019 22:25:51 +0000 (23:25 +0100)
committerMark Brown <broonie@kernel.org>
Tue, 28 May 2019 14:53:17 +0000 (15:53 +0100)
In the case where frac_div larger than 96 the result of an unsigned
multiplication overflows an unsigned int.  For example, this can
happen when the sample_rate is 192000 and pll_input is 122.  Fix
this by casing the first term of the mutiply to a u64. Also remove
the extraneous parentheses around the expression.

Addresses-Coverity: ("Unintentional integer overflow")
Fixes: a497a4363706 ("ASoC: Add support for Conexant CX2072X CODEC")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Reviewed-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/cx2072x.c

index c11a585..ed76254 100644 (file)
@@ -627,7 +627,7 @@ static int cx2072x_config_pll(struct cx2072x_priv *cx2072x)
        if (frac_div) {
                frac_div *= 1000;
                frac_div /= pll_input;
-               frac_num = ((4000 + frac_div) * ((1 << 20) - 4));
+               frac_num = (u64)(4000 + frac_div) * ((1 << 20) - 4);
                do_div(frac_num, 7);
                frac = ((u32)frac_num + 499) / 1000;
        }