* [PATCH] ALSA: hda: Fix missing pointer check in hda_component_manager_init function
@ 2025-10-07 8:39 Denis Arefev
2025-10-07 8:48 ` Takashi Iwai
2025-10-07 10:57 ` Stefan Binding
0 siblings, 2 replies; 3+ messages in thread
From: Denis Arefev @ 2025-10-07 8:39 UTC (permalink / raw)
To: David Rhodes
Cc: Richard Fitzgerald, Jaroslav Kysela, Takashi Iwai, linux-sound,
patches, linux-kernel, lvc-project, stable
The __component_match_add function may assign the 'matchptr' pointer
the value ERR_PTR(-ENOMEM), which will subsequently be dereferenced.
The call stack leading to the error looks like this:
hda_component_manager_init
|-> component_match_add
|-> component_match_add_release
|-> __component_match_add ( ... ,**matchptr, ... )
|-> *matchptr = ERR_PTR(-ENOMEM); // assign
|-> component_master_add_with_match( ... match)
|-> component_match_realloc(match, match->num); // dereference
Add IS_ERR() check to prevent the crash.
Found by Linux Verification Center (linuxtesting.org) with SVACE.
Fixes: fd895a74dc1d ("ALSA: hda: realtek: Move hda_component implementation to module")
Cc: stable@vger.kernel.org
Signed-off-by: Denis Arefev <arefev@swemel.ru>
---
sound/hda/codecs/side-codecs/hda_component.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/sound/hda/codecs/side-codecs/hda_component.c b/sound/hda/codecs/side-codecs/hda_component.c
index 71860e2d6377..84ddbab660e3 100644
--- a/sound/hda/codecs/side-codecs/hda_component.c
+++ b/sound/hda/codecs/side-codecs/hda_component.c
@@ -181,6 +181,8 @@ int hda_component_manager_init(struct hda_codec *cdc,
sm->match_str = match_str;
sm->index = i;
component_match_add(dev, &match, hda_comp_match_dev_name, sm);
+ if (IS_ERR(match))
+ return PTR_ERR(match);
}
ret = component_master_add_with_match(dev, ops, match);
--
2.43.0
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] ALSA: hda: Fix missing pointer check in hda_component_manager_init function
2025-10-07 8:39 [PATCH] ALSA: hda: Fix missing pointer check in hda_component_manager_init function Denis Arefev
@ 2025-10-07 8:48 ` Takashi Iwai
2025-10-07 10:57 ` Stefan Binding
1 sibling, 0 replies; 3+ messages in thread
From: Takashi Iwai @ 2025-10-07 8:48 UTC (permalink / raw)
To: Denis Arefev
Cc: David Rhodes, Richard Fitzgerald, Jaroslav Kysela, Takashi Iwai,
linux-sound, patches, linux-kernel, lvc-project, stable
On Tue, 07 Oct 2025 10:39:57 +0200,
Denis Arefev wrote:
>
> The __component_match_add function may assign the 'matchptr' pointer
> the value ERR_PTR(-ENOMEM), which will subsequently be dereferenced.
>
> The call stack leading to the error looks like this:
>
> hda_component_manager_init
> |-> component_match_add
> |-> component_match_add_release
> |-> __component_match_add ( ... ,**matchptr, ... )
> |-> *matchptr = ERR_PTR(-ENOMEM); // assign
> |-> component_master_add_with_match( ... match)
> |-> component_match_realloc(match, match->num); // dereference
>
> Add IS_ERR() check to prevent the crash.
>
> Found by Linux Verification Center (linuxtesting.org) with SVACE.
>
> Fixes: fd895a74dc1d ("ALSA: hda: realtek: Move hda_component implementation to module")
> Cc: stable@vger.kernel.org
> Signed-off-by: Denis Arefev <arefev@swemel.ru>
Thanks for the patch.
The Fixes tag isn't 100% correct, though; the given commit just moves
the code into another file, and the lack of the return value from
component_match_add() was present even before that commit, too.
Takashi
> ---
> sound/hda/codecs/side-codecs/hda_component.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/sound/hda/codecs/side-codecs/hda_component.c b/sound/hda/codecs/side-codecs/hda_component.c
> index 71860e2d6377..84ddbab660e3 100644
> --- a/sound/hda/codecs/side-codecs/hda_component.c
> +++ b/sound/hda/codecs/side-codecs/hda_component.c
> @@ -181,6 +181,8 @@ int hda_component_manager_init(struct hda_codec *cdc,
> sm->match_str = match_str;
> sm->index = i;
> component_match_add(dev, &match, hda_comp_match_dev_name, sm);
> + if (IS_ERR(match))
> + return PTR_ERR(match);
> }
>
> ret = component_master_add_with_match(dev, ops, match);
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] ALSA: hda: Fix missing pointer check in hda_component_manager_init function
2025-10-07 8:39 [PATCH] ALSA: hda: Fix missing pointer check in hda_component_manager_init function Denis Arefev
2025-10-07 8:48 ` Takashi Iwai
@ 2025-10-07 10:57 ` Stefan Binding
1 sibling, 0 replies; 3+ messages in thread
From: Stefan Binding @ 2025-10-07 10:57 UTC (permalink / raw)
To: Denis Arefev, David Rhodes
Cc: Richard Fitzgerald, Jaroslav Kysela, Takashi Iwai, linux-sound,
patches, linux-kernel, lvc-project, stable
On 07/10/2025 09:39, Denis Arefev wrote:
> The __component_match_add function may assign the 'matchptr' pointer
> the value ERR_PTR(-ENOMEM), which will subsequently be dereferenced.
>
> The call stack leading to the error looks like this:
>
> hda_component_manager_init
> |-> component_match_add
> |-> component_match_add_release
> |-> __component_match_add ( ... ,**matchptr, ... )
> |-> *matchptr = ERR_PTR(-ENOMEM); // assign
> |-> component_master_add_with_match( ... match)
> |-> component_match_realloc(match, match->num); // dereference
>
> Add IS_ERR() check to prevent the crash.
>
> Found by Linux Verification Center (linuxtesting.org) with SVACE.
>
> Fixes: fd895a74dc1d ("ALSA: hda: realtek: Move hda_component implementation to module")
> Cc: stable@vger.kernel.org
> Signed-off-by: Denis Arefev <arefev@swemel.ru>
> ---
> sound/hda/codecs/side-codecs/hda_component.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/sound/hda/codecs/side-codecs/hda_component.c b/sound/hda/codecs/side-codecs/hda_component.c
> index 71860e2d6377..84ddbab660e3 100644
> --- a/sound/hda/codecs/side-codecs/hda_component.c
> +++ b/sound/hda/codecs/side-codecs/hda_component.c
> @@ -181,6 +181,8 @@ int hda_component_manager_init(struct hda_codec *cdc,
> sm->match_str = match_str;
> sm->index = i;
> component_match_add(dev, &match, hda_comp_match_dev_name, sm);
> + if (IS_ERR(match))
> + return PTR_ERR(match);
Would be good to print something to log an error, since otherwise this fails silently.
Thanks,
Stefan
> }
>
> ret = component_master_add_with_match(dev, ops, match);
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-10-07 11:35 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-07 8:39 [PATCH] ALSA: hda: Fix missing pointer check in hda_component_manager_init function Denis Arefev
2025-10-07 8:48 ` Takashi Iwai
2025-10-07 10:57 ` Stefan Binding
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox