public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] SOUND: usb/endpoint, fix dangling pointer use
@ 2010-06-21 15:03 Jiri Slaby
  2010-06-21 15:05 ` Daniel Mack
  0 siblings, 1 reply; 3+ messages in thread
From: Jiri Slaby @ 2010-06-21 15:03 UTC (permalink / raw)
  To: tiwai; +Cc: alsa-devel, linux-kernel, jirislaby, Daniel Mack, Clemens Ladisch

Stanse found that in snd_usb_parse_audio_endpoints, there is a
dangling pointer dereference. When snd_usb_parse_audio_format fails,
fp is freed, and continue invoked. On the next loop, there is
"fp && fp->altsetting == 1 && fp->channels == 1" test, but fp is set
from the last iteration (but is bogus) and thus ilegally dereferenced.

Set fp to NULL before "continue".

Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Cc: Daniel Mack <daniel@caiaq.de>
Cc: Clemens Ladisch <clemens@ladisch.de>
Cc: Takashi Iwai <tiwai@suse.de>
---
 sound/usb/endpoint.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/sound/usb/endpoint.c b/sound/usb/endpoint.c
index 9593b91..6f6596c 100644
--- a/sound/usb/endpoint.c
+++ b/sound/usb/endpoint.c
@@ -427,6 +427,7 @@ int snd_usb_parse_audio_endpoints(struct snd_usb_audio *chip, int iface_no)
 		if (snd_usb_parse_audio_format(chip, fp, format, fmt, stream, alts) < 0) {
 			kfree(fp->rate_table);
 			kfree(fp);
+			fp = NULL;
 			continue;
 		}
 
-- 
1.7.1



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] SOUND: usb/endpoint, fix dangling pointer use
  2010-06-21 15:03 [PATCH] SOUND: usb/endpoint, fix dangling pointer use Jiri Slaby
@ 2010-06-21 15:05 ` Daniel Mack
  2010-06-21 15:09   ` Takashi Iwai
  0 siblings, 1 reply; 3+ messages in thread
From: Daniel Mack @ 2010-06-21 15:05 UTC (permalink / raw)
  To: Jiri Slaby; +Cc: tiwai, alsa-devel, linux-kernel, jirislaby, Clemens Ladisch

On Mon, Jun 21, 2010 at 05:03:21PM +0200, Jiri Slaby wrote:
> Stanse found that in snd_usb_parse_audio_endpoints, there is a
> dangling pointer dereference. When snd_usb_parse_audio_format fails,
> fp is freed, and continue invoked. On the next loop, there is
> "fp && fp->altsetting == 1 && fp->channels == 1" test, but fp is set
> from the last iteration (but is bogus) and thus ilegally dereferenced.
> 
> Set fp to NULL before "continue".

Oh, absolutely. Thanks.

> Signed-off-by: Jiri Slaby <jslaby@suse.cz>

Acked-by: Daniel Mack <daniel@caiaq.de>

I think this should go thru the ALSA tree.


Daniel


> Cc: Clemens Ladisch <clemens@ladisch.de>
> Cc: Takashi Iwai <tiwai@suse.de>
> ---
>  sound/usb/endpoint.c |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/sound/usb/endpoint.c b/sound/usb/endpoint.c
> index 9593b91..6f6596c 100644
> --- a/sound/usb/endpoint.c
> +++ b/sound/usb/endpoint.c
> @@ -427,6 +427,7 @@ int snd_usb_parse_audio_endpoints(struct snd_usb_audio *chip, int iface_no)
>  		if (snd_usb_parse_audio_format(chip, fp, format, fmt, stream, alts) < 0) {
>  			kfree(fp->rate_table);
>  			kfree(fp);
> +			fp = NULL;
>  			continue;
>  		}
>  
> -- 
> 1.7.1
> 
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] SOUND: usb/endpoint, fix dangling pointer use
  2010-06-21 15:05 ` Daniel Mack
@ 2010-06-21 15:09   ` Takashi Iwai
  0 siblings, 0 replies; 3+ messages in thread
From: Takashi Iwai @ 2010-06-21 15:09 UTC (permalink / raw)
  To: Daniel Mack
  Cc: Jiri Slaby, alsa-devel, linux-kernel, jirislaby, Clemens Ladisch

At Mon, 21 Jun 2010 17:05:16 +0200,
Daniel Mack wrote:
> 
> On Mon, Jun 21, 2010 at 05:03:21PM +0200, Jiri Slaby wrote:
> > Stanse found that in snd_usb_parse_audio_endpoints, there is a
> > dangling pointer dereference. When snd_usb_parse_audio_format fails,
> > fp is freed, and continue invoked. On the next loop, there is
> > "fp && fp->altsetting == 1 && fp->channels == 1" test, but fp is set
> > from the last iteration (but is bogus) and thus ilegally dereferenced.
> > 
> > Set fp to NULL before "continue".
> 
> Oh, absolutely. Thanks.
> 
> > Signed-off-by: Jiri Slaby <jslaby@suse.cz>
> 
> Acked-by: Daniel Mack <daniel@caiaq.de>
> 
> I think this should go thru the ALSA tree.

Yep, I applied it now.  Thanks!


Takashi

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-06-21 15:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-21 15:03 [PATCH] SOUND: usb/endpoint, fix dangling pointer use Jiri Slaby
2010-06-21 15:05 ` Daniel Mack
2010-06-21 15:09   ` Takashi Iwai

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox