From: Nicolin Chen <Guangyu.Chen@freescale.com>
To: Anssi Hannula <anssi.hannula@iki.fi>
Cc: alsa-devel@alsa-project.org, Mark Brown <broonie@kernel.org>
Subject: Re: [PATCH] ASoC: fsl_spdif: Fix integer overflow when calculating divisors
Date: Tue, 10 Jun 2014 01:26:32 +0800 [thread overview]
Message-ID: <20140609172630.GA7715@MrMyself> (raw)
In-Reply-To: <1402330603-16547-1-git-send-email-anssi.hannula@iki.fi>
On Mon, Jun 09, 2014 at 07:16:43PM +0300, Anssi Hannula wrote:
> The calculation code does
> u64 = (u32 - u32) * 100000;
>
> The 64 bits are of no help here as the type is casted only after the
> multiplication, and therefore the result may overflow, possibly causing
> inoptimal or wrong clock setup in an unfortunate case (the maximum
> result value of the first substraction is currently 47999).
>
> Fix the code to cast before multiplication.
>
> Signed-off-by: Anssi Hannula <anssi.hannula@iki.fi>
> Cc: Nicolin Chen <Guangyu.Chen@freescale.com>
Acked-by: Nicolin Chen <Guangyu.Chen@freescale.com>
Thank you so much :)
Nicolin
> ---
> sound/soc/fsl/fsl_spdif.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/sound/soc/fsl/fsl_spdif.c b/sound/soc/fsl/fsl_spdif.c
> index b912d45a2a4c..0bd9136279a2 100644
> --- a/sound/soc/fsl/fsl_spdif.c
> +++ b/sound/soc/fsl/fsl_spdif.c
> @@ -1076,7 +1076,7 @@ static u32 fsl_spdif_txclk_caldiv(struct fsl_spdif_priv *spdif_priv,
> goto out;
> } else if (arate / rate[index] == 1) {
> /* A little bigger than expect */
> - sub = (arate - rate[index]) * 100000;
> + sub = (u64)(arate - rate[index]) * 100000;
> do_div(sub, rate[index]);
> if (sub >= savesub)
> continue;
> @@ -1086,7 +1086,7 @@ static u32 fsl_spdif_txclk_caldiv(struct fsl_spdif_priv *spdif_priv,
> spdif_priv->txrate[index] = arate;
> } else if (rate[index] / arate == 1) {
> /* A little smaller than expect */
> - sub = (rate[index] - arate) * 100000;
> + sub = (u64)(rate[index] - arate) * 100000;
> do_div(sub, rate[index]);
> if (sub >= savesub)
> continue;
> --
> 1.8.4.5
>
next prev parent reply other threads:[~2014-06-09 17:26 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-09 16:16 [PATCH] ASoC: fsl_spdif: Fix integer overflow when calculating divisors Anssi Hannula
2014-06-09 17:26 ` Nicolin Chen [this message]
2014-06-09 20:00 ` Mark Brown
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20140609172630.GA7715@MrMyself \
--to=guangyu.chen@freescale.com \
--cc=alsa-devel@alsa-project.org \
--cc=anssi.hannula@iki.fi \
--cc=broonie@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.