summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Van Asbroeck <thesven73@gmail.com>2019-04-26 14:36:35 -0400
committerAlexandre Belloni <alexandre.belloni@bootlin.com>2019-04-29 09:53:43 -0400
commitf22b1ba15ee5785aa028384ebf77dd39e8e47b70 (patch)
treeed816fd34c724e615170513394ff39fe0faf4b10
parent527bd754d1ffc4bbd89a33c643e74c53d713eb4e (diff)
rtc: 88pm860x: prevent use-after-free on device remove
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>
-rw-r--r--drivers/rtc/rtc-88pm860x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-88pm860x.c b/drivers/rtc/rtc-88pm860x.c
index d25282b4a7dd..73697e4b18a9 100644
--- a/drivers/rtc/rtc-88pm860x.c
+++ b/drivers/rtc/rtc-88pm860x.c
@@ -421,7 +421,7 @@ static int pm860x_rtc_remove(struct platform_device *pdev)
421 struct pm860x_rtc_info *info = platform_get_drvdata(pdev); 421 struct pm860x_rtc_info *info = platform_get_drvdata(pdev);
422 422
423#ifdef VRTC_CALIBRATION 423#ifdef VRTC_CALIBRATION
424 flush_scheduled_work(); 424 cancel_delayed_work_sync(&info->calib_work);
425 /* disable measurement */ 425 /* disable measurement */
426 pm860x_set_bits(info->i2c, PM8607_MEAS_EN2, MEAS2_VRTC, 0); 426 pm860x_set_bits(info->i2c, PM8607_MEAS_EN2, MEAS2_VRTC, 0);
427#endif /* VRTC_CALIBRATION */ 427#endif /* VRTC_CALIBRATION */