From: Tomi Valkeinen <tomi.valkeinen@ti.com>
To: Michal Nazarewicz <mpn@google.com>
Cc: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>,
linux-fbdev@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH RESEND] drivers: video: metronomefb: avoid out-of-bounds array access
Date: Thu, 09 Jan 2014 12:21:58 +0000 [thread overview]
Message-ID: <52CE9466.3000207@ti.com> (raw)
In-Reply-To: <1385743903-9079-1-git-send-email-mpn@google.com>
[-- Attachment #1: Type: text/plain, Size: 2135 bytes --]
On 2013-11-29 18:51, Michal Nazarewicz wrote:
> From: Michal Nazarewicz <mina86@mina86.com>
>
> load_waveform function checks whether padding bytes in stuff2a
> and stuff2b are all zero, but does so by treating those arrays
> as a single longer array. Since the structure is packed, and
> the size sum matches, it all works, but creates some confusion
> in the code.
>
> This commit changes the stuff2a and stuff2b arrays into pad1 and
> pad2 fields such that they cover the same bytes as the arrays
> covered, and changes the check in the load_waveform function so
> that the fields are read instead of iterating over an arary.
>
> It also renames the other “stuff” fields to “ignore*” fields to
> give them more semantic meaning.
>
> Signed-off-by: Michal Nazarewicz <mina86@mina86.com>
> ---
> drivers/video/metronomefb.c | 17 ++++++++---------
> 1 file changed, 8 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/video/metronomefb.c b/drivers/video/metronomefb.c
> index 195cc2d..4f36a2b 100644
> --- a/drivers/video/metronomefb.c
> +++ b/drivers/video/metronomefb.c
> @@ -126,7 +126,7 @@ static struct fb_var_screeninfo metronomefb_var = {
>
> /* the waveform structure that is coming from userspace firmware */
> struct waveform_hdr {
> - u8 stuff[32];
> + u8 ignore1[32];
>
> u8 wmta[3];
> u8 fvsn;
> @@ -134,13 +134,14 @@ struct waveform_hdr {
> u8 luts;
> u8 mc;
> u8 trc;
> - u8 stuff3;
> + u8 ignore2;
>
> u8 endb;
> u8 swtb;
> - u8 stuff2a[2];
> + u32 pad1; /* u16 halfof(pad1) */
>
> - u8 stuff2b[3];
> + /* u16 halfof(pad1) */
> + u8 pad2;
I don't quite follow what those comments mean...
I know nothing of the hw in question, but I guess there's some reason
the stuff2a and stuff2b has been separate, and there's even a blank line
between. If they pad a particular block in the data structure, doesn't
your change make it confusing?
It wouldn't be too pad to have those 5 fields as separate ones. One u16
for the stuff2a, and u16 + u8 for the stuff2b. It'd be simple to check
that those are zero.
Tomi
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 901 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: Tomi Valkeinen <tomi.valkeinen@ti.com>
To: Michal Nazarewicz <mpn@google.com>
Cc: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>,
<linux-fbdev@vger.kernel.org>, <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH RESEND] drivers: video: metronomefb: avoid out-of-bounds array access
Date: Thu, 9 Jan 2014 14:21:58 +0200 [thread overview]
Message-ID: <52CE9466.3000207@ti.com> (raw)
In-Reply-To: <1385743903-9079-1-git-send-email-mpn@google.com>
[-- Attachment #1: Type: text/plain, Size: 2135 bytes --]
On 2013-11-29 18:51, Michal Nazarewicz wrote:
> From: Michal Nazarewicz <mina86@mina86.com>
>
> load_waveform function checks whether padding bytes in stuff2a
> and stuff2b are all zero, but does so by treating those arrays
> as a single longer array. Since the structure is packed, and
> the size sum matches, it all works, but creates some confusion
> in the code.
>
> This commit changes the stuff2a and stuff2b arrays into pad1 and
> pad2 fields such that they cover the same bytes as the arrays
> covered, and changes the check in the load_waveform function so
> that the fields are read instead of iterating over an arary.
>
> It also renames the other “stuff” fields to “ignore*” fields to
> give them more semantic meaning.
>
> Signed-off-by: Michal Nazarewicz <mina86@mina86.com>
> ---
> drivers/video/metronomefb.c | 17 ++++++++---------
> 1 file changed, 8 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/video/metronomefb.c b/drivers/video/metronomefb.c
> index 195cc2d..4f36a2b 100644
> --- a/drivers/video/metronomefb.c
> +++ b/drivers/video/metronomefb.c
> @@ -126,7 +126,7 @@ static struct fb_var_screeninfo metronomefb_var = {
>
> /* the waveform structure that is coming from userspace firmware */
> struct waveform_hdr {
> - u8 stuff[32];
> + u8 ignore1[32];
>
> u8 wmta[3];
> u8 fvsn;
> @@ -134,13 +134,14 @@ struct waveform_hdr {
> u8 luts;
> u8 mc;
> u8 trc;
> - u8 stuff3;
> + u8 ignore2;
>
> u8 endb;
> u8 swtb;
> - u8 stuff2a[2];
> + u32 pad1; /* u16 halfof(pad1) */
>
> - u8 stuff2b[3];
> + /* u16 halfof(pad1) */
> + u8 pad2;
I don't quite follow what those comments mean...
I know nothing of the hw in question, but I guess there's some reason
the stuff2a and stuff2b has been separate, and there's even a blank line
between. If they pad a particular block in the data structure, doesn't
your change make it confusing?
It wouldn't be too pad to have those 5 fields as separate ones. One u16
for the stuff2a, and u16 + u8 for the stuff2b. It'd be simple to check
that those are zero.
Tomi
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 901 bytes --]
next prev parent reply other threads:[~2014-01-09 12:21 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-29 16:51 [PATCH RESEND] drivers: video: metronomefb: avoid out-of-bounds array access Michal Nazarewicz
2013-11-29 16:51 ` Michal Nazarewicz
2014-01-09 12:21 ` Tomi Valkeinen [this message]
2014-01-09 12:21 ` Tomi Valkeinen
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=52CE9466.3000207@ti.com \
--to=tomi.valkeinen@ti.com \
--cc=linux-fbdev@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mpn@google.com \
--cc=plagnioj@jcrosoft.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 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.