]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commit
ASoC: dapm: remove widget from dirty list on free
authorThomas Hebb <tommyhebb@gmail.com>
Sun, 13 Dec 2020 01:20:12 +0000 (17:20 -0800)
committerStefan Bader <stefan.bader@canonical.com>
Fri, 19 Feb 2021 15:44:35 +0000 (16:44 +0100)
commitc4388e2a2c9bcb9adbe7c1680cff3ca2dc0134e4
tree059c058776f8f86ba62ccf6409dc4967fc973bcd
parente79be8e794197934bacc8518cf0693b2dfde794c
ASoC: dapm: remove widget from dirty list on free

BugLink: https://bugs.launchpad.net/bugs/1914654
commit 5c6679b5cb120f07652418524ab186ac47680b49 upstream.

A widget's "dirty" list_head, much like its "list" list_head, eventually
chains back to a list_head on the snd_soc_card itself. This means that
the list can stick around even after the widget (or all widgets) have
been freed. Currently, however, widgets that are in the dirty list when
freed remain there, corrupting the entire list and leading to memory
errors and undefined behavior when the list is next accessed or
modified.

I encountered this issue when a component failed to probe relatively
late in snd_soc_bind_card(), causing it to bail out and call
soc_cleanup_card_resources(), which eventually called
snd_soc_dapm_free() with widgets that were still dirty from when they'd
been added.

Fixes: db432b414e20 ("ASoC: Do DAPM power checks only for widgets changed since last run")
Cc: stable@vger.kernel.org
Signed-off-by: Thomas Hebb <tommyhebb@gmail.com>
Reviewed-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Link: https://lore.kernel.org/r/f8b5f031d50122bf1a9bfc9cae046badf4a7a31a.1607822410.git.tommyhebb@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Signed-off-by: William Breathitt Gray <william.gray@canonical.com>
sound/soc/soc-dapm.c