From: walter harms <wharms@bfs.de>
To: Colin King <colin.king@canonical.com>
Cc: Amit Kucheria <amit.kucheria@linaro.org>,
Andy Gross <agross@kernel.org>, Zhang Rui <rui.zhang@intel.com>,
Eduardo Valentin <edubezval@gmail.com>,
Daniel Lezcano <daniel.lezcano@linaro.org>,
Stephen Boyd <swboyd@chromium.org>,
linux-pm@vger.kernel.org, linux-arm-msm@vger.kernel.org,
kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH][next] drivers: thermal: tsens: fix potential integer overflow on multiply
Date: Tue, 22 Oct 2019 12:46:21 +0000 [thread overview]
Message-ID: <5DAEFA1D.8070508@bfs.de> (raw)
In-Reply-To: <20191022114910.652-1-colin.king@canonical.com>
Am 22.10.2019 13:49, schrieb Colin King:
> From: Colin Ian King <colin.king@canonical.com>
>
> Currently a multiply operation is being performed on two int values
> and the result is being assigned to a u64, presumably because the
> end result is expected to be probably larger than an int. However,
> because the multiply is an int multiply one can get overflow. Avoid
> the overflow by casting degc to a u64 to force a u64 multiply.
>
> Addresses-Coverity: ("Unintentional integer overflow")
> Fixes: fbfe1a042cfd ("drivers: thermal: tsens: Add interrupt support")
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
> drivers/thermal/qcom/tsens-common.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/thermal/qcom/tsens-common.c b/drivers/thermal/qcom/tsens-common.c
> index 03bf1b8133ea..3d7855106ecd 100644
> --- a/drivers/thermal/qcom/tsens-common.c
> +++ b/drivers/thermal/qcom/tsens-common.c
> @@ -92,7 +92,7 @@ void compute_intercept_slope(struct tsens_priv *priv, u32 *p1,
>
> static inline u32 degc_to_code(int degc, const struct tsens_sensor *s)
> {
> - u64 code = (degc * s->slope + s->offset) / SLOPE_FACTOR;
> + u64 code = ((u64)degc * s->slope + s->offset) / SLOPE_FACTOR;
>
looks ok
just to offer an alternative to avoid the cast;
u64 code = degc;
code = code * s->slope + s->offset;
code/=SLOPE_FACTOR;
ym2c
re,
wh
> pr_debug("%s: raw_code: 0x%llx, degc:%d\n", __func__, code, degc);
> return clamp_val(code, THRESHOLD_MIN_ADC_CODE, THRESHOLD_MAX_ADC_CODE);
WARNING: multiple messages have this Message-ID (diff)
From: walter harms <wharms@bfs.de>
To: Colin King <colin.king@canonical.com>
Cc: Amit Kucheria <amit.kucheria@linaro.org>,
Andy Gross <agross@kernel.org>, Zhang Rui <rui.zhang@intel.com>,
Eduardo Valentin <edubezval@gmail.com>,
Daniel Lezcano <daniel.lezcano@linaro.org>,
Stephen Boyd <swboyd@chromium.org>,
linux-pm@vger.kernel.org, linux-arm-msm@vger.kernel.org,
kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH][next] drivers: thermal: tsens: fix potential integer overflow on multiply
Date: Tue, 22 Oct 2019 14:46:21 +0200 [thread overview]
Message-ID: <5DAEFA1D.8070508@bfs.de> (raw)
In-Reply-To: <20191022114910.652-1-colin.king@canonical.com>
Am 22.10.2019 13:49, schrieb Colin King:
> From: Colin Ian King <colin.king@canonical.com>
>
> Currently a multiply operation is being performed on two int values
> and the result is being assigned to a u64, presumably because the
> end result is expected to be probably larger than an int. However,
> because the multiply is an int multiply one can get overflow. Avoid
> the overflow by casting degc to a u64 to force a u64 multiply.
>
> Addresses-Coverity: ("Unintentional integer overflow")
> Fixes: fbfe1a042cfd ("drivers: thermal: tsens: Add interrupt support")
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
> drivers/thermal/qcom/tsens-common.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/thermal/qcom/tsens-common.c b/drivers/thermal/qcom/tsens-common.c
> index 03bf1b8133ea..3d7855106ecd 100644
> --- a/drivers/thermal/qcom/tsens-common.c
> +++ b/drivers/thermal/qcom/tsens-common.c
> @@ -92,7 +92,7 @@ void compute_intercept_slope(struct tsens_priv *priv, u32 *p1,
>
> static inline u32 degc_to_code(int degc, const struct tsens_sensor *s)
> {
> - u64 code = (degc * s->slope + s->offset) / SLOPE_FACTOR;
> + u64 code = ((u64)degc * s->slope + s->offset) / SLOPE_FACTOR;
>
looks ok
just to offer an alternative to avoid the cast;
u64 code = degc;
code = code * s->slope + s->offset;
code/=SLOPE_FACTOR;
ym2c
re,
wh
> pr_debug("%s: raw_code: 0x%llx, degc:%d\n", __func__, code, degc);
> return clamp_val(code, THRESHOLD_MIN_ADC_CODE, THRESHOLD_MAX_ADC_CODE);
next prev parent reply other threads:[~2019-10-22 12:46 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-10-22 11:49 [PATCH][next] drivers: thermal: tsens: fix potential integer overflow on multiply Colin King
2019-10-22 11:49 ` Colin King
2019-10-22 12:46 ` walter harms [this message]
2019-10-22 12:46 ` walter harms
2019-10-29 19:40 ` Daniel Lezcano
2019-10-29 19:40 ` Daniel Lezcano
2019-10-30 12:52 ` Amit Kucheria
2019-10-30 12:53 ` Amit Kucheria
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=5DAEFA1D.8070508@bfs.de \
--to=wharms@bfs.de \
--cc=agross@kernel.org \
--cc=amit.kucheria@linaro.org \
--cc=colin.king@canonical.com \
--cc=daniel.lezcano@linaro.org \
--cc=edubezval@gmail.com \
--cc=kernel-janitors@vger.kernel.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=rui.zhang@intel.com \
--cc=swboyd@chromium.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.