linux-stable/sound/soc/mediatek/mt8186
Douglas Anderson a93d2afd3f
ASoC: mediatek: mt8186: Fix use-after-free in driver remove path
When devm runs function in the "remove" path for a device it runs them
in the reverse order. That means that if you have parts of your driver
that aren't using devm or are using "roll your own" devm w/
devm_add_action_or_reset() you need to keep that in mind.

The mt8186 audio driver didn't quite get this right. Specifically, in
mt8186_init_clock() it called mt8186_audsys_clk_register() and then
went on to call a bunch of other devm function. The caller of
mt8186_init_clock() used devm_add_action_or_reset() to call
mt8186_deinit_clock() but, because of the intervening devm functions,
the order was wrong.

Specifically at probe time, the order was:
1. mt8186_audsys_clk_register()
2. afe_priv->clk = devm_kcalloc(...)
3. afe_priv->clk[i] = devm_clk_get(...)

At remove time, the order (which should have been 3, 2, 1) was:
1. mt8186_audsys_clk_unregister()
3. Free all of afe_priv->clk[i]
2. Free afe_priv->clk

The above seemed to be causing a use-after-free. Luckily, it's easy to
fix this by simply using devm more correctly. Let's move the
devm_add_action_or_reset() to the right place. In addition to fixing
the use-after-free, code inspection shows that this fixes a leak
(missing call to mt8186_audsys_clk_unregister()) that would have
happened if any of the syscon_regmap_lookup_by_phandle() calls in
mt8186_init_clock() had failed.

Fixes: 55b423d562 ("ASoC: mediatek: mt8186: support audio clock control in platform driver")
Signed-off-by: Douglas Anderson <dianders@chromium.org
Link: https://lore.kernel.org/r/20230511092437.1.I31cceffc8c45bb1af16eb613e197b3df92cdc19e@changeid
Signed-off-by: Mark Brown <broonie@kernel.org
2023-05-15 10:21:13 +09:00
..
Makefile ASoC: mediatek: mt8186: add machine driver with mt6366, rt1019 and rt5682s 2022-07-20 17:42:27 +01:00
mt8186-afe-clk.c ASoC: mediatek: mt8186: Fix use-after-free in driver remove path 2023-05-15 10:21:13 +09:00
mt8186-afe-clk.h ASoC: mediatek: mt8186: Fix use-after-free in driver remove path 2023-05-15 10:21:13 +09:00
mt8186-afe-common.h ASoC: mediatek: mt8186: Allow setting shared clocks from machine driver 2022-09-09 18:49:00 +01:00
mt8186-afe-control.c ASoC: mediatek: mt8186: add platform driver 2022-07-20 17:42:24 +01:00
mt8186-afe-gpio.c ASoC: mediatek: mt8186: set variable aud_pinctrl to static 2023-04-07 17:23:08 +01:00
mt8186-afe-gpio.h ASoC: mediatek: mt8186: support gpio control in platform driver 2022-06-06 16:00:51 +01:00
mt8186-afe-pcm.c ASoC: mediatek: mt8186: Fix use-after-free in driver remove path 2023-05-15 10:21:13 +09:00
mt8186-audsys-clk.c ASoC: mediatek: mt8186: Fix use-after-free in driver remove path 2023-05-15 10:21:13 +09:00
mt8186-audsys-clk.h ASoC: mediatek: mt8186: Fix use-after-free in driver remove path 2023-05-15 10:21:13 +09:00
mt8186-audsys-clkid.h
mt8186-dai-adda.c ASoC: mediatek: mt8186: Move some prints to debug level 2023-04-03 12:15:36 +01:00
mt8186-dai-hostless.c ASoC: mediatek: mt8186: support hostless in platform driver 2022-06-06 16:00:44 +01:00
mt8186-dai-hw-gain.c ASoC: mediatek: mt8186: support hw gain in platform driver 2022-06-06 16:00:45 +01:00
mt8186-dai-i2s.c ASoC: mediatek: mt8186: Remove clock share parsing from DT 2022-09-09 18:49:02 +01:00
mt8186-dai-pcm.c ASoC: mediatek: use helper function 2023-01-31 11:05:02 +00:00
mt8186-dai-src.c ASoC: mediatek: mt8186: support src in platform driver 2022-06-06 16:00:48 +01:00
mt8186-dai-tdm.c ASoC: mediatek: mt8186: remove unnecessary judgments 2022-07-27 13:14:44 +01:00
mt8186-interconnection.h ASoC: mediatek: mt8186: add misc driver and register definitions 2022-06-06 16:00:52 +01:00
mt8186-misc-control.c ASoC: mediatek: mt8186: add misc driver and register definitions 2022-06-06 16:00:52 +01:00
mt8186-mt6366-common.c ASoC: mediatek: mt8186: add mt8186-mt6366 common driver 2022-07-20 17:42:25 +01:00
mt8186-mt6366-common.h ASoC: mediatek: mt8186: add mt8186-mt6366 common driver 2022-07-20 17:42:25 +01:00
mt8186-mt6366-da7219-max98357.c ASoC: mediatek: mt8186: Move some prints to debug level 2023-04-03 12:15:36 +01:00
mt8186-mt6366-rt1019-rt5682s.c ASoC: mediatek: mt8186: Move some prints to debug level 2023-04-03 12:15:36 +01:00
mt8186-reg.h ASoC: mediatek: mt8186: add misc driver and register definitions 2022-06-06 16:00:52 +01:00