* [PATCH] ALSA: core: Fix possible null-pointer dereferences in snd_timer_proc_read()
@ 2019-07-24 12:13 Jia-Ju Bai
2019-07-24 12:32 ` Takashi Iwai
0 siblings, 1 reply; 2+ messages in thread
From: Jia-Ju Bai @ 2019-07-24 12:13 UTC (permalink / raw)
To: perex, tiwai, bhelgaas, tglx, rfontana, gregkh, kirr
Cc: alsa-devel, linux-kernel, Jia-Ju Bai
In snd_timer_proc_read(), there is an if statement on line 1204 to check
whether timer->card is NULL:
if (timer->card && timer->card->shutdown)
When timer->card is NULL, it is used on lines 1212 and 1215:
timer->card->number
Thus, possible null-pointer dereferences may occur.
To fix these bugs, timer->card is checked before being used.
These bugs are found by a static analysis tool STCheck written by us.
Signed-off-by: Jia-Ju Bai <baijiaju1990@gmail.com>
---
sound/core/timer.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/sound/core/timer.c b/sound/core/timer.c
index 5c9fbf3f4340..967d06a3cdec 100644
--- a/sound/core/timer.c
+++ b/sound/core/timer.c
@@ -1208,11 +1208,13 @@ static void snd_timer_proc_read(struct snd_info_entry *entry,
snd_iprintf(buffer, "G%i: ", timer->tmr_device);
break;
case SNDRV_TIMER_CLASS_CARD:
- snd_iprintf(buffer, "C%i-%i: ",
- timer->card->number, timer->tmr_device);
+ snd_iprintf(buffer, "C%i-%i: ",
+ timer->card ? timer->card->number : -1,
+ timer->tmr_device);
break;
case SNDRV_TIMER_CLASS_PCM:
- snd_iprintf(buffer, "P%i-%i-%i: ", timer->card->number,
+ snd_iprintf(buffer, "P%i-%i-%i: ",
+ timer->card ? timer->card->number : -1,
timer->tmr_device, timer->tmr_subdevice);
break;
default:
--
2.17.0
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] ALSA: core: Fix possible null-pointer dereferences in snd_timer_proc_read()
2019-07-24 12:13 [PATCH] ALSA: core: Fix possible null-pointer dereferences in snd_timer_proc_read() Jia-Ju Bai
@ 2019-07-24 12:32 ` Takashi Iwai
0 siblings, 0 replies; 2+ messages in thread
From: Takashi Iwai @ 2019-07-24 12:32 UTC (permalink / raw)
To: Jia-Ju Bai
Cc: bhelgaas, tglx, gregkh, kirr, perex, rfontana, alsa-devel, linux-kernel
On Wed, 24 Jul 2019 14:13:27 +0200,
Jia-Ju Bai wrote:
>
> In snd_timer_proc_read(), there is an if statement on line 1204 to check
> whether timer->card is NULL:
> if (timer->card && timer->card->shutdown)
>
> When timer->card is NULL, it is used on lines 1212 and 1215:
> timer->card->number
>
> Thus, possible null-pointer dereferences may occur.
>
> To fix these bugs, timer->card is checked before being used.
Both cases can (should) never happen. The SNDRV_TIMER_CLASS_CARD is
always associated with a timer with a card object. Ditto for
SNDRV_TIMER_CLASS_PCM, where a PCM is always tied with a card.
So, if any, this should be a WARN_ON(). But I doubt it being any
useful.
thanks,
Takashi
>
> These bugs are found by a static analysis tool STCheck written by us.
>
> Signed-off-by: Jia-Ju Bai <baijiaju1990@gmail.com>
> ---
> sound/core/timer.c | 8 +++++---
> 1 file changed, 5 insertions(+), 3 deletions(-)
>
> diff --git a/sound/core/timer.c b/sound/core/timer.c
> index 5c9fbf3f4340..967d06a3cdec 100644
> --- a/sound/core/timer.c
> +++ b/sound/core/timer.c
> @@ -1208,11 +1208,13 @@ static void snd_timer_proc_read(struct snd_info_entry *entry,
> snd_iprintf(buffer, "G%i: ", timer->tmr_device);
> break;
> case SNDRV_TIMER_CLASS_CARD:
> - snd_iprintf(buffer, "C%i-%i: ",
> - timer->card->number, timer->tmr_device);
> + snd_iprintf(buffer, "C%i-%i: ",
> + timer->card ? timer->card->number : -1,
> + timer->tmr_device);
> break;
> case SNDRV_TIMER_CLASS_PCM:
> - snd_iprintf(buffer, "P%i-%i-%i: ", timer->card->number,
> + snd_iprintf(buffer, "P%i-%i-%i: ",
> + timer->card ? timer->card->number : -1,
> timer->tmr_device, timer->tmr_subdevice);
> break;
> default:
> --
> 2.17.0
>
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2019-07-24 12:32 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-24 12:13 [PATCH] ALSA: core: Fix possible null-pointer dereferences in snd_timer_proc_read() Jia-Ju Bai
2019-07-24 12:32 ` Takashi Iwai
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®