Message ID | X9B0keV/02wrx9Xs@mwanda (mailing list archive) |
---|---|
State | Accepted |
Commit | 85a7555575a0e48f9b73db310d0d762a08a46d63 |
Headers | show |
Series | ASoC: wm_adsp: remove "ctl" from list on error in wm_adsp_create_control() | expand |
On Wed, Dec 09, 2020 at 09:54:09AM +0300, Dan Carpenter wrote: > The error handling frees "ctl" but it's still on the "dsp->ctl_list" > list so that could result in a use after free. Remove it from the list > before returning. > > Fixes: 2323736dca72 ("ASoC: wm_adsp: Add basic support for rev 1 firmware file format") > Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> > --- Good spot there, thanks. Acked-by: Charles Keepax <ckeepax@opensource.cirrus.com> Thanks, Charles
On Wed, 9 Dec 2020 09:54:09 +0300, Dan Carpenter wrote: > The error handling frees "ctl" but it's still on the "dsp->ctl_list" > list so that could result in a use after free. Remove it from the list > before returning. Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next Thanks! [1/1] ASoC: wm_adsp: remove "ctl" from list on error in wm_adsp_create_control() commit: 85a7555575a0e48f9b73db310d0d762a08a46d63 All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linus during the next merge window (or sooner if it is a bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. Thanks, Mark
diff --git a/sound/soc/codecs/wm_adsp.c b/sound/soc/codecs/wm_adsp.c index e61d00486c65..dec8716aa8ef 100644 --- a/sound/soc/codecs/wm_adsp.c +++ b/sound/soc/codecs/wm_adsp.c @@ -1519,7 +1519,7 @@ static int wm_adsp_create_control(struct wm_adsp *dsp, ctl_work = kzalloc(sizeof(*ctl_work), GFP_KERNEL); if (!ctl_work) { ret = -ENOMEM; - goto err_ctl_cache; + goto err_list_del; } ctl_work->dsp = dsp; @@ -1529,7 +1529,8 @@ static int wm_adsp_create_control(struct wm_adsp *dsp, return 0; -err_ctl_cache: +err_list_del: + list_del(&ctl->list); kfree(ctl->cache); err_ctl_subname: kfree(ctl->subname);
The error handling frees "ctl" but it's still on the "dsp->ctl_list" list so that could result in a use after free. Remove it from the list before returning. Fixes: 2323736dca72 ("ASoC: wm_adsp: Add basic support for rev 1 firmware file format") Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> --- sound/soc/codecs/wm_adsp.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)