]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
ALSA: hda: Fix missing pointer check in hda_component_manager_init function
authorDenis Arefev <arefev@swemel.ru>
Fri, 14 Nov 2025 03:28:09 +0000 (11:28 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 24 Nov 2025 09:36:06 +0000 (10:36 +0100)
[ Upstream commit 1cf11d80db5df805b538c942269e05a65bcaf5bc ]

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: ae7abe36e352 ("ALSA: hda/realtek: Add CS35L41 support for Thinkpad laptops")
Cc: stable@vger.kernel.org
Signed-off-by: Denis Arefev <arefev@swemel.ru>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
[ Modified the source code path due to 6.12 doesn't have
commit:6014e9021b28 ("ALSA: hda: Move codec drivers into sound/hda/codecs directory
") ]
Signed-off-by: Rajani Kantha <681739313@139.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
sound/pci/hda/hda_component.c

index 2d6b7b0b355d2a86fbb7bf8b7c821d70cad8015d..04eed6d0be3eb6d7ca9e3085a32b8bf39da05dd3 100644 (file)
@@ -181,6 +181,10 @@ 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)) {
+                       codec_err(cdc, "Fail to add component %ld\n", PTR_ERR(match));
+                       return PTR_ERR(match);
+               }
        }
 
        ret = component_master_add_with_match(dev, ops, match);