From: Takashi Iwai <tiwai@suse.de>
To: Wu Fengguang <fengguang.wu@intel.com>
Cc: Chaohong Guo <chaohong.guo@intel.com>,
alsa-devel@alsa-project.org,
John Villalovos <jvillalo@redhat.com>
Subject: Re: [PATCH] hda: add bounds checking for the codec command fields v2
Date: Fri, 17 Jul 2009 11:28:52 +0200 [thread overview]
Message-ID: <s5h63draca3.wl%tiwai@suse.de> (raw)
In-Reply-To: <20090717084919.GA24645@localhost>
At Fri, 17 Jul 2009 16:49:19 +0800,
Wu Fengguang wrote:
>
> On Fri, Jul 17, 2009 at 04:27:03PM +0800, Wu Fengguang wrote:
> > On Fri, Jul 17, 2009 at 04:24:10PM +0800, Wu Fengguang wrote:
> > > A recent bug involves passing auto detected >0x7f NID to codec command,
> > > creating an invalid codec addr field, and finally lead to cmd timeout
> > > and fall back into single command mode. Jaroslav fixed that bug in
> > > alc880_parse_auto_config().
> > >
> > > It would be safer to further check the bounds of all cmd fields.
> > >
> > > Cc: Jaroslav Kysela <perex@perex.cz>
> > > Signed-off-by: Wu Fengguang <fengguang.wu@intel.com>
> > > ---
> > > diff --git a/sound/pci/hda/hda_codec.c b/sound/pci/hda/hda_codec.c
> > > index 462e2ce..7d09650 100644
> > > --- a/sound/pci/hda/hda_codec.c
> > > +++ b/sound/pci/hda/hda_codec.c
> > > @@ -150,6 +150,16 @@ make_codec_cmd(struct hda_codec *codec, hda_nid_t nid, int direct,
> > > {
> > > u32 val;
> > >
> > > + if ((direct & ~1) || (nid & ~0x7f) ||
> > > + (verb & ~0xfff) || (parm & ~0xff)) {
> > > + printk(KERN_ERR "hda-codec: out of range cmd %x:%x:%x:%x:%x\n",
> > > + codec->addr, direct, nid, verb, parm);
> >
> > Maybe we shall simply return here?
>
> Here it is :)
>
> ---
> hda: add bounds checking for the codec command fields
>
> A recent bug involves passing auto detected >0x7f NID to codec command,
> creating an invalid codec addr field, and finally lead to cmd timeout
> and fall back into single command mode. Jaroslav fixed that bug in
> alc880_parse_auto_config().
>
> It would be safer to further check the bounds of all cmd fields.
>
> Cc: Jaroslav Kysela <perex@perex.cz>
> Signed-off-by: Wu Fengguang <fengguang.wu@intel.com>
Looks good. Applied now.
Thanks!
Takashi
> ---
> sound/pci/hda/hda_codec.c | 12 +++++++++++-
> 1 file changed, 11 insertions(+), 1 deletion(-)
>
> --- sound-2.6.orig/sound/pci/hda/hda_codec.c
> +++ sound-2.6/sound/pci/hda/hda_codec.c
> @@ -150,7 +150,14 @@ make_codec_cmd(struct hda_codec *codec,
> {
> u32 val;
>
> - val = (u32)(codec->addr & 0x0f) << 28;
> + if ((codec->addr & ~0xf) | (direct & ~1) | (nid & ~0x7f) |
> + (verb & ~0xfff) | (parm & ~0xff)) {
> + printk(KERN_ERR "hda-codec: out of range cmd %x:%x:%x:%x:%x\n",
> + codec->addr, direct, nid, verb, parm);
> + return ~0;
> + }
> +
> + val = (u32)codec->addr << 28;
> val |= (u32)direct << 27;
> val |= (u32)nid << 20;
> val |= verb << 8;
> @@ -167,6 +174,9 @@ static int codec_exec_verb(struct hda_co
> struct hda_bus *bus = codec->bus;
> int err;
>
> + if (cmd == ~0)
> + return -1;
> +
> if (res)
> *res = -1;
> again:
>
next prev parent reply other threads:[~2009-07-17 9:28 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-07-17 8:24 [PATCH] hda: add bounds checking for the codec command fields Wu Fengguang
2009-07-17 8:27 ` Wu Fengguang
2009-07-17 8:49 ` [PATCH] hda: add bounds checking for the codec command fields v2 Wu Fengguang
2009-07-17 9:28 ` Takashi Iwai [this message]
[not found] ` <BB1F052FCDB1EA468BD99786C8B1ED2C05871FFCB9@PDSMSX501.ccr.corp.intel.com>
[not found] ` <s5hljmn8u52.wl%tiwai@suse.de>
2009-07-17 10:53 ` Takashi Iwai
2009-07-17 11:10 ` Wu Fengguang
2009-07-17 11:05 ` Wu Fengguang
2009-07-20 2:13 ` Guo, Chaohong
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=s5h63draca3.wl%tiwai@suse.de \
--to=tiwai@suse.de \
--cc=alsa-devel@alsa-project.org \
--cc=chaohong.guo@intel.com \
--cc=fengguang.wu@intel.com \
--cc=jvillalo@redhat.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