From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id ACAC7C3B189 for ; Thu, 13 Feb 2020 15:23:34 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 81818246C0 for ; Thu, 13 Feb 2020 15:23:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1581607414; bh=95I4fJrY2I/63Omufoh19gK8kES5AAcYBHMGTpzeQKs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=uQZdb7buKGjnf/2hGMd7qvXPlqjYseb5OAqQv1lFcDv9Ku2g5LGGCxog0C/UqD9ea kvT9qInSeTYhs0ynqoJUH0+VErNxHRjBvExvOCoVqx3z63XH94OMfu8rx1vhEOgoUB GHm3Thrh516NOvX4s0KqNg/dm3o8SuC7mHdX8Lqc= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728412AbgBMPXb (ORCPT ); Thu, 13 Feb 2020 10:23:31 -0500 Received: from mail.kernel.org ([198.145.29.99]:34842 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728406AbgBMPXb (ORCPT ); Thu, 13 Feb 2020 10:23:31 -0500 Received: from localhost (unknown [104.132.1.104]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id AA8152469A; Thu, 13 Feb 2020 15:23:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1581607410; bh=95I4fJrY2I/63Omufoh19gK8kES5AAcYBHMGTpzeQKs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=iudQ/gwA9h0SfiEm+r0tAItG/FHABZwRPUHPdpNGrFVoCT9ezCMN96nAoryVc9NZg PAGeCevnzGq68qMb2cYLYUtvq3tnM2xuvl4ro7H0y0EjZ3lQZTKr2bT/ka2svxFvHq juWn15JSP27qcoEgHYkrLTS1jV+5vIjQJvCpw+TQ= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Sven Van Asbroeck , Sebastian Reichel Subject: [PATCH 4.9 032/116] power: supply: ltc2941-battery-gauge: fix use-after-free Date: Thu, 13 Feb 2020 07:19:36 -0800 Message-Id: <20200213151855.452948924@linuxfoundation.org> X-Mailer: git-send-email 2.25.0 In-Reply-To: <20200213151842.259660170@linuxfoundation.org> References: <20200213151842.259660170@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Sven Van Asbroeck 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 Signed-off-by: Sven Van Asbroeck Signed-off-by: Sebastian Reichel Signed-off-by: Greg Kroah-Hartman --- drivers/power/supply/ltc2941-battery-gauge.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/power/supply/ltc2941-battery-gauge.c +++ b/drivers/power/supply/ltc2941-battery-gauge.c @@ -364,7 +364,7 @@ static int ltc294x_i2c_remove(struct i2c { 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; }