alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ALSA: mts64: fix NULL pointer dereference
@ 2016-02-29 12:13 Sudip Mukherjee
  2016-02-29 12:24 ` Takashi Iwai
  0 siblings, 1 reply; 3+ messages in thread
From: Sudip Mukherjee @ 2016-02-29 12:13 UTC (permalink / raw)
  To: Jaroslav Kysela, Takashi Iwai; +Cc: linux-kernel, alsa-devel, Sudip Mukherjee

While registering pardev, the irq_func was also registered. As a
result when we tried to probe for the card, an interrupt was generated
and in the ISR we tried to dereference private_data. But private_data
is still NULL as we have not yet done snd_mts64_create(). Lets probe
for the card after mts64 is created.

Reported-by: Fengguang Wu <fengguang.wu@intel.com>
Fixes: 94a573500d48 ("ALSA: mts64: use new parport device model")
Signed-off-by: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
---
 sound/drivers/mts64.c | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/sound/drivers/mts64.c b/sound/drivers/mts64.c
index c76bd87..fd4d18d 100644
--- a/sound/drivers/mts64.c
+++ b/sound/drivers/mts64.c
@@ -964,11 +964,6 @@ static int snd_mts64_probe(struct platform_device *pdev)
 		err = -EIO;
 		goto free_pardev;
 	}
-	err = mts64_probe(p);
-	if (err) {
-		err = -EIO;
-		goto release_pardev;
-	}
 
 	if ((err = snd_mts64_create(card, pardev, &mts)) < 0) {
 		snd_printd("Cannot create main component\n");
@@ -976,6 +971,12 @@ static int snd_mts64_probe(struct platform_device *pdev)
 	}
 	card->private_data = mts;
 	card->private_free = snd_mts64_card_private_free;
+
+	err = mts64_probe(p);
+	if (err) {
+		err = -EIO;
+		goto __err;
+	}
 	
 	if ((err = snd_mts64_rawmidi_create(card)) < 0) {
 		snd_printd("Creating Rawmidi component failed\n");
-- 
1.9.1

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

* Re: [PATCH] ALSA: mts64: fix NULL pointer dereference
  2016-02-29 12:13 [PATCH] ALSA: mts64: fix NULL pointer dereference Sudip Mukherjee
@ 2016-02-29 12:24 ` Takashi Iwai
  2016-02-29 16:22   ` Sudip Mukherjee
  0 siblings, 1 reply; 3+ messages in thread
From: Takashi Iwai @ 2016-02-29 12:24 UTC (permalink / raw)
  To: Sudip Mukherjee; +Cc: Jaroslav Kysela, alsa-devel, linux-kernel

On Mon, 29 Feb 2016 13:13:30 +0100,
Sudip Mukherjee wrote:
> 
> While registering pardev, the irq_func was also registered. As a
> result when we tried to probe for the card, an interrupt was generated
> and in the ISR we tried to dereference private_data. But private_data
> is still NULL as we have not yet done snd_mts64_create(). Lets probe
> for the card after mts64 is created.
> 
> Reported-by: Fengguang Wu <fengguang.wu@intel.com>
> Fixes: 94a573500d48 ("ALSA: mts64: use new parport device model")
> Signed-off-by: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>

Applied, thanks.


Takashi

> ---
>  sound/drivers/mts64.c | 11 ++++++-----
>  1 file changed, 6 insertions(+), 5 deletions(-)
> 
> diff --git a/sound/drivers/mts64.c b/sound/drivers/mts64.c
> index c76bd87..fd4d18d 100644
> --- a/sound/drivers/mts64.c
> +++ b/sound/drivers/mts64.c
> @@ -964,11 +964,6 @@ static int snd_mts64_probe(struct platform_device *pdev)
>  		err = -EIO;
>  		goto free_pardev;
>  	}
> -	err = mts64_probe(p);
> -	if (err) {
> -		err = -EIO;
> -		goto release_pardev;
> -	}
>  
>  	if ((err = snd_mts64_create(card, pardev, &mts)) < 0) {
>  		snd_printd("Cannot create main component\n");
> @@ -976,6 +971,12 @@ static int snd_mts64_probe(struct platform_device *pdev)
>  	}
>  	card->private_data = mts;
>  	card->private_free = snd_mts64_card_private_free;
> +
> +	err = mts64_probe(p);
> +	if (err) {
> +		err = -EIO;
> +		goto __err;
> +	}
>  	
>  	if ((err = snd_mts64_rawmidi_create(card)) < 0) {
>  		snd_printd("Creating Rawmidi component failed\n");
> -- 
> 1.9.1
> 
> 

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

* Re: [PATCH] ALSA: mts64: fix NULL pointer dereference
  2016-02-29 12:24 ` Takashi Iwai
@ 2016-02-29 16:22   ` Sudip Mukherjee
  0 siblings, 0 replies; 3+ messages in thread
From: Sudip Mukherjee @ 2016-02-29 16:22 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: Jaroslav Kysela, alsa-devel, linux-kernel

On Mon, Feb 29, 2016 at 01:24:24PM +0100, Takashi Iwai wrote:
> On Mon, 29 Feb 2016 13:13:30 +0100,
> Sudip Mukherjee wrote:
> > 
> > While registering pardev, the irq_func was also registered. As a
> > result when we tried to probe for the card, an interrupt was generated
> > and in the ISR we tried to dereference private_data. But private_data
> > is still NULL as we have not yet done snd_mts64_create(). Lets probe
> > for the card after mts64 is created.
> > 
> > Reported-by: Fengguang Wu <fengguang.wu@intel.com>
> > Fixes: 94a573500d48 ("ALSA: mts64: use new parport device model")
> > Signed-off-by: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
> 
> Applied, thanks.

Thanks, I will wait for one day for any report from 0day and then send
you the similar patch for portman.

BTW, i lost that auction of portman.

regards
sudip

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

end of thread, other threads:[~2016-02-29 16:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-29 12:13 [PATCH] ALSA: mts64: fix NULL pointer dereference Sudip Mukherjee
2016-02-29 12:24 ` Takashi Iwai
2016-02-29 16:22   ` Sudip Mukherjee

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).