From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 426AA1B3F02; Wed, 5 Jun 2024 11:54:35 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1717588476; cv=none; b=WbE1vdNZ90pLbGQYCZbvVhEo1jKhkApONS0TBwFuY2ILQByhkV/tyw3zQ+5a7pH8Bn2SsQqjBAinD0IdlUrTJXqP0O7/tbhbFLjeJec4T61e0/oamgTH4i8QORA+LNNfcSHTBynsKZlScbXqeMrDGGnCBSwC2sp3HfYMK1nZYHk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1717588476; c=relaxed/simple; bh=kiI/Lw2TK9Xytq4SD7omgBRD9aRnbSVuuUnrkQXDmf0=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=JzBtoIG+/hdbsEaoqpfsHNuiAZX0NnmPXfc63C0AV5Iurq/wJGelweERXvX7gvEic207iahnemrLZ4BlZKSx1LBFDVcK55s//iAY+JhoW/JfuFW8cSNk2bOKzX5aUSzXoRqhInPk+adTy87rRrU/wbAAPtShHbHAdtUKsrO4I+o= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=QLe24bYS; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="QLe24bYS" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0467AC32786; Wed, 5 Jun 2024 11:54:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1717588475; bh=kiI/Lw2TK9Xytq4SD7omgBRD9aRnbSVuuUnrkQXDmf0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=QLe24bYSdcfmJDbCPzc/hF+j7IBASzBXfhtkoO1m5K0YcvHAYttvAXP1XsHDVI/lZ J5KEvd0y4qVAMyJaKm5gaiFatnP7+gP8sMYhGOCuRe9umu18ozg9eK1Zqh8ywSFbRI olvrFI5mo2YNg22Pwj0TNGd4ghbM8RlIqRgmCHW52hJHtmYW9Rqju+up/y6glO9HfC YhQWY1WRw0Qre20flUWHjTZM3ZMRvgUZGveUdb3iLyBSPh8/s/uEK25J4vBtBVA0Tv kdwgjZyN4SXg6kbrRRLaj/uAp54mnC2jjQEaVwf35pyNqvNfz0VW81pmbwb28zHfaI GmmISXAKn4Q1A== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Sicong Huang , Greg Kroah-Hartman , Sasha Levin , johan@kernel.org, greybus-dev@lists.linaro.org Subject: [PATCH AUTOSEL 5.15 9/9] greybus: Fix use-after-free bug in gb_interface_release due to race condition. Date: Wed, 5 Jun 2024 07:54:07 -0400 Message-ID: <20240605115415.2964165-9-sashal@kernel.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240605115415.2964165-1-sashal@kernel.org> References: <20240605115415.2964165-1-sashal@kernel.org> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore X-stable-base: Linux 5.15.160 Content-Transfer-Encoding: 8bit From: Sicong Huang [ Upstream commit 5c9c5d7f26acc2c669c1dcf57d1bb43ee99220ce ] In gb_interface_create, &intf->mode_switch_completion is bound with gb_interface_mode_switch_work. Then it will be started by gb_interface_request_mode_switch. Here is the relevant code. if (!queue_work(system_long_wq, &intf->mode_switch_work)) { ... } If we call gb_interface_release to make cleanup, there may be an unfinished work. This function will call kfree to free the object "intf". However, if gb_interface_mode_switch_work is scheduled to run after kfree, it may cause use-after-free error as gb_interface_mode_switch_work will use the object "intf". The possible execution flow that may lead to the issue is as follows: CPU0 CPU1 | gb_interface_create | gb_interface_request_mode_switch gb_interface_release | kfree(intf) (free) | | gb_interface_mode_switch_work | mutex_lock(&intf->mutex) (use) Fix it by canceling the work before kfree. Signed-off-by: Sicong Huang Link: https://lore.kernel.org/r/20240416080313.92306-1-congei42@163.com Signed-off-by: Greg Kroah-Hartman Signed-off-by: Sasha Levin --- drivers/greybus/interface.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/greybus/interface.c b/drivers/greybus/interface.c index 9ec949a438ef6..52ef6be9d4499 100644 --- a/drivers/greybus/interface.c +++ b/drivers/greybus/interface.c @@ -694,6 +694,7 @@ static void gb_interface_release(struct device *dev) trace_gb_interface_release(intf); + cancel_work_sync(&intf->mode_switch_work); kfree(intf); } -- 2.43.0