summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Van Asbroeck <thesven73@gmail.com>2019-09-19 11:11:37 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-02-11 04:35:24 -0800
commit03572189d61c3bc09ba69a379af8104e37c7f765 (patch)
tree75fbab9db9eda2c0c1f6316e32532f747e07f3c6
parent6f33d59ae165d50f9007a24314c903fd320ce5c4 (diff)
downloadlinux-03572189d61c3bc09ba69a379af8104e37c7f765.tar.gz
linux-03572189d61c3bc09ba69a379af8104e37c7f765.tar.bz2
linux-03572189d61c3bc09ba69a379af8104e37c7f765.zip
power: supply: ltc2941-battery-gauge: fix use-after-free
commit a60ec78d306c6548d4adbc7918b587a723c555cc upstream. This driver's remove path calls cancel_delayed_work(). However, that function does not wait until the work function finishes. This could mean that the work function is still running after the driver's remove function has finished, which would result in a use-after-free. Fix by calling cancel_delayed_work_sync(), which ensures that that the work is properly cancelled, no longer running, and unable to re-schedule itself. This issue was detected with the help of Coccinelle. Cc: stable <stable@vger.kernel.org> Signed-off-by: Sven Van Asbroeck <TheSven73@gmail.com> Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/power/supply/ltc2941-battery-gauge.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/power/supply/ltc2941-battery-gauge.c b/drivers/power/supply/ltc2941-battery-gauge.c
index da49436176cd..30a9014b2f95 100644
--- a/drivers/power/supply/ltc2941-battery-gauge.c
+++ b/drivers/power/supply/ltc2941-battery-gauge.c
@@ -449,7 +449,7 @@ static int ltc294x_i2c_remove(struct i2c_client *client)
{
struct ltc294x_info *info = i2c_get_clientdata(client);
- cancel_delayed_work(&info->work);
+ cancel_delayed_work_sync(&info->work);
power_supply_unregister(info->supply);
return 0;
}