]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
rtc: 88pm860x: prevent use-after-free on device remove
authorSven Van Asbroeck <thesven73@gmail.com>
Fri, 26 Apr 2019 18:36:35 +0000 (14:36 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 31 May 2019 13:43:20 +0000 (06:43 -0700)
commit88053c93e6c6ad3d3a57fbaaef0862e79edbb062
tree584128e665c91086b68de1eb58224d7545a10c10
parent902e3a83ccfd4aaf0f5d38293eef3d6370c31e3e
rtc: 88pm860x: prevent use-after-free on device remove

[ Upstream commit f22b1ba15ee5785aa028384ebf77dd39e8e47b70 ]

The device's remove() attempts to shut down the delayed_work scheduled
on the kernel-global workqueue by calling flush_scheduled_work().

Unfortunately, flush_scheduled_work() does not prevent the delayed_work
from re-scheduling itself. The delayed_work might run after the device
has been removed, and touch the already de-allocated info structure.
This is a potential use-after-free.

Fix by calling cancel_delayed_work_sync() during remove(): this ensures
that the delayed work is properly cancelled, is no longer running, and
is not able to re-schedule itself.

This issue was detected with the help of Coccinelle.

Signed-off-by: Sven Van Asbroeck <TheSven73@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/rtc/rtc-88pm860x.c