From: Mateusz Guzik <mguzik@redhat.com>
To: Jiri Kosina <jkosina@suse.cz>
Cc: Nicholas Krause <xerofoify@gmail.com>,
linux-input@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2] hid-appleir: Fix kernel panic due to null pointer
Date: Tue, 1 Jul 2014 08:50:22 +0200 [thread overview]
Message-ID: <20140701065021.GA887@mguzik.redhat.com> (raw)
In-Reply-To: <alpine.LNX.2.00.1407010837370.1655@pobox.suse.cz>
On Tue, Jul 01, 2014 at 08:39:06AM +0200, Jiri Kosina wrote:
> On Mon, 30 Jun 2014, Nicholas Krause wrote:
>
> > Fixes a null pointer in appleir_input_configured due to reading
> > into wrong size array. Changed the variable to input_dev->keycodemax.
>
> This is a stale changelog from the previous buggy version.
>
> > Signed-off-by: Nicholas Krause <xerofoify@gmail.com>
> > ---
> > drivers/hid/hid-appleir.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/hid/hid-appleir.c b/drivers/hid/hid-appleir.c
> > index 0e6a42d..cc02df4 100644
> > --- a/drivers/hid/hid-appleir.c
> > +++ b/drivers/hid/hid-appleir.c
> > @@ -272,7 +272,7 @@ static void appleir_input_configured(struct hid_device *hid,
> > input_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_REP);
> >
> > memcpy(appleir->keymap, appleir_key_table, sizeof(appleir->keymap));
> > - for (i = 0; i < ARRAY_SIZE(appleir_key_table); i++)
> > + for (i = 0; i < appleir->keymap; i++)
>
> This is wrong. appleir->keymap is an array, and you want to count its
> elements.
>
But where the claim of 'null pointer' is coming from (or reading/writing
past the array for that matter)?
Replacing appleir_key_table with appleir->keymap is a noop anyway
because:
unsigned short keymap[ARRAY_SIZE(appleir_key_table)];
although one may argue is slightly nicer since it is used in memcpy line
earlier.
--
Mateusz Guzik
next prev parent reply other threads:[~2014-07-01 6:50 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-01 2:14 [PATCH v2] hid-appleir: Fix kernel panic due to null pointer Nicholas Krause
2014-07-01 6:39 ` Jiri Kosina
2014-07-01 6:50 ` Mateusz Guzik [this message]
2014-07-01 6:55 ` Jiri Kosina
2014-07-01 22:21 ` Nick Krause
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=20140701065021.GA887@mguzik.redhat.com \
--to=mguzik@redhat.com \
--cc=jkosina@suse.cz \
--cc=linux-input@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=xerofoify@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 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.