mfd: wm831x-auxadc: Prevent use after free in wm831x_auxadc_read_irq()
authorDan Carpenter <dan.carpenter@oracle.com>
Fri, 29 Jan 2021 14:37:24 +0000 (17:37 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 4 Mar 2021 10:38:04 +0000 (11:38 +0100)
commitb1b904813755d825eff31222d2d24b05638c0c52
treee6449561c11a462da695e74cca5e2070be62eebe
parent5d82c92db90414ba83ce4abec033b7655afd9b2d
mfd: wm831x-auxadc: Prevent use after free in wm831x_auxadc_read_irq()

[ Upstream commit 26783d74cc6a440ee3ef9836a008a697981013d0 ]

The "req" struct is always added to the "wm831x->auxadc_pending" list,
but it's only removed from the list on the success path.  If a failure
occurs then the "req" struct is freed but it's still on the list,
leading to a use after free.

Fixes: 78bb3688ea18 ("mfd: Support multiple active WM831x AUXADC conversions")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/mfd/wm831x-auxadc.c