From: "CK Hu (胡俊光)" <ck.hu@mediatek.com>
To: "Jason-JH Lin (林睿祥)" <Jason-JH.Lin@mediatek.com>,
"chunkuang.hu@kernel.org" <chunkuang.hu@kernel.org>,
"angelogioacchino.delregno@collabora.com"
<angelogioacchino.delregno@collabora.com>
Cc: "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"Singo Chang (張興國)" <Singo.Chang@mediatek.com>,
"linux-mediatek@lists.infradead.org"
<linux-mediatek@lists.infradead.org>,
"Jason-ch Chen (陳建豪)" <Jason-ch.Chen@mediatek.com>,
"Shawn Sung (宋孝謙)" <Shawn.Sung@mediatek.com>,
"Nancy Lin (林欣螢)" <Nancy.Lin@mediatek.com>,
"dri-devel@lists.freedesktop.org"
<dri-devel@lists.freedesktop.org>,
Project_Global_Chrome_Upstream_Group
<Project_Global_Chrome_Upstream_Group@mediatek.com>,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>,
"matthias.bgg@gmail.com" <matthias.bgg@gmail.com>,
"Rex-BC Chen (陳柏辰)" <Rex-BC.Chen@mediatek.com>
Subject: Re: [PATCH 2/5] drm/mediatek: Add cnt checking for coverity issue
Date: Mon, 12 Jun 2023 08:21:25 +0000 [thread overview]
Message-ID: <04d7db4fe0b8965da63f3f240289639941b7298d.camel@mediatek.com> (raw)
In-Reply-To: <20230407064657.12350-3-jason-jh.lin@mediatek.com>
Hi, Jason:
On Fri, 2023-04-07 at 14:46 +0800, Jason-JH.Lin wrote:
> CERT-C Characters and Strings (CERT STR31-C)
> all_drm_priv[cnt] evaluates to an address that could be at negative
> offset of an array.
>
> In mtk_drm_get_all_drm_priv():
> Guarantee that storage for strings has sufficient space for character
> data and the null terminator.
>
> So change cnt to unsigned int and check its max value.
>
> Signed-off-by: Jason-JH.Lin <jason-jh.lin@mediatek.com>
> Fixes: 1ef7ed48356c ("drm/mediatek: Modify mediatek-drm for mt8195
> multi mmsys support")
> ---
> drivers/gpu/drm/mediatek/mtk_drm_drv.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/mediatek/mtk_drm_drv.c
> b/drivers/gpu/drm/mediatek/mtk_drm_drv.c
> index 86255a066faf..fcfa10332166 100644
> --- a/drivers/gpu/drm/mediatek/mtk_drm_drv.c
> +++ b/drivers/gpu/drm/mediatek/mtk_drm_drv.c
> @@ -378,7 +378,7 @@ static bool mtk_drm_get_all_drm_priv(struct
> device *dev)
> const struct of_device_id *of_id;
> struct device_node *node;
> struct device *drm_dev;
> - int cnt = 0;
> + unsigned int cnt = 0;
> int i, j;
>
> for_each_child_of_node(phandle->parent, node) {
> @@ -397,7 +397,7 @@ static bool mtk_drm_get_all_drm_priv(struct
> device *dev)
> continue;
>
> all_drm_priv[cnt] = dev_get_drvdata(drm_dev);
> - if (all_drm_priv[cnt] && all_drm_priv[cnt]-
> >mtk_drm_bound)
> + if (cnt < MAX_CRTC && all_drm_priv[cnt] &&
> all_drm_priv[cnt]->mtk_drm_bound)
> cnt++;
I would like to add below statement here:
if (cnt == MAX_CRTC)
break;
Regards,
CK
> }
>
next prev parent reply other threads:[~2023-06-12 8:22 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20230407064657.12350-1-jason-jh.lin@mediatek.com>
[not found] ` <20230407064657.12350-2-jason-jh.lin@mediatek.com>
2023-06-12 8:06 ` [PATCH 1/5] drm/mediatek: Remove freeing not dynamic allocated memory CK Hu (胡俊光)
2023-06-13 7:06 ` Jason-JH Lin (林睿祥)
[not found] ` <20230407064657.12350-3-jason-jh.lin@mediatek.com>
2023-06-12 8:21 ` CK Hu (胡俊光) [this message]
2023-06-13 7:07 ` [PATCH 2/5] drm/mediatek: Add cnt checking for coverity issue Jason-JH Lin (林睿祥)
[not found] ` <20230407064657.12350-4-jason-jh.lin@mediatek.com>
2023-06-12 8:27 ` [PATCH 3/5] drm/mediatek: Add initialization for mtk_gem_obj CK Hu (胡俊光)
2023-06-13 7:20 ` Jason-JH Lin (林睿祥)
[not found] ` <20230407064657.12350-5-jason-jh.lin@mediatek.com>
2023-06-12 9:05 ` [PATCH 4/5] drm/mediatek: Add casting before assign CK Hu (胡俊光)
2023-06-13 8:26 ` Jason-JH Lin (林睿祥)
[not found] ` <20230407064657.12350-6-jason-jh.lin@mediatek.com>
2023-06-12 9:10 ` [PATCH 5/5] drm/mediatek: Fix dereference before null check CK Hu (胡俊光)
2023-06-13 9:05 ` Jason-JH Lin (林睿祥)
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=04d7db4fe0b8965da63f3f240289639941b7298d.camel@mediatek.com \
--to=ck.hu@mediatek.com \
--cc=Jason-JH.Lin@mediatek.com \
--cc=Jason-ch.Chen@mediatek.com \
--cc=Nancy.Lin@mediatek.com \
--cc=Project_Global_Chrome_Upstream_Group@mediatek.com \
--cc=Rex-BC.Chen@mediatek.com \
--cc=Shawn.Sung@mediatek.com \
--cc=Singo.Chang@mediatek.com \
--cc=angelogioacchino.delregno@collabora.com \
--cc=chunkuang.hu@kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=matthias.bgg@gmail.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®