CVE-2021-47650
Severity CVSS v4.0:
Pending analysis
Type:
CWE-476
NULL Pointer Dereference
Publication date:
26/02/2025
Last modified:
23/09/2025
Description
In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
ASoC: soc-compress: prevent the potentially use of null pointer<br />
<br />
There is one call trace that snd_soc_register_card()<br />
->snd_soc_bind_card()->soc_init_pcm_runtime()<br />
->snd_soc_dai_compress_new()->snd_soc_new_compress().<br />
In the trace the &#39;codec_dai&#39; transfers from card->dai_link,<br />
and we can see from the snd_soc_add_pcm_runtime() in<br />
snd_soc_bind_card() that, if value of card->dai_link->num_codecs<br />
is 0, then &#39;codec_dai&#39; could be null pointer caused<br />
by index out of bound in &#39;asoc_rtd_to_codec(rtd, 0)&#39;.<br />
And snd_soc_register_card() is called by various platforms.<br />
Therefore, it is better to add the check in the case of misusing.<br />
And because &#39;cpu_dai&#39; has already checked in soc_init_pcm_runtime(),<br />
there is no need to check again.<br />
Adding the check as follow, then if &#39;codec_dai&#39; is null,<br />
snd_soc_new_compress() will not pass through the check<br />
&#39;if (playback + capture != 1)&#39;, avoiding the leftover use of<br />
&#39;codec_dai&#39;.
Impact
Base Score 3.x
5.50
Severity 3.x
MEDIUM
Vulnerable products and versions
| CPE | From | Up to |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.4 (including) | 5.4.189 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.5 (including) | 5.10.110 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.11 (including) | 5.15.33 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.16 (including) | 5.16.19 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.17 (including) | 5.17.2 (excluding) |
To consult the complete list of CPE names with products and versions, see this page
References to Advisories, Solutions, and Tools
- https://git.kernel.org/stable/c/08af6da684b44097ea09f1d74d5858b837ed203b
- https://git.kernel.org/stable/c/4639c1d97f385f4784f44d66a3da0672f4951ada
- https://git.kernel.org/stable/c/68a69ad8df959e5211ed4a8e120783b2d352ea74
- https://git.kernel.org/stable/c/de2c6f98817fa5decb9b7d3b3a8a3ab864c10588
- https://git.kernel.org/stable/c/f69a75cb8a98c6c487d620442c68595726a69f60
- https://git.kernel.org/stable/c/fc237b8d624f4bcb0f21a532627ce4e3b3a85569



