alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* [patch] ALSA: echoaudio: use after free on error
@ 2014-03-05 11:07 Dan Carpenter
  2014-03-05 11:12 ` Takashi Iwai
  2014-03-05 11:21 ` walter harms
  0 siblings, 2 replies; 4+ messages in thread
From: Dan Carpenter @ 2014-03-05 11:07 UTC (permalink / raw)
  To: Jaroslav Kysela; +Cc: Takashi Iwai, alsa-devel, kernel-janitors

There are some places where we dereference "chip" in the error message
but we've already freed it.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>

diff --git a/sound/pci/echoaudio/echoaudio.c b/sound/pci/echoaudio/echoaudio.c
index 166ec0c120d4..9f10c9e0df5e 100644
--- a/sound/pci/echoaudio/echoaudio.c
+++ b/sound/pci/echoaudio/echoaudio.c
@@ -1990,8 +1990,8 @@ static int snd_echo_create(struct snd_card *card,
 
 	if ((chip->iores = request_mem_region(chip->dsp_registers_phys, sz,
 					      ECHOCARD_NAME)) == NULL) {
-		snd_echo_free(chip);
 		dev_err(chip->card->dev, "cannot get memory region\n");
+		snd_echo_free(chip);
 		return -EBUSY;
 	}
 	chip->dsp_registers = (volatile u32 __iomem *)
@@ -1999,8 +1999,8 @@ static int snd_echo_create(struct snd_card *card,
 
 	if (request_irq(pci->irq, snd_echo_interrupt, IRQF_SHARED,
 			KBUILD_MODNAME, chip)) {
-		snd_echo_free(chip);
 		dev_err(chip->card->dev, "cannot grab irq\n");
+		snd_echo_free(chip);
 		return -EBUSY;
 	}
 	chip->irq = pci->irq;
@@ -2012,8 +2012,8 @@ static int snd_echo_create(struct snd_card *card,
 	if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(chip->pci),
 				sizeof(struct comm_page),
 				&chip->commpage_dma_buf) < 0) {
-		snd_echo_free(chip);
 		dev_err(chip->card->dev, "cannot allocate the comm page\n");
+		snd_echo_free(chip);
 		return -ENOMEM;
 	}
 	chip->comm_page_phys = chip->commpage_dma_buf.addr;
@@ -2291,8 +2291,8 @@ static int snd_echo_resume(struct device *dev)
 
 	if (request_irq(pci->irq, snd_echo_interrupt, IRQF_SHARED,
 			KBUILD_MODNAME, chip)) {
-		snd_echo_free(chip);
 		dev_err(chip->card->dev, "cannot grab irq\n");
+		snd_echo_free(chip);
 		return -EBUSY;
 	}
 	chip->irq = pci->irq;

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

* Re: [patch] ALSA: echoaudio: use after free on error
  2014-03-05 11:07 [patch] ALSA: echoaudio: use after free on error Dan Carpenter
@ 2014-03-05 11:12 ` Takashi Iwai
  2014-03-05 11:21 ` walter harms
  1 sibling, 0 replies; 4+ messages in thread
From: Takashi Iwai @ 2014-03-05 11:12 UTC (permalink / raw)
  To: Dan Carpenter; +Cc: Jaroslav Kysela, alsa-devel, kernel-janitors

At Wed, 5 Mar 2014 14:07:15 +0300,
Dan Carpenter wrote:
> 
> There are some places where we dereference "chip" in the error message
> but we've already freed it.
> 
> Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>

Thanks, applied.


Takashi

> 
> diff --git a/sound/pci/echoaudio/echoaudio.c b/sound/pci/echoaudio/echoaudio.c
> index 166ec0c120d4..9f10c9e0df5e 100644
> --- a/sound/pci/echoaudio/echoaudio.c
> +++ b/sound/pci/echoaudio/echoaudio.c
> @@ -1990,8 +1990,8 @@ static int snd_echo_create(struct snd_card *card,
>  
>  	if ((chip->iores = request_mem_region(chip->dsp_registers_phys, sz,
>  					      ECHOCARD_NAME)) == NULL) {
> -		snd_echo_free(chip);
>  		dev_err(chip->card->dev, "cannot get memory region\n");
> +		snd_echo_free(chip);
>  		return -EBUSY;
>  	}
>  	chip->dsp_registers = (volatile u32 __iomem *)
> @@ -1999,8 +1999,8 @@ static int snd_echo_create(struct snd_card *card,
>  
>  	if (request_irq(pci->irq, snd_echo_interrupt, IRQF_SHARED,
>  			KBUILD_MODNAME, chip)) {
> -		snd_echo_free(chip);
>  		dev_err(chip->card->dev, "cannot grab irq\n");
> +		snd_echo_free(chip);
>  		return -EBUSY;
>  	}
>  	chip->irq = pci->irq;
> @@ -2012,8 +2012,8 @@ static int snd_echo_create(struct snd_card *card,
>  	if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(chip->pci),
>  				sizeof(struct comm_page),
>  				&chip->commpage_dma_buf) < 0) {
> -		snd_echo_free(chip);
>  		dev_err(chip->card->dev, "cannot allocate the comm page\n");
> +		snd_echo_free(chip);
>  		return -ENOMEM;
>  	}
>  	chip->comm_page_phys = chip->commpage_dma_buf.addr;
> @@ -2291,8 +2291,8 @@ static int snd_echo_resume(struct device *dev)
>  
>  	if (request_irq(pci->irq, snd_echo_interrupt, IRQF_SHARED,
>  			KBUILD_MODNAME, chip)) {
> -		snd_echo_free(chip);
>  		dev_err(chip->card->dev, "cannot grab irq\n");
> +		snd_echo_free(chip);
>  		return -EBUSY;
>  	}
>  	chip->irq = pci->irq;
> 

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

* Re: [patch] ALSA: echoaudio: use after free on error
  2014-03-05 11:07 [patch] ALSA: echoaudio: use after free on error Dan Carpenter
  2014-03-05 11:12 ` Takashi Iwai
@ 2014-03-05 11:21 ` walter harms
  2014-03-05 11:25   ` Takashi Iwai
  1 sibling, 1 reply; 4+ messages in thread
From: walter harms @ 2014-03-05 11:21 UTC (permalink / raw)
  To: Dan Carpenter; +Cc: Jaroslav Kysela, Takashi Iwai, alsa-devel, kernel-janitors



Am 05.03.2014 12:07, schrieb Dan Carpenter:
> There are some places where we dereference "chip" in the error message
> but we've already freed it.
> 
> Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
> 
> diff --git a/sound/pci/echoaudio/echoaudio.c b/sound/pci/echoaudio/echoaudio.c
> index 166ec0c120d4..9f10c9e0df5e 100644
> --- a/sound/pci/echoaudio/echoaudio.c
> +++ b/sound/pci/echoaudio/echoaudio.c
> @@ -1990,8 +1990,8 @@ static int snd_echo_create(struct snd_card *card,
>  
>  	if ((chip->iores = request_mem_region(chip->dsp_registers_phys, sz,
>  					      ECHOCARD_NAME)) == NULL) {


this should read:
chip->iores = request_mem_region(chip->dsp_registers_phys, sz,ECHOCARD_NAME);
if (chip->iores == NULL) {

re,
 wh

> -		snd_echo_free(chip);
>  		dev_err(chip->card->dev, "cannot get memory region\n");
> +		snd_echo_free(chip);
>  		return -EBUSY;
>  	}
>  	chip->dsp_registers = (volatile u32 __iomem *)
> @@ -1999,8 +1999,8 @@ static int snd_echo_create(struct snd_card *card,
>  
>  	if (request_irq(pci->irq, snd_echo_interrupt, IRQF_SHARED,
>  			KBUILD_MODNAME, chip)) {
> -		snd_echo_free(chip);
>  		dev_err(chip->card->dev, "cannot grab irq\n");
> +		snd_echo_free(chip);
>  		return -EBUSY;
>  	}
>  	chip->irq = pci->irq;
> @@ -2012,8 +2012,8 @@ static int snd_echo_create(struct snd_card *card,
>  	if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(chip->pci),
>  				sizeof(struct comm_page),
>  				&chip->commpage_dma_buf) < 0) {
> -		snd_echo_free(chip);
>  		dev_err(chip->card->dev, "cannot allocate the comm page\n");
> +		snd_echo_free(chip);
>  		return -ENOMEM;
>  	}
>  	chip->comm_page_phys = chip->commpage_dma_buf.addr;
> @@ -2291,8 +2291,8 @@ static int snd_echo_resume(struct device *dev)
>  
>  	if (request_irq(pci->irq, snd_echo_interrupt, IRQF_SHARED,
>  			KBUILD_MODNAME, chip)) {
> -		snd_echo_free(chip);
>  		dev_err(chip->card->dev, "cannot grab irq\n");
> +		snd_echo_free(chip);
>  		return -EBUSY;
>  	}
>  	chip->irq = pci->irq;
> --
> To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

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

* Re: [patch] ALSA: echoaudio: use after free on error
  2014-03-05 11:21 ` walter harms
@ 2014-03-05 11:25   ` Takashi Iwai
  0 siblings, 0 replies; 4+ messages in thread
From: Takashi Iwai @ 2014-03-05 11:25 UTC (permalink / raw)
  To: wharms; +Cc: Dan Carpenter, Jaroslav Kysela, alsa-devel, kernel-janitors

At Wed, 05 Mar 2014 12:21:29 +0100,
walter harms wrote:
> 
> 
> 
> Am 05.03.2014 12:07, schrieb Dan Carpenter:
> > There are some places where we dereference "chip" in the error message
> > but we've already freed it.
> > 
> > Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
> > 
> > diff --git a/sound/pci/echoaudio/echoaudio.c b/sound/pci/echoaudio/echoaudio.c
> > index 166ec0c120d4..9f10c9e0df5e 100644
> > --- a/sound/pci/echoaudio/echoaudio.c
> > +++ b/sound/pci/echoaudio/echoaudio.c
> > @@ -1990,8 +1990,8 @@ static int snd_echo_create(struct snd_card *card,
> >  
> >  	if ((chip->iores = request_mem_region(chip->dsp_registers_phys, sz,
> >  					      ECHOCARD_NAME)) == NULL) {
> 
> 
> this should read:
> chip->iores = request_mem_region(chip->dsp_registers_phys, sz,ECHOCARD_NAME);
> if (chip->iores == NULL) {

In general, better not to do many things at once.
A fix patch should fix the bug, and that's all.
A coding style cleanup can be done later, if any.


Takashi

> 
> re,
>  wh
> 
> > -		snd_echo_free(chip);
> >  		dev_err(chip->card->dev, "cannot get memory region\n");
> > +		snd_echo_free(chip);
> >  		return -EBUSY;
> >  	}
> >  	chip->dsp_registers = (volatile u32 __iomem *)
> > @@ -1999,8 +1999,8 @@ static int snd_echo_create(struct snd_card *card,
> >  
> >  	if (request_irq(pci->irq, snd_echo_interrupt, IRQF_SHARED,
> >  			KBUILD_MODNAME, chip)) {
> > -		snd_echo_free(chip);
> >  		dev_err(chip->card->dev, "cannot grab irq\n");
> > +		snd_echo_free(chip);
> >  		return -EBUSY;
> >  	}
> >  	chip->irq = pci->irq;
> > @@ -2012,8 +2012,8 @@ static int snd_echo_create(struct snd_card *card,
> >  	if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(chip->pci),
> >  				sizeof(struct comm_page),
> >  				&chip->commpage_dma_buf) < 0) {
> > -		snd_echo_free(chip);
> >  		dev_err(chip->card->dev, "cannot allocate the comm page\n");
> > +		snd_echo_free(chip);
> >  		return -ENOMEM;
> >  	}
> >  	chip->comm_page_phys = chip->commpage_dma_buf.addr;
> > @@ -2291,8 +2291,8 @@ static int snd_echo_resume(struct device *dev)
> >  
> >  	if (request_irq(pci->irq, snd_echo_interrupt, IRQF_SHARED,
> >  			KBUILD_MODNAME, chip)) {
> > -		snd_echo_free(chip);
> >  		dev_err(chip->card->dev, "cannot grab irq\n");
> > +		snd_echo_free(chip);
> >  		return -EBUSY;
> >  	}
> >  	chip->irq = pci->irq;
> > --
> > To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> > 
> 

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

end of thread, other threads:[~2014-03-05 11:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-05 11:07 [patch] ALSA: echoaudio: use after free on error Dan Carpenter
2014-03-05 11:12 ` Takashi Iwai
2014-03-05 11:21 ` walter harms
2014-03-05 11:25   ` Takashi Iwai

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).